:root {
  --ink: #17392f;
  --paper: #fbf8f1;
  --cream: #f1eadc;
  --coral: #da694f;
  --muted: #60716a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
}

.page-shell { min-height: 100vh; padding: 28px clamp(24px, 7vw, 112px) 24px; overflow: hidden; }
.site-nav, footer { display: flex; justify-content: space-between; align-items: center; }
.site-nav { padding-bottom: 7vh; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; font-weight: 700; font-size: 1.05rem; letter-spacing: -.03em; }
.brand small { display: block; font-size: .62rem; letter-spacing: .12em; line-height: 1; text-transform: uppercase; }
.brand-mark { display: grid; place-items: center; width: 39px; height: 39px; color: var(--paper); background: var(--ink); border-radius: 50%; font: 700 .76rem "Playfair Display", serif; letter-spacing: -.06em; }
.nav-note { color: var(--muted); font-size: .86rem; }

.hero { position: relative; max-width: 870px; padding: 4vh 0 11vh; }
.hero::after { content: ""; position: absolute; z-index: -1; width: min(42vw, 510px); aspect-ratio: 1; right: -25vw; top: -12vh; border: 1px solid #d8cdb8; border-radius: 50%; box-shadow: 0 0 0 36px rgba(218, 105, 79, .07), 0 0 0 92px rgba(218, 105, 79, .045); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--coral); font-size: .77rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 28px; height: 2px; background: currentColor; }
h1 { margin: 0; font: 700 clamp(3.2rem, 8vw, 6.9rem)/.95 "Playfair Display", Georgia, serif; letter-spacing: -.065em; }
h1 em { color: var(--coral); font-weight: 600; }
.intro { max-width: 570px; margin: 30px 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.16rem); line-height: 1.7; }
.action-row { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.button { display: inline-flex; align-items: center; gap: 18px; padding: 14px 18px; color: white; background: var(--ink); border-radius: 4px; text-decoration: none; font-weight: 700; transition: transform .2s, background .2s; }
.button:hover { background: #245746; transform: translateY(-2px); }
.button span { font-size: 1.25rem; line-height: .7; }
.domain { color: var(--muted); font-size: .91rem; }

.promise { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d8cdb8; }
.promise article { padding: 28px 32px 28px 0; border-right: 1px solid #d8cdb8; }
.promise article:not(:first-child) { padding-left: 32px; }
.promise article:last-child { border: 0; }
.promise-number { color: var(--coral); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
h2 { margin: 14px 0 8px; font: 600 1.3rem "Playfair Display", Georgia, serif; letter-spacing: -.035em; }
.promise p { max-width: 240px; margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }
footer { padding-top: 26px; color: var(--muted); font-size: .75rem; }
footer p { margin: 0; }

@media (max-width: 650px) {
  .page-shell { padding: 22px 24px; }
  .site-nav { padding-bottom: 9vh; }
  .nav-note { display: none; }
  .hero { padding: 1vh 0 9vh; }
  .hero::after { width: 220px; right: -130px; top: -105px; }
  .promise { grid-template-columns: 1fr; }
  .promise article, .promise article:not(:first-child) { padding: 20px 0; border-right: 0; border-bottom: 1px solid #d8cdb8; }
  .promise article:last-child { border-bottom: 0; }
  footer { padding-top: 20px; }
}
