@import url('fonts.879b2e8c.css');

/* ============================================================
   EVERNIGHT - design system
   Ivory ground, midnight ink, gold used sparingly. Serif for the
   emotional register, sans for the practical one.
   ============================================================ */

:root{
  --midnight:#0C1118;
  --ivory:#F5F1E8;
  --ivory-2:#EDE7DA;
  --slate:#4A5560;
  --grey:#B9B3AA;
  --sand:#D6C6AE;
  --gold:#C7A35A;

  --ink:var(--midnight);
  --paper:var(--ivory);
  --muted:var(--slate);
  --faint:#8B8880;
  --line:#DCD5C7;
  --line-strong:#C6BEAE;
  --focus:var(--gold);

  --serif:'Cormorant Garamond',Georgia,'Times New Roman',serif;
  --sans:'DM Sans',system-ui,-apple-system,'Segoe UI',sans-serif;

  --wrap:1200px;
  --gut:clamp(20px,5vw,56px);
  --radius:2px;
  --shadow:0 30px 60px -30px rgba(12,17,24,.45), 0 12px 24px -16px rgba(12,17,24,.3);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img,svg{ max-width:100%; height:auto; display:block; }
a{ color:inherit; }
button{ font-family:inherit; }
:focus-visible{ outline:2px solid var(--focus); outline-offset:3px; }
::selection{ background:var(--sand); color:var(--ink); }

.skip{ position:absolute; left:-999px; top:8px; background:var(--ink); color:var(--ivory); padding:8px 12px; z-index:100; }
.skip:focus{ left:8px; }

/* ---------- layout ---------- */
.wrap{ max-width:var(--wrap); margin-inline:auto; padding-inline:var(--gut); }
.wrap--narrow{ max-width:760px; }
.section{ padding-block:clamp(64px,9vw,120px); }
.section--tight{ padding-block:clamp(40px,6vw,72px); }
.section--tint{ background:var(--ivory-2); }
.section--dark{ background:var(--midnight); color:var(--ivory); --line:#232B34; --line-strong:#2F3944; --muted:var(--grey); --faint:#7E8892; }
.section + .section:not(.section--dark){ border-top:1px solid var(--line); }
.section--dark + .section{ border-top:0; }

.grid{ display:grid; gap:clamp(24px,4vw,48px); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:960px){ .grid-3,.grid-4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; } }

.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,6vw,88px); align-items:center; }
@media (max-width:900px){ .split{ grid-template-columns:1fr; } }

.center{ text-align:center; }
.center > *{ margin-inline:auto; }

/* ---------- typography ---------- */
h1,h2,h3,h4{ font-family:var(--serif); font-weight:500; line-height:1.05; margin:0; text-wrap:balance; letter-spacing:-.005em; }
h1{ font-size:clamp(46px,7vw,92px); }
h2{ font-size:clamp(34px,4.6vw,58px); }
h3{ font-size:clamp(26px,2.8vw,34px); }
h4{ font-size:22px; }
p{ margin:0 0 1.1em; }
p:last-child{ margin-bottom:0; }
.lede{ font-size:clamp(18px,2vw,21px); line-height:1.55; color:var(--muted); max-width:56ch; font-weight:300; }
.section--dark .lede{ color:var(--grey); }
.eyebrow{
  font-size:12px; font-weight:500; letter-spacing:.2em; text-transform:uppercase;
  color:var(--faint); margin:0 0 18px; display:block;
}
.eyebrow--gold{ color:var(--gold); }
.muted{ color:var(--muted); }
.small{ font-size:15px; }
.serif{ font-family:var(--serif); }
.quote{ font-family:var(--serif); font-style:italic; font-size:clamp(24px,3vw,36px); line-height:1.3; font-weight:400; text-wrap:balance; }
.rule{ width:56px; height:1px; background:var(--gold); border:0; margin:26px 0; }
.center .rule{ margin-inline:auto; }
.prose{ max-width:64ch; }
.prose p + p{ margin-top:1.1em; }
.prose h2,.prose h3{ margin-top:1.6em; margin-bottom:.5em; font-size:clamp(26px,2.8vw,34px); }
.prose ul{ padding-left:1.2em; }
.prose li{ margin-bottom:.4em; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 28px; border:1px solid var(--ink); border-radius:var(--radius);
  background:var(--ink); color:var(--ivory); text-decoration:none; cursor:pointer;
  font:500 13px/1 var(--sans); letter-spacing:.16em; text-transform:uppercase;
  transition:background .2s,color .2s,border-color .2s,transform .2s;
}
.btn:hover{ background:#1B2430; border-color:#1B2430; }
.btn:active{ transform:translateY(1px); }
.btn--ghost{ background:transparent; color:var(--ink); }
.btn--ghost:hover{ background:var(--ink); color:var(--ivory); }
.section--dark .btn,.btn--light{ background:var(--ivory); color:var(--ink); border-color:var(--ivory); }
.section--dark .btn:hover,.btn--light:hover{ background:#fff; border-color:#fff; }
.section--dark .btn--ghost{ background:transparent; color:var(--ivory); border-color:rgba(245,241,232,.5); }
.section--dark .btn--ghost:hover{ background:var(--ivory); color:var(--ink); border-color:var(--ivory); }
.btn--sm{ padding:11px 18px; font-size:12px; }
.btn--wide{ width:100%; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; }
.link{ text-decoration:none; border-bottom:1px solid var(--line-strong); padding-bottom:1px; transition:border-color .2s; }
.link:hover{ border-color:var(--ink); }
.section--dark .link:hover{ border-color:var(--ivory); }
.link--arrow::after{ content:' \2192'; }

/* ---------- header ---------- */
/* No backdrop blur: it re-rasterises whatever scrolls beneath the header on
   every frame, and beneath it is a star field of a few thousand circles. */
.site-header{ position:sticky; top:0; z-index:50; background:rgba(245,241,232,.97); border-bottom:1px solid var(--line); }
.site-header.on-dark{ background:rgba(12,17,24,.96); color:var(--ivory); border-bottom-color:rgba(245,241,232,.12); }
.bar{ display:flex; align-items:center; justify-content:space-between; height:72px; gap:24px; }
.logo{ display:inline-flex; align-items:center; gap:10px; text-decoration:none; }
.logo svg{ width:18px; height:18px; color:var(--gold); }
.logo .wm{ font-family:var(--serif); font-size:26px; font-weight:500; letter-spacing:.06em; line-height:1; }
.nav{ display:flex; align-items:center; gap:clamp(18px,2.6vw,36px); }
.nav a{ text-decoration:none; font-size:14px; font-weight:500; letter-spacing:.06em; opacity:.85; transition:opacity .2s; }
.nav a:hover,.nav a[aria-current]{ opacity:1; }
.nav a[aria-current]:not(.btn){ border-bottom:1px solid var(--gold); padding-bottom:2px; }
.nav .btn{ padding:12px 20px; font-size:12px; letter-spacing:.14em; opacity:1; }
.on-dark .nav .btn{ background:var(--ivory); color:var(--ink); border-color:var(--ivory); }
.burger{ display:none; background:none; border:0; padding:8px; cursor:pointer; color:inherit; }
.burger span{ display:block; width:22px; height:1.5px; background:currentColor; margin:5px 0; transition:transform .25s,opacity .25s; }
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }
@media (max-width:860px){
  .burger{ display:block; }
  .nav{ display:none; position:absolute; left:0; right:0; top:72px; flex-direction:column; align-items:stretch; gap:0; background:var(--paper); border-bottom:1px solid var(--line); padding:8px var(--gut) 20px; }
  .on-dark .nav{ background:var(--midnight); }
  .nav.open{ display:flex; }
  .nav a{ padding:14px 0; border-bottom:1px solid var(--line); font-size:16px; }
  .nav a[aria-current]:not(.btn){ border-bottom:1px solid var(--line); }
  .nav .btn{ margin-top:16px; border-bottom:1px solid var(--ink); }
}

/* ---------- hero ---------- */
.hero{ position:relative; overflow:hidden; }
.hero .split{ align-items:center; }
.hero h1{ margin-bottom:22px; }
.hero .actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.hero__art{ justify-self:center; width:min(100%,440px); }
@media (max-width:900px){ .hero__art{ width:min(100%,360px); } }

/* ---------- artwork mockups ---------- */
.art{ position:relative; aspect-ratio:1/1.414; width:100%; background:#f4f1ea; box-shadow:var(--shadow); }
.art svg,.art img{ position:absolute; inset:0; width:100%; height:100%; }
.art--black{ border:calc(10px + .9vw) solid #1A1A1A; box-shadow:var(--shadow), inset 0 0 0 1px rgba(255,255,255,.06); }
.art--wood{ border:calc(10px + .9vw) solid #B08A5B; border-image:linear-gradient(90deg,#C29A6A,#A87F52 30%,#B8905F 55%,#A07949) 1; }
/* A framed piece is the print with the frame straight around it: no mount,
   no white space. The print sets the height. */
.art--framed{ aspect-ratio:auto; }
.art--framed .art__mount{ position:static; padding:0; background:var(--midnight); }
.art--framed.is-empty .art__mount{ aspect-ratio:1/1.414; display:grid; place-items:center; color:var(--grey); }
.art--framed .art__mount svg,.art--framed .art__mount img{ position:static; width:100%; height:auto; }
.art--none{ box-shadow:0 20px 50px -24px rgba(12,17,24,.5); }
.art.is-empty{ display:grid; place-items:center; color:var(--faint); font-size:14px; letter-spacing:.1em; text-transform:uppercase; }
.art--wide{ aspect-ratio:1.414/1; }

/* ---------- product tiles ---------- */
.tile{ display:block; text-decoration:none; }
.tile__art{ padding:8% 12% 6%; background:var(--ivory-2); transition:background .25s; }
.tile:hover .tile__art{ background:#E6DFD0; }
.tile__art .art{ box-shadow:0 24px 40px -24px rgba(12,17,24,.55); }
.tile__body{ padding:20px 4px 0; }
.tile__name{ font-family:var(--serif); font-size:26px; font-weight:500; line-height:1.1; white-space:nowrap; }
.tile__sub{ font-size:14px; color:var(--muted); margin-top:4px; }
.tile__price{ font-size:13px; letter-spacing:.08em; color:var(--muted); margin-top:10px; }
.tile__price b{ color:var(--ink); font-weight:500; }
.tile__soon{ font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); margin-top:10px; }

/* ---------- steps ---------- */
.steps{ counter-reset:step; }
.step{ position:relative; padding-top:22px; border-top:1px solid var(--line-strong); }
.step__num{ font-family:var(--serif); font-size:15px; letter-spacing:.2em; color:var(--gold); margin-bottom:22px; display:block; }
.step h3{ margin-bottom:10px; }
.step p{ color:var(--muted); max-width:34ch; }

/* ---------- occasions ---------- */
.occasions{ display:flex; flex-wrap:wrap; gap:10px 12px; }
.occasion{ text-decoration:none; padding:12px 18px; border:1px solid var(--line-strong); border-radius:999px; font-size:14px; letter-spacing:.03em; transition:background .2s,border-color .2s,color .2s; }
.occasion:hover{ background:var(--ink); color:var(--ivory); border-color:var(--ink); }
.section--dark .occasion{ border-color:rgba(245,241,232,.25); }
.section--dark .occasion:hover{ background:var(--ivory); color:var(--ink); border-color:var(--ivory); }

/* ---------- facts ---------- */
.facts{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
@media (max-width:760px){ .facts{ grid-template-columns:1fr; } }
.fact h4{ font-family:var(--serif); font-size:24px; margin-bottom:8px; }
.fact p{ color:var(--muted); font-size:15px; }

/* ---------- configurator ---------- */
.config{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:clamp(32px,5vw,72px); align-items:start; }
.config__preview{ position:sticky; top:96px; }
.config__stage{ padding:clamp(20px,4vw,48px); background:var(--ivory-2); }
.config__stage .art{ max-width:520px; margin-inline:auto; will-change:transform; }
.config__meta{ display:flex; justify-content:space-between; gap:16px; margin-top:16px; font-size:13px; color:var(--faint); letter-spacing:.04em; }
@media (max-width:900px){
  .config{ grid-template-columns:1fr; }
  .config__preview{ position:sticky; top:72px; z-index:5; background:var(--paper); margin-inline:calc(-1 * var(--gut)); padding-inline:var(--gut); }
  .config__stage{ padding:16px; }
  .config__stage .art{ max-width:min(52vw,320px); }
  .config__meta{ display:none; }
}
.config__form{ display:grid; gap:clamp(36px,4vw,52px); }
.cstep{ border-top:1px solid var(--line-strong); padding-top:22px; }
.cstep__head{ display:flex; align-items:baseline; gap:16px; margin-bottom:18px; }
.cstep__num{ font-family:var(--serif); font-size:14px; letter-spacing:.2em; color:var(--gold); }
.cstep__head h3{ font-size:26px; }
.cstep__hint{ font-size:14px; color:var(--muted); margin:2px 0 16px; }

.field{ display:block; margin-bottom:16px; }
.field:last-child{ margin-bottom:0; }
.field__label{ display:flex; justify-content:space-between; font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); margin-bottom:8px; }
.field__label small{ letter-spacing:.02em; text-transform:none; color:var(--faint); }
.input,.textarea,.select{
  width:100%; font:400 16px/1.4 var(--sans); color:var(--ink); background:#fff;
  border:1px solid var(--line-strong); border-radius:var(--radius); padding:13px 14px; transition:border-color .2s;
  appearance:none; -webkit-appearance:none;
}
.input:focus,.textarea:focus,.select:focus{ outline:none; border-color:var(--ink); }
.textarea{ min-height:96px; resize:vertical; }
.select{ background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234A5560' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; }
.row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media (max-width:520px){ .row{ grid-template-columns:1fr; } }
.counter{ font-variant-numeric:tabular-nums; }

/* place search */
.place{ position:relative; }
.place__list{ position:absolute; left:0; right:0; top:100%; z-index:20; margin:4px 0 0; padding:6px 0; list-style:none; background:#fff; border:1px solid var(--line-strong); box-shadow:0 18px 40px -20px rgba(12,17,24,.4); max-height:280px; overflow:auto; }
.place__list[hidden]{ display:none; }
.place__item{ padding:10px 14px; cursor:pointer; font-size:15px; display:flex; justify-content:space-between; gap:12px; }
.place__item small{ color:var(--faint); }
.place__item:hover,.place__item.is-active{ background:var(--ivory-2); }
.place__item--action{ color:var(--muted); font-size:14px; border-top:1px solid var(--line); }
.place__status{ font-size:13px; color:var(--faint); margin-top:8px; min-height:1.4em; }
.place__status b{ color:var(--ink); font-weight:500; }
.place__status + .cstep__hint{ margin-top:10px; }

/* swatches */
.swatches{ display:flex; flex-wrap:wrap; gap:12px; }
.swatch{ display:flex; flex-direction:column; align-items:center; gap:8px; cursor:pointer; }
.swatch input{ position:absolute; opacity:0; width:1px; height:1px; }
.swatch__dot{ width:48px; height:48px; border-radius:50%; border:1px solid rgba(12,17,24,.25); background:radial-gradient(circle at 50% 0%, rgba(255,255,255,.28), rgba(255,255,255,0) 60%), var(--sw,#24314A); box-shadow:inset 0 0 0 3px var(--paper); transition:box-shadow .2s,transform .2s; }
.swatch input:checked + .swatch__dot{ box-shadow:inset 0 0 0 3px var(--paper), 0 0 0 1.5px var(--ink); }
.swatch input:focus-visible + .swatch__dot{ outline:2px solid var(--focus); outline-offset:3px; }
.swatch__name{ font-size:12px; letter-spacing:.06em; color:var(--muted); }

/* toggles */
.toggles{ display:flex; flex-wrap:wrap; gap:10px 22px; margin-top:18px; }
.toggle{ display:inline-flex; align-items:center; gap:10px; font-size:15px; cursor:pointer; }
.toggle input{ width:18px; height:18px; accent-color:var(--ink); margin:0; }
.toggle--box{ display:flex; min-height:48px; padding:0 14px; border:1px solid var(--line-strong); border-radius:var(--radius); background:#fff; }
.toggle--box + .input{ margin-top:10px; }

/* choice cards */
.choices{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.choices--2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:520px){ .choices,.choices--2{ grid-template-columns:1fr; } }
.choice{ position:relative; display:block; cursor:pointer; }
.choice input{ position:absolute; opacity:0; width:1px; height:1px; }
.choice__box{ display:block; border:1px solid var(--line-strong); border-radius:var(--radius); padding:14px 14px 12px; background:#fff; transition:border-color .2s,box-shadow .2s; height:100%; }
.choice__box > span{ display:block; }
.choice input:checked + .choice__box{ border-color:var(--ink); box-shadow:inset 0 0 0 1px var(--ink); }
.choice input:focus-visible + .choice__box{ outline:2px solid var(--focus); outline-offset:2px; }
.choice__name{ font-weight:500; font-size:15px; }
.choice__sub{ font-size:13px; color:var(--faint); margin-top:2px; }
.choice__price{ font-size:13px; letter-spacing:.04em; margin-top:10px; color:var(--muted); }
.choice__chip{ width:100%; height:6px; margin-bottom:12px; border-radius:1px; }
.choice__box--row{ display:flex; align-items:center; gap:14px; }
.choice__box--row > span,.choice__box--row .choice__name,.choice__box--row .choice__sub{ display:block; }
.mapstyle{ width:44px; height:44px; flex:none; }
.mapstyle .ms-top{ stop-color:var(--ms-top,#39455C); }
.mapstyle .ms-bottom{ stop-color:var(--ms-bottom,#131B2B); }
.mapstyle .ms-sheet,.mapstyle .ms-disc{ fill:url(#msg); }
.mapstyle .ms-ring-light{ stroke:#FFFFFF; stroke-opacity:.8; }
.mapstyle .ms-ring-dark{ stroke:var(--ms-base,#24314A); stroke-opacity:.9; }
.choices--4{ grid-template-columns:repeat(4,1fr); }
.choices--icons .choice__box--icon{ display:flex; flex-direction:column; align-items:center; gap:8px; padding:10px; }
.choices--icons .mapstyle{ width:100%; height:auto; max-width:76px; }
.choices--icons .design{ width:56px; height:56px; color:var(--ink); }
.choices--icons .choice__name{ font-size:14px; }
@media (max-width:520px){ .choices--4{ grid-template-columns:repeat(4,1fr); } .choices--icons{ grid-template-columns:repeat(3,1fr); } .choices--4.choices--icons{ grid-template-columns:repeat(4,1fr); } }

/* steps */
.stepper{ display:grid; grid-template-columns:repeat(3,1fr); gap:6px; margin-bottom:8px; }
.stepper__item{ display:flex; align-items:center; gap:10px; padding:12px 4px 14px; border:0; border-top:2px solid var(--line-strong); background:none; cursor:pointer; text-align:left; font:500 13px/1.2 var(--sans); letter-spacing:.04em; color:var(--faint); transition:color .2s,border-color .2s; }
.stepper__item:hover{ color:var(--ink); }
.stepper__item.is-current{ color:var(--ink); border-top-color:var(--ink); }
.stepper__item.is-done{ color:var(--muted); border-top-color:var(--gold); }
.stepper__num{ font-family:var(--serif); font-size:15px; letter-spacing:.1em; }
@media (max-width:520px){ .stepper__name{ display:none; } .stepper__item{ justify-content:center; } }
.stepnav{ display:flex; justify-content:space-between; gap:12px; padding-top:8px; }
.stepnav .btn{ min-width:140px; }
.stepnav [hidden]{ display:none; }
.stepnav .btn[data-go="next"]{ margin-left:auto; }
.stickybar{ display:none; }
@media (max-width:900px){
  .stickybar{ position:fixed; left:0; right:0; bottom:0; z-index:40; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:12px var(--gut); background:var(--paper); border-top:1px solid var(--line-strong); box-shadow:0 -12px 30px -20px rgba(12,17,24,.4); }
  .stickybar__price{ display:flex; flex-direction:column; line-height:1.2; }
  .stickybar__price b{ font-family:var(--serif); font-size:24px; font-weight:500; }
  .stickybar .btn{ padding:13px 22px; }
  body:has(.stickybar){ padding-bottom:84px; }
}
.share{ display:flex; flex-wrap:wrap; align-items:center; gap:12px 16px; margin-bottom:18px; }

/* summary + order */
.summary{ background:#fff; border:1px solid var(--line-strong); padding:22px; }
.summary__row{ display:flex; justify-content:space-between; gap:16px; padding:8px 0; border-bottom:1px solid var(--line); font-size:15px; }
.summary__row:last-of-type{ border-bottom:0; }
.summary__row span:first-child{ color:var(--muted); }
.summary__total{ display:flex; justify-content:space-between; align-items:baseline; margin-top:14px; padding-top:16px; border-top:1px solid var(--ink); }
.summary__total b{ font-family:var(--serif); font-size:34px; font-weight:500; }
.summary__note{ font-size:13px; color:var(--faint); margin-top:12px; }
.order{ margin-top:18px; }
.order__form{ display:grid; gap:14px; margin-top:18px; }
.order__form .field{ margin:0; }
.notice{ padding:14px 16px; border:1px solid var(--line-strong); background:#fff; font-size:15px; }
.notice--ok{ border-color:#8FA88B; background:#F1F5EE; }
.notice--err{ border-color:#C98B7E; background:#F8EFEC; }
.notice[hidden]{ display:none; }
.done{ text-align:center; padding:32px 12px; }
.done h3{ margin-bottom:12px; }
.done .ref{ font-family:var(--serif); font-size:30px; letter-spacing:.08em; margin:14px 0 18px; }

/* ---------- faq ---------- */
.faq{ border-top:1px solid var(--line-strong); }
.faq details{ border-bottom:1px solid var(--line-strong); }
.faq summary{ list-style:none; cursor:pointer; padding:20px 0; font-family:var(--serif); font-size:24px; font-weight:500; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{ content:'+'; font-family:var(--sans); font-weight:300; font-size:24px; color:var(--faint); transition:transform .25s; }
.faq details[open] summary::after{ transform:rotate(45deg); }
.faq .faq__body{ padding:0 0 22px; color:var(--muted); max-width:62ch; }

/* ---------- product hero ---------- */
.phero{ padding-block:clamp(48px,7vw,88px) clamp(32px,4vw,56px); }
.phero h1{ font-size:clamp(42px,6vw,76px); margin-bottom:16px; }
.phero .lede{ max-width:52ch; }
.phero__meta{ display:flex; flex-wrap:wrap; gap:8px 28px; margin-top:22px; font-size:14px; color:var(--muted); letter-spacing:.02em; }

/* ---------- contact ---------- */
.form{ display:grid; gap:16px; }
.form .field{ margin:0; }

/* ---------- footer ---------- */
.site-footer{ background:var(--midnight); color:var(--ivory); padding:clamp(56px,7vw,88px) 0 36px; --line:#232B34; --muted:var(--grey); }
.foot-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px; }
@media (max-width:860px){ .foot-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .foot-grid{ grid-template-columns:1fr; } }
.foot-grid h5{ margin:0 0 16px; font:500 12px/1 var(--sans); letter-spacing:.18em; text-transform:uppercase; color:var(--grey); }
.foot-links{ display:flex; flex-direction:column; gap:10px; }
.foot-links a{ text-decoration:none; font-size:15px; opacity:.85; }
.foot-links a:hover{ opacity:1; }
.foot-tag{ font-family:var(--serif); font-size:24px; font-style:italic; margin:14px 0 10px; }
.foot-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; margin-top:56px; padding-top:22px; border-top:1px solid var(--line); font-size:13px; color:var(--grey); }
.foot-bottom p{ margin:0; }

/* ---------- misc ---------- */
.cta-band{ text-align:center; }
.cta-band h2{ margin-bottom:26px; }
.honey{ position:absolute; left:-9999px; }
[hidden]{ display:none !important; }
.sr-only{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
