/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --porcelain:#FAF6EF;
  --cream:    #F3EDE4;
  --cream-2:  #EAE0D4;
  --sand:     #C9B49A;
  --sand-2:   #A8907A;
  --black:    #141210;
  --black-2:  #1C1A17;
  --ink:      #0F0E0C;
  --white:    #FFFFFF;
  --text:     #2A2520;
  --text-mid: #6B5F57;
  --text-light: #A09088;
  --label:    #7C6C5C;        /* AA-legible small-label taupe on porcelain */
  --gold:     #C4A46A;
  --line:     rgba(20,18,16,0.10);

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  --nav-h: 92px;
}

html { scroll-behavior: smooth; }
/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--ff-sans);
  background: var(--porcelain);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--black); color: var(--porcelain); }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible, .nav-cta:focus-visible { outline-offset: 4px; }
/* invert focus ring on dark sections */
.reel :focus-visible,
.trust :focus-visible,
.contact :focus-visible,
.footer :focus-visible,
.mobile-menu :focus-visible { outline-color: var(--porcelain); }

/* Skip link */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9600;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--porcelain);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 12px 20px;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-out);
}
.skip-link:focus-visible { transform: translateY(0); outline-offset: 2px; }

/* ─── GRAIN + CURSOR ─────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.6s steps(2) infinite;
}
@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-4%, 3%); }
}

.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9500;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.4s, width 0.35s var(--ease-out), height 0.35s var(--ease-out);
}
.cursor {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.85);
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: #fff;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor.is-hover { width: 64px; height: 64px; background: rgba(255,255,255,0.06); }
.cursor.is-hover ~ .cursor-dot { opacity: 0; }
@media (hover: hover) and (pointer: fine) {
  .cursor.active, .cursor-dot.active { opacity: 1; }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--text-mid); }

.section-desc {
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 480px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header .section-desc { margin: 0 auto; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 38px;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.4s var(--ease-out), background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.5s var(--ease-out);
  white-space: nowrap;
}
.btn > * { position: relative; z-index: 1; }

/* sweep fill on the line buttons */
.btn-line-dark, .btn-line-light {
  background: transparent;
}
.btn-line-dark {
  color: var(--black);
  border-color: rgba(20,18,16,0.25);
}
.btn-line-dark::before, .btn-line-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
  z-index: 0;
}
.btn-line-light::before { background: var(--porcelain); }
.btn-line-dark:hover { color: var(--porcelain); border-color: var(--black); }
.btn-line-light {
  color: var(--porcelain);
  border-color: rgba(250,246,239,0.4);
}
.btn-line-light:hover { color: var(--ink); border-color: var(--porcelain); }
.btn-line-dark:hover::before, .btn-line-light:hover::before { transform: translateY(0); }

.btn-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-light:hover { background: transparent; color: var(--white); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: transparent; color: var(--black); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

.btn-lg { padding: 20px 48px; font-size: 13px; }

/* ─── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 48px;
  transition: background 0.5s var(--ease-out), padding 0.4s var(--ease-out), backdrop-filter 0.5s, box-shadow 0.5s;
}

.nav.scrolled {
  background: rgba(250, 246, 239, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  padding: 16px 48px;
  box-shadow: 0 1px 0 rgba(20,18,16,0.06), 0 14px 40px -28px rgba(20,18,16,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.6; }

.nav-logo-svg { flex-shrink: 0; }

.nav-logo-text {
  font-family: var(--ff-serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  position: relative;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.3s;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover { color: var(--black); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  border: 1px solid rgba(20,18,16,0.28) !important;
  border-radius: 100px;
  padding: 11px 26px !important;
  color: var(--black) !important;
  transition: all 0.35s var(--ease-out) !important;
}
.nav-cta:hover { background: var(--black) !important; color: var(--porcelain) !important; border-color: var(--black) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s;
}

/* ─── MOBILE MENU ──────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
}

.mobile-link {
  font-family: var(--ff-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--sand); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  background: var(--porcelain);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  width: 100%;
  align-items: center;
}

/* ── copy column ── */
.hero-copy {
  padding: var(--nav-h) 40px 60px 80px;
  max-width: 640px;
  margin-left: auto;
  justify-self: end;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(16px);
}
.hero-eyebrow-line {
  width: 44px;
  height: 1px;
  background: var(--sand);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(54px, 6.6vw, 104px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 34px;
}

.hero-title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}
.hero-title-line > span {
  display: block;
  will-change: transform;
}

.hero-title-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--sand-2);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 42px;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(16px);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(16px);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 36px;
  opacity: 0;
  transform: translateY(16px);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-meta-item strong {
  font-family: var(--ff-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.hero-meta-item strong sup { font-size: 14px; color: var(--sand-2); }
.hero-meta-item span {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--label);
}

/* ── visual column ── */
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-img-mask {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 100%;
  mix-blend-mode: multiply;        /* white studio bg melts into porcelain canvas */
  transform: scale(1.08);
  transition: transform 1.6s var(--ease-out);
}
.hero-portrait.loaded { transform: scale(1); }

.hero-visual-cap {
  position: absolute;
  bottom: 44px;
  right: 48px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  background: rgba(250,246,239,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(20,18,16,0.07);
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  opacity: 0;
}
.hero-visual-cap svg { color: var(--sand-2); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--label);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 3;
}

.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: rgba(20,18,16,0.18);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--sand-2);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ─── MARQUEE ────────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--black);
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0 28px;
}
.marquee-track .sep {
  color: var(--gold);
  font-size: 8px;
  padding: 0 4px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about {
  padding: 140px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-img-col { position: relative; }

.about-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(10%);
  transition: filter 0.6s;
}
.about-img-frame:hover .about-img { filter: grayscale(0%); }

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--sand);
  z-index: -1;
}

.about-text-col { padding-right: 20px; }

.about-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-body strong { color: var(--black); font-weight: 500; }

.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 48px 0 36px;
  padding: 36px 0;
  border-top: 1px solid var(--cream-2);
  border-bottom: 1px solid var(--cream-2);
}

.stat { display: flex; flex-direction: column; gap: 6px; }

.stat-num {
  font-family: var(--ff-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
}
.stat-num sup { font-size: 18px; vertical-align: super; }

.stat-label {
  font-size: 11px;
  color: var(--label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--cream-2);
  flex-shrink: 0;
}

.about-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.about-ig-link:hover { color: var(--black); border-color: var(--black); }

/* ─── SERVICES ───────────────────────────────────────────────── */
.services {
  padding: 140px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 100px;
  background: var(--cream-2);
}

.service-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out);
}
.service-card:hover { transform: translateY(-4px); }

.service-card-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.service-card:hover .service-card-media img { transform: scale(1.06); }

.service-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-num {
  font-size: 11px;
  color: var(--label);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-weight: 400;
}

.service-card-title {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.service-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 12px; }
.service-link span { transition: transform 0.3s; }
.service-link:hover span { transform: translateX(4px); }

/* Results strip */
.results-strip {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--cream-2);
}

.results-strip-label h3 {
  font-family: var(--ff-serif);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 36px;
}
.results-strip-label h3 em { font-style: italic; color: var(--text-mid); }

.results-strip-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.result-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.result-img:hover img { transform: scale(1.05); }

.result-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.9);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  backdrop-filter: blur(8px);
}

/* ─── REEL / EDITORIAL ───────────────────────────────────────── */
.reel {
  position: relative;
  background: var(--ink);
  color: var(--porcelain);
  padding: 130px 0;
  overflow: hidden;
}

.reel-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(180px, 34vw, 560px);
  font-weight: 300;
  line-height: 1;
  color: rgba(250,246,239,0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  will-change: transform;
}

.reel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 90px;
  align-items: center;
}

.reel-video-col { display: flex; justify-content: center; }

.reel-video-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 50px 110px -40px rgba(0,0,0,0.85);
  background: #000;
  will-change: transform;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.reel-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(15,14,12,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(250,246,239,0.16);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.9);
}
.reel-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #E5564E;
  box-shadow: 0 0 0 0 rgba(229,86,78,0.6);
  animation: rec-pulse 2s infinite;
}
@keyframes rec-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(229,86,78,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(229,86,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,86,78,0); }
}

.reel-eyebrow { color: var(--sand) !important; }

.reel-quote {
  font-family: var(--ff-serif);
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--porcelain);
  margin-bottom: 28px;
}
.reel-quote em {
  display: block;
  font-style: italic;
  color: rgba(250,246,239,0.55);
}

.reel-desc {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(250,246,239,0.55);
  max-width: 440px;
  margin-bottom: 40px;
}

/* ─── PRICING ────────────────────────────────────────────────── */
.pricing {
  padding: 140px 0;
  background: var(--cream);
}

.pricing-accordion {
  max-width: 800px;
  margin: 0 auto 60px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.price-group {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.price-group-header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s;
}
.price-group-header:hover { opacity: 0.7; }

.price-group-num {
  font-size: 11px;
  color: var(--label);
  letter-spacing: 0.15em;
  font-weight: 400;
  min-width: 28px;
}

.price-group-name {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  flex: 1;
}

.price-toggle {
  color: var(--label);
  transition: transform 0.35s var(--ease-out);
  flex-shrink: 0;
}
.price-group-header[aria-expanded="true"] .price-toggle { transform: rotate(180deg); }

.price-group-body {
  overflow: hidden;
  max-height: 0;            /* JS sets the exact scrollHeight on open */
  transition: max-height 0.45s var(--ease-out);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0 14px 48px;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.price-row:last-child { border-bottom: none; padding-bottom: 24px; }

.price {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  white-space: nowrap;
}

.price--free {
  color: var(--sand-2);
  font-size: 15px;
}

.pricing-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--label);
  letter-spacing: 0.04em;
}

/* ─── TRUST ──────────────────────────────────────────────────── */
.trust {
  background: var(--black);
  padding: 100px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  margin-bottom: 8px;
}

.trust-item h4 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}

.trust-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ─── ACADEMY ────────────────────────────────────────────────── */
.academy {
  padding: 140px 0;
  background: var(--cream);
}

.academy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.academy-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 36px;
}

.academy-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 44px;
}

.academy-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}
.academy-list li strong { color: var(--black); font-weight: 500; }

.academy-list-icon {
  color: var(--sand-2);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}

.academy-img-col { position: relative; }

.academy-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

.academy-img-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.academy-img-badge span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label);
}

.academy-img-badge strong {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
}

.academy-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 52%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-inner {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) brightness(0.5);
}

.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(17,17,17,0.55) 100%);
}

.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 48px;
  max-width: 700px;
}

.contact-eyebrow { color: rgba(255,255,255,0.6) !important; }

.contact-title {
  font-family: var(--ff-serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.contact-title em { font-style: italic; color: rgba(255,255,255,0.75); }

.contact-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 56px;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-detail-sep { opacity: 0.4; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--black-2);
  padding-top: 64px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.footer-name {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.03em;
}

.footer-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 48px;
  text-align: center;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}

/* ─── ANIMATION CLASSES ──────────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
}

/* ─── SIGNATURE: gold underline under "piękno" ───────────────── */
.hero-title-italic { position: relative; }
.hero-underline {
  position: absolute;
  left: 0.02em;
  right: 0.04em;
  bottom: 0.12em;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--sand));
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: 2px;
  pointer-events: none;
}

.stat-val { display: inline; }

/* ─── PRINT ──────────────────────────────────────────────────── */
@media print {
  .grain, .cursor, .cursor-dot, .nav, .hero-scroll, .marquee-wrap,
  .reel-video, .reel-badge, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  .reel, .trust, .contact-inner, .footer { background: #fff !important; color: #000 !important; }
  .reel-quote, .reel-desc, .contact-title, .contact-sub, .trust-item h4, .trust-item p,
  .footer-name, .footer-sub { color: #000 !important; }
  * { box-shadow: none !important; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-copy { padding-left: 48px; padding-right: 32px; }
  .hero-scroll { left: 48px; }
  .reel-grid { gap: 56px; }
}

@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .about-grid, .academy-grid { gap: 60px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card-media { aspect-ratio: 16/9; }
  .results-strip { grid-template-columns: 1fr; gap: 48px; }
  .academy-img-secondary { display: none; }

  /* Tablet vertical rhythm — avoid tall empty bands */
  .about, .services, .academy, .pricing, .reel { padding: 100px 0; }
  .section-header { margin-bottom: 48px; }

  /* Desktop-tuned hard breaks read as ragged when centered — neutralize */
  .hero-title br, .reel-quote br, .contact-title br, .section-title br { display: none; }
  .hero-title, .reel-quote, .contact-title, .section-title { text-wrap: balance; }

  /* Hero → stacked */
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy {
    order: 1;
    padding: calc(var(--nav-h) + 32px) 40px 48px;
    max-width: 720px;
    margin: 0 auto;
    justify-self: center;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-visual {
    order: 2;
    min-height: auto;
    aspect-ratio: 4 / 5;
    max-height: 86vh;
  }
  /* keep Anna's face framed when the box is clamped short */
  .hero-portrait { object-position: 50% 16%; }
  .hero-scroll { display: none; }
  .hero-visual-cap { right: 24px; bottom: 24px; }

  /* Larger touch targets on coarse pointers */
  .footer-social a { padding: 12px; margin: -12px; }
  .about-ig-link, .service-link, .nav-cta { padding-top: 8px; padding-bottom: 8px; }

  /* Reel → stacked */
  .reel-grid { grid-template-columns: 1fr; gap: 48px; justify-items: center; text-align: center; }
  .reel-eyebrow, .reel-quote, .reel-desc { text-align: center; }
  .reel-desc { margin-left: auto; margin-right: auto; }
  .reel-text-col { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .container { padding: 0 24px; }
  .about, .services, .academy, .pricing { padding: 80px 0; }
  .reel { padding: 90px 0; }

  .hero-copy { padding: calc(var(--nav-h) + 20px) 24px 40px; }
  .hero-title { font-size: clamp(46px, 13vw, 64px); }

  .about-grid, .academy-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-accent { display: none; }
  .about-img-frame { aspect-ratio: 4/3; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .contact-content { padding: 80px 24px; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-bottom { padding: 24px; }
  .academy-img-frame { aspect-ratio: 4/3; }
  .results-strip-images { grid-template-columns: 1fr 1fr; }
  .reel-bg-word { font-size: clamp(110px, 40vw, 560px); }
}

/* Stack the two-button rows early so neither button orphan-wraps */
@media (max-width: 640px) {
  .hero-actions, .contact-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-actions .btn, .contact-actions .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-meta { gap: 24px; }
  .hero-meta-item strong { font-size: 26px; }
  .trust-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 48px; height: 1px; }
  .footer-links { display: none; }
  .reel-video-frame { max-width: 280px; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .grain { display: none; }
  .reveal-up, .reveal-left, .reveal-right,
  .hero-eyebrow, .hero-subtitle, .hero-actions, .hero-meta, .hero-visual-cap { opacity: 1 !important; transform: none !important; }
  .hero-underline { transform: scaleX(1) !important; }
  .hero-img-mask { clip-path: none !important; }
}
