:root {
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1c1c1c;
  --border: #262626;
  --text: #f0f0f0;
  --muted: #888;
  --accent: #c9a96e;
  --accent2: #e8c98a;
  --light: #fafaf8;
  --light-text: #1a1a1a;
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILS ─────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }

.label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* Display headings — Cormorant Garamond */
.section-h2,
.hero__h1,
.cta-h2,
.story__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.section-h2 em,
.cta-h2 em,
.hero__h1 em {
  font-style: italic;
  color: var(--accent);
}

/* ─── NAV ─────────────────────────────── */
body > nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 0.55rem 1.4rem;
  background: var(--accent);
  color: #0d0d0d;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; }

/* ─── MOBILE MENU (CSS-only burger, no JS) ─── */
.nav-toggle { display: none; }
.nav-burger { display: none; }
@media (max-width: 680px) {
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    order: 3;
    margin-left: 0.9rem;
    z-index: 1002;
  }
  .nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }
  .nav-cta { order: 2; margin-left: auto; }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
  }
  .nav-links a { font-size: 1.3rem; color: var(--text); }
  .nav-toggle:checked ~ .nav-links { transform: translateX(0); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
body:has(.nav-toggle:checked) { overflow: hidden; }

/* ─── CATALOG FILTERS ─── */
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2rem;
  align-items: center;
  margin-bottom: 1.75rem;
}
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.filter-group__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-right: 0.35rem;
}
.filter-btn {
  padding: 0.42rem 0.95rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  border-radius: 6px;
  font-size: 0.8rem;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.filter-btn:hover { color: var(--text); border-color: var(--accent); }
.filter-btn.is-active {
  background: var(--accent);
  color: #0d0d0d;
  border-color: var(--accent);
}
.filter-select {
  padding: 0.42rem 0.95rem;
  border: 1px solid var(--border);
  background: #0d0d0d;
  color: var(--text);
  border-radius: 6px;
  font-size: 0.8rem;
  font-family: inherit;
  cursor: pointer;
}
.filter-select:hover { border-color: var(--accent); }
.catalog-count { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.price-card.is-hidden { display: none !important; }

/* ─── BUTTONS ─────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--accent); color: #0d0d0d; }
.btn--gold:hover { opacity: 0.88; }
.btn--outline { border-color: var(--border); color: var(--text); background: transparent; }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--ghost { border-color: var(--border); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 1.1rem 2.6rem; font-size: 1.05rem; }

/* ─── HERO ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 64px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.25) 0%,
    rgba(13,13,13,0.55) 55%,
    rgba(13,13,13,0.96) 100%
  );
}
.hero__aurora {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(40% 40% at 22% 32%, rgba(201,169,110,0.20), transparent 70%),
    radial-gradient(45% 45% at 78% 62%, rgba(232,201,138,0.13), transparent 72%);
  filter: blur(40px);
  animation: aurora 20s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes aurora {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1); }
  100% { transform: translate3d(3%, 2%, 0) scale(1.12); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero__content { max-width: 660px; }
.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}
.hero__h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}
.hero__h1 em { display: block; }
.hero__desc {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(240,240,240,0.72);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__stats-row {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero__stat-val {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.35rem; }
.hero__stat-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
}
@media (max-width: 520px) {
  .hero__stat-divider { display: none; }
  .hero__stats-row { gap: 1.75rem 2.5rem; }
}

/* ─── AWARDS MARQUEE ───────────────────── */
.marquee-strip {
  background: var(--accent);
  overflow: hidden;
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  width: max-content;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}
.marquee-item {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d0d0d;
}
.marquee-sep { color: rgba(13,13,13,0.4); font-weight: 600; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ─── SCROLL STORY ───────────────────────────────────────────────────────── */
.story-wrapper {
  height: 360vh;
  position: relative;
}

.story {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #F9FAF3;
}

/* Canvas — крупное здание, но не на весь экран; выровнено по низу */
.story__canvas {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 82%;
  width: auto;
  max-width: 90%;
  mix-blend-mode: multiply;
  border: none; outline: none;
  pointer-events: none;
  /* растушёвка левого/правого края — прячет рамку от multiply-блендинга,
     края канваса бесшовно сливаются с фоном секции #F9FAF3 */
  -webkit-mask: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}

/* Градиенты сверху и снизу — скрывают края видео */
.story::before,
.story::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  z-index: 2;
  pointer-events: none;
}
.story::before {
  top: 0;
  height: 40%;
  background: linear-gradient(to bottom, #F9FAF3 0%, #F9FAF3 15%, transparent 100%);
}
.story::after {
  bottom: 0;
  height: 15%;
  background: linear-gradient(to top, #F9FAF3 0%, transparent 100%);
}

/* Боковые тексты — opacity/transform управляются JS */
.story__side {
  position: absolute;
  top: 42%;
  z-index: 3;
  max-width: 240px;
  opacity: 0;
  will-change: opacity, transform;
  /* белое свечение делает текст читаемым на любом фоне здания */
  text-shadow:
    0 0 16px #F9FAF3,
    0 0 32px #F9FAF3,
    0 2px 4px rgba(249,250,243,0.9);
}
.story__side--left {
  left: clamp(1.25rem, 6vw, 6rem);
  transform: translateY(calc(-50% + 28px));
  text-align: left;
}
.story__side--right {
  right: clamp(1.25rem, 6vw, 6rem);
  transform: translateY(calc(-50% + 28px));
  text-align: right;
}

.story__pre {
  font-size: clamp(0.95rem, 1.8vw, 1.3rem);
  color: #2b2b2b;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.15em;
}

.story__title {
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 800;
  color: #14110b;             /* тёмный графит — высокий контраст */
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 0.55rem;
}
.story__title em {
  font-style: normal;
  color: var(--accent);
}

.story__sub {
  font-size: clamp(0.72rem, 1.1vw, 0.85rem);
  color: #6b6b6b;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* reduced-motion: убираем анимацию, показываем статично */
@media (prefers-reduced-motion: reduce) {
  .story__side { opacity: 1 !important; transform: translateY(-50%) !important; }
}

@media (max-width: 640px) {
  .story__canvas { height: auto; width: 100%; min-width: unset; top: auto; bottom: 0; }
  .story__side { max-width: 110px; }
  .story__side--left  { left: 0.75rem; }
  .story__side--right { right: 0.75rem; }
  .story__pre   { font-size: 0.8rem; }
  .story__title { font-size: 1.2rem; }
  .story__sub   { font-size: 0.65rem; }
  .story__side--left  { left: 1rem; }
  .story__side--right { right: 1rem; }
  .story__pre  { font-size: 0.85rem; }
  .story__title { font-size: 1.2rem; }
}

/* ─── PAIN ────────────────────────────── */
.pain-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.pain-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 4vw, 3rem);
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--border);
}
.pain-item__num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1.2;
}
.pain-item__q {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--text);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.pain-item__a {
  font-size: 1rem;
  color: rgba(240,240,240,0.62);
  line-height: 1.7;
  max-width: 62ch;
}
.pain-item__a strong { color: var(--accent); font-weight: 500; }

/* ─── STATS ────────────────────────────── */
.stats-section { background: var(--dark2); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-cell {
  background: var(--dark2);
  padding: clamp(2rem, 4vw, 3rem) 1.5rem;
  text-align: center;
}
.stat-cell__val {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}
.stat-cell__label { font-size: 0.85rem; color: var(--muted); margin-top: 0.6rem; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .stats-grid { grid-template-columns: 1fr; } }

/* ─── ABOUT ─────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-photo-frame {
  aspect-ratio: 3/4;
  background: var(--dark3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder { text-align: center; color: var(--muted); }
.about-photo-placeholder svg { margin-bottom: 0.75rem; opacity: 0.3; }

/* About video — lite YouTube facade (iframe loads on click) */
.about-video { margin-top: clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.about-video__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0.5rem 0 1.5rem;
  font-weight: 600;
}
.yt-lite {
  position: relative;
  display: block;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background-color: var(--dark3);
  background-size: cover;
  background-position: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.yt-lite::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0) 55%, rgba(13,13,13,0.45) 100%);
}
.yt-lite:hover, .yt-lite:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.yt-lite__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}
.yt-lite__play::before {
  content: "";
  position: absolute;
  top: 50%; left: 53%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent var(--dark);
}
.yt-lite:hover .yt-lite__play { transform: translate(-50%, -50%) scale(1.08); }
.yt-lite iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.about-photo-placeholder p { font-size: 0.85rem; letter-spacing: 0.05em; }
.about-text .section-h2 { margin-bottom: 1.75rem; }
.about-text p {
  color: rgba(240,240,240,0.72);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
}
.about-text p:last-of-type { margin-bottom: 0; }
.about-awards { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2.25rem; }
.about-award {
  padding: 0.9rem 1.1rem;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: 8px;
  font-size: 0.875rem;
  color: rgba(240,240,240,0.85);
}

/* ─── PROCESS ────────────────────────────── */
.process-section { background: var(--dark2); }
.process-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: baseline;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid var(--border);
}
.process-item__num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: rgba(201,169,110,0.35);
  line-height: 1;
  letter-spacing: -0.03em;
}
.process-item__body h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.process-item__body p {
  font-size: 0.95rem;
  color: rgba(240,240,240,0.62);
  line-height: 1.7;
  max-width: 60ch;
}
.process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: rgba(201,169,110,0.07);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: var(--radius);
}
.process-cta p {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 44ch;
  flex: 1;
  min-width: 220px;
}

/* ─── SERVICES & PRICING ─────────────────── */
.services-intro {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(240,240,240,0.7);
  max-width: 62ch;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.services-dirs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.services-dir {
  padding: 0.5rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: rgba(240,240,240,0.82);
  background: var(--dark2);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 860px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.price-card:hover { border-color: rgba(201,169,110,0.4); transform: translateY(-3px); }
.price-card--free {
  background: linear-gradient(160deg, var(--dark3) 0%, var(--dark2) 100%);
  border-color: rgba(201,169,110,0.3);
}
.price-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.price-card__tag {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #0d0d0d;
  background: var(--accent);
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card__title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
}
.price-card__price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 1.1rem 0 0.9rem;
}
.price-card__unit {
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0;
}
.price-card__note {
  font-size: 0.9rem;
  color: rgba(240,240,240,0.6);
  line-height: 1.65;
  margin-top: auto;
}
.services-cta { margin-top: clamp(2.25rem, 4vw, 3rem); text-align: center; }

/* ─── REVIEWS ────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 820px) { .reviews-grid { grid-template-columns: 1fr; } }
.reviews-side { display: flex; flex-direction: column; gap: 1.5rem; }
.review {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
}
.review--featured {
  background: linear-gradient(160deg, var(--dark3) 0%, var(--dark2) 100%);
  border-color: rgba(201,169,110,0.25);
  justify-content: space-between;
}
.review__text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.45;
  color: rgba(240,240,240,0.92);
  margin-bottom: 1.75rem;
}
.review--featured .review__text { font-size: clamp(1.35rem, 2.6vw, 1.85rem); }
.review__text::before { content: '\201C'; color: var(--accent); margin-right: 0.1em; }
.review__footer { display: flex; flex-direction: column; gap: 0.2rem; }
.review__author {
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
}
.review__meta { font-size: 0.8rem; color: var(--muted); }

/* ─── CTA SECTION ────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(5rem, 11vw, 9rem) 0;
  background: linear-gradient(135deg, var(--dark) 0%, #150f06 50%, var(--dark) 100%);
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at center, rgba(201,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-h2 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.cta-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 2.75rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────────────────── */
/* Hero image scrubbed per-frame via JS — no CSS transition */
.hero__img { transition: none; }

/* Reveal base state — added by JS before observer fires */
.will-reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.94);
  transition:
    opacity  0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
/* About photo gets a bigger grow effect */
.about-photo-frame.will-reveal {
  transform: translateY(0) scale(0.82);
  transition:
    opacity  0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Triggered state */
.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-brand { max-width: 340px; }
.footer-logo { font-size: 1rem; font-weight: 600; color: var(--text); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem; }
.footer-logo span { color: var(--accent); }
.footer-meta { font-size: 0.8rem; color: var(--muted); line-height: 1.8; }
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--dark3);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}
.footer-socials a:hover { color: var(--accent); border-color: var(--accent); }
.footer-nav {
  display: flex;
  gap: 3rem;
}
.footer-nav__col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav__title { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.footer-nav__col a { font-size: 0.875rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-nav__col a:hover { color: var(--text); }
@media (max-width: 560px) { .footer-nav { gap: 2rem; } }

.footer-copy {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
