:root {
  --ink: #120f16;
  --ink-soft: #2a2430;
  --cream: #faf6f2;
  --blush: #f3e8ee;
  --rose: #c45c7a;
  --rose-dark: #9a3d5c;
  --gold: #c4a46a;
  --muted: #6d6570;
  --card: #ffffff;
  --line: #e8dfe4;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --max: 1120px;
  --radius: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 16px;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--rose-dark); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Top bar */
.topbar {
  background: var(--ink);
  color: #e8e0e6;
  font-size: 12.5px;
  padding: 8px 20px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.topbar a { color: #f3e8ee; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: #fff; }

header.site {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250,246,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  max-width: var(--max); margin: 0 auto;
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(145deg, var(--rose), #6b2d44);
  color: #fff; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 20px;
}
.brand strong { display: block; font-size: 14px; letter-spacing: 0.01em; }
.brand em { display: block; font-style: normal; font-size: 11px; color: var(--muted); font-weight: 600; }
.nav { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.nav a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 13px;
  padding: 8px 10px; border-radius: 999px;
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--blush); color: var(--rose-dark); }
.nav a.cta {
  background: var(--ink); color: #fff !important; padding: 9px 14px;
}
.nav a.cta:hover { background: var(--ink-soft); }
.nav-toggle {
  display: none; border: 1px solid var(--line); background: #fff;
  border-radius: 10px; padding: 8px 12px; font-weight: 700;
}

/* Full-bleed cinematic hero (stage intro) */
.hero-stage {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #0a0810;
}
.hero-stage-bg {
  position: absolute; inset: 0;
}
.hero-stage-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
}
.hero-stage-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,16,0.25) 0%, rgba(10,8,16,0.15) 35%, rgba(10,8,16,0.88) 100%),
    linear-gradient(90deg, rgba(10,8,16,0.55) 0%, transparent 55%);
}
.hero-stage-content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  padding: 48px 20px 56px;
  width: 100%;
}
.hero-stage .eyebrow { color: #f0c9d6; }
.hero-stage h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.05; margin: 0 0 14px; font-weight: 700;
  max-width: 14ch;
  text-shadow: 0 8px 40px rgba(0,0,0,0.45);
}
.hero-stage .lead {
  color: rgba(255,255,255,0.9);
  font-size: 1.12rem;
  max-width: 34em;
  margin: 0 0 20px;
}
.hero-stage .btn.primary { background: #fff; color: var(--ink); }
.hero-stage .btn.ghost {
  border-color: rgba(255,255,255,0.45); color: #fff;
}
.hero-stage .hero-points { color: rgba(255,255,255,0.8); }
.hero-stage .hero-points li::before { color: #f0c9d6; }

/* Classic split hero (inner pages) */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px;
  max-width: var(--max); margin: 0 auto; padding: 36px 20px 20px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px;
  font-weight: 700; color: var(--rose-dark); margin: 0 0 10px;
}
.hero h1 {
  font-family: var(--display); font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.05; margin: 0 0 14px; font-weight: 700;
}
.lead { font-size: 1.08rem; color: #3d3642; margin: 0 0 18px; max-width: 36em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.hero-points {
  list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 14px;
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.hero-points li::before { content: "✓ "; color: var(--rose); }
.hero-media {
  position: relative; border-radius: 22px; overflow: hidden;
  aspect-ratio: 4/5; max-height: 560px;
  box-shadow: 0 18px 50px rgba(18,15,22,0.14);
  border: 1px solid var(--line);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  background: linear-gradient(transparent, rgba(12,8,14,0.78));
  color: #fff; padding: 28px 8px 8px; font-size: 13px;
}
.hero-badge strong { display: block; font-family: var(--display); font-size: 1.25rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 999px; font-weight: 700; font-size: 14px;
  text-decoration: none; border: none; cursor: pointer; font-family: inherit;
}
.btn.primary { background: var(--ink); color: #fff; }
.btn.primary:hover { background: var(--ink-soft); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn.rose { background: var(--rose-dark); color: #fff; }
.btn.full { width: 100%; }

.section { max-width: var(--max); margin: 0 auto; padding: 40px 20px; }
.section-title {
  font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 8px; font-weight: 700;
}
.section-sub { color: var(--muted); margin: 0 0 22px; max-width: 40em; }

.priority-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 16px;
}
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 8px 28px rgba(18,15,22,0.05);
}
.card.featured { border-color: var(--rose); box-shadow: 0 0 0 1px var(--rose), 0 12px 36px rgba(154,61,92,0.12); }
.card-media { aspect-ratio: 16/10; overflow: hidden; background: #1a1420; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-family: var(--display); font-size: 1.55rem; margin: 0; }
.card-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.card-body p { margin: 0; color: #4a4450; font-size: 14.5px; flex: 1; }
.card-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

/* Mosaic strip on home */
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 10px;
}
.mosaic figure {
  margin: 0; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: #1a1420; position: relative;
}
.mosaic figure:first-child { grid-row: 1 / span 2; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: #fff; font-size: 12px; font-weight: 600;
}

/* Gallery page */
.gallery-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.gallery-page a {
  display: block; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: #1a1420;
  aspect-ratio: 1;
  text-decoration: none; color: inherit;
  position: relative;
}
.gallery-page a.wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-page a.tall { aspect-ratio: 3/4; }
.gallery-page img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.gallery-page a:hover img { transform: scale(1.05); }
.gallery-page span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff; font-size: 12px; font-weight: 600;
  opacity: 0; transition: opacity .25s;
}
.gallery-page a:hover span { opacity: 1; }

.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.gallery figure {
  margin: 0; border-radius: 14px; overflow: hidden; aspect-ratio: 1;
  border: 1px solid var(--line); background: #1a1420;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.04); }

.quotes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
blockquote {
  margin: 0; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px;
}
blockquote p { margin: 0 0 10px; font-size: 14.5px; }
blockquote footer { font-size: 12px; color: var(--muted); font-weight: 700; }

.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
}
.split img {
  border-radius: 18px; width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border: 1px solid var(--line); box-shadow: 0 16px 40px rgba(18,15,22,0.1);
}
.prose h2, .prose h3 { font-family: var(--display); }
.prose p { color: #3d3642; }

.band {
  background: linear-gradient(135deg, #1a1420, #3a2432 55%, #6b3048);
  color: #fff; padding: 48px 20px; margin: 20px 0 0;
}
.band .wrap { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.band h2 { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0 0 6px; }
.band p { margin: 0; opacity: 0.9; max-width: 36em; }
.band .btn.primary { background: #fff; color: var(--ink); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.step {
  background: var(--blush); border: 1px solid #eddfe6; border-radius: var(--radius); padding: 16px;
}
.step-n {
  display: inline-grid; place-items: center; width: 28px; height: 28px;
  border-radius: 50%; background: var(--ink); color: #fff; font-weight: 700; font-size: 13px;
}
.step h3 { margin: 10px 0 6px; font-size: 1.05rem; }
.step p { margin: 0; font-size: 14px; color: #4a4450; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.contact-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
}
.contact-card h3 { margin: 0 0 8px; font-family: var(--display); font-size: 1.4rem; }
.contact-card p, .contact-card li { color: #4a4450; font-size: 14.5px; }
.contact-card ul { padding-left: 1.1em; }

/* Page hero with optional photo strip */
.page-hero {
  max-width: var(--max); margin: 0 auto; padding: 28px 20px 8px;
}
.page-hero h1 {
  font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 8px;
}
.page-hero p { color: var(--muted); margin: 0 0 8px; max-width: 40em; }

.page-hero-visual {
  position: relative;
  min-height: 280px;
  display: grid; align-items: end;
  color: #fff; overflow: hidden; background: #120f16;
  margin-bottom: 8px;
}
.page-hero-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.85;
}
.page-hero-visual .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,8,16,.2), rgba(12,8,16,.85));
}
.page-hero-visual .inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 40px 20px 32px; width: 100%;
}
.page-hero-visual .eyebrow { color: #f0c9d6; }
.page-hero-visual h1 {
  font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.2rem); margin: 0 0 8px;
}
.page-hero-visual p { margin: 0; color: rgba(255,255,255,.88); max-width: 38em; }

footer.site {
  border-top: 1px solid var(--line); padding: 28px 20px 40px; text-align: center;
  color: var(--muted); font-size: 13px;
}
footer.site a { color: var(--ink); font-weight: 600; text-decoration: none; margin: 0 6px; }
footer.site .fine { font-size: 11.5px; margin-top: 10px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(8,6,12,.92);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(96vw, 1200px); max-height: 88vh;
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox button {
  position: absolute; top: 16px; right: 16px;
  background: #fff; border: none; border-radius: 999px;
  width: 40px; height: 40px; font-size: 20px; cursor: pointer; font-weight: 700;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 12px; right: 12px; top: 64px;
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    flex-direction: column; align-items: stretch; padding: 10px; box-shadow: 0 16px 40px rgba(0,0,0,.08);
  }
  .nav.open { display: flex; }
  .hero, .priority-grid, .split, .quotes, .steps, .contact-grid, .gallery, .mosaic {
    grid-template-columns: 1fr;
  }
  .mosaic { grid-template-rows: auto; }
  .mosaic figure:first-child { grid-row: auto; min-height: 240px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-page a.wide { grid-column: span 1; aspect-ratio: 1; }
  .hero-stage { min-height: 70vh; }
  .hero-media { max-height: 420px; }
}
