/* ============================================================
   BÄCK FILM — Cinematic Videographer Portfolio
   Design system: warm palette + bold grotesque + glass boxes
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500;1,9..144,600&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette (colorhunt: fff2d7 ffe0b5 f8c794 d8ae7e) */
  --cream:       #FFF2D7;
  --peach:       #FFE0B5;
  --apricot:     #F8C794;
  --caramel:     #D8AE7E;

  /* Neutrals derived for contrast */
  /* --- WINE-RED ALTERNATIVE (tested 2026, currently OFF) -----------------
     To switch the dark brown to wine red again, set:
       --ink:    #2B2019  ->  #4F0E1F
       --ink-90: #372A21  ->  #5D1C2D
       every  rgba(43, 32, 25, x)  ->  rgba(79, 14, 31, x)   (RGB 43,32,25 -> 79,14,31)
     Leave --ink-soft / --ink-faint and the warm palette unchanged.
     Wine text keeps AAA contrast (13.4:1 on cream).
     --------------------------------------------------------------------- */
  --ink:         #2B2019;   /* primary text / dark surfaces */
  --ink-90:      #372A21;
  --ink-soft:    #5A4A3D;   /* secondary text */
  --ink-faint:   #7D6A5A;   /* tertiary / labels — darkened to clear 4.5:1 on cream */
  --white:       #FFFFFF;
  --paper:       #FBF6EC;   /* subtle card surface on cream */

  /* Semantic */
  --bg:          var(--cream);
  --fg:          var(--ink);
  --muted:       var(--ink-soft);
  --accent:      var(--caramel);
  --line:        rgba(43, 32, 25, 0.12);
  --line-strong: rgba(43, 32, 25, 0.22);

  /* Glass (over imagery) */
  --glass-bg:    rgba(255, 248, 236, 0.10);
  --glass-bg-2:  rgba(43, 32, 25, 0.28);
  --glass-line:  rgba(255, 255, 255, 0.28);

  /* Type scale */
  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.5rem);
  --step-5:  clamp(3.2rem, 2rem + 5.6vw, 7rem);

  /* Spacing */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2.5rem;
  --sp-5: 4rem;
  --sp-6: 6rem;
  --sp-7: 9rem;

  --radius:    18px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(43, 32, 25, 0.06);
  --shadow:    0 14px 40px rgba(43, 32, 25, 0.12);
  --shadow-lg: 0 30px 70px rgba(43, 32, 25, 0.20);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;

  --container: 1240px;
  --nav-h: 76px;

  /* z-index scale */
  --z-nav: 100;
  --z-overlay: 200;
  --z-toast: 1000;
}

/* ---------- 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; } }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2.5px solid var(--ink); outline-offset: 3px; border-radius: 4px; }
.glass :focus-visible, .hero :focus-visible, .footer :focus-visible { outline-color: var(--cream); }

/* ---------- Typography helpers ---------- */
.display {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.serif { font-family: 'Bricolage Grotesque', system-ui, sans-serif; }
.script {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero .eyebrow, .glass .eyebrow, .footer .eyebrow, .dark-section .eyebrow { color: rgba(255,255,255,0.75); }

h1, h2, h3 { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-weight: 700; line-height: 1.05; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: var(--sp-6); }
.section-sm { padding-block: var(--sp-5); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }

.section-head { max-width: 720px; margin-bottom: var(--sp-4); }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: var(--step-3); margin-block: 0.4rem 0.75rem; }
.section-head p { color: var(--muted); font-size: var(--step-1); font-family: 'Fraunces', Georgia, serif; font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.95rem 1.7rem;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: var(--step-0);
  letter-spacing: 0.01em;
  transition: transform var(--dur) var(--ease), background-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 1.05em; height: 1.05em; }

.btn-primary { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--ink-90); box-shadow: var(--shadow); transform: translateY(-2px); }

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

.btn-outline { border: 1.5px solid var(--line-strong); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: translateY(-2px); }

/* Glass buttons (over imagery) */
.btn-glass {
  background: rgba(255,255,255,0.14);
  border: 1.5px solid var(--glass-line);
  color: var(--white);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-lg { padding: 1.1rem 2.1rem; font-size: var(--step-1); }
.text-link { display: inline-flex; align-items: center; gap: 0.45em; font-weight: 500; border-bottom: 1.5px solid var(--line-strong); padding-bottom: 2px; transition: gap .3s var(--ease), border-color .3s; }
.text-link:hover { gap: 0.8em; border-color: var(--ink); }
.text-link svg { width: 0.95em; height: 0.95em; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.nav-inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-weight: 700; font-size: 1.4rem; letter-spacing: 0.02em; display: flex; align-items: baseline; gap: 0; color: var(--white); transition: color .4s; }
.brand .dot { color: var(--caramel); }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav-links a { position: relative; font-size: 0.95rem; font-weight: 400; color: rgba(255,255,255,0.9); letter-spacing: 0.02em; padding: 0.4rem 0; transition: color .3s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-links a[aria-current="page"] { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

/* Scrolled state -> solid cream */
.nav.scrolled { background: rgba(255, 242, 215, 0.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line), var(--shadow-sm); }
.nav.scrolled .brand { color: var(--ink); }
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav.scrolled .nav-links a[aria-current="page"] { color: var(--ink); }
.nav.scrolled .lang-toggle { color: var(--ink-soft); border-color: var(--line-strong); }
.nav.scrolled .nav-cta { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.nav.scrolled .burger span { background: var(--ink); }

/* Language toggle */
.lang-toggle { display: inline-flex; align-items: center; gap: 0.35rem; border: 1.3px solid var(--glass-line); border-radius: var(--radius-pill); padding: 0.4rem 0.55rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; color: var(--white); transition: color .3s, border-color .3s; }
.lang-toggle .l { padding: 0.15rem 0.4rem; border-radius: var(--radius-pill); transition: background-color .3s, color .3s; opacity: 0.6; }
.lang-toggle .l.active { background: var(--caramel); color: var(--ink); opacity: 1; }

.nav-cta { display: inline-flex; align-items: center; padding: 0.6rem 1.25rem; min-height: 42px; border-radius: var(--radius-pill); border: 1.4px solid var(--glass-line); color: var(--white); font-size: 0.9rem; font-weight: 500; transition: all .3s var(--ease); }
.nav-cta:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-size: clamp(1.8rem, 8vw, 2.6rem); color: var(--cream); padding: 0.5rem 1rem; opacity: 0; transform: translateY(14px); }
.mobile-menu.open a { animation: menuIn .5s var(--ease) forwards; }
.mobile-menu.open a:nth-child(1){animation-delay:.08s}
.mobile-menu.open a:nth-child(2){animation-delay:.14s}
.mobile-menu.open a:nth-child(3){animation-delay:.20s}
.mobile-menu.open a:nth-child(4){animation-delay:.26s}
.mobile-menu.open a:nth-child(5){animation-delay:.32s}
.mobile-menu.open a:nth-child(6){animation-delay:.38s}
@keyframes menuIn { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media video { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.hero-media video { background: var(--ink); }
.hero-media::after { content: ''; position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(43,32,25,0.55) 0%, rgba(43,32,25,0.15) 30%, rgba(43,32,25,0.35) 62%, rgba(43,32,25,0.82) 100%),
  radial-gradient(120% 90% at 80% 10%, rgba(216,174,126,0.25), transparent 55%);
}
.hero-inner { position: relative; width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); padding-block: clamp(3rem, 9vh, 7rem) clamp(3rem, 9vh, 6rem); }
.hero h1 { font-size: var(--step-5); font-weight: 800; line-height: 0.96; letter-spacing: -0.015em; max-width: 15ch; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero h1 .script { display: block; font-weight: 500; font-size: 0.62em; letter-spacing: 0; margin-top: 0.1em; color: var(--apricot); text-shadow: none; }
.hero .lede { margin-top: 1.5rem; max-width: 46ch; font-size: var(--step-1); color: rgba(255,255,255,0.9); font-family: 'Fraunces', Georgia, serif; font-style: italic; }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero-meta { position: absolute; right: clamp(1.25rem, 4vw, 2.5rem); bottom: clamp(3rem, 9vh, 6rem); display: flex; flex-direction: column; gap: 0.35rem; text-align: right; }
.hero-meta .n { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-size: 2rem; font-weight: 700; }
.hero-meta .l { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.scroll-cue { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.4rem; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.scroll-cue .bar { width: 1.5px; height: 42px; background: linear-gradient(rgba(255,255,255,0.7), transparent); animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0%{transform:scaleY(0);transform-origin:top} 45%{transform:scaleY(1);transform-origin:top} 55%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* Floating glass stat cards (reference inspiration) */
.hero-cards { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.gcard {
  position: absolute; pointer-events: auto;
  background: var(--glass-bg); border: 1px solid var(--glass-line);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-radius: var(--radius-pill); padding: 0.6rem 1.05rem;
  font-size: 0.85rem; font-weight: 500; color: var(--white);
  box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.gcard svg { width: 1em; height: 1em; color: var(--apricot); }
.gcard.c1 { top: 20%; right: 8%; }
.gcard.c2 { top: 38%; right: 22%; }
.gcard.c3 { top: 30%; right: 4%; }
@media (max-width: 900px){ .hero-cards, .hero-meta { display: none; } }

/* ============================================================
   FEATURE / SPLIT SECTIONS
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
/* height:auto lets aspect-ratio win over the img's width/height attributes
   (those attributes stay for layout-shift prevention while loading). */
.split-media img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; transition: transform 1.2s var(--ease); }
.split-media:hover img { transform: scale(1.05); }
.split-body h2 { font-size: var(--step-3); margin-block: 0.5rem 1rem; }
.split-body p + p { margin-top: 1rem; }
.split-body p { color: var(--muted); }
.split-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* Signature line stat row */
/* "auto 1fr": the short value ("20") only takes the room it needs, so the
   longer one ("Jönköping, Sverige") gets the rest and stays on one line. */
.stats { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem clamp(2rem, 4vw, 3.5rem); margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
/* Flex column + growing value keeps the small grey labels aligned
   even when a value wraps to two lines (e.g. "Jönköping, Sverige"). */
.stats .s { display: flex; flex-direction: column; }
.stats .s .n { flex: 1; font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-size: var(--step-2); font-weight: 700; line-height: 1.15; text-wrap: balance; }
.stats .s .l { font-size: 0.85rem; color: var(--ink-faint); letter-spacing: 0.04em; margin-top: 0.3rem; }

/* ============================================================
   PORTFOLIO / GALLERY
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--sp-4); }
.filter { padding: 0.55rem 1.2rem; border-radius: var(--radius-pill); border: 1.3px solid var(--line-strong); font-size: 0.9rem; color: var(--ink-soft); transition: all .3s var(--ease); }
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery .tile { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--ink); transition: box-shadow .4s var(--ease), transform .4s var(--ease); }
.gallery .tile img { width: 100%; height: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery .tile:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.gallery .tile:hover img { transform: scale(1.06); }
.gallery .tile .overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; background: linear-gradient(0deg, rgba(43,32,25,0.78) 0%, rgba(43,32,25,0.1) 45%, transparent 70%); opacity: 0; transition: opacity .4s var(--ease); color: var(--white); }
.gallery .tile:hover .overlay, .gallery .tile:focus-within .overlay { opacity: 1; }
.gallery .tile .overlay .cat { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--apricot); }
.gallery .tile .overlay .t { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-size: 1.3rem; font-weight: 600; margin-top: 0.2rem; }
.gallery .tile.play::before { content: ''; position: absolute; inset: 0; margin: auto; width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,0.16); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1.5px solid var(--glass-line); z-index: 2; transition: transform .4s var(--ease), background .3s; }
.gallery .tile.play::after { content: ''; position: absolute; inset: 0; margin: auto; width: 0; height: 0; border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent #fff; z-index: 3; transform: translateX(2px); }
.gallery .tile.play:hover::before { transform: scale(1.1); background: rgba(255,255,255,0.28); }
.tile.hide { display: none; }

/* ============================================================
   REVIEWS
   ============================================================ */
.dark-section { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.dark-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(80% 60% at 15% 0%, rgba(216,174,126,0.18), transparent 60%), radial-gradient(60% 50% at 100% 100%, rgba(248,199,148,0.12), transparent 55%); pointer-events: none; }
.dark-section .section-head h2 { color: var(--cream); }
.dark-section .section-head p { color: rgba(255,242,215,0.7); }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; position: relative; }
.review {
  background: rgba(255,248,236,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 2rem 1.8rem;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; flex-direction: column;
}
.review .stars { display: flex; gap: 3px; color: var(--apricot); margin-bottom: 1rem; }
.review .stars svg { width: 1.05em; height: 1.05em; }
.review .quote { font-family: 'Fraunces', Georgia, serif; font-size: 1.35rem; line-height: 1.5; font-style: italic; color: var(--cream); }
.review .who { margin-top: auto; padding-top: 1.5rem; display: flex; align-items: center; gap: 0.85rem; }
.review .who .av { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(255,255,255,0.2); }
.review .who .name { font-weight: 600; font-size: 0.95rem; color: var(--cream); }
.review .who .role { font-size: 0.82rem; color: rgba(255,242,215,0.6); }

/* ============================================================
   QUOTES ROW (light, text-only reviews)
   ============================================================ */
.quotes-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); }
.quote-item { border-top: 2px solid var(--caramel); padding-top: 1.6rem; display: flex; flex-direction: column; }
.quote-item .q { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: var(--step-1); line-height: 1.45; color: var(--ink); }
.quote-item .who { margin-top: auto; padding-top: 1.4rem; }
.quote-item .who .name { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.quote-item .who .role { font-size: 0.83rem; color: var(--ink-faint); margin-top: 0.1rem; }

/* ============================================================
   CASE STUDIES (video + process text)
   ============================================================ */
.case { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.case + .case { margin-top: var(--sp-6); }
/* Mirror the column ratio too — otherwise the video lands in the narrower
   column and the reversed case renders smaller than the others. */
.case.reverse { grid-template-columns: 1fr 1.15fr; }
.case.reverse .case-media { order: 2; }
.case-media { position: relative; }
.video-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16 / 9; background: var(--ink); }
.video-frame[data-yt] { cursor: pointer; }
.video-frame.playing { cursor: default; }
.video-frame.playing::after, .video-frame.playing .chip { display: none; }
.video-frame img, .video-frame video, .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; transition: transform 1.2s var(--ease); }
.video-frame:hover img { transform: scale(1.04); }
.video-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(43,32,25,0.35), transparent 45%); pointer-events: none; }
.video-frame .play-btn {
  position: absolute; inset: 0; margin: auto; z-index: 2;
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,0.14); border: 1.5px solid var(--glass-line);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: grid; place-items: center; color: var(--white);
  transition: transform .4s var(--ease), background .3s;
}
.video-frame .play-btn svg { width: 26px; height: 26px; transform: translateX(2px); }
.video-frame:hover .play-btn { transform: scale(1.08); background: rgba(255,255,255,0.26); }
.video-frame .chip {
  position: absolute; bottom: 1rem; right: 1rem; z-index: 2;
  background: var(--glass-bg-2); border: 1px solid var(--glass-line);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--white); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem; border-radius: var(--radius-pill);
}
.case-body .num { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-size: var(--step-3); font-weight: 800; color: var(--caramel); line-height: 1; }
.case-body h3 { font-size: var(--step-2); margin-block: 0.5rem 1rem; }
.case-body p { color: var(--muted); }
.case-body p + p { margin-top: 0.9rem; }
.case-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.case-meta span { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); border: 1.2px solid var(--line-strong); border-radius: var(--radius-pill); padding: 0.35rem 0.85rem; }
.case-body .text-link { margin-top: 1.5rem; }

@media (max-width: 900px) {
  .quotes-row { grid-template-columns: 1fr; gap: 2rem; }
  /* Include .reverse — it has a two-column rule with higher specificity that
     would otherwise keep the reversed case side-by-side on mobile. */
  .case, .case.reverse { grid-template-columns: 1fr; gap: 1.75rem; }
  .case.reverse .case-media { order: 0; }
  .case + .case { margin-top: var(--sp-5); }
}

/* ============================================================
   AVAILABILITY NOTICE (frosted-glass card, like the hero pills
   but larger, rectangular, with softer corners)
   ============================================================ */
.availability {
  position: relative; overflow: hidden;
  max-width: 720px; margin-inline: auto; margin-bottom: var(--sp-5);
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 20px;
  /* Warm frosted amber glass — tinted with the palette, not white. */
  background:
    linear-gradient(150deg, rgba(255, 224, 181, 0.55) 0%, rgba(248, 199, 148, 0.42) 52%, rgba(216, 174, 126, 0.45) 100%);
  -webkit-backdrop-filter: blur(16px) saturate(1.15); backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), var(--shadow);
}
/* Soft diagonal sheen to sell the glass */
.availability::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 40%);
}
.availability > * { position: relative; }
.availability .status {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 1rem;
}
.availability .status .dot {
  width: 9px; height: 9px; border-radius: 50%; background: #4E9A5B;
  box-shadow: 0 0 0 0 rgba(78, 154, 91, 0.5);
  animation: availPulse 2.4s var(--ease) infinite;
}
@keyframes availPulse {
  0% { box-shadow: 0 0 0 0 rgba(78,154,91,0.5); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(78,154,91,0); }
}
.availability h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: var(--step-2); font-weight: 700; line-height: 1.15; color: var(--ink);
  max-width: 20ch; margin-inline: auto;
}
.availability p {
  margin-top: 0.9rem; color: var(--muted); font-size: 0.98rem; line-height: 1.65;
  max-width: 56ch; margin-inline: auto;
}
.availability .btn { margin-top: 1.75rem; }
@media (prefers-reduced-motion: reduce) { .availability .status .dot { animation: none; } }

/* Compact variant — fits the narrow contact column, left-aligned to match
   the info list below it. */
.availability.compact {
  max-width: none; margin-inline: 0; text-align: left;
  margin-block: 1.75rem 2.25rem;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  border-radius: 16px;
}
.availability.compact .status { margin-bottom: 0.85rem; }
.availability.compact h3 { font-size: var(--step-1); max-width: none; margin-inline: 0; }
.availability.compact p { font-size: 0.92rem; max-width: none; margin-inline: 0; margin-top: 0.7rem; }

/* ============================================================
   SHOWREEL (text · video · text — on a dark surface)
   ============================================================ */
.reel { display: grid; grid-template-columns: 1fr minmax(0, 1.8fr) 1fr; gap: clamp(1.5rem, 3.5vw, 3rem); align-items: center; }
.reel-text .k {
  display: block; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--caramel);
  padding-top: 1.1rem; border-top: 2px solid var(--caramel);
  margin-bottom: 0.7rem;
}
.reel-text p { color: rgba(255, 242, 215, 0.78); font-size: 0.98rem; line-height: 1.7; }
.reel-text p + p { margin-top: 0.9rem; }
/* Symmetric framing: the side blocks hug the video */
.reel-text.left { text-align: right; }
.reel-text.right { text-align: left; }

@media (max-width: 900px) {
  .reel { grid-template-columns: 1fr; gap: 2rem; }
  .reel-text.left, .reel-text.right { text-align: left; }
  .reel-media { order: -1; } /* showreel leads on mobile */
}

/* ============================================================
   FORMATS (one film, every channel — 16:9 morphs to 9:16)
   ============================================================ */
.dark-section .split-body p { color: rgba(255, 242, 215, 0.78); }
.dark-section .split-body h2 { color: var(--cream); }

.format-stage { position: relative; display: grid; place-items: center; min-height: 420px; }
.format-frame {
  display: grid; place-items: center;
  width: 300px; height: 169px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  background: rgba(255, 248, 236, 0.06);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
  animation: formatMorph 8s var(--ease) infinite;
  will-change: width, height;
}
.format-frame .play {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid var(--glass-line);
  display: grid; place-items: center; color: var(--cream);
}
.format-frame .play svg { width: 20px; height: 20px; transform: translateX(1px); }
@keyframes formatMorph {
  0%, 34%   { width: 300px; height: 169px; }
  46%, 84%  { width: 169px; height: 300px; }
  96%, 100% { width: 300px; height: 169px; }
}

.format-label { position: absolute; bottom: 0.75rem; left: 0; right: 0; height: 1.3em; text-align: center; }
.format-label span {
  position: absolute; inset-inline: 0;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 242, 215, 0.65);
}
.format-label .a { animation: formatTagA 8s var(--ease) infinite; }
.format-label .b { opacity: 0; animation: formatTagB 8s var(--ease) infinite; }
@keyframes formatTagA {
  0%, 34% { opacity: 1; } 46%, 84% { opacity: 0; } 96%, 100% { opacity: 1; }
}
@keyframes formatTagB {
  0%, 34% { opacity: 0; } 46%, 84% { opacity: 1; } 96%, 100% { opacity: 0; }
}

.channel-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; }
.channel-list span {
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255, 242, 215, 0.85);
  border: 1.2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill); padding: 0.35rem 0.85rem;
}
.channel-list span b { color: var(--apricot); font-weight: 600; }

@media (max-width: 900px) {
  .format-stage { min-height: 380px; }
}
@media (prefers-reduced-motion: reduce) {
  .format-frame { animation: none; }
  .format-label .a { animation: none; opacity: 1; }
  .format-label .b { animation: none; opacity: 0; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { position: relative; overflow: hidden; border-radius: 0; color: var(--white); }
.cta-banner .bg { position: absolute; inset: 0; z-index: -2; }
.cta-banner .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(43,32,25,0.55), rgba(43,32,25,0.78)); }
.cta-inner { text-align: center; padding-block: clamp(4rem, 10vw, 7rem); }
.cta-inner h2 { font-size: var(--step-4); font-weight: 700; max-width: 16ch; margin-inline: auto; }
.cta-inner p { margin-top: 1rem; color: rgba(255,255,255,0.85); font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: var(--step-1); }
.cta-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* Glass panel (reusable, over imagery) */
.glass {
  background: var(--glass-bg); border: 1px solid var(--glass-line);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--white); box-shadow: var(--shadow);
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-hero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.page-hero .bg { position: absolute; inset: 0; z-index: -2; }
.page-hero .bg img { width: 100%; height: 115%; object-fit: cover; will-change: transform; }
/* Two independent banner adjustments — combine them per image as needed. */
/* 1. Bias the crop toward the top, so heads aren't cut off on wide screens. */
.page-hero .bg img.focus-top { object-position: center 15%; }
/* 2. Over-size the photo so there is horizontal room to shift the subject
      right, away from the text in the bottom-left. Wide screens only. */
@media (min-width: 1024px) {
  /* max-width:none is required — the global img reset caps width at 100%. */
  .page-hero .bg img.shift-right { width: 118%; max-width: none; }
}
.page-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(43,32,25,0.5) 0%, rgba(43,32,25,0.2) 40%, rgba(43,32,25,0.8) 100%); }
.page-hero .inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); padding-block: 3.5rem; }
.page-hero h1 { font-size: var(--step-4); font-weight: 800; letter-spacing: -0.01em; }
.page-hero .sub { margin-top: 0.8rem; max-width: 50ch; color: rgba(255,255,255,0.88); font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: var(--step-1); }
.breadcrumb { font-size: 0.8rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--white); text-decoration: underline; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.price-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.25rem; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); position: relative; }
.price-card.featured .price, .price-card.featured h3 { color: var(--cream); }
.price-card.featured .feat li { color: rgba(255,242,215,0.85); }
.price-card.featured .feat svg { color: var(--apricot); }
.badge { position: absolute; top: 1.4rem; right: 1.4rem; background: var(--caramel); color: var(--ink); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: var(--radius-pill); }
.price-card .tier { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); }
.price-card.featured .tier { color: var(--apricot); }
.price-card h3 { font-size: 1.7rem; margin-top: 0.3rem; }
.price-card .price { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-size: 2.6rem; font-weight: 700; margin-block: 1rem 0.2rem; }
.price-card .price small { font-size: 0.95rem; font-weight: 400; color: var(--ink-faint); font-family: 'Inter', sans-serif; }
.price-card .desc { color: var(--muted); font-size: 0.95rem; }
.price-card.featured .desc { color: rgba(255,242,215,0.75); }
.feat { list-style: none; padding: 0; margin: 1.75rem 0; display: grid; gap: 0.75rem; }
.feat li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.95rem; color: var(--ink-soft); }
.feat svg { width: 1.15em; height: 1.15em; color: var(--caramel); flex-shrink: 0; margin-top: 0.15em; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* FAQ */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.5rem 0; font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.faq-q .ic { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform .4s var(--ease); }
.faq-q .ic::before, .faq-q .ic::after { content: ''; position: absolute; inset: 0; margin: auto; background: var(--ink); border-radius: 2px; }
.faq-q .ic::before { width: 15px; height: 2px; }
.faq-q .ic::after { width: 2px; height: 15px; transition: transform .4s var(--ease); }
.faq-item.open .faq-q .ic::after { transform: rotate(90deg); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .45s var(--ease); }
.faq-a p { padding-bottom: 1.5rem; color: var(--muted); max-width: 62ch; }

/* ============================================================
   ABOUT specifics
   ============================================================ */
.about-lead { font-family: 'Fraunces', Georgia, serif; font-size: var(--step-2); font-style: italic; line-height: 1.4; color: var(--ink); max-width: 24ch; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); transition: transform .4s var(--ease), box-shadow .4s; }
.value:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.value .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--peach); display: grid; place-items: center; margin-bottom: 1.1rem; color: var(--ink); }
.value .ic svg { width: 26px; height: 26px; }
.value h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.value p { color: var(--muted); font-size: 0.95rem; }

.logos { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: center; justify-content: center; opacity: 0.6; }
.logos span { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-size: 1.2rem; letter-spacing: 0.05em; font-style: italic; color: var(--ink-soft); }

/* ============================================================
   CONTACT / FORMS
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); }
.contact-info .lead { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: var(--step-2); line-height: 1.4; margin-bottom: 2rem; }
.contact-list { list-style: none; padding: 0; display: grid; gap: 1.4rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ic { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; background: var(--peach); display: grid; place-items: center; color: var(--ink); }
.contact-list .ic svg { width: 22px; height: 22px; }
.contact-list .k { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }
.contact-list .v { font-weight: 500; font-size: 1.05rem; }
.contact-list a.v:hover { color: var(--caramel); }
.socials { display: flex; gap: 0.7rem; margin-top: 2rem; }
.socials a { width: 46px; height: 46px; border-radius: 50%; border: 1.3px solid var(--line-strong); display: grid; place-items: center; color: var(--ink); transition: all .3s var(--ease); }
.socials a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.75rem, 3.5vw, 3rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.35rem; }
.field label { display: block; font-size: 0.88rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--ink); }
.field label .req { color: #B4451F; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.9rem 1rem; min-height: 48px;
  border: 1.4px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--white); color: var(--ink); font: inherit; font-size: 1rem;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--caramel); box-shadow: 0 0 0 3px rgba(216,174,126,0.28); }
.field .help { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.4rem; }
.field.error input, .field.error select, .field.error textarea { border-color: #B4451F; }
.field .err-msg { display: none; font-size: 0.82rem; color: #B4451F; margin-top: 0.4rem; }
.field.error .err-msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }
.form-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.5rem; }
.form-msg { display: none; padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.35rem; font-size: 0.95rem; }
.form-msg.show { display: block; }
.form-msg.ok { background: #E7F1E3; color: #2F5D2A; border: 1px solid #BFD9B5; }
.form-msg.err { background: #F6E5E5; color: #7A2B2B; border: 1px solid #E0BDBD; }

/* Netlify spam trap — hidden from people, still filled in by bots. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); padding-block: var(--sp-5) var(--sp-3); position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 80% at 90% 0%, rgba(216,174,126,0.14), transparent 55%); pointer-events: none; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; position: relative; padding-bottom: var(--sp-4); border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer .brand { color: var(--cream); font-size: 1.8rem; margin-bottom: 0.8rem; }
.footer p { color: rgba(255,242,215,0.72); max-width: 34ch; font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 1.15rem; }
.footer h5 { font-family: 'Inter', sans-serif; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,242,215,0.55); margin-bottom: 1.1rem; }
.footer-col a, .footer-col span { display: block; color: rgba(255,242,215,0.85); padding: 0.35rem 0; transition: color .25s; }
.footer-col a:hover { color: var(--caramel); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-top: var(--sp-3); font-size: 0.85rem; color: rgba(255,242,215,0.55); position: relative; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; transition: all .3s var(--ease); }
.footer-social a:hover { background: var(--caramel); color: var(--ink); border-color: var(--caramel); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.gallery .tile { cursor: pointer; }
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(20, 14, 10, 0.88);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-frame { position: relative; max-width: 1100px; width: 100%; text-align: center; }
.lightbox .lb-img { width: 100%; max-height: 82vh; object-fit: contain; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); transform: scale(0.96); transition: transform .45s var(--ease); }
.lightbox.open .lb-img { transform: scale(1); }

/* Video mode: player replaces the still */
.lb-video { position: relative; width: 100%; aspect-ratio: 16 / 9; max-height: 82vh; margin-inline: auto; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; transform: scale(0.96); transition: transform .45s var(--ease); }
.lightbox.open .lb-video { transform: scale(1); }
.lb-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox.video-mode .lb-img { display: none; }
.lightbox:not(.video-mode) .lb-video { display: none; }
.lb-cap { margin-top: 1rem; color: var(--cream); font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 1.2rem; letter-spacing: 0.02em; }
.lb-close {
  position: absolute; top: -3.2rem; right: 0;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.3px solid var(--glass-line); color: var(--cream);
  display: grid; place-items: center; transition: background .3s, transform .3s;
}
.lb-close:hover { background: rgba(255,255,255,0.16); transform: rotate(90deg); }
.lb-close svg { width: 22px; height: 22px; }
@media (prefers-reduced-motion: reduce) {
  .lightbox .lb-img { transform: none !important; }
  .lb-close:hover { transform: none; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-reveal="fade"] { transform: none; }
[data-delay="1"]{ transition-delay: .08s } [data-delay="2"]{ transition-delay: .16s }
[data-delay="3"]{ transition-delay: .24s } [data-delay="4"]{ transition-delay: .32s }
[data-delay="5"]{ transition-delay: .40s }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-media img, .hero-media video, .page-hero .bg img { height: 100% !important; transform: none !important; }
  .scroll-cue .bar { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .split-media { order: 0; }
  .reviews, .price-grid, .value-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  :root { --sp-6: 4rem; --sp-5: 3rem; }
  .gallery { grid-template-columns: 1fr; }
  /* Stack on phones so long values ("Jönköping, Sverige") still fit one line */
  .stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .stats .s .n { flex: 0 0 auto; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 auto; justify-content: center; }
}
