/* ============================================================
   House of Montalvo — Global Stylesheet
   Per the Brand Guide (July 30 revision).

   Fonts
   - Playfair Display — headings, logos, luxury accents (weights 400, 500–700)
   - Lato             — body text, web copy, and UI: nav, buttons, labels (400, 700)

   Colors — black & white only, per the revised guide:
   - Black      #000000 — primary, text, contrast
   - White      #FFFFFF — clean, elegant, breathing room
   - Light Gray #F5F5F5 — subtle backgrounds

   Type scale (guide spec): H1 32–36px · H2 20–24px · H3 16–18px ·
   Body 14px · Small text 12px. UI labels (nav/buttons/eyebrows) use the
   Small text size.

   The --gold* variable names are kept from an earlier revision (rather
   than renamed) so every rule below still points at a single accent
   token — they simply resolve to black/gray now, not a color.
   ============================================================ */

:root{
  --bg:        #FFFFFF;                     /* White */
  --bg-warm:   #F5F5F5;                     /* Light Gray — subtle/alternating backgrounds */
  --ink:       #000000;                     /* Black */
  --ink-soft:  rgba(0,0,0,0.65);            /* Black, muted for body copy */
  --gold:      #000000;                     /* Accent → Black */
  --gold-soft: #666666;                     /* Accent → mid gray, for hover states */
  --gold-tint: #F5F5F5;                     /* Accent → Light Gray, decorative fills */
  --line:      rgba(0,0,0,0.12);            /* Black, muted for hairlines */
  --white:     #FFFFFF;

  --serif:     'Playfair Display', Georgia, serif;
  --body:      'Lato', Helvetica, Arial, sans-serif;
  --sans:      'Lato', Helvetica, Arial, sans-serif;

  --container: 1180px;
  --radius:    2px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }

a{ color: inherit; text-decoration: none; }

h1,h2,h3,h4{
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

h1{ font-size: clamp(32px, 4vw, 36px); font-weight: 700; }
h2{ font-size: clamp(20px, 3vw, 24px); }
h3{ font-size: clamp(16px, 2vw, 18px); }

p{ margin: 0 0 1em; color: var(--ink-soft); }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow{
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display:block;
  margin-bottom: 14px;
}

.lede{
  font-size: 16px;
  max-width: 620px;
  color: var(--ink-soft);
}

.rule{
  width: 56px;
  height: 2px;
  background: var(--gold);
  border:none;
  margin: 22px 0;
}

.rule.center{ margin-left:auto; margin-right:auto; }

/* ---------- Buttons ----------
   Primary = solid black bg, white text. Secondary = black outline.
   Font: Lato 12px / 700 / uppercase (Small text size, per guide).
   Hover lightens to mid gray. */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor:pointer;
  transition: all .25s ease;
  white-space: nowrap;
}

/* Primary — the one filled button style */
.btn-primary,
.btn-gold{
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover,
.btn-gold:hover{ background: var(--gold-soft); border-color: var(--gold-soft); }

/* Secondary — the outline button style */
.btn-outline{
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover{ background: var(--gold); color: var(--white); }

/* Messenger CTA — same secondary shape, neutral until hover so it doesn't
   compete with the primary action beside it */
.btn-fb{
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-fb:hover{ border-color: var(--gold); color: var(--gold); }

.btn-text{
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}
.btn-text:hover{ color: var(--gold-soft); border-color: var(--gold-soft); }

.btn-row{ display:flex; flex-wrap:wrap; gap:16px; margin-top: 30px; }

/* ---------- Announcement bar ---------- */
.announcement{
  background: var(--ink);
  color: var(--bg);
  text-align:center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 10px 20px;
}
.announcement a{ color: var(--gold-soft); border-bottom:1px solid var(--gold-soft); margin-left:8px; }

/* ---------- Header / Nav ---------- */
.site-header{
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top:0;
  z-index: 100;
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--container);
  margin:0 auto;
  gap: 24px;
}
.brand-mark{ display:flex; align-items:center; gap:10px; }
.brand-mark img{ height: 40px; width:auto; }

.main-nav{
  display:flex;
  align-items:center;
  gap: 30px;
  list-style:none;
  margin:0; padding:0;
  flex:1;
  justify-content:center;
}
.main-nav a{
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.main-nav a:hover, .main-nav a.active{ color: var(--gold-soft); border-color: var(--gold-soft); }

.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.nav-toggle span{
  display:block;
  width:24px; height:2px;
  background: var(--ink);
  margin: 5px 0;
}

@media (max-width: 980px){
  .main-nav{
    position:absolute;
    top:100%; left:0; right:0;
    background: var(--bg);
    flex-direction:column;
    align-items:flex-start;
    gap: 4px;
    padding: 10px 28px 20px;
    border-bottom: 1px solid var(--line);
    display:none;
  }
  .main-nav.open{ display:flex; }
  .main-nav a{ padding: 10px 0; width:100%; }
  .nav-toggle{ display:block; }
  .nav-cta .btn span.btn-label-long{ display:none; }
}

/* ---------- Hero ---------- */
.hero{
  padding: 90px 0 70px;
  position:relative;
}
.hero-split{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items:center;
}
@media (max-width: 900px){
  .hero-split{ grid-template-columns: 1fr; }
}
.hero-media{
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--gold-tint), var(--bg-warm));
  border-radius: var(--radius);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.hero-media img{ width:100%; height:100%; object-fit:cover; }
.hero.compact{ padding: 60px 0 40px; text-align:center; }
.hero.compact .lede{ margin-left:auto; margin-right:auto; }

/* ---------- Hero — full-bleed photo variant ----------
   Photo is anchored toward the right of frame; a left-side black gradient
   (the "scrim") sits over it so white text stays legible in that zone
   without a solid panel. Text block sits vertically centered, left-aligned. */
.hero-photo{
  min-height: 76vh;
  padding: 0;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background: var(--ink);
}
.hero-bg{
  position:absolute;
  inset:0;
  background-image: url('../images/hero-photo.webp');
  background-size: cover;
  background-position: 78% 22%;
}
.hero-scrim{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.78) 22%,
    rgba(0,0,0,0.42) 42%,
    rgba(0,0,0,0.05) 60%,
    rgba(0,0,0,0) 70%
  );
}
.hero-photo-content{
  position:relative;
  z-index: 2;
  /* Anchored to the viewport edge (not .container's centered max-width)
     so the text sits inside the solid-black part of the left-side scrim,
     not wherever the boxed container happens to land. */
  padding: 0 6vw 80px 9vw;
  color: var(--white);
}
.hero-text{ max-width: 560px; }
.hero-photo-content .eyebrow{ color: rgba(255,255,255,0.78); }
.hero-photo-content h1{
  color: var(--white);
  font-size: clamp(44px, 6vw, 72px);   /* bigger than the sitewide H1 cap —
                                           this is the marquee hero statement */
}
.hero-photo-content .lede{ color: rgba(255,255,255,0.85); max-width: 460px; }

/* Light button variants, for use over a dark photo */
.btn-white{
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-white:hover{ background: var(--gold-soft); border-color: var(--gold-soft); color: var(--white); }

.btn-outline-light{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover{ background: var(--white); color: var(--ink); border-color: var(--white); }

/* ---------- Trust bar ---------- */
.trust-bar{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding: 22px 0;
}
.trust-bar .container{
  display:flex;
  flex-wrap:wrap;
  gap: 14px 34px;
  justify-content:center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align:center;
}
@media (max-width: 620px){
  /* Guaranteed 2×2 instead of an uneven wrap or a horizontal scroll */
  .trust-bar .container{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
  }
}

/* ---------- Sections ---------- */
section{ padding: 90px 0; }
section.tight{ padding: 60px 0; }
section.warm{ background: var(--bg-warm); }
section.dark{ background: var(--ink); color: var(--bg); }
section.dark p{ color: rgba(255,255,255,0.75); }
section.dark h2, section.dark h1{ color: var(--bg); }

.section-head{ max-width: 680px; margin: 0 auto 50px; text-align:center; }
.section-head.left{ margin-left:0; text-align:left; }

/* ---------- Occasion / card grid ---------- */
.grid{
  display:grid;
  gap: 26px;
}
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-5{ grid-template-columns: repeat(5, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){
  .grid-5{ grid-template-columns: repeat(2, 1fr); }
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .grid-5, .grid-4, .grid-3, .grid-2{ grid-template-columns: 1fr; }
}

.card{
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px 26px;
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
.card h3{ margin-bottom: 10px; }
.card p{ font-size: 14px; margin-bottom: 18px; }
.card .card-link{
  font-family: var(--sans);
  font-size: 12px;
  font-weight:700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.card-media{
  aspect-ratio: 3/4;
  background: var(--gold-tint);
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow:hidden;
}
.card-media img{ width:100%; height:100%; object-fit:cover; }

/* ---------- Steps ---------- */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 900px){ .steps{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr; } }
.step-num{
  font-family: var(--serif);
  font-size: 2.2rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  margin-bottom: 10px;
}
.step h4{ font-family: var(--serif); font-size:18px; margin-bottom:8px; }

/* ---------- Two column feature ---------- */
.feature-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:center;
}
@media (max-width: 900px){ .feature-split{ grid-template-columns:1fr; } }
.feature-media{
  aspect-ratio: 4/3;
  background: var(--gold-tint);
  border-radius: var(--radius);
  overflow:hidden;
}
.feature-media img{ width:100%; height:100%; object-fit:cover; }

/* ---------- Gown / Glow bento section — dark, text/photo cards on the diagonal ---------- */
.glow-section{
  background: var(--ink);
  color: var(--white);
}
.glow-section .section-head p{ color: rgba(255,255,255,0.72); }
.glow-section .section-head h2{ color: var(--white); }
.glow-headline{ font-style: italic; font-weight: 500; }

.glow-bento{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 900px){
  .glow-bento{ grid-template-columns: 1fr; gap: 20px; }
}

.glow-card{
  border-radius: 20px;
  overflow:hidden;
  position:relative;
}

.glow-card-text{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 44px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.glow-card-text .eyebrow{ color: rgba(255,255,255,0.65); }
.glow-card-text h3{
  font-family: var(--serif);
  font-size: 24px;
  color: var(--white);
  margin: 4px 0 14px;
}
.glow-card-text p{ color: rgba(255,255,255,0.72); font-size: 14px; }
.glow-card-text .btn-row{ margin-top: 22px; gap: 26px; align-items:center; }

.glow-card-photo{ background: var(--ink); }

.glow-media{
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;   /* definite height from width — avoids the 100%-height-in-an-
                           auto-sized-grid-row bug where images fell back to native size */
  overflow:hidden;
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at center, #fff 62%, transparent 100%);
          mask-image: radial-gradient(ellipse 78% 78% at center, #fff 62%, transparent 100%);
}
.glow-media img{ width:100%; height:100%; object-fit:cover; display:block; }

/* Placeholder state — shown until the real photo file exists (the <img>'s
   onerror handler hides the broken image and reveals this note) */
.glow-media.ph-media-dark{
  background: repeating-linear-gradient(
    135deg,
    #1E1E1E,
    #1E1E1E 10px,
    #171717 10px,
    #171717 20px
  );
}
.glow-media-note{
  display:none;
  position:absolute; inset:0;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 20px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Light-on-dark link styles, for CTAs sitting on the black section */
.btn-text-light{
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  padding-bottom: 3px;
}
.btn-text-light:hover{ color: var(--gold-soft); border-color: var(--gold-soft); }

.link-arrow-light{
  font-family: var(--body);
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
}
.link-arrow-light:hover{ color: var(--white); }

/* ---------- Studio & Where We Serve — photo-forward, light section ---------- */

/* Top: heading (left) + copy (right) split */
.studio-content{
  display:grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items:start;
  margin-bottom: 60px;
}
@media (max-width: 900px){ .studio-content{ grid-template-columns: 1fr; gap: 24px; } }
.studio-heading h2{ font-size: clamp(28px, 4vw, 40px); }

/* Middle: staggered 3-photo strip, offset like the reference layout */
.studio-strip{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 760px){
  .studio-strip{ grid-template-columns: 1fr; }
  .studio-media-offset{ margin-top: 0; }
}
.studio-media{
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow:hidden;
  background: var(--bg-warm);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.studio-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.studio-media-offset{ margin-top: 56px; }

/* Bottom: Where / When / How far, plus the two CTAs, in one light row */
.studio-info-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 34px;
  align-items:center;
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 32px 34px;
}
@media (max-width: 900px){
  .studio-info-row{ grid-template-columns: 1fr; gap: 20px; }
}
.studio-info-row .btn-row{ margin:0; }
.detail-label{
  display:block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.detail-value{
  display:block;
  font-size: 14px;
  color: var(--ink-soft);
}
/* ---------- Occasions — "What Are We Dressing You For?" photo cards ---------- */
.occasion-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px){ .occasion-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .occasion-grid{ grid-template-columns: 1fr; } }

.occasion-card{
  position:relative;
  display:block;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow:hidden;
  background: var(--ink);
  color: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}
.occasion-card:hover{ transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.18); }

/* Sliding photo gallery — placeholder tiles for now, real photos to come.
   Track holds duplicate-able tiles; translating by 50% loops seamlessly
   since every tile currently looks the same. */
.occasion-gallery{ position:absolute; inset:0; overflow:hidden; }
.occasion-gallery-track{
  display:flex;
  height:100%;
  width:max-content;
  /* Duration scales with tile count (--n = unique tiles before the repeat)
     so every card scrolls at the same slow px/sec pace, whether it has
     3 photos or 20 — a flat duration made cards with more tiles fly by. */
  animation: occasion-slide calc(var(--n, 4) * 6s) linear infinite;
}
.occasion-card:hover .occasion-gallery-track{ animation-play-state: paused; }
.occasion-tile{
  flex: 0 0 auto;
  width: 220px;
  height:100%;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.occasion-tile img{ width:100%; height:100%; object-fit:cover; display:block; }
.occasion-gallery.ph-media-dark .occasion-tile{
  background: repeating-linear-gradient(
    135deg,
    #1E1E1E,
    #1E1E1E 10px,
    #171717 10px,
    #171717 20px
  );
}
@keyframes occasion-slide{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

.occasion-scrim{
  position:absolute; inset:0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.55) 34%,
    rgba(0,0,0,0.08) 62%,
    rgba(0,0,0,0) 78%
  );
  pointer-events:none;
}

.occasion-body{
  position:absolute;
  left:0; right:0; bottom:0;
  z-index:2;
  padding: 26px 24px;
}
.occasion-tag{
  display:block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.occasion-body h3{
  font-family: var(--serif);
  color: var(--white);
  font-size: 22px;
  margin: 0 0 10px;
}
.occasion-body p{ color: rgba(255,255,255,0.78); font-size: 13px; margin: 0 0 14px; }
.occasion-body .link-arrow-light{ font-size: 13px; }

/* ---------- Testimonial ---------- */
.testimonial{
  max-width: 760px;
  margin: 0 auto;
  text-align:center;
}
.testimonial blockquote{
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 22px;
  color: var(--ink);
}
.testimonial cite{
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Gallery strip ---------- */
.gallery-strip{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 900px){ .gallery-strip{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px){ .gallery-strip{ grid-template-columns: repeat(2,1fr); } }
.gallery-strip .g-item{
  aspect-ratio: 3/4;
  background: var(--bg-warm);
  border-radius: var(--radius);
  overflow:hidden;
}
.gallery-strip .g-item img{ width:100%; height:100%; object-fit:cover; }

/* ---------- Filters (collection page) ---------- */
.filter-bar{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:center;
  margin-bottom: 46px;
}
.filter-pill{
  font-family: var(--sans);
  font-size: 12px;
  font-weight:700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor:pointer;
  transition: all .2s ease;
}
.filter-pill:hover, .filter-pill.active{ background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- Product card ---------- */
.product-card{
  background: var(--white);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
}
.product-media{
  aspect-ratio: 3/4;
  background: var(--gold-tint);
  overflow:hidden;
}
.product-media img{ width:100%; height:100%; object-fit:cover; }
.product-body{ padding: 22px; }
.product-body h3{ font-size: 18px; margin-bottom:6px; }
.product-meta{
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.product-price{
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 16px;
}
.product-actions{ display:flex; flex-direction:column; gap:10px; }
.product-actions .btn{ width:100%; justify-content:center; }

/* ---------- List (checkmarks) ---------- */
.list-clean{ list-style:none; margin:0 0 20px; padding:0; }
.list-clean li{
  position:relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.list-clean li::before{
  content: "—";
  position:absolute; left:0; top:0;
  color: var(--gold);
}
.list-clean strong{ color: var(--ink); }

/* ---------- Pricing packages ---------- */
.pkg-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
@media (max-width: 900px){ .pkg-grid{ grid-template-columns: 1fr; } }
.pkg-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  display:flex;
  flex-direction:column;
}
.pkg-card.featured{
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  position:relative;
}
.pkg-badge{
  position:absolute; top:-13px; left:30px;
  background: var(--gold);
  color:#fff;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform:uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.pkg-price{
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  margin: 6px 0 20px;
}
.pkg-card .btn{ margin-top:auto; width:100%; justify-content:center; }

/* ---------- Table ---------- */
.table-wrap{ overflow-x:auto; }
table.price-table{
  width:100%;
  border-collapse: collapse;
  font-family: var(--body);
}
table.price-table th, table.price-table td{
  text-align:left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
table.price-table th{
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform:uppercase;
  color: var(--ink-soft);
}
table.price-table td:last-child, table.price-table th:last-child{ text-align:right; }

/* ---------- FAQ accordion ---------- */
.faq-list{ max-width: 820px; margin: 0 auto; }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  padding: 22px 4px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 20px;
  font-family: var(--serif);
  font-size: 18px;
  cursor:pointer;
  color: var(--ink);
}
.faq-q .plus{
  font-family: var(--sans);
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform .2s ease;
  flex-shrink:0;
}
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition: max-height .3s ease;
}
.faq-a p{ padding: 0 4px 22px; margin:0; }
.faq-item.open .faq-a{ max-height: 500px; }

.faq-jump{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:center;
  margin-bottom: 50px;
}

/* ---------- Forms ---------- */
.form-note{
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px){ .form-grid{ grid-template-columns:1fr; } }
.form-grid .full{ grid-column: 1 / -1; }
.field label{
  display:block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight:700;
  letter-spacing: 0.06em;
  text-transform:uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.field small{
  display:block;
  color: var(--ink-soft);
  font-size: 12px;
  margin-top: 6px;
  font-family: var(--body);
  font-style: italic;
  text-transform:none;
  letter-spacing: 0;
}
.field input, .field select, .field textarea{
  width:100%;
  font-family: var(--body);
  font-size: 14px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--gold);
}
.field textarea{ resize: vertical; min-height: 120px; }

.form-success{
  display:none;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: var(--radius);
}
.form-success.show{ display:block; }
.form-success h3{ margin-bottom:8px; }

/* ---------- Contact layout ---------- */
.contact-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items:start;
}
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }
.studio-info h4{
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 26px 0 8px;
}
.studio-info h4:first-child{ margin-top:0; }
.map-embed{
  aspect-ratio: 4/3;
  background: var(--bg-warm);
  border-radius: var(--radius);
  margin-top: 26px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.map-embed iframe{ width:100%; height:100%; border:0; }

/* ---------- Closing CTA banner — full-bleed photo, soft black vignette ---------- */
.cta-banner{
  position:relative;
  overflow:hidden;
  text-align:center;
  min-height: 70vh;
  display:flex;
  align-items:flex-start;   /* text sits in the upper third, over the open
                                space above the railing, not dead-center */
  justify-content:center;
  padding: 0;
  background: var(--ink);
  color: var(--bg);
}
.cta-bg{
  position:absolute;
  inset:0;
  background-image: url('../images/closing.webp');
  background-size: cover;
  background-position: center 20%;
}
/* Radial vignette — soft black fading in from every edge, clearest at
   the center where the headline sits. */
.cta-scrim{
  position:absolute;
  inset:0;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.88) 80%,
    rgba(0,0,0,0.96) 100%
  );
}
.cta-content{
  position:relative;
  z-index: 2;
  padding: 12vh 28px 110px;
}
.cta-banner h2{ color: var(--bg); }
.cta-banner p{ color: rgba(255,255,255,0.85); max-width:560px; margin:0 auto 10px; }
.cta-banner .btn-row{ justify-content:center; }
.cta-banner .btn-outline{ color: var(--bg); border-color: rgba(255,255,255,0.4); }
.cta-banner .btn-outline:hover{ background: var(--bg); color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  padding: 70px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}
.footer-grid h5{
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer-grid img.footer-logo{ height: 34px; margin-bottom: 16px; }
.footer-grid ul{ list-style:none; margin:0; padding:0; }
.footer-grid li{ margin-bottom: 10px; }
.footer-grid a:hover{ color: var(--gold-soft); }
.footer-grid p{ font-size: 14px; }
.footer-form{ display:flex; gap:0; margin-top: 14px; }
.footer-form input{
  flex:1;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-right:none;
  font-family: var(--body);
  font-size: 14px;
}
.footer-form button{
  border-radius:0;
  padding: 12px 18px;
  font-size: 11px;
}
.footer-social{ margin-top: 16px; font-size: 14px; }
.footer-bottom{
  border-top: 1px solid var(--line);
  padding: 22px 0;
  text-align:center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.footer-bottom a{ margin: 0 8px; }
.footer-bottom a:hover{ color: var(--gold-soft); }

/* ---------- Misc ---------- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.badge-warm{
  display:inline-block;
  background: var(--gold-tint);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight:700;
  letter-spacing: 0.06em;
  text-transform:uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.divider-icon{
  width: 30px;
  margin: 0 auto 20px;
  opacity: 0.7;
}

.note-box{
  background: var(--bg-warm);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: var(--radius);
  font-size: 14px;
}

.placeholder-flag{
  color: var(--gold);
  font-style: italic;
}

/* ---------- Skeleton / placeholder mode ---------- */
.ph-tag{
  display:inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-tint);
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.ph-copy{
  color: var(--ink-soft);
  font-style: italic;
  opacity: 0.85;
}
.ph-media{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background: repeating-linear-gradient(
    135deg,
    var(--bg-warm),
    var(--bg-warm) 10px,
    #EBEBEB 10px,
    #EBEBEB 20px
  );
  border: 1px dashed var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: 10px;
}
.hero-media.ph-media{ aspect-ratio: 4/5; }
.feature-media.ph-media{ aspect-ratio: 4/3; }
.g-item.ph-media{ aspect-ratio: 3/4; }
.card-media.ph-media{ aspect-ratio: 3/4; }

/* ---------- Scroll reveal — headers fade up, subtext types itself ---------- */
.reveal-fade{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-fade.is-visible{ opacity: 1; transform: none; }

.reveal-type{ opacity: 0; transition: opacity .3s ease; }
.reveal-type.is-visible{ opacity: 1; }
.reveal-type.is-typing::after{
  content: "|";
  display: inline-block;
  margin-left: 2px;
  opacity: .6;
  animation: caret-blink 0.9s steps(1) infinite;
}
@keyframes caret-blink{ 50%{ opacity: 0; } }

@media (prefers-reduced-motion: reduce){
  .reveal-fade, .reveal-type{ opacity: 1 !important; transform: none !important; transition: none !important; }
  .reveal-type.is-typing::after{ animation: none !important; }
}

/* ---------- Button hover glow ---------- */
.btn{ transition: all .25s ease, box-shadow .25s ease; }
.btn-primary:hover, .btn-gold:hover{ box-shadow: 0 0 22px rgba(0,0,0,0.35); }
.btn-outline:hover{ box-shadow: 0 0 16px rgba(0,0,0,0.18); }
.btn-white:hover{ box-shadow: 0 0 24px rgba(255,255,255,0.55); }
.btn-outline-light:hover{ box-shadow: 0 0 20px rgba(255,255,255,0.35); }

/* ---------- Tile emphasis on hover — Gown/Glow cards + Studio photos ---------- */
.glow-card{ transition: transform .3s ease, box-shadow .3s ease; }
.glow-card:hover{
  transform: scale(1.035);
  z-index: 3;
  box-shadow: 0 24px 50px rgba(0,0,0,0.4);
}
.studio-media{ transition: transform .35s ease, box-shadow .35s ease; }
.studio-media:hover{
  transform: scale(1.045);
  z-index: 2;
  box-shadow: 0 24px 45px rgba(0,0,0,0.18);
}
@media (prefers-reduced-motion: reduce){
  .glow-card, .studio-media{ transition: none !important; }
  .glow-card:hover, .studio-media:hover{ transform: none !important; }
}
