/* ═══════════════════════════════════════════════════════════════
   PEASIS FASHION — style.css
   Premium editorial luxury fashion website
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --cream:       #f7f3ee;
  --cream-dark:  #efe9e0;
  --ivory:       #faf7f4;
  --charcoal:    #1a1814;
  --charcoal-mid:#2e2b26;
  --charcoal-lt: #4a4540;
  --gold:        #b89d6a;
  --gold-lt:     #d4b98a;
  --gold-pale:   #e8d8b8;
  --peacock:     #2d5a4a;
  --peacock-lt:  #3d7a64;
  --white:       #ffffff;
  --border:      rgba(26,24,20,0.12);
  --border-gold: rgba(184,157,106,0.3);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', Helvetica, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:  cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h:       92px;
  --section-pad: 96px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── Typography ─────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.18;
  color: var(--charcoal);
}
.section-headline em {
  font-style: italic;
  color: var(--charcoal-lt);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 0;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  border: 1px solid var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247,243,238,0.6);
}
.btn-ghost:hover {
  background: rgba(247,243,238,0.15);
  border-color: var(--cream);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--cream);
  border: 1px solid var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 34px;
  display: inline-block;
  transition: all 0.3s var(--ease-out);
}
.btn-dark:hover {
  background: transparent;
  color: var(--charcoal);
}
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--cream);
}

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: transform, opacity;
}
.reveal-up     { transform: translateY(40px); }
.reveal-left   { transform: translateX(-40px); }
.reveal-right  { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ─────────────────────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(247,243,238,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo .logo-img {
  height: 80px;
  width: auto;
  max-width: 220px;
  transition: filter 0.3s;
  filter: brightness(0) invert(1);
}
#navbar.scrolled .nav-logo .logo-img {
  filter: none;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
#navbar.scrolled .nav-links a { color: var(--charcoal); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: background 0.3s;
}
#navbar.scrolled .nav-toggle span { background: var(--charcoal); }

/* ── Mobile menu ────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 100vw);
  height: 100%;
  background: var(--charcoal);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 80px 48px 60px;
  transition: right 0.5s var(--ease-out);
}
.mobile-menu.open { right: 0; }
.mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 1.3rem;
  color: var(--cream);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.mobile-close:hover { opacity: 1; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 32px; }
.mobile-link {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--gold-lt); }
.mobile-menu-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}
.mobile-menu-footer p {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(247,243,238,0.45);
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
}
.mobile-overlay.show { display: block; }

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Default: top-anchored so full-length gowns read from top down */
  object-position: center top;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-img.active { opacity: 1; }

/* Desktop: hide emerald green + black dress slides */
@media (min-width: 901px) {
  .hero-img.hero-desktop-hide {
    display: none !important;
  }
}

/* Mobile: hide emerald green slides on all screen sizes */
.hero-img.hero-mobile-hide {
  display: none !important;
}

/* Desktop: fine-tune per-slide position to prevent face/body crop */
@media (min-width: 901px) {
  /* These images are portrait — on a landscape viewport we shift vertical
     anchor so the whole outfit reads, not just the face */
  .hero-img:nth-child(1) { object-position: 60% top; }   /* emerald gown */
  .hero-img:nth-child(2) { object-position: 40% top; }   /* bridal */
  .hero-img:nth-child(3) { object-position: 55% top; }   /* lavender I */
  .hero-img:nth-child(4) { object-position: 45% top; }   /* lavender II */
  .hero-img:nth-child(5) { object-position: 60% top; }   /* emerald II */
  .hero-img:nth-child(6) { object-position: 40% top; }   /* bridal III */
  .hero-img:nth-child(7) { object-position: 50% top; }   /* black off-shoulder */
  .hero-img:nth-child(8) { object-position: 50% top; }   /* black midi */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16,14,10,0.38) 0%,
    rgba(16,14,10,0.52) 50%,
    rgba(16,14,10,0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  line-height: 1.8;
  color: rgba(247,243,238,0.8);
  max-width: 560px;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(247,243,238,0.4);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(0.5); opacity: 0.9; }
}
.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.4);
}
.hero-dots {
  position: absolute;
  bottom: 36px;
  right: 40px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(247,243,238,0.35);
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
.desktop-br { display: none; }

/* ─────────────────────────────────────────────────────────────
   TAGLINE STRIP
   ───────────────────────────────────────────────────────────── */
.tagline-strip {
  background: var(--charcoal);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tagline-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.tagline-inner span {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.55);
}
.tagline-inner .dot-sep { color: var(--gold); font-size: 0.5rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────────────
   SECTIONS — Common
   ───────────────────────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
}
.section > * {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ─────────────────────────────────────────────────────────────
   DESIGNER
   ───────────────────────────────────────────────────────────── */
.designer-section {
  background: var(--ivory);
}
.designer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.designer-images {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.designer-img-main {
  grid-column: 1;
  grid-row: 1 / 3;
}
.designer-img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}
.designer-img-accent img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center top;
}
.designer-img-studio img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center center;
}
.designer-text {
  padding-top: 20px;
}
.designer-body p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--charcoal-lt);
  margin-bottom: 20px;
}
.designer-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem !important;
  line-height: 1.65 !important;
  color: var(--charcoal) !important;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 32px 0 !important;
}

/* ─────────────────────────────────────────────────────────────
   PHILOSOPHY
   ───────────────────────────────────────────────────────────── */
.philosophy-section {
  background: var(--charcoal);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.philosophy-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.philosophy-bird {
  display: flex;
  justify-content: center;
  align-items: center;
}
.philosophy-logo-img {
  width: 200px;
  max-width: 100%;
  height: auto;
  /* Remove filter - new PNG has transparent bg, invert to make it white on dark */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.philosophy-content .section-label { color: var(--gold-lt); }
.philosophy-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 36px;
}
.philosophy-headline em { color: var(--gold-lt); font-style: italic; }
.philosophy-body p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(247,243,238,0.7);
  margin-bottom: 20px;
}
.philosophy-emphasis {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem !important;
  color: var(--gold-lt) !important;
  margin: 28px 0 !important;
  letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────────────────────────
   COLLECTIONS
   ───────────────────────────────────────────────────────────── */
.collections-section { background: var(--cream); }
.collections-header {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px 60px;
}

/* ── Collection Block Shared ───── */
.collection-block {
  margin-bottom: 96px;
}
.collection-title-block {
  max-width: 1320px;
  margin: 0 auto 40px;
  padding: 0 40px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.collection-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  flex-shrink: 0;
}
.collection-title-block h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
}
.collection-title-block p {
  font-size: 0.88rem;
  color: var(--charcoal-lt);
  margin-left: auto;
  max-width: 280px;
  text-align: right;
}

/* ── Carousel A ─────────────────── */
.collection-carousel {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.7s var(--ease-out);
}
.carousel-slide {
  flex: 0 0 calc(33.333% - 11px);
  position: relative;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-out);
}
.carousel-slide:hover img { transform: scale(1.03); }
.slide-caption {
  padding: 12px 0 4px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-calc(50% + 14px));
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--charcoal);
  transition: all 0.25s;
  z-index: 4;
}
.carousel-btn:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.carousel-prev { left: 48px; }
.carousel-next { right: 48px; }
.carousel-dots-bar {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
}

/* ── Editorial Grid B ───────────── */
.editorial-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.editorial-main {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
}
.editorial-main img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
}
.editorial-stack { grid-column: 2 / 4; display: flex; gap: 12px; }
.editorial-item { flex: 1; position: relative; overflow: hidden; }
.editorial-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
}
.editorial-wide {
  grid-column: 2 / 4;
  position: relative;
  overflow: hidden;
}
.editorial-wide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
}
.editorial-lace-details {
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
}
.lace-detail-item { position: relative; overflow: hidden; }
.lace-detail-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  /* Lace details — centre crop is intentional */
  object-position: center center;
}
.editorial-caption {
  padding: 8px 0 2px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
}
.editorial-main img,
.editorial-item img,
.editorial-wide img,
.lace-detail-item img { transition: transform 0.6s var(--ease-out); }
.editorial-main:hover img,
.editorial-item:hover img,
.editorial-wide:hover img,
.lace-detail-item:hover img { transform: scale(1.04); }

/* ── Cinematic Slider C ─────────── */
.cinematic-slider {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  overflow: hidden;
}
.cinematic-track {
  display: flex;
  gap: 24px;
  transition: transform 0.7s var(--ease-out);
}
.cinematic-slide {
  flex: 0 0 calc(50% - 12px);
  display: flex;
  gap: 20px;
  align-items: stretch;
  background: var(--charcoal);
  overflow: hidden;
}
.cinematic-img-wrap {
  flex: 0 0 62%;
  overflow: hidden;
  /* Height generous enough for full outfit on desktop */
  min-height: 460px;
}
.cinematic-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Top-anchored: shows face + full outfit from top, avoids mid-body crop */
  object-position: center top;
  transition: transform 0.7s var(--ease-out);
}
.cinematic-slide:hover .cinematic-img-wrap img { transform: scale(1.03); }
.cinematic-info {
  flex: 1;
  padding: 36px 24px 36px 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cinematic-info h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}
.cinematic-info p {
  font-size: 0.82rem;
  color: rgba(247,243,238,0.55);
  line-height: 1.7;
}
.cinematic-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.cin-prev, .cin-next {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--charcoal);
  transition: all 0.25s;
  flex-shrink: 0;
}
.cin-prev:hover, .cin-next:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.cin-progress {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.cin-progress-bar {
  height: 100%;
  background: var(--gold);
  transition: width 0.4s ease;
  width: 20%;
}

/* ── Horizontal Cards D ─────────── */
.horizontal-cards-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-pale) transparent;
}
.horizontal-cards-scroll::-webkit-scrollbar { height: 3px; }
.horizontal-cards-scroll::-webkit-scrollbar-track { background: transparent; }
.horizontal-cards-scroll::-webkit-scrollbar-thumb { background: var(--gold-pale); }
.horizontal-cards-track {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  width: max-content;
}
.hcard {
  flex: 0 0 260px;
  position: relative;
  overflow: hidden;
}
.hcard img {
  width: 260px;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s var(--ease-out);
}
.hcard:hover img { transform: scale(1.04); }
.hcard-caption {
  padding: 10px 0 4px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  white-space: nowrap;
}


/* ─────────────────────────────────────────────────────────────
   IN MOTION — Premium Video Carousel
   ───────────────────────────────────────────────────────────── */
.motion-section { background: var(--charcoal); }
.motion-section .section-label { color: var(--gold-lt); }
.motion-section .section-headline { color: var(--cream); }
.motion-section .section-headline em { color: var(--gold-lt); }
.motion-header {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px 56px;
}
.motion-intro {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(247,243,238,0.6);
  max-width: 580px;
  margin-top: 20px;
}

/* ── Video Carousel wrapper ── */
.video-carousel-outer {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.video-carousel-overflow {
  overflow: hidden;
}
.video-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}

/* ── Video card ── */
.video-card {
  /* Desktop: show ~2.3 at once — elegant, not dominating */
  flex: 0 0 calc(40% - 10px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}
.video-card:hover {
  border-color: rgba(255,255,255,0.18);
}

/* Shorts are 9:16 aspect ratio.
   We display them in a letterboxed portrait window
   — controlled height, iframe fills it correctly. */
.video-embed-wrap {
  position: relative;
  /* Fixed controlled height — not full Shorts height */
  height: 300px;
  overflow: hidden;
  background: #0d0c0a;
  flex-shrink: 0;
}
.video-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  /* We give it the 9:16 aspect width relative to its 300px height
     300 * (9/16) = 168.75px — so we set width to show the Short properly */
  width: calc(300px * 9 / 16);
  height: 100%;
  border: none;
  pointer-events: auto;
}

.video-card-info {
  padding: 18px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.video-card-info h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.3;
}
.video-card-info p {
  font-size: 0.78rem;
  color: rgba(247,243,238,0.45);
  line-height: 1.65;
}

/* ── Carousel controls ── */
.video-carousel-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.vc-prev, .vc-next {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(247,243,238,0.7);
  transition: all 0.25s;
  flex-shrink: 0;
  background: none;
  cursor: pointer;
}
.vc-prev:hover, .vc-next:hover {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border-color: rgba(255,255,255,0.35);
}
.vc-prev:disabled, .vc-next:disabled {
  opacity: 0.25;
  cursor: default;
}
.vc-progress {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.vc-progress-bar {
  height: 100%;
  background: var(--gold);
  transition: width 0.4s ease;
}
.vc-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.vc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.vc-dot.active {
  background: var(--gold);
  transform: scale(1.5);
}

/* ─────────────────────────────────────────────────────────────
   PACKAGES
   ───────────────────────────────────────────────────────────── */
.packages-section { background: var(--ivory); }
.packages-header {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px 60px;
}
.packages-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.package-card {
  padding: 48px 40px 44px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.3s;
}
.package-card:not(.package-featured) { background: var(--ivory); }
.package-card.package-featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  z-index: 2;
  transform: scaleY(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.package-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px;
  white-space: nowrap;
}
.package-tier {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.package-featured .package-tier { color: var(--gold-lt); }
.package-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.package-featured .package-name { color: var(--cream); }
.package-price {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--charcoal-lt);
  letter-spacing: 0.06em;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.package-featured .package-price {
  color: rgba(247,243,238,0.6);
  border-color: rgba(255,255,255,0.1);
}
.package-price span {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
}
.package-featured .package-price span { color: var(--cream); }
.package-features {
  list-style: none;
  margin-bottom: 40px;
  flex: 1;
}
.package-features li {
  font-size: 0.88rem;
  color: var(--charcoal-lt);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-features li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.package-features li em { font-style: italic; opacity: 0.65; }
.package-featured .package-features li {
  color: rgba(247,243,238,0.7);
  border-color: rgba(255,255,255,0.08);
}
.package-featured .package-features li::before { color: var(--gold-lt); }
.packages-note {
  max-width: 1320px;
  margin: 36px auto 0;
  padding: 28px 40px;
  border-top: 1px solid var(--border);
}
.packages-note p {
  font-size: 0.82rem;
  color: var(--charcoal-lt);
  line-height: 1.85;
  max-width: 720px;
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────────
   PROCESS
   ───────────────────────────────────────────────────────────── */
.process-section { background: var(--cream); overflow: hidden; }
.process-header {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px 72px;
}
.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.process-line-track {
  position: absolute;
  left: calc(40px + 22px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.process-line-fill {
  width: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-lt));
  height: 0%;
  transition: height 0.1s linear;
}
.process-step {
  display: flex;
  gap: 40px;
  padding-bottom: 64px;
  position: relative;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.process-step.visible {
  opacity: 1;
  transform: translateX(0);
}
.step-marker {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.step-ring {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  transition: border-color 0.4s, background 0.4s;
  position: relative;
  z-index: 2;
}
.step-dot {
  position: absolute;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  z-index: 3;
  transition: background 0.4s;
}
.process-step.active .step-ring {
  border-color: var(--gold);
  background: var(--cream);
}
.process-step.active .step-dot { background: var(--gold); }
.step-num {
  position: absolute;
  top: 28px;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  color: var(--border);
  letter-spacing: 0.05em;
  transition: color 0.4s;
}
.process-step.active .step-num { color: var(--gold); }
.step-content {
  padding-top: 0;
}
.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
  transition: color 0.4s;
}
.process-step.active .step-content h3 { color: var(--charcoal); }
.step-content p {
  font-size: 0.92rem;
  color: var(--charcoal-lt);
  line-height: 1.85;
  max-width: 600px;
}

/* ─────────────────────────────────────────────────────────────
   CONTACT
   ───────────────────────────────────────────────────────────── */
.contact-section { background: var(--ivory); }
.contact-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.contact-visual {
  position: relative;
}
.contact-visual > img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
}
.contact-visual-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 48%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.contact-visual-accent img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
}
.contact-content .section-label { margin-bottom: 16px; }
.contact-body {
  font-size: 0.95rem;
  color: var(--charcoal-lt);
  line-height: 1.85;
  max-width: 460px;
  margin: 24px 0 36px;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.contact-cta { }
.contact-email-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--charcoal-lt);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-email-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.contact-detail {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.contact-detail p {
  font-size: 0.82rem;
  color: var(--charcoal-lt);
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px 48px;
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr;
  gap: 48px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  height: 72px;
  width: auto;
  max-width: 200px;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.35);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-lt); }
.footer-contact a {
  font-size: 0.82rem;
  color: rgba(247,243,238,0.5);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold-lt); }
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 40px;
}
.footer-bottom p {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(247,243,238,0.25);
}

/* ─────────────────────────────────────────────────────────────
   CAROUSEL DOT STYLES
   ───────────────────────────────────────────────────────────── */
.c-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  border: none;
}
.c-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ── Package accordion (mobile only) ── */
/* Desktop: hide mobile-only lists, show desktop list */
.package-features--mobile-visible { display: none; }
.package-features--desktop        { display: block; }
.package-accordion                 { display: none; }

/* Accordion base styles (activated via JS on mobile) */
.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  padding: 12px 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.25s;
}
.package-featured .accordion-toggle {
  border-color: rgba(255,255,255,0.1);
  color: var(--gold-lt);
}
.accordion-toggle:hover { color: var(--charcoal); }
.package-featured .accordion-toggle:hover { color: var(--cream); }

.accordion-icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}
.accordion-icon::before {
  width: 100%; height: 1px;
  top: 50%; left: 0;
  transform: translateY(-50%);
}
.accordion-icon::after {
  width: 1px; height: 100%;
  top: 0; left: 50%;
  transform: translateX(-50%);
}
.accordion-toggle[aria-expanded="true"] .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}
.accordion-body.open {
  max-height: 400px;
}
.package-features--extra {
  padding: 8px 0 4px;
}

/* ── Trust section — refined & luxurious ── */
.packages-trust {
  max-width: 1320px;
  margin: 64px auto 0;
  padding: 0 40px;
}
.trust-header {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-gold);
}
.trust-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.trust-intro {
  font-size: 0.88rem;
  color: var(--charcoal-lt);
  font-style: italic;
  line-height: 1.7;
  max-width: 560px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  padding: 0 32px 0 0;
  border-right: 1px solid var(--border);
}
.trust-item:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 32px;
}
.trust-item:not(:first-child):not(:last-child) {
  padding: 0 32px;
}
.trust-item-inner {}
.trust-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.trust-item p {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--charcoal-lt);
}

/* ── Pricing note — with title ── */
.packages-note {
  max-width: 1320px;
  margin: 40px auto 0;
  padding: 36px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ivory);
}
.packages-note-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  font-style: italic;
}
.packages-note p:not(.packages-note-title) {
  font-size: 0.82rem;
  color: var(--charcoal-lt);
  line-height: 1.9;
  max-width: 760px;
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────────
   OVERFLOW CONTAINMENT — prevent horizontal page shift
   ───────────────────────────────────────────────────────────── */
.package-positioning {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--charcoal-lt);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  font-style: italic;
}
.package-featured .package-positioning {
  color: rgba(247,243,238,0.6);
  border-color: rgba(255,255,255,0.1);
}

.package-bottomline {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--gold);
  margin-bottom: 28px;
  padding-top: 16px;
  font-style: italic;
  letter-spacing: 0.01em;
}
.package-featured .package-bottomline {
  color: var(--gold-lt);
}

/* ── Before You Begin — trust section ── */
.packages-trust {
  max-width: 1320px;
  margin: 56px auto 0;
  padding: 48px 40px;
  background: var(--cream-dark);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.trust-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {}
.trust-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.trust-item p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--charcoal-lt);
}

/* ─────────────────────────────────────────────────────────────
   OVERFLOW CONTAINMENT — prevent horizontal page shift
   ───────────────────────────────────────────────────────────── */
.section,
.hero,
.tagline-strip,
.designer-section,
.philosophy-section,
.collections-section,
.motion-section,
.packages-section,
.process-section,
.contact-section,
.site-footer {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.collection-block,
.collection-carousel,
.cinematic-slider,
.horizontal-cards-scroll,
.video-carousel-outer,
.video-carousel-overflow {
  max-width: 100%;
  /* carousels clip internally, never push the page */
  overflow-x: hidden;
}

/* Horizontal scroll containers are the exception — they scroll *inside* */
.horizontal-cards-scroll {
  overflow-x: auto;
}
.video-carousel-overflow {
  overflow: hidden;
}

/* Prevent any single element being wider than viewport */
* { max-width: 100%; }
img, iframe, video { max-width: 100%; }

/* Large headings must wrap, never overflow */
.section-headline,
.hero-headline,
.philosophy-headline,
.step-content h3 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ─────────────────────────────────────────────────────────────
   CAROUSEL SCROLL HINTS
   ───────────────────────────────────────────────────────────── */
.carousel-scroll-hint {
  max-width: 1320px;
  margin: 0 auto -8px;
  padding: 0 40px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.carousel-scroll-hint--light .hint-text,
.carousel-scroll-hint--light .hint-arrow {
  color: rgba(247,243,238,0.45);
}
.hint-text {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,24,20,0.38);
}
.hint-arrow {
  font-size: 0.7rem;
  color: var(--gold);
  animation: hintPulse 2s ease-in-out infinite;
}
.hint-arrow:last-child { animation-delay: 0.4s; }
@keyframes hintPulse {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50%       { opacity: 1;   transform: translateX(3px); }
}
.hint-arrow:first-child {
  animation-name: hintPulseLeft;
}
@keyframes hintPulseLeft {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50%       { opacity: 1;   transform: translateX(-3px); }
}

/* ─────────────────────────────────────────────────────────────
   PROCESS — SCISSORS ANIMATION
   ───────────────────────────────────────────────────────────── */

/* Replace the simple fill line with a scissors that cuts through */
.process-line-track {
  position: absolute;
  left: calc(40px + 22px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  overflow: visible;
}
.process-line-fill {
  width: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-lt));
  height: 0%;
  transition: height 0.08s linear;
  position: relative;
}

/* Scissors icon rides the top of the fill line */
.process-line-fill::after {
  content: '✂';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  font-size: 14px;
  color: var(--gold);
  line-height: 1;
  filter: drop-shadow(0 0 4px rgba(184,157,106,0.5));
  transition: bottom 0.08s linear;
  /* Snip animation when a step becomes active */
  animation: none;
}

/* When line is actively growing, scissors snips */
.process-line-fill.snipping::after {
  animation: scissorSnip 0.35s ease-out;
}
@keyframes scissorSnip {
  0%   { transform: translateX(-50%) rotate(90deg) scale(1); }
  30%  { transform: translateX(-50%) rotate(75deg) scale(1.3); }
  60%  { transform: translateX(-50%) rotate(105deg) scale(1.2); }
  100% { transform: translateX(-50%) rotate(90deg) scale(1); }
}

/* Active step gets a gold cut line through it */
.process-step.active .step-ring {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,157,106,0.15);
}

/* ─────────────────────────────────────────────────────────────
   FOOTER — DESIGNER CREDIT
   ───────────────────────────────────────────────────────────── */
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.designer-credit {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.25s;
}
.designer-credit:hover { opacity: 0.8; }
.designer-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  overflow: visible;
}
.designer-credit span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(247,243,238,0.3);
  white-space: nowrap;
}
.designer-credit span em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(212,185,138,0.55);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────────────────────
   MOBILE — 900px and below
   ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {

  :root { --section-pad: 64px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-inner { padding: 0 16px; }

  /* LOGO — sized appropriately for mobile, anchored left */
  .nav-logo .logo-img {
    height: auto;
    width: 120px;
    max-width: 38vw;
    margin-left: 0;
  }

  /* HERO */
  .hero-content { padding: 0 20px; padding-top: var(--nav-h); }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-sub { font-size: 0.88rem; max-width: 100%; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .hero-dots { right: 16px; }

  /* TAGLINE — constrain so it never pushes width */
  .tagline-strip { overflow: hidden; }
  .tagline-inner { animation-duration: 18s; }

  /* DESIGNER */
  .designer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .designer-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .designer-img-main { grid-column: 1 / 3; grid-row: 1; }
  .designer-img-main img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-position: center top;
  }
  .designer-img-accent img, .designer-img-studio img { height: 180px; object-position: center top; }

  /* PHILOSOPHY */
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }
  .philosophy-bird { justify-content: flex-start; }
  .philosophy-logo-img { width: 100px; }

  /* COLLECTIONS */
  .collections-header { padding: 0 20px 40px; }
  .collection-title-block {
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .collection-title-block p { margin-left: 0; text-align: left; max-width: 100%; }

  /* Carousel hint on mobile */
  .carousel-scroll-hint { padding: 0 20px 12px; }

  /* Carousel A */
  .collection-carousel { padding: 0 20px; overflow: hidden; }
  .carousel-slide { flex: 0 0 calc(100% - 8px); }
  .carousel-slide img {
    height: auto;
    aspect-ratio: 2 / 3;
    object-position: center top;
  }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }

  /* Editorial Grid B */
  .editorial-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    padding: 0 20px;
  }
  .editorial-main { grid-column: 1 / 3; grid-row: 1; }
  .editorial-main img {
    height: auto;
    aspect-ratio: 3 / 4;
    object-position: center top;
  }
  .editorial-stack { grid-column: 1 / 3; }
  .editorial-wide { grid-column: 1 / 3; }
  .editorial-wide img, .editorial-item img {
    height: 220px;
    object-position: center top;
  }
  .editorial-lace-details { grid-column: 1 / 3; grid-template-columns: 1fr 1fr 1fr; }
  .lace-detail-item img { height: 180px; object-position: center center; }

  /* Cinematic Slider C — fix face/outfit cropping on mobile */
  .cinematic-slider { padding: 0 20px; overflow: hidden; }
  .cinematic-slide {
    flex: 0 0 calc(100% - 8px);
    flex-direction: column;
  }
  .cinematic-img-wrap {
    flex: none;
    min-height: 0;
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .cinematic-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .cinematic-info { padding: 20px 20px 24px; }

  /* Horizontal Cards D */
  .horizontal-cards-scroll { padding: 0 20px; }
  .hcard { flex: 0 0 200px; }
  .hcard img { width: 200px; height: 280px; }

  /* IN MOTION — video carousel on mobile */
  .motion-header { padding: 0 20px 40px; }
  .video-carousel-outer { padding: 0 20px; overflow: hidden; }
  .video-carousel-overflow { overflow: hidden; }
  .video-card {
    flex: 0 0 85vw;
    max-width: 320px;
  }
  .video-embed-wrap { height: 240px; }
  .video-embed-wrap iframe {
    width: 100%;
    max-width: 100%;
  }

  /* PACKAGES */
  .packages-header { padding: 0 20px 40px; }
  .packages-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .package-card { padding: 36px 28px 32px; }
  .package-card.package-featured { transform: none; }

  /* Mobile: switch list visibility and show accordion */
  .package-features--desktop       { display: none !important; }
  .package-features--mobile-visible { display: block !important; }
  .package-accordion                { display: block; }

  /* Trust section mobile */
  .packages-trust { padding: 0 20px; margin-top: 48px; }
  .trust-header { margin-bottom: 28px; padding-bottom: 20px; }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px 0 !important;
  }
  .trust-item:last-child { border-bottom: none; }

  /* Pricing note mobile */
  .packages-note { padding: 28px 20px; }

  /* PROCESS */
  .process-header { padding: 0 20px 48px; }
  .process-timeline { padding: 0 20px; }
  .process-line-track { left: calc(20px + 22px); }

  /* CONTACT */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 20px;
  }
  .contact-visual > img { height: 380px; }
  .contact-visual-accent {
    right: -10px;
    bottom: -16px;
    width: 44%;
  }
  .contact-visual-accent img { height: 180px; }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px 40px;
  }
  .footer-logo {
    height: auto;
    width: 150px;
    max-width: 55vw;
  }
  .footer-bottom { padding: 16px 20px; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .section > * { padding-left: 20px; padding-right: 20px; }
}

@media (min-width: 901px) {
  .desktop-br { display: block; }
}

/* ─────────────────────────────────────────────────────────────
   UTILITIES
   ───────────────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}