/* ============================================================
   LISDEM BABY — styles.css  (mobile-first rewrite)
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --cream:      #F8F4EE;
  --beige:      #E8DDD2;
  --sand:       #CBB6A1;
  --taupe:      #9B7F72;
  --brown:      #352825;
  --ivory:      #FFFDF9;
  --gold:       #C8A46B;
  --gold-dk:    #A8864F;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
  --nav-h:      64px;
  --radius:     4px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* ---- CONTAINERS ---- */
.container        { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.container-narrow { width: 100%; max-width: 960px;  margin: 0 auto; padding: 0 20px; }

/* ---- TAG ---- */
.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.tag-light { color: rgba(255,253,249,0.75); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn-ivory  { background: var(--ivory); color: var(--brown); border-color: var(--ivory); }
.btn-ghost  { background: transparent; color: var(--ivory); border-color: rgba(255,253,249,0.5); }
.btn-dark   { background: #352825; color: #FFFDF9; border-color: #352825; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s;
}
.nav-header.scrolled {
  background: rgba(248,244,238,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(53,40,37,0.08);
}
.nav-inner {
  height: var(--nav-h);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links { display: none; } /* hidden on mobile */

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.35rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brown);
  transition: color 0.4s;
}
.logo-sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.5rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color 0.4s;
}
.nav-header.hero-mode .logo-main { color: var(--ivory); }
.nav-header.hero-mode .logo-sub  { color: rgba(255,253,249,0.6); }
.nav-header.hero-mode .bar       { background: var(--ivory); }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
}
.bar {
  display: block;
  width: 24px;
  height: 1px;
  background: #F8F4EE;
  transition: transform 0.3s, opacity 0.3s, background 0.4s;
}
.hamburger.open .bar:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border-top: 1px solid var(--beige);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.mobile-nav.open { max-height: 300px; }

.mobile-nav-link {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--brown);
  padding: 14px 20px;
  border-bottom: 1px solid var(--beige);
  transition: color 0.25s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(53,40,37,0.62) 0%, rgba(53,40,37,0.28) 100%);
}
.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
  padding-top: var(--nav-h);
}
.hero-kicker {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  animation: fadeUpIn 0.9s 0.2s both;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 10vw, 6rem);
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 20px;
  animation: fadeUpIn 0.9s 0.4s both;
}
.hero-title em { font-style: italic; color: rgba(255,253,249,0.82); }
.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,253,249,0.82);
  max-width: 440px;
  margin-bottom: 36px;
  animation: fadeUpIn 0.9s 0.6s both;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUpIn 0.9s 0.8s both;
}
.hero-actions .btn { width: 100%; }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ivory);
  opacity: 0.6;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(8px); opacity: 0.3; }
}

/* ============================================================
   PROMISE
   ============================================================ */
.promise {
  padding: 64px 0;
  background: var(--ivory);
}
.promise-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 4vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--brown);
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--beige);
}
.pillars {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.pillar-mark { font-size: 0.85rem; color: var(--gold); }
.pillar h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--brown);
}
.pillar p { font-size: 0.9rem; line-height: 1.75; color: var(--taupe); }

/* ============================================================
   EDITORIAL SPLIT
   ============================================================ */
.editorial { display: flex; flex-direction: column; }

.editorial-img-col { overflow: hidden; }
.editorial-img-wrap { height: 340px; overflow: hidden; background: #ffffff; border: none; }
.editorial-img-wrap img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 0; background: #ffffff; border: none; display: block; }

.editorial-txt-col {
  background: var(--beige);
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.editorial-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 20px;
}
.editorial-heading em { font-style: italic; color: var(--taupe); }
.editorial-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--brown);
  opacity: 0.8;
  margin-bottom: 16px;
}
.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 20px;
}
.badge {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  border: 1px solid var(--sand);
  padding: 5px 12px;
  border-radius: 40px;
}
.editorial-txt-col .btn { align-self: flex-start; margin-top: 8px; }

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections { padding: 64px 0; background: var(--cream); }

.section-head { text-align: center; margin-bottom: 48px; }
.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  line-height: 1.25;
  color: var(--brown);
}
.stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.9rem;
}
.stars-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--taupe);
}
.collections-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.coll-card {
  background: var(--ivory);
  border-radius: 2px;
  overflow: hidden;
}
.coll-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #F8F4EE;
}
.coll-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  background: #F8F4EE;
}
.coll-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(53,40,37,0.1) 0%, transparent 40%);
}
.coll-body { padding: 24px 20px 28px; }
.coll-no {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.coll-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 10px;
}
.coll-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--taupe);
  margin-bottom: 20px;
}
.coll-link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.coll-link:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   FEATURE SECTION
   ============================================================ */
.feature-section { background: var(--beige); }
.feature-inner { display: flex; flex-direction: column; }

.feature-img-col { overflow: hidden; }
.feature-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.feature-txt-col { padding: 48px 20px; }
.feature-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 32px;
}
.feature-heading em { font-style: italic; color: var(--taupe); }
.feature-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}
.feature-item strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--brown);
  margin-bottom: 4px;
}
.feature-item p { font-size: 0.88rem; line-height: 1.75; color: var(--taupe); margin: 0; }
.feature-txt-col .btn { display: inline-flex; }

/* ============================================================
   PHILOSOPHY BANNER
   ============================================================ */
.philosophy { background: #352825; padding: 72px 20px; }
.philosophy-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.philosophy-ornament { color: var(--gold); opacity: 0.5; }
.philosophy-quote {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.3rem, 4vw, 2rem);
  line-height: 1.65;
  color: var(--ivory);
}
.philosophy-attr {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   OUR STORY — mobile first, fully stacked
   ============================================================ */
.story { background: var(--cream); padding: 64px 0; }

.story-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.story-img-col { width: 100%; }
.story-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 2px;
  display: block;
}
.story-img-caption {
  background: var(--ivory);
  padding: 16px 20px;
  margin-top: 12px;
  border-radius: 2px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--taupe);
}
.story-img-caption span {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 2px;
}

.story-txt-col { width: 100%; }
.story-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 6vw, 2.9rem);
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 20px;
}
.story-heading em { font-style: italic; color: var(--taupe); }
.story-rule { width: 48px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.story-body { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.story-body p { font-size: 0.95rem; line-height: 1.85; color: var(--brown); opacity: 0.85; }

.story-sig { border-top: 1px solid var(--beige); padding-top: 24px; }
.sig-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--brown);
  margin-bottom: 6px;
}
.sig-tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding: 64px 0; background: var(--ivory); }
.reviews-grid { display: flex; flex-direction: column; gap: 16px; }

.rev-card {
  background: var(--cream);
  padding: 28px 20px;
  border-radius: 2px;
  border: 1px solid var(--beige);
}
.rev-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.rev-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.rev-product-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,164,107,0.1);
  padding: 4px 10px;
  border-radius: 2px;
}
.rev-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--brown);
  margin-bottom: 10px;
}
.rev-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--brown);
  margin-bottom: 18px;
}
.rev-author {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--brown);
  margin-bottom: 3px;
}
.rev-meta { font-size: 0.72rem; color: var(--sand); }

/* ============================================================
   COMMUNITY
   ============================================================ */
.community { padding: 64px 0; background: var(--beige); }
.community-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.community-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  color: var(--brown);
  margin-bottom: 14px;
}
.community-sub {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--taupe);
  max-width: 440px;
  margin-bottom: 32px;
}
.social-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  padding: 12px 24px;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.social-btn:hover { background: #F8F4EE; border-color: var(--brown); color: var(--ivory); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { background: #352825; padding: 72px 20px; }
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  line-height: 1.25;
  color: var(--ivory);
  margin-bottom: 14px;
}
.newsletter-sub { font-size: 0.9rem; line-height: 1.8; color: rgba(255,253,249,0.6); margin-bottom: 32px; }
.newsletter-form { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.newsletter-field {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}
.newsletter-field input {
  background: rgba(255,253,249,0.07);
  border: 1px solid rgba(255,253,249,0.2);
  border-radius: var(--radius);
  outline: none;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ivory);
  width: 100%;
  transition: border-color 0.25s;
}
.newsletter-field input::placeholder { color: rgba(255,253,249,0.35); }
.newsletter-field input:focus { border-color: var(--gold); }
.btn-sub {
  background: var(--gold);
  color: var(--ivory);
  border: none;
  border-radius: var(--radius);
  padding: 14px;
  width: 100%;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}
.btn-sub:hover { background: var(--gold-dk); }
.newsletter-note { font-size: 0.72rem; color: rgba(255,253,249,0.3); }
.newsletter-success {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,253,249,0.85);
  padding: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #2a1f1d; color: var(--sand); }
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 12px;
}
.footer .logo-main { color: var(--ivory); font-size: 1.2rem; }
.footer .logo-sub  { color: var(--taupe); }
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(155,127,114,0.3);
  border-radius: 50%;
  color: var(--sand);
  transition: border-color 0.25s, color 0.25s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 20px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--taupe);
  margin-bottom: 10px;
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  border-top: 1px solid rgba(155,127,114,0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom p { font-size: 0.75rem; color: var(--taupe); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.75rem; color: var(--taupe); transition: color 0.25s; }
.footer-legal a:hover { color: var(--ivory); }

/* ============================================================
   TABLET — 640px+
   ============================================================ */
@media (min-width: 640px) {
  .container, .container-narrow { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .hero-body { padding: 0 32px; padding-top: var(--nav-h); }
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; }
  .pillars { flex-direction: row; gap: 32px; }
  .newsletter-field { flex-direction: row; }
  .newsletter-field input { flex: 1; border-radius: var(--radius) 0 0 var(--radius); }
  .btn-sub { width: auto; border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 24px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   DESKTOP — 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  html { font-size: 18px; }
  :root { --nav-h: 72px; }

  .container, .container-narrow { padding: 0 40px; }
  .nav-inner { padding: 0 40px; }

  /* Show desktop nav links */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav-link {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown);
    opacity: 0.75;
    transition: opacity 0.25s;
  }
  .nav-link:hover { opacity: 1; }
  .nav-cta-link { opacity: 1; color: var(--gold); }
  .nav-header.hero-mode .nav-link { color: var(--ivory); opacity: 0.85; }
  .nav-header.hero-mode .nav-cta-link { color: var(--gold); opacity: 1; }
  .hamburger { display: none; }
  .mobile-nav { display: none; }

  /* Hero */
  .hero-body { padding: 0 40px; padding-top: var(--nav-h); }

  /* Promise */
  .promise { padding: 100px 0; }

  /* Editorial — side by side */
  .editorial { flex-direction: row; min-height: 620px; }
  .editorial-img-col { flex: 1; }
  .editorial-img-wrap { height: 100%; background: #ffffff; border: none; }
  .editorial-img-wrap img { object-fit: contain; object-position: center; padding: 0; background: #ffffff; border: none; }
  .editorial-txt-col { flex: 1; padding: 80px 72px; justify-content: center; }

  /* Collections */
  .collections { padding: 100px 0; }
  .collections-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
  .coll-img-wrap { aspect-ratio: 1 / 1; }
  .coll-card { transition: transform 0.4s, box-shadow 0.4s; }
  .coll-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(53,40,37,0.1); }
  .coll-card:hover .coll-img-wrap img { transform: scale(1.06); }
  .coll-img-wrap img { transition: transform 0.7s; }

  /* Feature — side by side */
  .feature-inner { flex-direction: row; min-height: 620px; }
  .feature-img-col { flex: 1; overflow: hidden; }
  .feature-img { height: 100%; min-height: 620px; object-fit: cover; }
  .feature-txt-col { flex: 1; padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }

  /* Story — side by side */
  .story { padding: 100px 0; }
  .story-inner {
    flex-direction: row;
    gap: 80px;
    align-items: start;
    padding: 0 40px;
  }
  .story-img-col { flex: 1; }
  .story-txt-col { flex: 1; padding-top: 8px; }
  .story-photo { aspect-ratio: 4 / 5; object-position: center center; }
  .story-img-caption { margin-top: 16px; }

  /* Reviews */
  .reviews { padding: 100px 0; }
  .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

  /* Community */
  .community { padding: 88px 0; }

  /* Footer */
  .footer-top {
    flex-direction: row;
    gap: 64px;
    padding: 72px 40px 64px;
    align-items: flex-start;
  }
  .footer-brand { flex-shrink: 0; width: 240px; }
  .footer-cols { flex: 1; grid-template-columns: repeat(3,1fr); }
  .footer-bottom { padding: 24px 40px; flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(53,40,37,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.modal-backdrop.open {
  display: flex;
}
.modal-box {
  background: var(--ivory);
  border-radius: 4px;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 24px;
  position: relative;
  margin: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--taupe);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--brown); }
.modal-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--brown);
  margin-bottom: 16px;
}
.modal-intro {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--taupe);
  margin-bottom: 28px;
}

/* Size Guide */
.size-chart-img {
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}
.size-chart-img img {
  width: 100%;
  height: auto;
  display: block;
}
.size-note {
  background: var(--cream);
  padding: 16px 20px;
  border-radius: 2px;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--taupe);
}
.size-note a { color: var(--gold); text-decoration: underline; }

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--beige);
}
.faq-item {
  border-bottom: 1px solid var(--beige);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--brown);
  line-height: 1.5;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  display: inline-block;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 0 0 20px 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--taupe);
}
.faq-a a { color: var(--gold); text-decoration: underline; }

@media (min-width: 640px) {
  .modal-box { padding: 48px 48px; }
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  background: var(--ivory);
  padding: 64px 0;
}

.video-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.video-text {
  text-align: center;
}

.video-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 14px;
}

.video-heading em {
  font-style: italic;
  color: var(--taupe);
}

.video-body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--taupe);
  max-width: 420px;
  margin: 0 auto;
}

.video-wrap {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 9 / 16;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 12px 48px rgba(53,40,37,0.15);
}

.product-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--cream);
}

@media (min-width: 1024px) {
  .video-section { padding: 100px 0; }
  .video-inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
  }
  .video-text {
    flex: 1;
    text-align: left;
  }
  .video-body { margin: 0; }
  .video-wrap {
    flex-shrink: 0;
    width: 340px;
    max-width: 340px;
    margin: 0;
  }
}
