/* =========================================================
   THE GRAIZE MAIDS — Luxury Food & Events
   Light & airy elegance
   ========================================================= */

:root {
  /* Palette — matched to brand collateral (warm cream · antique gold · deep navy) */
  --ivory:      #FAF4E9;
  --cream:      #F2E8D6;
  --cream-deep: #EADEC7;
  --ink:        #322D25;
  --navy:       #26313F;
  --navy-deep:  #1F2833;
  --taupe:      #6E6555;
  --taupe-soft: #9B9080;
  --gold:       #B4924E;
  --gold-soft:  #C9A961;
  --sage:       #7E8560;
  --line:       #E3D8C3;
  --white:      #FFFDF9;

  /* Type */
  --script: 'Alex Brush', 'Cormorant Garamond', cursive;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 10px;
  --radius-img: 18px;
  --radius-pill: 100px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
p  { font-size: clamp(1rem, 1.1vw, 1.08rem); color: var(--taupe); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}

.script {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 10vw, 9rem); }
.section--cream { background: var(--cream); }
.section--deep  { background: var(--cream-deep); }
.center { text-align: center; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--taupe); max-width: 46ch; }
.center .lead { margin-inline: auto; }

.divider {
  width: 92px; height: 22px; border: 0;
  background: url('../assets/sprig.svg') left center/contain no-repeat;
  margin: 1.4rem 0;
}
.center .divider { margin-inline: auto; background-position: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 400;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--ink); color: var(--ivory);
  cursor: pointer; transition: all 0.4s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn--gold:hover { background: transparent; color: var(--gold); }
.btn--light { border-color: var(--ivory); background: transparent; color: var(--ivory); }
.btn--light:hover { background: var(--ivory); color: var(--ink); }

/* ---------- Soft rounding & depth (flair) ---------- */
.split__media, .gallery__item, .video-embed, .ig-cell { border-radius: var(--radius-img); }
.card { border-radius: 16px; }
.split__media { box-shadow: 0 34px 60px -42px rgba(38,49,63,0.5); }
.gallery__item { box-shadow: 0 22px 44px -34px rgba(38,49,63,0.4); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem var(--gutter);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.site-header.scrolled {
  background: rgba(252, 250, 246, 0.92);
  backdrop-filter: blur(10px);
  padding-block: 1rem;
  box-shadow: 0 1px 0 var(--line);
}
/* Dark scrim behind the nav so links stay legible over any hero photo */
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(24,29,37,0.6) 0%, rgba(24,29,37,0) 100%);
  transition: opacity 0.5s var(--ease); pointer-events: none;
}
.site-header.scrolled::before { opacity: 0; }
.brand { display: block; line-height: 1; }
.brand__name {
  display: block;
  font-family: var(--script);
  font-size: 2.1rem; font-weight: 400; letter-spacing: 0.01em;
  color: var(--gold-soft); line-height: 0.8;
}
.brand small {
  display: block; font-family: var(--sans); font-weight: 400;
  font-size: 0.5rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(250,244,233,0.82); margin-top: 0.4rem; padding-left: 0.2rem;
}
.site-header.scrolled .brand__name { color: var(--gold); }
.site-header.scrolled .brand small { color: var(--taupe); }
.brand__logo { display: block; height: 50px; width: auto; transition: height 0.4s var(--ease); }
.site-header.scrolled .brand__logo { height: 40px; }
.site-footer .brand__logo { height: 60px; margin-bottom: 0.3rem; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a {
  font-family: var(--sans); font-weight: 400;
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory); position: relative; padding-block: 0.25rem;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.35s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--gold); }
.site-header.scrolled .nav a { color: var(--ink); }
.site-header.scrolled .nav a.active { color: var(--gold); }

.nav-cta {
  border: 1px solid currentColor; padding: 0.7rem 1.5rem !important;
  border-radius: var(--radius-pill);
}
.nav-cta::after { display: none; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 6px; z-index: 120;
}
.nav-toggle span {
  width: 26px; height: 1.5px; background: var(--ivory);
  transition: all 0.35s var(--ease);
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.open span { background: var(--ink) !important; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 104px 0 56px;
  color: var(--ivory);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  /* Hero photo — swap assets/hero.jpg for a preferred hero image any time. */
  background:
    linear-gradient(90deg, rgba(24,29,37,0.66) 0%, rgba(24,29,37,0.34) 46%, rgba(24,29,37,0.06) 100%),
    linear-gradient(180deg, rgba(24,29,37,0.12) 0%, rgba(24,29,37,0.12) 55%, rgba(24,29,37,0.5) 100%),
    url('../assets/hero.jpg') center 30%/cover no-repeat,
    var(--navy);
}
.hero::after {
  content: ''; position: absolute; inset: clamp(16px, 3vw, 30px);
  border: 1px solid rgba(201,169,97,0.55); pointer-events: none; z-index: 1;
}
.hero__inner { max-width: 900px; position: relative; z-index: 2; }
.hero__tagline {
  margin-top: 1.8rem; font-family: var(--sans); font-weight: 400;
  font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-soft);
}
.hero h1 { color: var(--ivory); margin: 0.5rem 0 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero .eyebrow { color: var(--gold-soft); }
.hero p { color: rgba(252,250,246,0.86); font-size: clamp(1.05rem, 1.5vw, 1.3rem); max-width: 40ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(252,250,246,0.7); display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
}
.scroll-cue::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(var(--gold-soft), transparent);
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue { 0%,100%{opacity:0.3;transform:scaleY(0.6)} 50%{opacity:1;transform:scaleY(1)} }

/* ---------- Section headings ---------- */
.sec-head { max-width: 620px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.center .sec-head { margin-inline: auto; }

/* ---------- Intro / split ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem); align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  aspect-ratio: 4/5; background: var(--cream-deep) center/cover no-repeat;
  border-radius: var(--radius); position: relative; overflow: hidden;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.stat-row { display: flex; gap: 2.5rem; margin-top: 2.2rem; flex-wrap: wrap; }
.stat b {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 500;
  color: var(--gold); display: block; line-height: 1;
}
.stat span { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--taupe-soft); }

/* ---------- Services grid ---------- */
.grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.6rem 2rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -30px rgba(43,39,35,0.35);
  border-color: var(--gold-soft);
}
.card__num {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  color: var(--gold); margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.8rem; }
.card p { font-size: 0.98rem; }
.card__link {
  display: inline-block; margin-top: 1.4rem;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 3px;
}

/* ---------- Feature list ---------- */
.features { display: grid; gap: 1.6rem; }
.feature { display: flex; gap: 1.2rem; align-items: flex-start; }
.feature__mark {
  flex: none; width: 42px; height: 42px; border: 1px solid var(--gold);
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; color: var(--gold);
}
.feature h4 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.3rem; }
.feature p { font-size: 0.96rem; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--cream-deep); aspect-ratio: 1;
}
.gallery__item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery__item.wide { grid-column: span 2; aspect-ratio: auto; }
.gallery--tall .gallery__item { aspect-ratio: 3 / 4; }

/* ---------- Video embed ---------- */
.video-embed {
  position: relative; width: 100%; max-width: 920px; margin: 0 auto;
  aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gold); box-shadow: 0 30px 60px -34px rgba(38,49,63,0.55);
  background: var(--navy); cursor: pointer;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed__poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}
.video-embed:hover .video-embed__poster { transform: scale(1.04); filter: brightness(0.9); }
.video-embed__play {
  position: absolute; inset: 0; margin: auto; width: 78px; height: 78px;
  border-radius: 50%; background: rgba(180,146,78,0.92);
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.5);
  display: grid; place-items: center; transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.video-embed:hover .video-embed__play { transform: scale(1.08); background: var(--gold); }
.video-embed__play::after {
  content: ''; width: 0; height: 0; margin-left: 6px;
  border-style: solid; border-width: 15px 0 15px 24px;
  border-color: transparent transparent transparent var(--white);
}
.video-embed:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1rem 1.2rem;
  background: linear-gradient(transparent, rgba(30,26,22,0.7));
  color: var(--ivory); font-size: 0.78rem; letter-spacing: 0.1em;
  opacity: 0; transform: translateY(10px); transition: all 0.5s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- Testimonials ---------- */
.quote { max-width: 780px; margin-inline: auto; text-align: center; }
.quote p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.45; color: var(--ink);
}
.quote cite {
  display: block; margin-top: 1.8rem; font-family: var(--sans); font-style: normal;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; color: var(--ivory); text-align: center;
  padding-block: clamp(5rem, 10vw, 8rem); overflow: hidden;
}
.cta-band__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(rgba(30,26,22,0.72), rgba(30,26,22,0.72)),
    url('../assets/cta.jpg') center/cover no-repeat, var(--ink);
}
.cta-band h2 { color: var(--ivory); }
.cta-band p { color: rgba(252,250,246,0.85); margin-inline: auto; }

/* ---------- Bar Maids (drinks arm) ---------- */
.barmaids { background: var(--navy); color: var(--ivory); }
.barmaids .eyebrow { color: var(--gold-soft); }
.barmaids__logo { width: min(340px, 82%); height: auto; margin: 0.6rem 0 1.2rem; }
.barmaids__text { color: rgba(250,244,233,0.82); margin-bottom: 2rem; max-width: 46ch; }
.barmaids .divider { filter: none; }

/* ---------- Instagram grid ---------- */
.ig-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.6rem;
  margin-top: 2.5rem;
}
.ig-cell {
  position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius);
  background: var(--cream-deep); display: block;
}
.ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.ig-cell:hover img { transform: scale(1.07); }
.ig-cell::after {
  content: ''; position: absolute; inset: 0; background: rgba(38,49,63,0.35);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.ig-cell:hover::after { opacity: 1; }
.ig-cell__icon {
  position: absolute; inset: 0; margin: auto; width: 30px; height: 30px; z-index: 1;
  border: 2px solid var(--ivory); border-radius: 9px;
  opacity: 0; transform: scale(0.7); transition: all 0.4s var(--ease);
}
.ig-cell__icon::after {
  content: ''; position: absolute; inset: 0; margin: auto; width: 13px; height: 13px;
  border: 2px solid var(--ivory); border-radius: 50%;
}
.ig-cell:hover .ig-cell__icon { opacity: 1; transform: scale(1); }
@media (max-width: 760px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- QR card ---------- */
.qr-card {
  display: flex; gap: 1.3rem; align-items: center; margin-top: 2rem;
  border: 1px solid var(--gold); border-radius: var(--radius);
  padding: 1.3rem 1.5rem; background: var(--white);
}
.qr-card img { width: 108px; height: 108px; flex: none; }
.qr-card .eyebrow { margin-bottom: 0.4rem; }
.qr-card p { font-size: 0.92rem; }

/* ---------- Menus ---------- */
.menu-block { max-width: 760px; margin-inline: auto; }
.menu-block + .menu-block { margin-top: 3.5rem; }
.menu-item {
  display: flex; justify-content: space-between; gap: 1.5rem;
  align-items: baseline; padding: 1rem 0; border-bottom: 1px dotted var(--line);
}
.menu-item h4 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.menu-item p { font-size: 0.92rem; margin-top: 0.2rem; }
.menu-item .price { font-family: var(--serif); color: var(--gold); font-size: 1.25rem; white-space: nowrap; }
.tag {
  display: inline-block; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--sage); border: 1px solid var(--sage); border-radius: 20px;
  padding: 0.15rem 0.6rem; margin-left: 0.5rem; vertical-align: middle;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); }
.field { margin-bottom: 1.4rem; }
.field label {
  display: block; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 0.5rem;
}
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--sans); font-size: 1rem; font-weight: 300;
  color: var(--ink); background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.9rem 1rem; transition: border-color 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 130px; }
.contact-info li { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-info .k { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); min-width: 90px; }
.contact-info .v { color: var(--ink); }
.form-note { font-size: 0.82rem; color: var(--taupe-soft); margin-top: 1rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(250,244,233,0.7); padding-block: 4rem 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.site-footer .brand__name { color: var(--gold-soft); }
.site-footer .brand small { color: rgba(250,244,233,0.6); }
.site-footer h5 {
  font-family: var(--sans); font-weight: 400; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.2rem;
}
.site-footer a { transition: color 0.3s var(--ease); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-links li { margin-bottom: 0.7rem; font-size: 0.92rem; }
.socials { display: flex; gap: 1rem; margin-top: 1.2rem; }
.socials a {
  width: 38px; height: 38px; border: 1px solid rgba(252,250,246,0.25);
  border-radius: 50%; display: grid; place-items: center; transition: all 0.3s var(--ease);
}
.socials a:hover { border-color: var(--gold-soft); background: var(--gold-soft); color: var(--ink); }
.socials svg { width: 17px; height: 17px; display: block; }
.footer-bottom {
  border-top: 1px solid rgba(252,250,246,0.12); padding-top: 2rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.78rem; letter-spacing: 0.05em;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  min-height: 52vh; display: flex; align-items: flex-end;
  color: var(--ivory); position: relative; padding-bottom: 3.5rem;
}
.page-hero::after {
  content: ''; position: absolute; inset: clamp(14px, 2.4vw, 24px);
  border: 1px solid rgba(201,169,97,0.5); pointer-events: none; z-index: 1;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(rgba(28,36,47,0.62), rgba(28,36,47,0.74)),
    url('../assets/photos/boards-rose.jpg') center/cover no-repeat,
    var(--navy);
}
.page-hero h1 { color: var(--ivory); }
.page-hero .eyebrow { color: var(--gold-soft); }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(252,250,246,0.65); margin-top: 1rem; }
.breadcrumb a:hover { color: var(--gold-soft); }

/* ---------- Image placeholders (swap for real photos) ---------- */
.ph {
  position: relative; width: 100%; height: 100%;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(198,166,100,0.28), transparent 55%),
    radial-gradient(120% 120% at 90% 90%, rgba(138,154,123,0.25), transparent 55%),
    linear-gradient(145deg, var(--cream-deep), var(--cream));
  display: grid; place-items: center; overflow: hidden;
}
.ph::before {
  content: attr(data-label);
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  color: rgba(43,39,35,0.32); letter-spacing: 0.05em; text-align: center;
  padding: 1rem;
}
.ph--dark {
  background:
    radial-gradient(130% 130% at 25% 15%, rgba(176,141,87,0.35), transparent 55%),
    radial-gradient(130% 130% at 85% 90%, rgba(43,39,35,0.6), transparent 60%),
    linear-gradient(150deg, #3a332b, #211d18);
}
.ph--dark::before { color: rgba(252,250,246,0.32); }
.ph__mono {
  font-family: var(--serif); font-size: 2.4rem; color: rgba(176,141,87,0.55);
  border: 1px solid rgba(176,141,87,0.45); border-radius: 50%;
  width: 84px; height: 84px; display: grid; place-items: center; position: relative; z-index: 1;
}

/* ---------- Reveal animation ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-cue::after { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 16/11; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item.wide { grid-column: span 2; }
}
@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    gap: 2rem; background: var(--ivory);
    transform: translateX(100%); transition: transform 0.5s var(--ease);
  }
  .nav.open { transform: none; }
  .nav a { font-size: 1rem; color: var(--ink) !important; }
  .site-header.at-top .brand { color: var(--ivory); }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
}
