:root {
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --ink: #171411;
  --muted: #6b6259;
  --paper: #f7f2ea;
  --panel: #fffaf2;
  --line: #ded3c3;
  --gold: #a9773d;
  --deep: #24201c;
  --green: #41564b;
  --blue: #324e62;
  --red: #7b5147;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(36, 32, 28, 0.12);
  background: rgba(247, 242, 234, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.nav-cta:hover {
  color: var(--ink);
}

.nav-cta {
  border: 1px solid var(--line);
  padding: 10px 16px;
  font-size: 13px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 72px 7vw 64px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(52px, 9vw, 104px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.04;
}

h3 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--deep);
  font-size: 13px;
  font-weight: 700;
}

.button.primary {
  color: var(--paper);
  background: var(--deep);
}

.button.secondary {
  color: var(--deep);
  background: transparent;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.plaque {
  width: min(100%, 430px);
  aspect-ratio: 0.72;
  padding: 42px;
  border: 1px solid rgba(23, 20, 17, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 242, 0.2)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1200&q=78");
  background-position: center;
  background-size: cover;
  box-shadow: 0 30px 80px rgba(36, 32, 28, 0.18);
}

.plaque-kicker {
  margin: 0 0 90px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plaque h2 {
  color: var(--deep);
  font-size: clamp(36px, 7vw, 58px);
}

.plaque p {
  max-width: 290px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.plaque span {
  display: block;
  margin-top: 42px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 20px;
}

.statement {
  padding: 54px 7vw;
  color: var(--panel);
  background: var(--deep);
}

.statement p {
  max-width: 1120px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4.6vw, 58px);
  line-height: 1.08;
}

.lane {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  padding: 86px 7vw;
}

.lane.alt {
  background: var(--panel);
}

.lane-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(169, 119, 61, 0.4);
  padding-bottom: 3px;
}

.lane-link:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-self: start;
}

article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

article p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.cta-band {
  padding: 90px 7vw;
  color: var(--paper);
  background: linear-gradient(110deg, var(--green), var(--blue) 56%, var(--red));
}

.cta-band h2,
.cta-band p {
  max-width: 780px;
}

.cta-band p:not(.eyebrow) {
  color: rgba(247, 242, 234, 0.82);
  font-size: 18px;
  line-height: 1.55;
}

.cta-band .button {
  margin-top: 22px;
  border-color: var(--paper);
  color: var(--deep);
  background: var(--paper);
}

.footer {
  padding: 28px 7vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
  font-size: 13px;
}

/* ---- Subpage components ---- */

.page-hero {
  padding: 88px 7vw 64px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: 0.98;
}

.page-hero.dark {
  color: var(--paper);
  background: var(--deep);
}

.page-hero.dark .lede {
  color: rgba(247, 242, 234, 0.78);
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  padding: 0 7vw 78px;
}

.page-hero + .moment-grid,
section + .moment-grid {
  padding-top: 8px;
}

.moment {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.moment h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.moment p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  padding: 86px 7vw;
}

.split.alt {
  background: var(--panel);
}

.split.dark {
  color: var(--paper);
  background: var(--deep);
}

.split.dark p {
  color: rgba(247, 242, 234, 0.78);
}

.split .body {
  align-self: start;
  max-width: 640px;
}

.split .body h2 {
  margin: 0 0 20px;
}

.split .body p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.65;
}

.split .body p:not(.eyebrow) {
  color: var(--muted);
}

.split.dark .body p:not(.eyebrow) {
  color: rgba(247, 242, 234, 0.78);
}

.price-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  align-self: start;
}

.price-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.split.dark .price-card {
  border-color: rgba(247, 242, 234, 0.22);
  background: rgba(255, 250, 242, 0.05);
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.price-card .price {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  counter-reset: step;
  align-self: start;
}

.step {
  padding: 26px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 30px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.faq {
  padding: 78px 7vw 90px;
}

.faq h2 {
  max-width: 700px;
  margin-bottom: 34px;
}

.faq details {
  max-width: 860px;
  border-top: 1px solid var(--line);
}

.faq details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding: 20px 32px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 17px;
  font-weight: 600;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq details p {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

.render {
  display: flex;
  justify-content: center;
  align-self: center;
}

.render .plaque {
  aspect-ratio: 1.35;
  width: min(100%, 560px);
  padding: 38px;
  background: none;
}

.render .plaque.tone-deep {
  color: var(--paper);
  background: var(--deep);
  border-color: rgba(247, 242, 234, 0.2);
}

.render .plaque.tone-green {
  color: var(--paper);
  background: var(--green);
  border-color: rgba(247, 242, 234, 0.2);
}

.render .plaque.tone-blue {
  color: var(--paper);
  background: var(--blue);
  border-color: rgba(247, 242, 234, 0.2);
}

.render .plaque.tone-ivory {
  color: var(--ink);
  background: #fff8ec;
}

.render .plaque .plaque-kicker {
  margin-bottom: 44px;
}

.render .plaque h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  color: inherit;
}

.render .plaque p {
  color: inherit;
  opacity: 0.75;
}

.render .plaque span {
  margin-top: 30px;
  color: inherit;
}

.grain-band {
  height: 10px;
  background:
    repeating-linear-gradient(
      100deg,
      rgba(169, 119, 61, 0.5) 0,
      rgba(169, 119, 61, 0.5) 2px,
      rgba(63, 89, 79, 0.4) 2px,
      rgba(63, 89, 79, 0.4) 5px,
      rgba(50, 78, 98, 0.35) 5px,
      rgba(50, 78, 98, 0.35) 9px
    );
  opacity: 0.85;
}

@media (max-width: 940px) {
  .split {
    grid-template-columns: 1fr;
    padding-right: 24px;
    padding-left: 24px;
  }

  .page-hero,
  .moment-grid,
  .faq {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 940px) {
  .topbar {
    position: static;
    flex-wrap: wrap;
    padding: 18px 22px;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .lane {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 52px 24px;
  }

  .lane,
  .statement,
  .cta-band {
    padding-right: 24px;
    padding-left: 24px;
  }

  .lane-grid {
    grid-template-columns: 1fr;
  }

  article {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 48px;
  }

  .lede {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .plaque {
    padding: 28px;
  }
}
