/* ============================================================
   Adorn Events — self-hosted static site
   ============================================================ */

:root {
  --bg: hsl(38 24% 95%);
  --fg: hsl(320 18% 22%);
  --primary: hsl(320 18% 22%);
  --primary-fg: hsl(38 24% 95%);
  --sage: hsl(140 12% 45%);
  --sage-bg: #69786a;
  /* Love Letters section color — change this ONE value to recolor the whole
     section: the JS-drawn wallpaper, vignette, and card accents all derive
     from it. Keep it a mid-to-dark tone; the wallpaper text/logos are cream. */
  --letters-bg: hsl(320 18% 30%); /* Plum (site primary hue, lifted); history: Wine #63333A, Rosewood hsl(348 26% 45%), sage #69786a */
  --cream: #e8e6e2;
  --accent: hsl(348 26% 52%);
  --accent-soft: hsl(348 26% 52% / 0.35);
  /* WCAG-safe accents for small text: ink on light backgrounds (>=4.5:1 on
     ivory), bloom on dark backgrounds (>=4.5:1 on plum). */
  --accent-ink: hsl(348 30% 44%);
  --accent-bloom: hsl(348 45% 72%);
  --border: hsl(36 14% 87%);
  --font-heading: "Cormorant Garamond", ui-serif, Georgia, serif;
  --font-display: "Cormorant Garamond", ui-serif, Georgia, serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

::selection { background: var(--primary); color: var(--primary-fg); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-soft); }

/* ---------- shared ---------- */
.eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

/* The hidden attribute must win over any display rule (e.g. .cta-line) */
[hidden] { display: none !important; }

.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.container { max-width: 120rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid hsl(38 24% 95% / 0.5);
  color: var(--primary-fg);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  transition: background 0.5s, color 0.5s;
}
.btn-outline:hover { background: var(--primary-fg); color: var(--primary); }

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  transition: background 0.5s, color 0.5s;
}
.btn-solid:hover { background: transparent; color: var(--primary); }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  padding: 1.5rem 0;
  transition: background 0.7s, padding 0.7s, backdrop-filter 0.7s;
}
.nav.scrolled {
  background: hsl(38 24% 95% / 0.92);
  backdrop-filter: blur(10px);
  padding: 0.875rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: inline-block; height: 3.25rem; width: 3.75rem; }
.nav-logo img { width: 100%; height: 100%; object-fit: contain; }
.nav .logo-dark { display: none; }
.nav.scrolled .logo-dark { display: block; }
.nav.scrolled .logo-light { display: none; }

.nav-links { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a, .nav-menu-btn {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: hsl(38 24% 95% / 0.85);
  transition: color 0.3s;
}
.nav-links a:hover, .nav-menu-btn:hover { color: var(--accent); }
.nav.scrolled .nav-links a, .nav.scrolled .nav-menu-btn { color: hsl(320 18% 22% / 0.75); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-menu-btn:hover { color: var(--accent); }
.nav-menu-btn { display: flex; align-items: center; gap: 0.5rem; }

/* fullscreen menu */
.menu-overlay {
  position: fixed; inset: 0; z-index: 50;
  background: var(--primary);
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  visibility: hidden;
}
.menu-overlay.open { transform: translateY(0); visibility: visible; }
.menu-top { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; }
@media (min-width: 768px) { .menu-top { padding: 1.5rem 2.5rem; } }
.menu-close {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.28em;
  color: hsl(38 24% 95% / 0.7);
}
.menu-close:hover { color: var(--primary-fg); }
.menu-nav { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; }
@media (min-width: 768px) { .menu-nav { gap: 3rem; } }
.menu-nav a {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--primary-fg);
  transition: color 0.5s;
}
.menu-nav a:hover { color: var(--accent); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  /* keep the centered content clear of the fixed transparent nav */
  padding-top: 4rem;
  overflow: hidden;
  background: var(--primary);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.hero-mask {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 48%, hsl(320 18% 18% / 0.45), transparent 75%),
    linear-gradient(to bottom, hsl(320 18% 22% / 0.7), hsl(320 18% 22% / 0.45) 50%, hsl(320 18% 22% / 0.75));
}
.hero-content { position: relative; z-index: 1; max-width: 48rem; padding: 0 1.5rem; text-align: center; color: var(--primary-fg); }
.hero-content .eyebrow { color: hsl(38 24% 95% / 0.8); margin-bottom: 2rem; }
.hero-title { line-height: 0; }
.hero-title img {
  display: block;
  margin: 0 auto;
  width: min(26rem, 74vw);
  height: auto;
}
.hero-sub {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.35; margin: 2.75rem 0 2rem; /* client asked for more air under the wordmark */
  color: hsl(38 24% 95% / 0.9);
}
.hero-copy { max-width: 28rem; margin: 0 auto; font-size: 1rem; color: hsl(38 24% 95% / 0.7); }
.hero .btn-outline { margin-top: 3rem; }

/* fade-up entrance */
.hero [data-entrance] { opacity: 0; transform: translateY(20px); animation: entrance 1s ease forwards; }
.hero .hero-title[data-entrance] { transform: none; animation-duration: 1.4s; }
@keyframes entrance { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero [data-entrance] { animation: none; opacity: 1; transform: none; }
}

/* ---------- intro ---------- */
.intro { padding: 6rem 1.5rem; }
@media (min-width: 768px) { .intro { padding: 8.5rem 1.5rem; } }
.intro-inner { max-width: 42rem; margin: 0 auto; text-align: center; }
.intro-inner .eyebrow { margin-bottom: 1.5rem; }
.intro-inner h2 { font-size: clamp(3rem, 6vw, 4.5rem); color: var(--primary); margin-bottom: 2rem; }
.intro-lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  color: hsl(320 18% 22% / 0.85);
  margin-bottom: 1.25rem;
}
.intro-inner p:not(.intro-lead):not(.intro-triplet) { max-width: 34rem; margin: 0 auto; color: hsl(320 18% 22% / 0.7); }
.intro-triplet {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.3125rem);
  line-height: 1.8;
  color: var(--primary);
  margin: 2.25rem auto 0;
}

/* small arrow CTA line */
.cta-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent-ink);
  border-bottom: 1px solid hsl(348 26% 52% / 0.35);
  padding-bottom: 0.4rem;
  transition: color 0.3s, border-color 0.3s;
}
.cta-line:hover { color: var(--primary); border-color: var(--primary); }
.cta-line span { transition: transform 0.3s; }
.cta-line:hover span { transform: translateX(4px); }

/* ---------- gallery ---------- */
.gallery { padding: 6rem 0; }
@media (min-width: 768px) { .gallery { padding: 8rem 0; } }
.gallery-head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 768px) {
  .gallery-head { flex-direction: row; align-items: flex-end; justify-content: space-between; margin-bottom: 6rem; }
}
.gallery-head .eyebrow { margin-bottom: 1rem; }
.gallery-head h2 { font-size: clamp(3rem, 6vw, 4.5rem); color: var(--primary); }
.gallery-head p { max-width: 24rem; color: hsl(320 18% 22% / 0.6); font-size: 1rem; }

.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }
  .g-span-7 { grid-column: span 7; }
  .g-span-5 { grid-column: span 5; }
}
.gallery-card {
  position: relative; overflow: hidden; cursor: pointer;
  border: none; padding: 0; text-align: left; width: 100%;
}
.gallery-card img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 1.2s ease;
}
.gallery-card.wide img { aspect-ratio: 3 / 2; }
.gallery-card.tall img { aspect-ratio: 3 / 4; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(320 18% 22% / 0.7), hsl(320 18% 22% / 0.1) 55%, transparent);
}
.gallery-card-label { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; padding: 1.5rem; }
@media (min-width: 768px) { .gallery-card-label { padding: 2rem; } }
.gallery-card-label .eyebrow { color: hsl(38 24% 95% / 0.8); margin-bottom: 0.5rem; }
.gallery-card-label h3 { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--primary-fg); }
.gallery-card-label .hint {
  display: block; margin-top: 0.75rem;
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.28em;
  color: hsl(38 24% 95% / 0.6);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
}
.gallery-card:hover .hint, .gallery-card:focus-visible .hint { opacity: 1; transform: none; }

/* blueprint modal */
.blueprint {
  position: fixed; inset: 0; z-index: 60;
  background: var(--primary); color: var(--primary-fg);
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  visibility: hidden;
}
.blueprint.open { transform: none; visibility: visible; }
.blueprint-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem; border-bottom: 1px solid hsl(38 24% 95% / 0.1);
}
@media (min-width: 768px) { .blueprint-top { padding: 1.5rem 2.5rem; } }
.blueprint-body { flex: 1; display: grid; overflow: auto; }
@media (min-width: 768px) { .blueprint-body { grid-template-columns: 1fr 1fr; } }
.blueprint-img { min-height: 40vh; }
.blueprint-img img { width: 100%; height: 100%; object-fit: cover; }
.blueprint-info { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .blueprint-info { padding: 4rem; } }
.blueprint-info .eyebrow { margin-bottom: 1rem; }
.blueprint-info h3 { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.25rem, 5vw, 3.75rem); margin-bottom: 3rem; }
.blueprint-info dl div + div { margin-top: 2rem; }
.blueprint-info dt { composes: eyebrow; }
.blueprint-info dt { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.blueprint-info dd { font-family: var(--font-display); font-weight: 300; font-size: 1.375rem; }
.blueprint-info dd.plain { font-family: var(--font-body); font-size: 1rem; color: hsl(38 24% 95% / 0.75); max-width: 28rem; }
.blueprint-info dd.italic { font-style: italic; }

/* ---------- services / occasions ---------- */
.services {
  position: relative; overflow: hidden;
  background: var(--primary); color: var(--primary-fg);
  padding: 6rem 0;
}
@media (min-width: 768px) { .services { padding: 8rem 0; } }
.services-head { position: relative; text-align: center; margin-bottom: 4rem; }
@media (min-width: 768px) { .services-head { margin-bottom: 6rem; } }
.services-head .eyebrow { margin-bottom: 1rem; color: var(--accent-bloom); }
.services-head h2 { font-size: clamp(3rem, 6vw, 4.5rem); max-width: 48rem; margin: 0 auto; }
.services-sub { margin: 1.5rem auto 0; max-width: 28rem; color: hsl(38 24% 95% / 0.55); font-size: 0.9375rem; }

/* Narrow offset touching rectangles — tall slats with rotated titles on
   desktop (the open one widens to reveal its list); stacked accordion cards
   on mobile */
.occasions-grid {
  display: flex;
  flex-direction: column;
  max-width: 72rem;
  margin: 0 auto;
}
.occasions-grid .occasion { margin-bottom: -1px; } /* collapse shared borders */

.occasion {
  position: relative;
  overflow: hidden;
  border: 1px solid hsl(348 26% 52% / 0.35);
  background: linear-gradient(160deg, hsl(320 20% 27%), hsl(320 19% 23%));
  box-shadow:
    inset 0 1px 0 hsl(38 24% 95% / 0.1),
    0 1px 2px hsl(320 30% 8% / 0.5),
    0 8px 24px hsl(320 30% 8% / 0.35),
    0 20px 48px hsl(320 30% 8% / 0.25);
  transition: border-color 0.5s, box-shadow 0.5s, transform 0.5s;
}
/* photo whisper — a darkened event photo behind each slat */
.occasion::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--slat-photo);
  background-size: cover;
  background-position: var(--slat-pos, center);
  opacity: 0.14;
  filter: saturate(0.55) brightness(0.85);
  transition: opacity 0.6s, filter 0.6s;
  pointer-events: none;
}
/* scrim keeps the type legible over the photo */
.occasion::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(320 18% 16% / 0.72), hsl(320 18% 22% / 0.22) 55%, hsl(320 18% 16% / 0.55));
  pointer-events: none;
}
.occasion-head, .occasion-detail { position: relative; z-index: 1; }
.title-vert { z-index: 1; }

.occasion:hover { border-color: hsl(348 26% 52% / 0.65); z-index: 2; }
.occasion:hover::before { opacity: 0.3; filter: saturate(0.8) brightness(0.95); }
.occasion.open {
  border-color: var(--accent);
  z-index: 2;
}
.occasion.open::before { opacity: 0.1; }
@media (prefers-reduced-motion: reduce) {
  .occasion, .occasion::before { transition: none; }
}

/* vertical slat title — desktop only */
.title-vert { display: none; }

/* per-occasion glyph — a thin line drawing in the accent colour */
.occasion-glyph {
  display: none;
  color: hsl(348 26% 52% / 0.65);
  transition: color 0.5s, opacity 0.5s;
}
.occasion-glyph svg { width: 1.625rem; height: 1.625rem; display: block; }
.occasion:hover .occasion-glyph { color: var(--accent); }

@media (min-width: 900px) {
  .occasions-grid {
    flex-direction: row;
    align-items: flex-start;
    padding-bottom: 2.5rem; /* room for the offset slats */
  }
  .occasions-grid .occasion { margin-bottom: 0; }
  .occasion {
    flex: 1 1 0;
    min-width: 0;
    height: 37rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: flex-grow 0.8s cubic-bezier(0.76, 0, 0.24, 1), border-color 0.5s, box-shadow 0.5s, transform 0.5s;
  }
  .occasion + .occasion { margin-left: -1px; } /* touching */
  .occasion:nth-child(even) { margin-top: 2.5rem; } /* the offset */
  .occasion:not(.open):hover {
    flex-grow: 1.3;
    transform: translateY(-6px);
    box-shadow:
      inset 0 1px 0 hsl(38 24% 95% / 0.12),
      0 2px 4px hsl(320 30% 8% / 0.5),
      0 16px 40px hsl(320 30% 8% / 0.45),
      0 32px 72px hsl(320 30% 8% / 0.3);
  }
  .occasion.open { flex-grow: 2.4; } /* three slats: open takes ~55% of the row */

  /* closed slat: vertical title centered, reads bottom-to-top */
  .title-vert {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: clamp(1.5rem, 1.8vw, 2rem);
    line-height: 1.15;
    color: var(--primary-fg);
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .occasion.open .title-vert { opacity: 0; }

  .occasion-head { flex: 1 0 auto; display: flex; flex-direction: column; }
  .occasion:not(.open) .occasion-head { height: 100%; }
  /* closed slat: number pinned top-centre, toggle bottom-centre */
  .occasion:not(.open) .occasion-num {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  /* glyph sits centred beneath the number on closed slats */
  .occasion:not(.open) .occasion-glyph {
    display: block;
    position: absolute;
    top: 4.25rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .occasion:not(.open) .occasion-toggle {
    top: auto;
    bottom: 2rem;
    right: 50%;
    transform: translateX(50%);
  }
  /* horizontal title + blurb only exist once the slat is open */
  .occasion-head h3,
  .occasion-head > p { display: none; }
  .occasion.open .occasion-head h3,
  .occasion.open .occasion-head > p {
    display: block;
    min-width: 20rem;
    animation: occFade 0.6s ease 0.25s both;
  }
  .occasion.open .occasion-head { flex: 0 0 auto; }

  /* detail panel: removed from layout when closed, fades in when open */
  .occasion-detail {
    display: none;
    flex: 1 1 auto;
    min-height: 0;
    transition: none;
  }
  .occasion.open .occasion-detail {
    display: block;
    overflow-y: auto;
    animation: occFade 0.6s ease 0.35s both;
  }
  .occasion-detail-inner {
    opacity: 1;
    padding: 0 2rem 2rem;
    min-width: 20rem;
  }
  .occasion.open .occasion-detail-inner { padding-bottom: 2rem; }
}

@keyframes occFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .occasion.open .occasion-head h3,
  .occasion.open .occasion-head > p,
  .occasion.open .occasion-detail { animation: none; }
}

.occasion-head {
  display: block; width: 100%; text-align: left;
  padding: 2.25rem 2rem 2rem;
  position: relative;
  color: var(--primary-fg);
}
.occasion-num {
  display: block;
  font-size: 0.6875rem; letter-spacing: 0.28em;
  color: hsl(348 26% 52% / 0.9);
  margin-bottom: 1.75rem;
}
.occasion-head h3 {
  font-size: clamp(2rem, 2.6vw, 2.625rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.occasion-head p { color: hsl(38 24% 95% / 0.55); font-size: 0.9375rem; line-height: 1.65; max-width: 22rem; }

/* plus / minus toggle */
.occasion-toggle {
  position: absolute; top: 2rem; right: 2rem;
  width: 1.75rem; height: 1.75rem;
}
.occasion-toggle::before, .occasion-toggle::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: hsl(348 26% 52% / 0.9);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1), background 0.3s;
}
.occasion-toggle::before { width: 100%; height: 1px; }
.occasion-toggle::after { width: 1px; height: 100%; }
.occasion:hover .occasion-toggle::before, .occasion:hover .occasion-toggle::after { background: var(--accent); }
.occasion.open .occasion-toggle::after { transform: rotate(90deg); }

/* expandable detail */
.occasion-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.occasion.open .occasion-detail { grid-template-rows: 1fr; }
.occasion-detail-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 2rem;
  opacity: 0;
  transition: opacity 0.5s ease 0.1s;
}
.occasion.open .occasion-detail-inner { opacity: 1; padding-bottom: 2.25rem; }
.occasion-detail-inner::before {
  content: ""; display: block;
  height: 1px; width: 100%;
  background: linear-gradient(to right, hsl(348 26% 52% / 0.5), transparent);
  margin-bottom: 1.75rem;
}
.occasion-detail-inner h4 { margin: 1.5rem 0 0.75rem; color: var(--accent-bloom); }
.occasion-detail-inner h4:first-of-type { margin-top: 0; }
.occasion-detail-inner ul { list-style: none; }
.occasion-detail-inner li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 400;
  color: hsl(38 24% 95% / 0.85);
  line-height: 1.4;
}
.occasion-detail-inner li::before {
  content: "·";
  position: absolute; left: 0.25rem;
  color: var(--accent);
}
.occasion-body {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  line-height: 1.65;
  color: hsl(38 24% 95% / 0.85);
  max-width: 30rem;
}
.occasion-cta { margin-top: 2rem; color: var(--accent-bloom); }
.occasion-cta:hover { color: var(--primary-fg); border-color: var(--primary-fg); }

/* ---------- why adorn ---------- */
.why { background: var(--primary); color: var(--primary-fg); padding: 6rem 0; }
@media (min-width: 768px) { .why { padding: 8rem 0; } }
.why-head { text-align: center; margin-bottom: 4rem; }
@media (min-width: 768px) { .why-head { margin-bottom: 6rem; } }
.why-head .eyebrow { margin-bottom: 1rem; color: var(--accent-bloom); }
.why-head h2 { font-size: clamp(2.75rem, 5.5vw, 4.25rem); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 700px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-item { border-top: 1px solid hsl(348 26% 52% / 0.4); padding-top: 1.75rem; }
.why-num { display: block; font-size: 0.6875rem; letter-spacing: 0.28em; color: var(--accent); margin-bottom: 1.25rem; }
.why-item h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.625rem;
  margin-bottom: 0.875rem;
}
.why-item p { font-size: 0.9375rem; color: hsl(38 24% 95% / 0.6); }

/* ---------- statement ---------- */
.statement {
  position: relative;
  min-height: 72vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--primary);
}
.statement > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.statement-mask {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 50% 50%, hsl(320 18% 18% / 0.5), transparent 75%),
    linear-gradient(to bottom, hsl(320 18% 22% / 0.65), hsl(320 18% 22% / 0.45) 50%, hsl(320 18% 22% / 0.7));
}
.statement-inner { position: relative; z-index: 1; text-align: center; color: var(--primary-fg); padding: 6rem 1.5rem; }
.statement-inner h2 { font-size: clamp(3rem, 7vw, 5.5rem); margin-bottom: 1.5rem; }
.statement-inner p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.7;
  color: hsl(38 24% 95% / 0.85);
}
.statement-inner .btn-outline { margin-top: 2.75rem; }

/* ---------- about / meet bita ---------- */
.about { padding: 6rem 0; }
@media (min-width: 768px) { .about { padding: 8rem 0; } }
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 64rem;
}
@media (min-width: 768px) {
  .about-inner { grid-template-columns: 5fr 7fr; gap: 5rem; }
}
.about-photo { margin: 0; }
.about-photo img, .about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.about-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: hsl(320 18% 22% / 0.05);
  border: 1px solid var(--border);
}
.about-photo-placeholder img {
  width: 5.5rem;
  height: auto;
  aspect-ratio: auto;
  opacity: 0.35;
}
.about-photo-placeholder span {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: hsl(320 18% 22% / 0.4);
}
.about-copy .eyebrow { margin-bottom: 1.25rem; }
.about-lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  color: var(--primary);
}
.about-copy h2 { font-size: clamp(2.75rem, 5vw, 4rem); color: var(--primary); margin-bottom: 1.75rem; }
.about-copy p { color: hsl(320 18% 22% / 0.7); max-width: 34rem; }
.about-copy p + p { margin-top: 1.25rem; }
.about-bio { margin-top: 1.25rem; }
.about-sign { margin-top: 2.25rem; }
.about-sign cite {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  color: var(--primary);
}
.about-sign small {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
}

/* ---------- love letters ---------- */
.letters {
  position: relative; overflow: hidden;
  background: var(--letters-bg); color: var(--cream);
  padding: 6rem 0;
}
@media (min-width: 768px) { .letters { padding: 8rem 0; } }
.letters-wallpaper { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.letters-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--letters-bg) 55%, transparent) 0%,
    color-mix(in srgb, var(--letters-bg) 85%, transparent) 70%,
    color-mix(in srgb, color-mix(in srgb, var(--letters-bg), black 22%) 92%, transparent) 100%
  );
}
.letters-head { position: relative; text-align: center; margin-bottom: 4rem; }
@media (min-width: 768px) { .letters-head { margin-bottom: 6rem; } }
.letters-head .eyebrow { color: var(--cream); opacity: 0.7; margin-bottom: 1.25rem; }
.letters-head h2 { font-size: clamp(4rem, 9vw, 8rem); line-height: 0.9; color: var(--cream); }
.letters-head p {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  max-width: 36rem; margin: 1.5rem auto 0; opacity: 0.78;
}
.letters-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .letters-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.letter { background: var(--cream); padding: 2rem; display: flex; flex-direction: column; }
@media (min-width: 768px) { .letter { padding: 2.5rem; } }
.letter blockquote {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.5;
  color: color-mix(in srgb, var(--letters-bg), black 45%); text-wrap: balance;
}
.letter footer { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--letters-bg) 25%, transparent); }
/* invitation card — outlined, not cream, so it reads as a call-out */
.letter-invite {
  background: transparent;
  border: 1px solid hsl(38 24% 95% / 0.35);
  color: var(--cream);
  justify-content: center;
  gap: 1.5rem;
}
.letter-invite p {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.5;
  text-wrap: balance;
}
.letter-invite .cta-line {
  margin-top: 0; align-self: flex-start;
  color: hsl(38 24% 95% / 0.85);
  border-color: hsl(38 24% 95% / 0.3);
}
.letter-invite .cta-line:hover { color: #fff; border-color: #fff; }
.letter cite { display: block; font-style: normal; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.28em; color: color-mix(in srgb, var(--letters-bg), black 30%); }
.letter small { display: block; margin-top: 0.4rem; font-size: 0.75rem; color: var(--letters-bg); }

/* ---------- inquiry ---------- */
.inquiry { position: relative; padding: 6rem 0; }
@media (min-width: 768px) { .inquiry { padding: 10rem 0; } }
.inquiry-line {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 1px; height: 75%;
  background: linear-gradient(to bottom, transparent, var(--accent-soft), transparent);
  display: none;
}
@media (min-width: 768px) {
  .inquiry-line { display: block; }
  .inquiry-line.left { left: 2.5rem; }
  .inquiry-line.right { right: 2.5rem; }
}
.inquiry-inner { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.inquiry .eyebrow { margin-bottom: 1.5rem; }
.inquiry h2 { font-size: clamp(3rem, 6vw, 4.5rem); color: var(--primary); margin-bottom: 1rem; }
.inquiry > .inquiry-inner > p { max-width: 32rem; margin: 2rem auto 0; color: hsl(320 18% 22% / 0.75); }
.inquiry-cta { margin-top: 3.5rem; }
/* HoneyBook embedded form container */
.inquiry-cta > div[class^="hb-p-"] { max-width: 40rem; margin: 0 auto; text-align: left; }
.inquiry-note { margin-top: 1.5rem; font-size: 0.8125rem; color: hsl(320 18% 22% / 0.75); }

/* ---------- footer ---------- */
.footer { background: var(--primary); color: var(--primary-fg); padding: 5rem 1.5rem 4rem; text-align: center; }
@media (min-width: 768px) { .footer { padding: 7rem 1.5rem 5rem; } }
.footer .eyebrow { margin-bottom: 1.5rem; color: var(--accent-bloom); }
.footer-logo { display: inline-block; width: min(18rem, 80vw); margin-bottom: 2.5rem; }
@media (min-width: 768px) { .footer-logo { width: min(22rem, 80vw); } }
.footer-logo img { width: 100%; height: auto; }
.footer-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: hsl(38 24% 95% / 0.6);
  margin-bottom: 1.5rem;
}
.footer-contact {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; font-size: 0.875rem; color: hsl(38 24% 95% / 0.65);
}
@media (min-width: 768px) { .footer-contact { flex-direction: row; gap: 1.5rem; } }
.footer-contact a:hover { color: var(--accent); }
.footer-contact .dot { display: none; color: hsl(348 26% 52% / 0.4); }
@media (min-width: 768px) { .footer-contact .dot { display: inline; } }
.footer-legal a {
  color: hsl(38 24% 95% / 0.65);
  border-bottom: 1px solid hsl(38 24% 95% / 0.2);
  transition: color 0.3s, border-color 0.3s;
}
.footer-legal a:hover { color: var(--accent); border-color: currentColor; }
.footer-social {
  margin-top: 1.75rem;
  display: flex; justify-content: center; gap: 1.5rem;
}
.footer-social a {
  color: hsl(38 24% 95% / 0.55);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--accent); }
.footer-social svg { display: block; }

.footer-legal {
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid hsl(38 24% 95% / 0.1);
  font-size: 0.75rem; letter-spacing: 0.04em;
  color: hsl(38 24% 95% / 0.6);
}
