:root {
  --cream: #f4efe6;
  --paper: #fffdf8;
  --ink: #111111;
  --muted: #5c564c;
  --gold: #b4530a;
  --line: #d9d2c3;
  --panel: #ebe4d4;
  --invert: #111111;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.nav-side {
  display: flex;
  gap: 22px;
}

.nav-side-right {
  justify-content: flex-end;
}

.nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand svg {
  fill: var(--ink);
}

.hero {
  min-height: calc(100svh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
  padding: 56px 24px 72px;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-cross svg {
  display: block;
  fill: var(--ink);
}

.hero-name {
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow.light {
  color: #c9c2b3;
}

.scream {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(4.25rem, 18vw, 11rem);
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.scream-sm {
  font-size: clamp(4.5rem, 16vw, 10rem);
}

.scream-xs {
  font-size: clamp(3rem, 12vw, 6rem);
}

.hero-sub {
  max-width: 22ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-style: italic;
  line-height: 1.3;
  color: var(--muted);
}

.chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 48px;
  opacity: 0.35;
}

.chevrons span {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(45deg);
}

.panel {
  background: var(--paper);
  margin: 0 16px;
  border-radius: 28px 28px 0 0;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 80px);
}

.panel-kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.panel-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  max-width: 22ch;
}

.panel-body {
  margin-top: 24px;
  max-width: 42ch;
  font-size: 1.05rem;
  color: var(--muted);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: Anton, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.08em;
}

.marquee-track span:nth-child(odd) {
  color: var(--gold);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

.invert {
  background: var(--invert);
  color: var(--cream);
  padding: clamp(72px, 12vw, 140px) clamp(20px, 6vw, 72px);
  text-align: center;
}

.stack-scream {
  list-style: none;
  margin-top: 28px;
}

.stack-scream li {
  font-family: Anton, sans-serif;
  font-size: clamp(2.6rem, 9vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
}

.stack-scream li:first-child,
.stack-scream li:last-child {
  color: #e8a15a;
}

.invert-note {
  margin: 36px auto 0;
  max-width: 46ch;
  color: #b7b0a3;
  font-size: 0.95rem;
}

.rate {
  text-align: center;
  padding: clamp(72px, 12vw, 120px) 24px;
}

.rate-unit {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--muted);
  margin-top: -8px;
}

.rate-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 640px;
  margin: 48px auto 0;
  text-align: left;
}

.rate-split dt {
  font-family: Anton, sans-serif;
  font-size: 2.4rem;
}

.rate-split dd {
  color: var(--muted);
  margin-top: 6px;
}

.love-note {
  max-width: 40ch;
  margin: 48px auto 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.inquire {
  border-radius: 28px;
  margin-bottom: 16px;
}

.direct {
  display: flex;
  gap: 12px;
  margin: 36px 0 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-full {
  width: 100%;
  margin-top: 8px;
}

form {
  display: grid;
  gap: 16px;
  max-width: 640px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label,
legend {
  display: grid;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
}

fieldset {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-template-columns: none;
}

.check input {
  width: auto;
}

.quiet-check {
  color: var(--muted);
  font-size: 13px;
}

.form-note,
.thanks p:last-child {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-error {
  color: #9a3412;
  font-size: 0.95rem;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.thanks {
  padding: 48px 0;
  text-align: center;
}

.foot {
  padding: 40px 24px 56px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.foot-sub {
  margin-top: 8px;
  letter-spacing: 0.08em;
  text-transform: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
}

@media (max-width: 700px) {
  .nav {
    padding: 14px 16px;
  }

  .nav-side {
    gap: 12px;
  }

  .brand span {
    display: none;
  }

  .grid-2,
  .rate-split {
    grid-template-columns: 1fr;
  }

  .panel-title {
    max-width: none;
  }
}
