/* Disvite — shared stylesheet */
:root {
  color-scheme: light;
  --paper: #F6F1E7;
  --ink: #1C1B22;
  --ox: #8C1C2B;
  --ox-dark: #6A1320;
  --ox-bright: #B3263A;
  --ox-ring: #A3283A;
  --gold: #D9A441;
  --gold-rule: #B08A3E;
  --gold-text: #8A7340;
  --card: #FFFDF8;
  --line: #E4DACA;
  --rule: #DDD3C2;
  --sand: #EDE4D3;
  --muted: #4A4550;
  --muted-2: #5A5560;
  --night-2: #26242D;
  --night-line: #3A3842;
  --night-muted: #BDB6C4;
  --blush: #F3DDE0;
  --gutter: clamp(16px, 6.667vw, 96px);
  --section-y: clamp(64px, 7.8vw, 112px);
  --serif: Fraunces, Georgia, "Times New Roman", serif;
  --sans: Karla, system-ui, -apple-system, "Segoe UI", sans-serif;
  --script: Caveat, "Segoe Script", "Bradley Hand", cursive;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.4;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
a { color: var(--ox); }
a:hover { color: var(--ox-dark); }
h1, h2, h3, p { margin: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.wrap { width: 100%; max-width: 1440px; margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.stack { display: flex; flex-direction: column; }
.serif { font-family: var(--serif); }
.script { font-family: var(--script); }
.visually-hidden, .hp {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.eyebrow {
  font-size: 14px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--ox);
}
.eyebrow--gold { color: var(--gold); }
.h2 {
  font-family: var(--serif); font-size: clamp(34px, 3.9vw, 56px); font-weight: 600;
  letter-spacing: -1px; line-height: 1.08;
}
.section-head { display: flex; flex-direction: column; gap: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  padding: 18px 30px; border-radius: 999px; font-size: 18px; font-weight: 700;
  text-decoration: none; line-height: 1.2; border: 2px solid transparent; cursor: pointer;
  font-family: var(--sans); transition: background-color .15s, color .15s, border-color .15s;
}
.btn--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--ink:hover { background: #33313c; color: var(--paper); }
.btn--outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: var(--paper); }
.btn--ox { background: var(--ox); color: #fff; border-color: var(--ox); }
.btn--ox:hover { background: var(--ox-dark); border-color: var(--ox-dark); color: #fff; }
.btn--paper { background: var(--paper); color: var(--ox); border-color: var(--paper); }
.btn--paper:hover { background: #fff; color: var(--ox-dark); }

/* Header / nav */
.site-header { border-bottom: 1px solid var(--rule); background: var(--paper); position: relative; z-index: 20; }
.site-nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand:hover { color: var(--ink); }
.brand__name { font-family: var(--serif); font-size: 30px; font-weight: 800; letter-spacing: -0.5px; }
.nav-links { display: flex; align-items: center; gap: 36px; font-size: 16px; font-weight: 500; }
.nav-links a:not(.btn) { color: var(--ink); text-decoration: none; }
.nav-links a:not(.btn):hover { color: var(--ox); }
.nav-links a[aria-current="page"] { color: var(--ox); }
.nav-links .btn { padding: 14px 22px; font-size: 16px; }
.nav-toggle {
  display: none; background: none; border: 2px solid var(--ink); border-radius: 999px;
  padding: 8px 16px; font: 700 15px var(--sans); color: var(--ink); cursor: pointer;
}

@media (max-width: 900px) {
  .site-nav { min-height: 72px; }
  .brand__name { font-size: 26px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--rule);
    padding: 8px var(--gutter) 20px; box-shadow: 0 16px 30px rgba(28,27,34,.08);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: 18px; }
  .nav-links .btn { margin-top: 16px; }
}

/* ===== Homepage ===== */
.hero { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 64px; padding-block: 80px; min-height: 720px; }
.hero__copy { display: flex; flex-direction: column; gap: 28px; }
.hero h1 {
  font-family: var(--serif); font-size: clamp(44px, 6.1vw, 88px); line-height: 0.98;
  font-weight: 800; letter-spacing: -2px;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--ox); }
.hero__lede { font-size: clamp(18px, 1.53vw, 22px); line-height: 1.5; color: var(--muted); max-width: 560px; }
.hero__ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero__note { font-size: 15px; color: var(--muted-2); }

/* Hero card illustration — scales with its own width (design: 520 x 560) */
.hero-art { width: min(520px, 36vw); container-type: inline-size; }
.hero-art__inner { position: relative; width: 100%; aspect-ratio: 520 / 560; }
.hero-art__back {
  position: absolute; left: 7.69cqw; top: 5.77cqw; width: 80.77cqw; height: 96.15cqw;
  background: var(--ink); border-radius: 4px; transform: rotate(6deg);
}
.hero-art__card {
  position: absolute; left: 9.62cqw; top: 3.85cqw; width: 80.77cqw; height: 100cqw;
  background: var(--card); border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(28,27,34,0.18); transform: rotate(-3deg);
  padding: 8.46cqw 7.69cqw; display: flex;
}
.hero-art__frame {
  width: 100%; height: 100%; border: 1px solid var(--gold-rule); padding: 6.15cqw 4.23cqw;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2.69cqw;
}
.hero-art .t-house { font-size: 2.31cqw; letter-spacing: .77cqw; text-transform: uppercase; color: var(--gold-text); }
.hero-art .t-italic { font-family: var(--serif); font-style: italic; font-size: 3.85cqw; color: var(--muted); line-height: 1.3; }
.hero-art .t-name { font-family: var(--script); font-size: 10cqw; line-height: 1; }
.hero-art .t-rule { width: 11.54cqw; height: 1px; background: var(--gold-rule); flex-shrink: 0; }
.hero-art .t-when { font-family: var(--serif); font-size: 3.46cqw; line-height: 1.5; }
.hero-art .t-rsvp { font-size: 2.5cqw; letter-spacing: .38cqw; text-transform: uppercase; color: var(--gold-text); margin-top: 1.54cqw; }
.hero-art__stamp {
  position: absolute; right: 0; top: 63.46cqw; transform: rotate(-14deg);
  border: .96cqw solid var(--ox-bright); color: var(--ox-bright); padding: 1.54cqw 3.85cqw;
  font-family: var(--serif); font-weight: 800; font-size: 8.46cqw; letter-spacing: .77cqw;
  opacity: .9; line-height: 1.2;
}

.ribbon {
  background: var(--ox); color: var(--paper); min-height: 64px; padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  column-gap: 28px; row-gap: 4px; font-family: var(--serif); font-style: italic; font-size: 22px;
}

.steps { display: flex; flex-direction: column; gap: 56px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.step__num { font-family: var(--serif); font-size: 64px; font-weight: 800; color: var(--ox); line-height: 1; }
.step__title { font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1.2; }
.step__body { font-size: 18px; line-height: 1.5; color: var(--muted); }

.occasions { background: var(--ink); color: var(--paper); }
.occasions__inner { display: flex; flex-direction: column; gap: 56px; }
.occasions__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.occasions__head > a { color: var(--paper); font-size: 18px; font-weight: 700; }
.occasions__head > a:hover { color: var(--gold); }
.occasion-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.occasion {
  border: 1px solid var(--night-line); border-radius: 16px; padding: 36px; min-height: 260px;
  display: flex; flex-direction: column; gap: 16px;
}
.occasion--alt { background: var(--night-2); }
.occasion__tag { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.occasion__quote { font-family: var(--serif); font-size: 30px; line-height: 1.2; }
.occasion__body { font-size: 17px; color: var(--night-muted); line-height: 1.5; }

.pricing__inner { display: flex; flex-direction: column; gap: 56px; align-items: center; }
.pricing__inner .section-head { align-items: center; text-align: center; }
.price-grid { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.plan {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 40px;
  display: flex; flex-direction: column; gap: 20px; position: relative;
}
.plan__name { font-family: var(--serif); font-size: 32px; font-weight: 600; }
.plan__price { font-family: var(--serif); font-size: 56px; font-weight: 800; line-height: 1.1; }
.plan__desc { font-size: 17px; color: var(--muted); line-height: 1.5; }
.plan__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 17px; line-height: 1.4; }
.plan .btn { margin-top: auto; padding: 16px; font-size: 17px; }
.plan--hot { background: var(--ox); color: var(--paper); border-color: var(--ox); }
.plan--hot .plan__desc { color: var(--blush); }
.plan__badge {
  position: absolute; top: -16px; right: 32px; background: var(--gold); color: var(--ink);
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
}
.pricing__note { font-size: 15px; color: var(--muted-2); text-align: center; margin-top: -24px; }

.testimonials { background: var(--sand); padding-block: clamp(64px, 6.67vw, 96px); }
.testimonials__inner { display: flex; flex-direction: column; gap: 40px; }
.testimonials h2 { font-family: var(--serif); font-size: clamp(32px, 3.05vw, 44px); font-weight: 600; line-height: 1.1; }
.testimonials .grid-3 { gap: 24px; }
.quote { display: flex; flex-direction: column; gap: 16px; margin: 0; }
.quote blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: 26px; line-height: 1.35; }
.quote figcaption { font-size: 16px; color: var(--muted-2); font-weight: 700; }
.fineprint { font-size: 14px; color: var(--muted-2); }

/* ===== Waitlist ===== */
.waitlist { background: var(--ox); color: var(--paper); }
.waitlist__inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.waitlist__copy { display: flex; flex-direction: column; gap: 18px; }
.waitlist__mark { width: 72px; height: 56px; }
.waitlist h2 { color: var(--paper); }
.waitlist h2 em { font-style: italic; font-weight: 400; }
.waitlist__lede { font-size: clamp(18px, 1.4vw, 20px); line-height: 1.55; color: var(--blush); max-width: 560px; }
.wl-card {
  background: var(--card); color: var(--ink); border-radius: 20px; padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 24px 60px rgba(28,27,34,0.25); display: flex; flex-direction: column; gap: 16px;
}
.wl-card__title { font-family: var(--serif); font-size: 26px; font-weight: 600; line-height: 1.2; }
.wl-form { display: flex; flex-direction: column; gap: 12px; }
.wl-form label { font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); }
.wl-form__row { display: flex; gap: 12px; flex-wrap: wrap; }
.wl-form input[type="email"] {
  flex: 1 1 220px; min-width: 0; font: 400 18px var(--sans); color: var(--ink);
  background: #fff; border: 2px solid var(--line); border-radius: 999px; padding: 16px 22px;
}
.wl-form input[type="email"]:focus { outline: none; border-color: var(--ox); box-shadow: 0 0 0 3px rgba(140,28,43,.18); }
.wl-form .btn { flex: 0 0 auto; padding: 16px 28px; }
.wl-form .btn[disabled] { opacity: .6; cursor: progress; }
.wl-status { font-size: 16px; line-height: 1.45; min-height: 1.45em; margin: 0; }
.wl-status--ok { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ox); }
.wl-status--err { color: var(--ox-bright); font-weight: 700; }
.wl-small { font-size: 14px; color: var(--muted-2); }
.wl-form.is-done .wl-form__row, .wl-form.is-done label { display: none; }

.waitlist--compact { background: none; color: inherit; padding-bottom: var(--section-y); }
.waitlist--compact .waitlist__box {
  background: var(--ink); color: var(--paper); border-radius: 24px; padding: clamp(28px, 4vw, 56px) clamp(24px, 4.4vw, 64px);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center;
}
.waitlist--compact h2 { font-size: clamp(30px, 3.05vw, 44px); }
.waitlist--compact .waitlist__lede { color: var(--night-muted); }
.waitlist--compact .wl-form label { color: var(--night-muted); }
.waitlist--compact .wl-form input[type="email"] { border-color: var(--night-line); }
.waitlist--compact .wl-status--ok { color: var(--gold); }
.waitlist--compact .wl-status--err { color: #F08A98; }
.waitlist--compact .wl-small { color: var(--night-muted); }

/* ===== Sub-page header (stationery / merch / about) ===== */
.page-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; padding-top: clamp(48px, 6.67vw, 96px); }
.page-head__title { display: flex; flex-direction: column; gap: 16px; }
.page-head h1 {
  font-family: var(--serif); font-size: clamp(44px, 5vw, 72px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1;
}
.page-head h1 em { font-style: italic; font-weight: 400; }
.page-head p { max-width: 440px; font-size: 19px; line-height: 1.55; color: var(--muted); }

/* ===== Stationery ===== */
.tpl-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; padding-top: 72px; }
.tpl { display: flex; flex-direction: column; gap: 20px; }
.tpl__card {
  min-height: 500px; box-shadow: 0 16px 40px rgba(28,27,34,0.10); padding: 36px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 18px;
  position: relative;
}
.tpl__meta { display: flex; flex-direction: column; gap: 6px; }
.tpl__name { font-family: var(--serif); font-size: 26px; font-weight: 600; }
.tpl__spec { font-size: 16px; color: var(--muted-2); }
.caps { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; }

.tpl--rescind .tpl__card { background: var(--card); border: 1px solid var(--line); padding: 28px; align-items: stretch; }
.tpl--rescind .tpl__frame {
  flex: 1; border: 1px solid var(--gold-rule); display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 18px; padding: 24px;
}
.tpl--rescind .caps { color: var(--gold-text); }
.tpl--rescind .big { font-family: var(--serif); font-style: italic; font-size: 30px; line-height: 1.3; }
.tpl--rescind .rule { width: 48px; height: 1px; background: var(--gold-rule); }
.tpl--rescind .sig { font-family: var(--script); font-size: 30px; color: var(--muted); }

.tpl--preneed .tpl__card { background: #fff; border: 10px solid var(--ink); }
.tpl--preneed .caps { color: var(--muted-2); }
.tpl--preneed .big { font-family: var(--serif); font-size: 30px; line-height: 1.3; font-weight: 600; }
.tpl--preneed .sub { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.4; color: var(--muted); }
.tpl--preneed .foot { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted-2); }

.tpl--ex .tpl__card { background: #F3E9EA; border: 1px solid #E2CFD1; gap: 16px; }
.tpl--ex .kicker { font-family: var(--script); font-size: 40px; color: var(--ox); line-height: 1.1; }
.tpl--ex .big { font-family: var(--serif); font-size: 44px; font-weight: 800; line-height: 1.05; letter-spacing: -1px; }
.tpl--ex .sub { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--muted); line-height: 1.4; }

.tpl--shower .tpl__card { background: #E8F0EC; border: 1px solid #CFDDD5; }
.tpl--shower .caps { color: #3F6B57; }
.tpl--shower .big { font-family: var(--serif); font-size: 42px; font-weight: 800; line-height: 1.1; }
.tpl--shower .big2 { font-family: var(--serif); font-style: italic; font-size: 42px; line-height: 1.1; color: #3F6B57; }
.tpl--shower .sub { font-size: 16px; color: var(--muted); }

.tpl--kevin .tpl__card { background: var(--ink); color: var(--paper); box-shadow: 0 16px 40px rgba(28,27,34,0.18); gap: 16px; }
.tpl--kevin .caps { color: var(--gold); }
.tpl--kevin .big { font-family: var(--serif); font-size: 40px; font-weight: 800; line-height: 1.1; }
.tpl--kevin .script { font-size: 40px; color: var(--gold); line-height: 1.1; }
.tpl--kevin .sub { font-size: 15px; color: var(--night-muted); }

.tpl--hand .tpl__card {
  background: #FBF6EA; border: 1px solid var(--line); padding: 40px 40px 132px; gap: 10px;
  align-items: flex-start; justify-content: flex-start; text-align: left; color: #26304A; font-family: var(--script);
}
.tpl--hand .l1 { font-size: 30px; line-height: 1.3; }
.tpl--hand .l2 { font-size: 28px; line-height: 1.3; }
.tpl--hand .l3 { font-size: 32px; }
.wax {
  position: absolute; right: 36px; bottom: 32px; width: 84px; height: 84px; border-radius: 50%;
  background: var(--ox); box-shadow: inset 0 0 0 6px var(--ox-ring), 0 4px 10px rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center; color: var(--blush);
  font-family: var(--serif); font-weight: 800; font-size: 34px;
}

.finishes {
  margin-top: 72px; background: var(--card); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(28px, 3.9vw, 56px); display: flex; gap: 64px;
}
.finishes__intro { width: 360px; flex-shrink: 0; display: flex; flex-direction: column; gap: 16px; }
.finishes__intro h2 { font-family: var(--serif); font-size: clamp(32px, 3.05vw, 44px); font-weight: 600; line-height: 1.1; }
.rsvp {
  margin-top: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.rsvp__title { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.rsvp__opt { display: flex; align-items: center; gap: 12px; font-size: 18px; color: var(--muted-2); }
.rsvp__opt--on { font-weight: 700; color: var(--ink); }
.rsvp__opt svg { flex-shrink: 0; }
.finish-grid { flex-grow: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 40px; align-content: start; }
.finish { display: flex; gap: 18px; align-items: flex-start; }
.swatch { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; }
.finish__name { font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.25; }
.finish__body { font-size: 16px; color: var(--muted-2); line-height: 1.5; margin-top: 6px; }

/* ===== Merch ===== */
.merch-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px 32px; padding-top: 64px; }
.product { display: flex; flex-direction: column; gap: 14px; }
.product__img {
  aspect-ratio: 288 / 280; border-radius: 16px; background: var(--sand);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.product__img--dark { background: var(--ink); }
.product__img svg { height: auto; display: block; }
.product__name { font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.25; }
.product__meta { font-size: 16px; color: var(--muted-2); }
.group-order {
  margin-top: 64px; background: var(--ox); color: var(--paper); border-radius: 24px;
  padding: clamp(28px, 3.9vw, 56px) clamp(24px, 4.4vw, 64px);
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.group-order__copy { display: flex; flex-direction: column; gap: 14px; max-width: 760px; }
.group-order h2 { font-family: var(--serif); font-size: clamp(30px, 3.05vw, 44px); font-weight: 600; line-height: 1.1; }
.group-order p { font-size: 19px; line-height: 1.55; color: var(--blush); }
.group-order .btn { flex-shrink: 0; padding: 18px 32px; }

.sub-waitlist { padding-top: 72px; }

/* ===== About ===== */
.prose { max-width: 760px; padding-block: 56px var(--section-y); display: flex; flex-direction: column; gap: 48px; }
.prose section { display: flex; flex-direction: column; gap: 14px; scroll-margin-top: 24px; }
.prose h2 { font-family: var(--serif); font-size: clamp(28px, 2.5vw, 36px); font-weight: 600; line-height: 1.15; }
.prose p, .prose li { font-size: 19px; line-height: 1.6; color: var(--muted); }
.prose ul { margin: 0; padding-left: 1.2em; display: flex; flex-direction: column; gap: 8px; }
.prose strong { color: var(--ink); }
.callout {
  background: var(--card); border: 1px solid var(--line); border-left: 6px solid var(--ox);
  border-radius: 12px; padding: 24px 28px;
}
.callout p { color: var(--ink); }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: var(--night-muted); }
.site-footer__inner { padding-block: 72px 40px; display: flex; flex-direction: column; gap: 48px; }
.site-footer__top { display: flex; justify-content: space-between; gap: 64px; }
.site-footer__about { display: flex; flex-direction: column; gap: 16px; max-width: 520px; }
.site-footer__brand { font-family: var(--serif); font-size: 34px; font-weight: 800; color: var(--paper); }
.site-footer__about p { font-size: 16px; line-height: 1.6; }
.site-footer__cols { display: flex; gap: 72px; font-size: 16px; }
.site-footer__col { display: flex; flex-direction: column; gap: 12px; }
.site-footer__col h2 { font-family: var(--sans); font-size: 16px; color: var(--paper); font-weight: 700; }
.site-footer a { color: var(--night-muted); text-decoration: none; }
.site-footer a:hover { color: var(--paper); text-decoration: underline; }
.site-footer__legal { border-top: 1px solid var(--night-line); padding-top: 24px; font-size: 14px; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: minmax(0, 1fr); min-height: 0; gap: 48px; padding-block: 56px 72px; }
  .hero-art { width: min(520px, 100%); justify-self: center; }
  .occasion-grid, .tpl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .merch-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .finishes { flex-direction: column; gap: 40px; }
  .finishes__intro { width: auto; }
  .page-head { flex-direction: column; align-items: flex-start; gap: 24px; }
}
@media (max-width: 900px) {
  .grid-3, .price-grid { grid-template-columns: minmax(0, 1fr); }
  .price-grid { max-width: 520px; gap: 32px; }
  .waitlist__inner, .waitlist--compact .waitlist__box { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .group-order { flex-direction: column; align-items: flex-start; gap: 28px; }
  .site-footer__top { flex-direction: column; gap: 40px; }
  .merch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 16px; }
}
@media (max-width: 640px) {
  .occasion-grid, .tpl-grid, .finish-grid { grid-template-columns: minmax(0, 1fr); }
  .hero h1 { letter-spacing: -1px; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .ribbon { font-size: 18px; column-gap: 14px; }
  .step, .occasion { padding: 28px; }
  .occasion { min-height: 0; }
  .occasion__quote { font-size: 26px; }
  .plan { padding: 32px 28px; }
  .quote blockquote { font-size: 23px; }
  .tpl-grid { gap: 48px; padding-top: 48px; }
  .tpl__card { min-height: 420px; padding: 28px 24px; }
  .tpl--rescind .tpl__card { padding: 20px; }
  .tpl--rescind .big, .tpl--preneed .big { font-size: 26px; }
  .tpl--ex .big { font-size: 38px; }
  .tpl--shower .big, .tpl--shower .big2, .tpl--kevin .big { font-size: 36px; }
  .tpl--hand .tpl__card { padding: 32px 28px 124px; }
  .tpl--hand .l2 { font-size: 26px; }
  .merch-grid { padding-top: 48px; }
  .product__name { font-size: 18px; }
  .product__meta { font-size: 14px; }
  .group-order .btn, .wl-form .btn { width: 100%; }
  .site-footer__cols { gap: 48px; }
  .page-head p { font-size: 18px; }
}

/* Tagline: Leave no doubt. */
.brand__text { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.brand__tag { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--ox); letter-spacing: 0.2px; }
.site-footer__tag { display: block; font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--gold); margin-top: -8px; }
.section-lead { margin: 0; max-width: 640px; font-size: 20px; line-height: 1.55; color: var(--muted); }
@media (max-width: 600px) { .brand__tag { font-size: 11px; } .section-lead { font-size: 18px; } }
