/* ==========================================================================
   ShowBar — Design System
   Warm editorial premium aesthetic. Photography-led. Mobile-first.
   ========================================================================== */

/* ---------- Custom properties ---------- */
:root {
  /* Palette — ink + cream base, one confident brand-orange accent */
  --ink: #110d09;              /* near-black warm charcoal — primary text / dark sections */
  --ink-soft: #1f1811;
  --ink-elevated: #241b13;
  --cream: #f7f4ee;            /* primary light background */
  --cream-deep: #eee7d8;       /* secondary light background, cards */
  --paper: #fffdf9;            /* lightest surface, cards on cream */
  --stone: #6b6255;            /* muted body text on light */
  --stone-light: #a89f8e;      /* captions, meta */
  --orange: #ff5c1a;           /* primary brand accent — vivid, modern, never red/burgundy */
  --orange-light: #ff9a5c;
  --orange-dim: #e8480c;
  --orange-deep: #b53400;
  --line: rgba(17, 13, 9, 0.1);
  --line-on-dark: rgba(247, 244, 238, 0.14);

  /* Type — clean modern grotesk, no serif */
  --font-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Fluid type scale — bolder, larger ceiling */
  --fs-h1: clamp(2.8rem, 7vw + 1rem, 7.2rem);
  --fs-h2: clamp(2.2rem, 4.4vw + 1rem, 4.2rem);
  --fs-h3: clamp(1.5rem, 1.8vw + 1rem, 2.1rem);
  --fs-lead: clamp(1.1rem, 0.7vw + 0.9rem, 1.45rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.78rem;

  /* Spacing rhythm */
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4.5rem, 10vw, 9.5rem);
  --radius-s: 8px;
  --radius-m: 18px;
  --container: 1320px;
  --container-narrow: 860px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --dur: 0.7s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
svg { display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -0.04em; }
h2 { font-size: var(--fs-h2); font-weight: 750; }
h3 { font-size: var(--fs-h3); font-weight: 700; }
p { text-wrap: pretty; }

.lead { font-size: var(--fs-lead); color: var(--stone); font-weight: 400; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: calc(var(--section-y) * 0.55); }
.section--dark { background: var(--ink); color: var(--cream); }
.section--deep { background: var(--cream-deep); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-dim);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.section--dark .eyebrow { color: var(--orange-light); }
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}

.grid { display: grid; gap: var(--gutter); }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.4s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--orange-dim); color: var(--ink); transform: translateY(-2px); }
.section--dark .btn--primary { background: var(--orange); color: var(--ink); }
.section--dark .btn--primary:hover { background: var(--orange-light); }

.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange-dim); transform: translateY(-2px); }
.section--dark .btn--ghost,
.hero .btn--ghost { border-color: var(--line-on-dark); color: var(--cream); }
.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover { border-color: var(--orange-light); color: var(--orange-light); }

.btn--icon svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.btn:hover .btn--icon svg,
.btn:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: 1.1rem;
  transition: padding 0.4s var(--ease), background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header.is-scrolled {
  background: rgba(248, 243, 234, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.7rem;
}
.site-header.is-dark-hero .nav-link,
.site-header.is-dark-hero .icon-burger span { color: var(--cream); }
.site-header.is-dark-hero.is-scrolled { background: rgba(17, 13, 9, 0.72); }
.site-header.is-dark-hero.is-scrolled .nav-link { color: var(--cream); }

.logo { display: flex; align-items: center; }
.logo-img { height: 32px; width: auto; display: block; }
.logo-img--dark { display: none; }
.site-header.is-dark-hero .logo-img--light { display: none; }
.site-header.is-dark-hero .logo-img--dark { display: block; }
@media (min-width: 640px) { .logo-img { height: 38px; } }

.main-nav { display: none; }
@media (min-width: 980px) {
  .main-nav { display: flex; align-items: center; gap: 2.1rem; }
  .nav-link {
    position: relative;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
    padding-block: 0.3rem;
  }
  .nav-link::after {
    content: "";
    position: absolute; left: 0; right: 100%; bottom: 0;
    height: 1px; background: var(--orange);
    transition: right 0.35s var(--ease);
  }
  .nav-link:hover::after, .nav-link.is-active::after { right: 0; }
  .has-dropdown { position: relative; }
  .dropdown {
    position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
    min-width: 280px;
    background: var(--paper);
    border-radius: var(--radius-m);
    box-shadow: 0 24px 48px -12px rgba(28,23,18,0.22);
    padding: 0.6rem;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
  .dropdown a {
    display: block; padding: 0.7rem 0.9rem; border-radius: var(--radius-s);
    font-size: 0.9rem; color: var(--ink-soft); transition: background 0.25s;
  }
  .dropdown a:hover { background: var(--cream-deep); color: var(--orange-dim); }
}

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-actions .btn { display: none; }
@media (min-width: 640px) { .header-actions .btn { display: inline-flex; } }

.icon-burger {
  display: flex; flex-direction: column; gap: 5px; width: 26px; padding: 0.4rem;
}
@media (min-width: 980px) { .icon-burger { display: none; } }
.icon-burger span { display: block; height: 1.5px; background: var(--ink); transition: transform 0.35s var(--ease), opacity 0.3s, background 0.3s; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  padding: 6.5rem var(--gutter) 3rem;
  display: flex; flex-direction: column; gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 1.7rem; }
.mobile-nav .mobile-nav__sub { display: flex; flex-direction: column; gap: 1rem; padding-left: 1rem; border-left: 1px solid var(--line); margin-top: 0.5rem; }
.mobile-nav .mobile-nav__sub a { font-family: var(--font-body); font-size: 1rem; color: var(--stone); }
body.nav-open { overflow: hidden; }
@media (min-width: 980px) { .mobile-nav { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute; inset: -4% -4% -4% -4%; z-index: 0;
  will-change: transform;
}
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 22s var(--ease) infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  0% { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.16) translate3d(-1.4%, -1.6%, 0); }
}
@media (prefers-reduced-motion: reduce) { .hero__media img, .hero__media video { animation: none; } }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(10,7,4,0.9) 0%, rgba(10,7,4,0.32) 46%, rgba(10,7,4,0.5) 100%);
}
.hero__scrim::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 15% 100%, rgba(255,92,26,0.28) 0%, transparent 55%);
  mix-blend-mode: screen;
}
.hero__content {
  position: relative; z-index: 3;
  padding-block: 7rem 5rem;
  width: 100%;
}
.hero--compact { min-height: 66svh; }
.hero__tag { color: var(--orange-light); }
.hero h1 { max-width: 20ch; }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero h1 .line span {
  display: inline-block; will-change: transform;
  transform: translateY(112%);
  transition: transform 1s var(--ease-out-expo);
}
.hero h1 .line:nth-child(1) span { transition-delay: 0.05s; }
.hero h1 .line:nth-child(2) span { transition-delay: 0.14s; }
.hero h1 .line:nth-child(3) span { transition-delay: 0.23s; }
.hero.is-ready h1 .line span { transform: translateY(0); }
.hero .eyebrow, .hero .lead, .hero__foot, .hero__stats {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: 0.4s;
}
.hero.is-ready .eyebrow, .hero.is-ready .lead, .hero.is-ready .hero__foot, .hero.is-ready .hero__stats { opacity: 1; transform: translateY(0); }
.hero.is-ready .hero__foot { transition-delay: 0.55s; }
.hero.is-ready .hero__stats { transition-delay: 0.68s; }
@media (prefers-reduced-motion: reduce) {
  .hero h1 .line span, .hero .eyebrow, .hero .lead, .hero__foot, .hero__stats { transition: none; transform: none; opacity: 1; }
}
.hero__foot {
  display: flex; flex-wrap: wrap; gap: 1rem 2.5rem;
  margin-top: 2.4rem; align-items: center;
}
.hero__stats { display: flex; gap: clamp(1.75rem, 4vw, 3.5rem); margin-top: 3.5rem; flex-wrap: wrap; }
.hero__stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 2.6vw, 2.6rem); color: var(--cream); letter-spacing: -0.02em; }
.hero__stat span { font-size: 0.8rem; color: rgba(247,244,238,0.66); letter-spacing: 0.02em; }

/* ---------- Glow orbs & ambient light ---------- */
.glow-orb {
  position: absolute; z-index: 1; border-radius: 50%;
  filter: blur(70px); pointer-events: none;
  background: radial-gradient(circle, var(--orange) 0%, transparent 72%);
  opacity: 0.5;
  animation: orb-float 10s ease-in-out infinite;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, -6%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .glow-orb { animation: none; } }

/* ---------- Marquee strip ---------- */
.marquee { overflow: hidden; background: var(--ink); position: relative; z-index: 3; }
.marquee__track {
  display: flex; width: max-content; padding-block: 1.1rem;
  animation: marquee-scroll 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee__item {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  color: var(--cream); white-space: nowrap; padding-inline: 1.2rem;
  letter-spacing: -0.01em;
}
.marquee__item::after { content: "✦"; color: var(--orange); font-size: 0.8em; margin-left: 1rem; }

.scroll-cue {
  position: absolute; bottom: 1.8rem; left: var(--gutter); z-index: 3;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,244,238,0.7);
}
@media (max-width: 719px) { .scroll-cue { display: none; } }
.scroll-cue__line { width: 1px; height: 34px; background: rgba(247,244,238,0.4); position: relative; overflow: hidden; }
.scroll-cue__line::after { content:""; position:absolute; inset:0; background: var(--orange); transform: translateY(-100%); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(-100%);} 50% { transform: translateY(0);} 100% { transform: translateY(100%);} }

/* ---------- Floating accent photo (hero composition) ---------- */
.hero__float {
  position: absolute; z-index: 2; border-radius: var(--radius-m);
  overflow: hidden; box-shadow: 0 30px 60px -12px rgba(0,0,0,0.55);
  border: 1px solid rgba(247,244,238,0.14);
  display: none;
}
@media (min-width: 1100px) {
  .hero__float { display: block; width: 240px; aspect-ratio: 3/4; top: 14%; right: 8%; transform: rotate(4deg); will-change: transform; }
}
.hero__float img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Custom cursor glow (desktop only) ---------- */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px;
  border-radius: 50%; pointer-events: none; z-index: 300;
  background: radial-gradient(circle, rgba(255,92,26,0.16) 0%, rgba(255,92,26,0) 70%);
  transform: translate(-50%, -50%); opacity: 0;
  transition: opacity 0.4s var(--ease);
  mix-blend-mode: screen;
  will-change: transform;
}
.cursor-glow.is-active { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor-glow { display: none; } }

/* ---------- Cards ---------- */
.card {
  background: var(--paper);
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(255,92,26,0.3); }
.card__media { aspect-ratio: 4/5; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 2rem 1.8rem; }
.card__body h3 { margin-bottom: 0.7rem; font-size: 1.15rem; }
.card__body p { color: var(--stone); font-size: 0.95rem; }

.service-card {
  position: relative;
  display: block;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 3/4;
  color: var(--cream);
}
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.service-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,11,7,0.86) 0%, rgba(15,11,7,0) 55%);
}
.service-card:hover img { transform: scale(1.07); }
.service-card__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.6rem;
}
.service-card__index { font-size: 0.78rem; color: var(--orange-light); letter-spacing: 0.1em; }
.service-card__body h3 { margin-top: 0.4rem; font-size: 1.3rem; }
.service-card__arrow {
  position: absolute; top: 1.4rem; right: 1.4rem; z-index: 2;
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid rgba(248,243,234,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.service-card:hover .service-card__arrow { background: var(--orange); border-color: var(--orange); transform: rotate(45deg); }
.service-card__arrow svg { width: 16px; height: 16px; }

/* ---------- Testimonials ---------- */
.testimonials-strip {
  display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1rem; margin: 0 calc(var(--gutter) * -1); padding-inline: var(--gutter);
  scrollbar-width: none;
}
.testimonials-strip::-webkit-scrollbar { display: none; }
.testimonial {
  scroll-snap-align: start;
  flex: 0 0 min(420px, 84vw);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.testimonial__quote { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.5; }
.testimonial__author { display: flex; align-items: center; gap: 0.8rem; font-size: 0.85rem; color: var(--stone); margin-top: auto; }
.testimonial__author b { color: var(--ink); font-weight: 600; display: block; }
.stars { color: var(--orange); letter-spacing: 0.1em; font-size: 0.9rem; }

/* ---------- Gallery ---------- */
.gallery {
  columns: 2; column-gap: 1.1rem;
}
@media (min-width: 720px) { .gallery { columns: 3; column-gap: 1.4rem; } }
.gallery img, .gallery a { break-inside: avoid; margin-bottom: 1.1rem; border-radius: var(--radius-s); overflow: hidden; }
.gallery a { display: block; position: relative; }
.gallery a img { transition: transform 0.8s var(--ease); }
.gallery a:hover img { transform: scale(1.05); }

/* Full-bleed cinematic photo break — used between sections for scale */
.photo-break { position: relative; height: clamp(60vh, 80vh, 92vh); overflow: hidden; }
.photo-break__media { position: absolute; inset: -6%; will-change: transform; }
.photo-break__media img { width: 100%; height: 100%; object-fit: cover; }
.photo-break::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,7,4,0.7) 0%, rgba(10,7,4,0.05) 40%, rgba(10,7,4,0.05) 70%, rgba(10,7,4,0.55) 100%);
}
.photo-break__caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(2rem, 5vw, 4rem) var(--gutter);
  color: var(--cream);
}
.photo-break__caption h2 { max-width: 16ch; }

/* ---------- Video block — framed, integrated into page story ---------- */
.video-feature {
  position: relative; border-radius: var(--radius-m); overflow: hidden; aspect-ratio: 16/9;
  isolation: isolate;
}
.video-feature__frame {
  position: absolute; inset: -14px; z-index: -1;
  border: 1px solid var(--line-on-dark); border-radius: calc(var(--radius-m) + 10px);
  pointer-events: none;
}
.video-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.video-feature:hover img { transform: scale(1.03); }
.video-feature__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(10,7,4,0.32);
}
.video-feature__story {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  background: linear-gradient(0deg, rgba(10,7,4,0.85) 0%, rgba(10,7,4,0) 65%);
  pointer-events: none;
}
.video-feature__story p { max-width: 34ch; color: rgba(247,244,238,0.82); font-size: 0.95rem; }
.play-btn {
  position: relative;
  width: 88px; height: 88px; border-radius: 999px;
  background: rgba(247,244,238,0.94);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.play-btn::before {
  content: ""; position: absolute; inset: -14px; border-radius: 999px;
  border: 1px solid rgba(247,244,238,0.5);
  animation: ring-pulse 2.6s var(--ease) infinite;
}
@keyframes ring-pulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}
.play-btn svg { width: 24px; height: 24px; margin-left: 3px; color: var(--ink); }
.video-feature:hover .play-btn { transform: scale(1.08); background: var(--orange); }

/* ---------- Numbers / stat rows ---------- */
.stat-row { display: flex; flex-wrap: wrap; gap: 2.5rem 3.5rem; }
.stat { }
.stat b { font-family: var(--font-display); font-size: clamp(2.1rem, 3vw, 3rem); display: block; color: var(--orange-dim); }
.section--dark .stat b { color: var(--orange-light); }
.stat span { color: var(--stone); font-size: 0.88rem; }
.section--dark .stat span { color: rgba(248,243,234,0.65); }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; gap: 2.4rem; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { counter-increment: step; position: relative; padding-top: 2.6rem; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 1.6rem; color: var(--orange);
  position: absolute; top: 0; left: 0;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step p { color: var(--stone); font-size: 0.92rem; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.5rem; font-family: var(--font-display); font-size: 1.05rem; gap: 1rem;
}
.faq-item__icon { width: 20px; height: 20px; position: relative; flex: none; }
.faq-item__icon::before, .faq-item__icon::after {
  content: ""; position: absolute; background: var(--ink); top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-item__icon::before { width: 14px; height: 1.4px; }
.faq-item__icon::after { width: 1.4px; height: 14px; transition: transform 0.35s var(--ease); }
.faq-item.is-open .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg) scale(0); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-item__a p { padding-bottom: 1.5rem; color: var(--stone); max-width: 62ch; }

/* ---------- Form ---------- */
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label { font-size: 0.8rem; color: var(--stone); letter-spacing: 0.02em; }
.form-field input, .form-field textarea, .form-field select {
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding-block: 0.7rem; font-size: 1rem; transition: border-color 0.3s;
}
.section--dark .form-field input,
.section--dark .form-field select,
.section--dark .form-field textarea { border-color: var(--line-on-dark); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--orange); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 0.78rem; color: var(--stone-light); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; border-radius: var(--radius-m); overflow: hidden;
  color: var(--cream); padding: clamp(2.5rem, 6vw, 5rem);
}
.cta-banner__media { position: absolute; inset: 0; z-index: 0; }
.cta-banner__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner::after { content: ""; position: absolute; inset: 0; background: rgba(15,11,7,0.66); z-index: 1; }
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner__row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 2rem; }
.cta-banner h2 { max-width: 16ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding-block: 4.5rem 2rem; }
.footer-grid { display: grid; gap: 3rem; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }
.footer-brand .logo-img { height: 40px; }
.footer-brand p { color: rgba(248,243,234,0.62); margin-top: 1rem; max-width: 32ch; font-size: 0.92rem; }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-light); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { color: rgba(248,243,234,0.78); font-size: 0.94rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--orange-light); }
.footer-social { display: flex; gap: 0.9rem; margin-top: 1.4rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--line-on-dark); display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { margin-top: 4rem; padding-top: 1.6rem; border-top: 1px solid var(--line-on-dark); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.78rem; color: rgba(248,243,234,0.5); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-group.is-visible .reveal-child { opacity: 1; transform: translateY(0); }
.reveal-child { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-child:nth-child(2) { transition-delay: 0.08s; }
.reveal-child:nth-child(3) { transition-delay: 0.16s; }
.reveal-child:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Misc utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.divider { height: 1px; background: var(--line); border: 0; }
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--line); border-radius: 999px; padding: 0.5rem 1rem;
  font-size: 0.8rem; color: var(--stone);
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
button.badge { cursor: pointer; }
button.badge:hover { border-color: var(--orange); color: var(--orange-dim); }
button.badge.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.section--dark .badge { border-color: var(--line-on-dark); color: rgba(248,243,234,0.8); }
.kicker-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.kicker-row .lead { max-width: 46ch; }

/* ---------- Price list (menu-style, bold) ---------- */
.price-list { display: flex; flex-direction: column; }
.price-list__item {
  display: flex; align-items: baseline; gap: 1rem;
  padding-block: 1.9rem;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
.price-list__item:hover { padding-left: 0.6rem; }
.section--dark .price-list__item { border-color: var(--line-on-dark); }
.price-list__name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 1.6vw, 1.55rem); letter-spacing: -0.01em; }
.price-list__note { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.88rem; color: var(--stone); margin-top: 0.35rem; letter-spacing: 0; }
.section--dark .price-list__note { color: rgba(247,244,238,0.55); }
.price-list__leader { flex: 1; border-bottom: 1px dotted var(--stone-light); height: 0; transform: translateY(-0.5em); min-width: 2rem; }
.price-list__value { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 2.4vw, 2.1rem); color: var(--orange-dim); white-space: nowrap; letter-spacing: -0.02em; }
.section--dark .price-list__value { color: var(--orange); }

/* ---------- Check list ---------- */
.check-list { display: flex; flex-direction: column; gap: 0.9rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.96rem; color: var(--stone); }
.check-list li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 0.15em; border-radius: 999px;
  background: var(--orange); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c1712' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 12 9 17 20 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}

/* ---------- Package tier cards (bold) ---------- */
.tier-cards { display: grid; gap: 1.6rem; }
@media (min-width: 780px) { .tier-cards { grid-template-columns: repeat(3, 1fr); } }
.tier-card {
  position: relative;
  border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 2.6rem 2.2rem; display: flex; flex-direction: column; gap: 1.1rem;
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.section--dark .tier-card { border-color: var(--line-on-dark); }
.tier-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: 0 24px 48px -18px rgba(255,92,26,0.35); }
.tier-card--featured { border-color: var(--orange); background: linear-gradient(160deg, rgba(255,92,26,0.1), transparent 60%); }
.tier-card--featured::before {
  content: "Популярный выбор"; position: absolute; top: -0.9rem; left: 2.2rem;
  background: var(--orange); color: var(--ink); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 0.4rem 0.9rem; border-radius: 999px;
}
.tier-card__guests { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); font-weight: 600; }
.section--dark .tier-card__guests { color: rgba(247,244,238,0.6); }
.tier-card__price { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 4vw, 3.4rem); color: var(--orange); letter-spacing: -0.03em; line-height: 1; }
.tier-card__save { font-size: 0.85rem; color: var(--stone-light); font-weight: 600; }
.tier-card ul { display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.98rem; color: var(--stone); margin-top: 0.6rem; }
.section--dark .tier-card ul { color: rgba(247,244,238,0.72); }

/* ---------- Two-col media/text section ---------- */
.split { display: grid; gap: var(--gutter); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__media { border-radius: var(--radius-m); overflow: hidden; aspect-ratio: 4/5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

::selection { background: var(--orange); color: var(--ink); }
