/* ══════════════════════════════════════════
   LAYOUT VARIANTS — apply via <body class="layout-X">
   A = Hero full-screen centered  (Stefany default)
   B = Hero split left text / right image
   C = Hero minimal — large text only, no image
   D = Hero bottom-anchored text
   E = Hero cinematic — text overlaid on full bleed
   ══════════════════════════════════════════ */

/* ── Layout A (default) — already in base styles ── */

/* ── Layout B — Split: text left, image right ── */
body.layout-B .hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding: 0;
  align-items: stretch;
}
body.layout-B .hero-bg {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  background-size: cover;
  background-position: center;
}
body.layout-B .hero-grain { display: none; }
body.layout-B .hero-content {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  text-align: left;
  background: var(--bg);
  max-width: none;
  z-index: 2;
}
body.layout-B .hero h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
body.layout-B .hero h1 br { display: none; }
body.layout-B .cta-row { justify-content: flex-start; }
body.layout-B .trust { text-align: left; }
body.layout-B .scroll-cue { display: none; }
@media (max-width: 900px) {
  body.layout-B .hero { grid-template-columns: 1fr; min-height: 100vh; }
  body.layout-B .hero-bg { grid-column: 1; grid-row: 1; min-height: 50vh; }
  body.layout-B .hero-content { grid-column: 1; grid-row: 2; padding: 60px 24px; text-align: center; }
  body.layout-B .cta-row { justify-content: center; }
  body.layout-B .trust { text-align: center; }
}

/* ── Layout C — Minimal: large text, pale bg, no hero image ── */
body.layout-C .hero {
  background: var(--cream);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.layout-C .hero-bg,
body.layout-C .hero-grain { display: none; }
body.layout-C .hero-content { color: var(--text); }
body.layout-C .hero h1 {
  font-size: clamp(4rem, 9vw, 9rem);
  color: var(--text);
  line-height: 1;
}
body.layout-C .hero h1 .ital { color: var(--accent); }
body.layout-C .hero .eyebrow { color: var(--accent); }
body.layout-C .hero .sub { color: var(--text-muted); }
body.layout-C .hero .trust { color: var(--text-muted); }
body.layout-C .scroll-cue { color: var(--text-muted); }

/* ── Layout D — Bottom-anchored: image full bleed, text at bottom ── */
body.layout-D .hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding-bottom: 80px;
}
body.layout-D .hero-content {
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 80px 60px 40px;
  width: 100%;
  max-width: none;
  text-align: left;
}
body.layout-D .cta-row { justify-content: flex-start; }
body.layout-D .trust { text-align: left; }
@media (max-width: 900px) {
  body.layout-D .hero-content { padding: 60px 24px 40px; text-align: center; }
  body.layout-D .cta-row { justify-content: center; }
  body.layout-D .trust { text-align: center; }
}

/* ── Layout E — Cinematic: oversized italic headline, minimal copy ── */
body.layout-E .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.layout-E .hero h1 {
  font-size: clamp(5rem, 13vw, 14rem);
  font-style: italic;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
body.layout-E .hero h1 span { display: block; }
body.layout-E .hero .eyebrow { letter-spacing: 6px; }
body.layout-E .hero .sub { font-size: 15px; letter-spacing: 3px; text-transform: uppercase; font-style: normal; font-family: var(--sans); }
@media (max-width: 900px) {
  body.layout-E .hero h1 { font-size: clamp(3.5rem, 15vw, 7rem); }
}

/* ══════════════════════════════════════════
   ABOUT SECTION VARIANTS
   about-portrait-right = image on right
   ══════════════════════════════════════════ */
body.about-portrait-right .about-teaser .container {
  grid-template-columns: 6fr 5fr;
}
body.about-portrait-right .about-portrait {
  order: 2;
}
body.about-portrait-right .about-text {
  order: 1;
}

/* ══════════════════════════════════════════
   PULL STRIP VARIANTS
   pull-dark = dark background version
   ══════════════════════════════════════════ */
body.pull-dark .pull-strip {
  background: var(--bg);
  color: var(--cream);
}
body.pull-dark .pull-strip .gold-rule {
  border-color: var(--accent);
}

/* ══════════════════════════════════════════
   GALLERY VARIANTS
   gallery-masonry = tighter asymmetric grid
   ══════════════════════════════════════════ */
body.gallery-masonry .gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
}
body.gallery-masonry .tile-l1  { grid-column: span 2; grid-row: span 2; }
body.gallery-masonry .tile-l5  { grid-column: span 2; grid-row: span 1; }

/* ══════════════════════════════════════════
   NEWSLETTER DARK VARIANT
   newsletter-dark = inverted colors
   ══════════════════════════════════════════ */
body.newsletter-dark .newsletter {
  background: var(--bg-2);
  color: var(--cream);
}
body.newsletter-dark .newsletter .section-h,
body.newsletter-dark .newsletter .eyebrow,
body.newsletter-dark .newsletter .lead { color: var(--cream); }
body.newsletter-dark .newsletter input[type="email"] {
  border-color: rgba(255,255,255,0.2);
  color: var(--cream);
  background: rgba(255,255,255,0.05);
}
body.newsletter-dark .newsletter .consent { color: rgba(255,255,255,0.4); }
