@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/cormorant-garamond-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/cormorant-garamond-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0b0e14;
  --ink-2: #121722;
  --bone: #e8e2d6;
  --pure: #f7f4ec;
  --aureus: #c4a35a;
  --steel: #8b939e;
  --graphite: #2a303c;
  --line: color-mix(in srgb, var(--aureus) 28%, transparent);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", sans-serif;
  --wrap: 72rem;
  --header: 3.5rem;
  --gutter: 1.375rem;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--aureus); outline-offset: 3px; }
.skip {
  position: absolute;
  left: var(--gutter);
  top: -4rem;
  background: var(--aureus);
  color: var(--ink);
  padding: 0.5rem 0.8rem;
  z-index: 20;
}
.skip:focus { top: 0.75rem; }

.wrap, .narrow {
  width: min(var(--wrap), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  max-width: 100%;
}
.narrow { width: min(40rem, calc(100% - (var(--gutter) * 2))); }
.hero-copy, .lede, .photo figcaption, .promise blockquote { max-width: 100%; overflow-wrap: break-word; }
.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--aureus);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--pure);
  max-width: 100%;
  overflow-wrap: break-word;
  text-wrap: balance;
}
h1 { font-size: 2.375rem; line-height: 1.08; margin: 0 0 0.85rem; }
h2 { font-size: 2rem; line-height: 1.12; margin: 0 0 0.75rem; }
h3 { font-size: 1.55rem; line-height: 1.15; margin: 0 0 0.35rem; }
.lede { font-size: 1.05rem; color: var(--bone); max-width: 38rem; }
.muted { color: var(--steel); }
p { margin: 0 0 1rem; }

.mast {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--header);
  background: color-mix(in srgb, var(--ink) 94%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--aureus) 18%, transparent);
  backdrop-filter: blur(14px);
}
.mast-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  height: var(--header);
  width: min(var(--wrap), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  flex: 1 1 auto;
  text-decoration: none;
}
.brand img {
  height: 38px;
  width: auto;
  aspect-ratio: 688 / 483;
  object-fit: contain;
  max-width: none;
  flex: 0 0 auto;
}
.brand span {
  font-family: var(--serif);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--pure);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-btn {
  background: transparent;
  color: var(--bone);
  border: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-family: var(--sans);
  min-height: 44px;
  min-width: 44px;
  padding: 0.5rem 0.15rem;
  cursor: pointer;
  flex: 0 0 auto;
}
.nav { display: none; }
.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  padding: 0.15rem var(--gutter) 0.55rem;
  box-shadow: 0 18px 40px color-mix(in srgb, black 45%, transparent);
}
.nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--bone) 10%, transparent);
  letter-spacing: 0.04em;
}
.nav a[aria-current="page"] { color: var(--aureus); }

.hero { padding: 1.35rem 0 1.15rem; }
.hero-copy { max-width: 40rem; }
.actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.btn, button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  max-width: 100%;
  padding: 0.75rem 1.15rem;
  background: var(--aureus);
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--aureus);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  white-space: normal;
  text-align: center;
}
.btn-ghost { background: transparent; color: var(--pure); }

.photo {
  position: relative;
  margin: 0.35rem 0 0;
}
.photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.photo .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--ink) 28%, transparent) 0%,
    color-mix(in srgb, var(--ink) 8%, transparent) 32%,
    color-mix(in srgb, var(--ink) 72%, transparent) 70%,
    color-mix(in srgb, var(--ink) 94%, transparent) 100%
  );
  pointer-events: none;
}
.photo figcaption {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 0;
  margin: 0;
  padding: 0 0 1.05rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.15;
  color: var(--pure);
  max-width: 16em;
}

.section { padding: 2.75rem 0; }
.section.tight { padding-top: 0.25rem; }
.prose.section { padding-top: 1.75rem; }
.panel.stack { margin-top: 0.9rem; }
.section-head { margin-bottom: 1.35rem; max-width: 40rem; }
.rule { width: 3rem; height: 1px; background: var(--aureus); border: 0; margin: 0 0 1rem; }

.list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.list li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.25rem;
}
.list li:last-child { border-bottom: 1px solid var(--line); }
.list strong { font-weight: 500; color: var(--pure); }
.list span { color: var(--steel); font-size: 0.98rem; }

.steps, .tiers, .pair { display: grid; gap: 0.9rem; }
.step, .tier, .panel, .entry-row {
  background: color-mix(in srgb, var(--graphite) 72%, transparent);
  border: 1px solid var(--line);
  padding: 1.15rem 1.15rem 1.3rem;
}
.entry-row { margin-bottom: 0.9rem; display: grid; gap: 0.35rem; }
.entry-row h3 { margin: 0; }
.entry-row .line { margin: 0.15rem 0 0; color: var(--steel); }
.entry-row .actions { margin-top: 0.85rem; }
.audit-note {
  margin: 0.9rem 0 0;
  color: var(--steel);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.num { font-family: var(--serif); color: var(--aureus); font-size: 1.7rem; margin: 0 0 0.35rem; }
.step p, .tier p, .panel p { margin: 0; color: var(--steel); }
.step h3, .tier h3 { color: var(--pure); }
.price {
  margin: 0.15rem 0 0.75rem;
  color: var(--aureus);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
}
.tier .price, .entry-row .price {
  margin: 0.2rem 0 0.7rem;
  color: var(--aureus);
}
.note { margin-top: 0.85rem; color: var(--steel); font-size: 0.95rem; }

.protect { display: grid; gap: 0; }
.protect div { padding: 1rem 0; border-top: 1px solid var(--line); }
.protect div:last-child { border-bottom: 1px solid var(--line); }
.protect strong { display: block; color: var(--pure); font-weight: 500; }
.protect span { color: var(--steel); }

.promise {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.promise blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.25;
  color: var(--pure);
}
.promise figcaption {
  margin-top: 1rem;
  color: var(--steel);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.cta {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}

.prose h1 { font-size: 2.25rem; }
.prose h2 { font-size: 1.7rem; margin-top: 1.6rem; }
.prose a { color: var(--aureus); }
.fields { display: grid; gap: 0.95rem; }
label { display: grid; gap: 0.4rem; font-size: 0.92rem; color: var(--bone); }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  background: var(--ink);
  color: var(--pure);
  border: 1px solid var(--line);
  padding: 0.75rem 0.8rem;
  font: 16px/1.4 var(--sans);
  border-radius: 0;
}
textarea { min-height: 8rem; resize: vertical; }
.form-status { min-height: 1.4rem; margin: 0.8rem 0 0; }
.form-status[data-state="error"] { color: #e0b0a6; }
.form-status[data-state="ok"] { color: var(--bone); }
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.foot {
  padding: 2.5rem 0 1.75rem;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.95rem;
}
.foot a { color: var(--bone); }
.foot-grid { display: grid; gap: 1.35rem; }
.foot .brand img { height: 32px; }
.foot .brand span { font-size: 0.82rem; }
.fine { margin-top: 1.75rem; font-size: 0.85rem; }

@media (min-width: 430px) {
  .brand span { font-size: 0.86rem; letter-spacing: 0.1em; }
}

@media (min-width: 800px) {
  :root { --gutter: 1.5rem; --header: 4rem; }
  .menu-btn { display: none; }
  .nav, .nav.open {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    gap: 1.35rem;
    box-shadow: none;
  }
  .nav a {
    border: 0;
    min-height: 44px;
    padding: 0;
  }
  .brand img { height: 40px; }
  .brand span { font-size: 0.95rem; letter-spacing: 0.12em; }
  h1 { font-size: clamp(3.4rem, 5.4vw, 5.15rem); }
  h2 { font-size: clamp(2.5rem, 3.6vw, 3.35rem); }
  h3 { font-size: 1.7rem; }
  .lede { font-size: 1.15rem; }
  .prose h1 { font-size: clamp(2.8rem, 4vw, 4rem); }
  .hero { padding: 3.25rem 0 2.25rem; }
  .actions { flex-direction: row; flex-wrap: wrap; }
  .btn, button.btn { width: auto; }
  .section { padding: 4.5rem 0; }
  .section.tight { padding-top: 0; }
  .photo { margin-top: 0; }
  .photo figcaption { font-size: 2.35rem; padding-bottom: 1.6rem; max-width: 14em; }
  .steps { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .tiers { grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 1rem; }
  .pair { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .entry-row .head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .entry-row .price { margin: 0; }
  .promise blockquote { font-size: clamp(2.1rem, 3vw, 2.7rem); }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .list { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
  .list li:nth-child(odd) { padding-right: 1rem; }
}

@media (max-width: 799px) {
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  header .nav { display: none; }
  header .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
