/* ============================================
   AMILA ŽUŽIĆ — LANDING
   Warm Desert palette
   ============================================ */

:root {
  /* Palette */
  --bg: #FAF7F2;
  --bg-warm: #F5EFE6;
  --bg-darker: #EFE7D9;
  --text: #2B2320;
  --text-soft: #5E4F45;
  --text-muted: #8B7765;
  --accent: #C9A27A;
  --accent-deep: #B8896B;
  --gold: #C8A962;
  --gold-soft: #D9BE83;
  --line: #D9CCB8;
  --line-faint: #E8DFCF;

  /* Typography */
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  /* Scale */
  --radius: 2px;
  --shadow-soft: 0 1px 2px rgba(43, 35, 32, 0.04), 0 10px 40px -20px rgba(43, 35, 32, 0.12);
  --shadow-deep: 0 4px 12px rgba(43, 35, 32, 0.08), 0 24px 60px -30px rgba(43, 35, 32, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.15  0 0 0 0 0.12  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: multiply;
  z-index: 1;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}

/* ============================================
   UTILITY: SECTION FRAME
   ============================================ */
.section-frame {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-frame--narrow {
  max-width: 780px;
}

/* ============================================
   BUTTON
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--bg);
  background: var(--text);
  border: 1px solid var(--text);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--large {
  padding: 22px 42px;
  font-size: 16px;
}

/* ============================================
   HERO — full-bleed image with overlay text
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--text);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Dual-layer overlay: dark gradient left → transparent right, plus vignette */
.hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(30, 22, 18, 0.78) 0%,
      rgba(30, 22, 18, 0.62) 28%,
      rgba(30, 22, 18, 0.25) 55%,
      rgba(30, 22, 18, 0.08) 80%,
      rgba(30, 22, 18, 0.0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(30, 22, 18, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 64px 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  margin-bottom: 40px;
  text-shadow: 0 1px 20px rgba(0,0,0,0.3);
}

.hero__eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--gold-soft);
  border-radius: 50%;
  display: inline-block;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #FAF4E8;
  margin-bottom: 28px;
  max-width: none;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero__title-line {
  display: block;
  white-space: nowrap;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 680px) {
  .hero__actions {
    flex-direction: column-reverse;
  }
  .hero__actions .hero__subtitle {
    margin-bottom: 0;
    margin-top: 20px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 92vh;
  }
  .hero__content {
    padding: 80px 24px 60px;
    display: grid;
    grid-template-rows: 1fr auto 1fr auto;
    justify-content: stretch;
    align-items: start;
  }
  .hero__title {
    grid-row: 2;
    font-size: 32px !important;
    line-height: 1.2;
    margin-bottom: 0;
  }
  .hero__actions {
    grid-row: 4;
  }
  .hero__subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 280px;
  }
  .hero__title-line {
    white-space: normal;
  }
  .hero .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}

.hero__title-line--italic {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: rgba(250, 244, 232, 0.85);
  margin-bottom: 56px;
  max-width: 480px;
  font-weight: 400;
  text-shadow: 0 1px 20px rgba(0,0,0,0.3);
}

.hero__glyph {
  position: absolute;
  right: 48px;
  bottom: 48px;
  width: 90px;
  height: 90px;
  color: var(--gold-soft);
  opacity: 0.45;
  z-index: 3;
  animation: slowRotate 60s linear infinite;
}

/* Hero button — adapt for dark background */
.hero .btn {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--text);
  align-self: flex-start;
  box-shadow: 0 8px 40px -10px rgba(200, 169, 98, 0.4);
}

.hero .btn:hover {
  background: #FAF4E8;
  border-color: #FAF4E8;
  color: var(--text);
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   STORY
   ============================================ */
.story {
  padding: 140px 0 120px;
  background: var(--bg);
  position: relative;
}

.story .section-frame {
  max-width: 780px;
}

.story__label,
.testimonials__label,
.faq__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 32px;
}

.built__label {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 40px;
}

.story__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 56px;
  max-width: 680px;
}

.story__body {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-soft);
}

.story__body p {
  margin-bottom: 24px;
}

.story__heart {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--accent-deep);
  margin: 36px 0 !important;
}

.story__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  color: var(--text);
  padding: 32px 0 32px 32px;
  margin: 36px 0 !important;
  border-left: 2px solid var(--accent);
  position: relative;
}

.story__quote-mark {
  color: var(--accent);
  font-weight: 500;
}

.story__image {
  margin: 56px 0 !important;
  padding: 0;
}

.story__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(43, 35, 32, 0.25);
}

.story__image figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-soft);
  text-align: center;
  margin-top: 18px;
  letter-spacing: 0.01em;
}

.story__chart {
  margin: 64px 0 0 !important;
  padding: 0;
}

.story__chart img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(43, 35, 32, 0.18);
}

.story__closing {
  font-size: 20px;
  margin-top: 40px !important;
}

.story__closing em {
  color: var(--accent-deep);
}

.story__arrow {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-top: 48px !important;
  color: var(--text);
  padding-top: 32px;
  border-top: 1px solid var(--line-faint);
}

.story__arrow strong {
  font-weight: 500;
}

/* ============================================
   BUILT (Šta sam izgradila)
   ============================================ */
.built {
  padding: 120px 0 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  position: relative;
}

.built .section-frame {
  max-width: 960px;
  margin-bottom: 80px;
}

.built__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 64px 0 72px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.built__number {
  text-align: center;
}

.built__num-value {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  font-weight: 500;
  color: var(--accent-deep);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.built__num-label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.built__body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 760px;
}

.built__body p {
  margin-bottom: 24px;
}

.built__body em {
  color: var(--text);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

.built__travel {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  color: var(--text);
  margin-top: 48px !important;
  margin-bottom: 16px !important;
}

.built__destinations {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  color: var(--accent-deep);
  margin-bottom: 16px !important;
  letter-spacing: 0.02em;
}

.built__destinations .sep {
  opacity: 0.5;
  margin: 0 8px;
}

.built__earned {
  font-size: 17px;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  overflow: hidden;
  padding: 40px 0 80px;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-darker) 100%);
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee__track {
  display: flex;
  gap: 20px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  flex-shrink: 0;
  width: 240px;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.marquee__item:nth-child(odd) {
  transform: translateY(-8px);
}

.marquee__item:nth-child(even) {
  transform: translateY(8px);
}

.marquee__item:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: var(--shadow-deep);
  z-index: 2;
}

.marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 10px)); }
}

/* ============================================
   HOW (Kako ovo izgleda) — 4 cards
   ============================================ */
.how {
  padding: 140px 0 120px;
  background: var(--bg);
  position: relative;
}

.how .section-frame {
  max-width: 1040px;
}

.how__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 24px;
}

.how__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
}

.how__intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 640px;
  margin-bottom: 72px;
}

.how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.how__card {
  background: var(--bg-warm);
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  padding: 40px 36px 36px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}

.how__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.how__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  border-color: var(--accent);
}

.how__card:hover::after {
  opacity: 1;
}

.how__icon {
  width: 44px;
  height: 44px;
  color: var(--accent-deep);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: background 0.3s ease, color 0.3s ease;
}

.how__icon svg {
  width: 24px;
  height: 24px;
}

.how__card:hover .how__icon {
  background: var(--accent-deep);
  color: var(--bg);
  border-color: var(--accent-deep);
}

.how__card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 14px;
}

.how__card-body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-soft);
}

@media (max-width: 780px) {
  .how {
    padding: 80px 0;
  }
  .how__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .how__intro {
    margin-bottom: 48px;
    font-size: 16px;
  }
  .how__card {
    padding: 32px 28px;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 140px 0 120px;
  background: var(--bg-darker);
}

.testimonials .section-frame {
  max-width: 1200px;
}

.testimonials__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 72px;
  max-width: 720px;
  font-style: italic;
}

.testimonials__marquee {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: auto;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.testimonials__marquee::-webkit-scrollbar {
  display: none;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.testimonial {
  flex: 0 0 380px;
  width: 380px;
  background: var(--bg);
  padding: 36px 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line-faint);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  box-sizing: border-box;
  min-height: 380px;
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  width: 100%;
}

.testimonial__stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold-soft);
}

.testimonial__stars svg {
  width: 16px;
  height: 16px;
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  flex-shrink: 0;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  font-style: italic;
  color: var(--text);
  margin-bottom: 32px;
  flex-grow: 1;
}

.testimonial__meta {
  border-top: 1px solid var(--line-faint);
  padding-top: 20px;
  width: 100%;
}

.testimonial__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.testimonial__location {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 140px 0 120px;
  background: var(--bg);
}

.faq__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 64px;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}

.faq__item[open] {
  background: var(--bg-warm);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s ease;
  padding-left: 8px;
  padding-right: 8px;
}

.faq__item[open] .faq__question {
  color: var(--accent-deep);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:hover {
  color: var(--accent-deep);
}

.faq__toggle {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 24px;
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq__toggle::before {
  top: 9.5px;
  left: 0;
  width: 100%;
  height: 1px;
}

.faq__toggle::after {
  top: 0;
  left: 9.5px;
  width: 1px;
  height: 100%;
}

.faq__item[open] .faq__toggle::after {
  transform: rotate(90deg);
}

.faq__answer {
  padding: 0 8px 28px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 720px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 160px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 50%, var(--bg-darker) 100%);
  text-align: center;
  position: relative;
}

.final-cta__ornament {
  display: inline-block;
  width: 60px;
  height: 12px;
  color: var(--accent);
  margin-bottom: 40px;
}

.final-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 32px;
}

.final-cta__headline em {
  color: var(--accent-deep);
  font-style: italic;
  font-weight: 500;
}

.final-cta__body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 56px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 56px 0;
  background: var(--text);
  color: var(--bg);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__signature {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.footer__copyright {
  font-size: 13px;
  color: var(--line);
  margin-top: 4px;
  letter-spacing: 0.08em;
}

.footer__socials {
  display: flex;
  gap: 32px;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--bg);
  transition: color 0.2s ease;
}

.footer__socials a:hover {
  color: var(--gold-soft);
}

.footer__socials svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero__content {
    padding: 80px 32px 100px;
  }

  .hero__image img {
    object-position: center;
    transform: none;
    filter: none;
  }

  .hero__image::before {
    background:
      linear-gradient(180deg,
        rgba(30, 22, 18, 0.3) 0%,
        rgba(30, 22, 18, 0.15) 35%,
        rgba(30, 22, 18, 0.45) 70%,
        rgba(30, 22, 18, 0.75) 100%);
  }

  .hero__glyph {
    display: none;
  }

  .story,
  .built,
  .testimonials,
  .faq {
    padding: 80px 0;
  }

  .final-cta {
    padding: 100px 0;
  }

  .built .section-frame {
    margin-bottom: 40px;
  }

  .built__numbers {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0;
  }

  .testimonial {
    flex: 0 0 300px;
    width: 300px;
    padding: 28px 24px 24px;
    min-height: 360px;
  }

  .testimonial__quote {
    font-size: 16px;
  }

  .testimonials__track {
    gap: 16px;
  }

  .testimonials__headline,
  .faq__headline {
    margin-bottom: 40px;
  }

  .story__image {
    margin: 40px 0 !important;
  }

  .story__image figcaption {
    font-size: 14px;
    margin-top: 14px;
  }

  .marquee__item {
    width: 180px;
    height: 270px;
  }

  .marquee {
    padding: 24px 0 48px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .section-frame {
    padding: 0 24px;
  }
}

@media (max-width: 520px) {
  .hero__content {
    padding: 48px 24px 64px;
  }

  .story__quote {
    font-size: 20px;
    padding-left: 20px;
  }

  .marquee__item {
    width: 150px;
    height: 225px;
  }

  .btn {
    padding: 16px 24px;
    font-size: 14px;
  }

  .btn--large {
    padding: 18px 28px;
    font-size: 15px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee__track {
    animation: none;
  }
}
