:root {
  --ink: #101c2d;
  --ink-soft: #1b2b40;
  --paper: #f7f2e9;
  --paper-deep: #e9dfcf;
  --red: #c84e45;
  --blue: #3d6486;
  --muted: #a9b3be;
  --line: rgba(16, 28, 45, 0.18);
  --paper-line: rgba(247, 242, 233, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(calc(100% - 64px), var(--max));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  color: var(--paper);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 28px;
  overflow: hidden;
  background: var(--paper);
  border-radius: 2px;
  transform: rotate(-4deg);
}
.brand-mark img { width: 31px; height: 25px; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; }
.main-nav > a:not(.nav-cta) { opacity: 0.88; }
.main-nav > a:not(.nav-cta):hover { opacity: 1; }
.nav-cta {
  padding: 11px 15px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 2px;
  font-weight: 700;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  background: var(--ink);
  color: var(--paper);
}
.hero-image {
  position: absolute;
  inset: 0 0 0 36%;
  background: url("/assets/mailroom-night-v1.png") center / cover no-repeat;
}
.hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--ink) 0%, rgba(16, 28, 45, 0.72) 14%, rgba(16, 28, 45, 0.08) 55%, rgba(16, 28, 45, 0.26) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, 560px);
  margin-left: max(32px, calc((100vw - var(--max)) / 2));
  padding-top: 88px;
}
.brand-line { margin: 0 0 34px; color: #e1a79d; font-size: 12px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 700; letter-spacing: -0.06em; }
h1 { max-width: 560px; margin-bottom: 30px; font-size: clamp(56px, 5.3vw, 80px); line-height: 0.98; }
h1 em { color: #e9b9a9; font-style: normal; white-space: nowrap; }
.hero-description { max-width: 430px; margin-bottom: 30px; color: #d8dee3; font-size: 17px; line-height: 1.55; }
.hero-note { margin: 18px 0 0; color: #aebbc6; font-size: 12px; }
.hero-stamp {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 13%;
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.05;
  transform: rotate(-5deg);
}
.hero-stamp strong { color: var(--red); font-size: 16px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 50px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { min-width: 246px; color: #fff9f1; background: var(--red); }
.button-primary:hover { background: #d05b52; }
.button-paper { color: var(--ink); background: var(--paper); }
.button-paper:hover { background: #fffaf2; }
.button-dark { color: var(--paper); background: var(--ink); }
.button-dark:hover { background: var(--ink-soft); }

.section { padding: 112px max(32px, calc((100vw - var(--max)) / 2)); }
.section-paper { background: var(--paper); }
.section-ink { color: var(--paper); background: var(--ink); }
.section-number { margin-bottom: 18px; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; }
h2 { margin-bottom: 20px; font-size: clamp(48px, 6vw, 82px); line-height: 0.9; }
.section-intro { display: grid; grid-template-columns: 1fr 1fr; column-gap: 9%; align-items: end; margin-bottom: 72px; }
.section-intro .section-number { grid-column: 1 / -1; }
.section-intro h2 { margin-bottom: 0; }
.section-intro > p:last-child { max-width: 410px; margin-bottom: 0; font-size: 17px; line-height: 1.55; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.step { min-height: 220px; padding: 26px 28px 0 0; border-right: 1px solid var(--line); }
.step + .step { padding-left: 28px; }
.step:last-child { border-right: 0; }
.step-number { display: grid; place-items: center; width: 28px; height: 28px; margin-bottom: 32px; color: var(--paper); background: var(--ink); border-radius: 50%; font-size: 12px; }
.step h3, .price-copy h3 { margin-bottom: 10px; font-size: 18px; letter-spacing: -0.02em; }
.step p, .price-copy p { max-width: 280px; margin: 0; color: #536172; font-size: 14px; line-height: 1.55; }

.section-messages { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 9%; background: var(--paper-deep); }
.messages-heading h2 { max-width: 480px; }
.message-list { border-top: 1px solid var(--line); }
.message-list p { display: flex; align-items: baseline; gap: 16px; margin: 0; padding: 20px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(22px, 2.2vw, 31px); letter-spacing: -0.04em; }
.message-list p::before { content: "→"; color: var(--red); font-family: var(--sans); font-size: 14px; }
.message-list p { line-height: 1.15; }
.message-list strong { display: block; min-width: 150px; color: var(--red); font-family: var(--sans); font-size: 16px; font-weight: 700; letter-spacing: 0; }
.message-list .message-list-note { display: block; color: #536172; font-family: var(--sans); font-size: 14px; letter-spacing: 0; line-height: 1.5; }
.message-list .message-list-note::before { content: none; }

.section-messenger { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 9%; align-items: center; background: #eee5d7; }
.messenger-art { display: grid; place-items: center; min-height: 330px; background: #d9cbb7; transform: rotate(-2deg); }
.messenger-art img { width: min(70%, 280px); filter: drop-shadow(12px 15px 3px rgba(16, 28, 45, 0.13)); }
.messenger-copy > p:not(.section-number) { max-width: 500px; color: #536172; font-size: 17px; line-height: 1.55; }
.messenger-copy .messenger-punchline { color: var(--ink) !important; font-family: var(--serif); font-size: 28px !important; line-height: 1.1 !important; }
.messenger-copy .messenger-note { font-size: 12px !important; }

.section-ink { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: end; }
.pricing-lead p:last-child { max-width: 240px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.5; }
.price-list { border-top: 1px solid var(--paper-line); }
.price-row { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--paper-line); }
.price-amount { color: #e9b9a9; font-family: var(--serif); font-size: 42px; line-height: 0.9; }
.price-copy h3 { margin-bottom: 7px; }
.price-copy p { color: #bac4cd; }
.section-ink > .button { grid-column: 2; justify-self: start; margin-top: -48px; }
.payment-note { grid-column: 2; margin: -46px 0 0 272px; color: #9eabb8; font-size: 11px; }

.schedule-section { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 8%; align-items: start; }
.schedule-copy > p:not(.section-number) { max-width: 430px; color: #536172; font-size: 17px; line-height: 1.55; }
.privacy-line { margin-top: 26px; font-size: 16px !important; }
.privacy-line strong { color: var(--ink); }
.text-link { display: inline-flex; gap: 10px; margin-top: 20px; color: var(--red); font-size: 13px; font-weight: 800; }
.message-form { padding: 38px; background: var(--paper-deep); border: 1px solid rgba(16, 28, 45, 0.13); }
.form-heading { margin-bottom: 30px; }
.form-heading .card-mark { margin-bottom: 22px; }
.card-mark { margin-bottom: 42px; color: var(--red); font-size: 24px; }
.card-kicker { margin-bottom: 14px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.form-heading h3 { max-width: 320px; margin: 0; color: var(--ink); font-family: var(--serif); font-size: 36px; letter-spacing: -0.05em; line-height: 0.94; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; }
.form-grid label, .choice-set legend { color: var(--ink); font-size: 15px; font-weight: 700; }
.form-grid input:not([type="radio"]):not([type="checkbox"]), .form-grid textarea { display: block; width: 100%; margin-top: 8px; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(16, 28, 45, 0.36); border-radius: 0; color: var(--ink); background: transparent; font: inherit; font-size: 14px; outline: none; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--red); }
.form-grid textarea { min-height: 114px; resize: vertical; }
.form-grid select { display: block; width: 100%; margin-top: 8px; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(16, 28, 45, 0.36); border-radius: 0; color: var(--ink); background: var(--paper-deep); font: inherit; font-size: 15px; }
.state-status, .field-help { color: #536172; font-size: 14px; line-height: 1.5; }
.field-help { display: block; margin-top: 8px; font-weight: 400; }
.message-form > .button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.form-span { grid-column: 1 / -1; }
.choice-set { display: flex; flex-wrap: wrap; gap: 12px 20px; padding: 0; border: 0; }
.choice-set legend { width: 100%; margin-bottom: 2px; }
.choice { display: inline-flex; align-items: center; gap: 8px; color: #536172; font-size: 13px; font-weight: 500 !important; }
.choice input { accent-color: var(--red); }
.form-disclosure { margin: 26px 0; color: #536172; font-size: 15px; line-height: 1.55; }
.message-form > .button { border: 0; cursor: pointer; }
.form-result { margin-top: 20px; padding: 16px; color: var(--ink); background: rgba(247, 242, 233, 0.72); font-size: 13px; line-height: 1.5; }

.section-faq { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 9%; background: #eee5d7; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 38px 24px 0; cursor: pointer; font-family: var(--serif); font-size: 25px; letter-spacing: -0.04em; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 0; content: "+"; color: var(--red); font-family: var(--sans); font-size: 20px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 570px; margin: 0 0 25px; color: #536172; font-size: 14px; line-height: 1.6; }

.section-eligibility { display: grid; grid-template-columns: 160px 1fr; gap: 50px; color: var(--paper); background: var(--blue); }
.eligibility-mark { font-size: 72px; line-height: 0.8; }
.section-eligibility h2 { max-width: 680px; }
.section-eligibility p:not(.section-number) { max-width: 700px; color: #e4e8e9; font-size: 16px; line-height: 1.6; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: end; padding: 45px max(32px, calc((100vw - var(--max)) / 2)); color: var(--paper); background: var(--ink); }
.brand-footer { justify-self: start; }
.footer-links { display: flex; justify-content: center; gap: 22px; color: #b8c2cc; font-size: 12px; }
.footer-note { justify-self: end; margin: 0; color: #9eabb8; font-size: 12px; }

@media (max-width: 760px) {
  .site-header { width: calc(100% - 40px); padding: 18px 0; }
  .menu-toggle { display: inline-flex; border: 0; color: var(--paper); background: transparent; font: inherit; font-size: 13px; }
  .main-nav { position: absolute; top: 64px; right: 0; display: none; width: min(280px, 100vw - 40px); padding: 18px; background: var(--ink); box-shadow: 0 18px 40px rgba(0,0,0,.22); }
  .main-nav.is-open { display: grid; gap: 16px; }
  .main-nav a { padding: 4px 0; }
  .nav-cta { margin-top: 4px; text-align: center; }
  .hero { min-height: 760px; display: block; }
  .hero-image { inset: 0; background-position: 62% center; }
  .hero-image::after { background: linear-gradient(180deg, rgba(16,28,45,.28) 0%, rgba(16,28,45,.78) 62%, var(--ink) 100%); }
  .hero-copy { width: calc(100% - 40px); margin: 0 20px; padding-top: 210px; }
  .brand-line { margin-bottom: 26px; }
  h1 { font-size: clamp(48px, 13vw, 78px); }
  .hero-description { max-width: 330px; font-size: 15px; }
  .hero-stamp { right: 24px; bottom: 36px; }
  .section { padding: 76px 20px; }
  .section-intro, .section-ink, .schedule-section, .section-eligibility, .section-messenger, .section-faq { display: block; }
  .section-messages { display: block; }
  .message-list { margin-top: 42px; }
  .message-list p { display: block; font-size: 23px; }
  .message-list strong { margin-bottom: 8px; }
  .messenger-art { min-height: 260px; margin-bottom: 48px; }
  .faq-list { margin-top: 45px; }
  .section-intro { margin-bottom: 48px; }
  .section-intro > p:last-child { margin-top: 24px; }
  .steps { display: block; }
  .step, .step + .step { min-height: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .step-number { margin-bottom: 20px; }
  .section-ink { padding-top: 76px; }
  .pricing-lead { margin-bottom: 44px; }
  .price-row { grid-template-columns: 88px 1fr; gap: 10px; }
  .price-amount { font-size: 34px; }
  .section-ink > .button { display: flex; grid-column: auto; width: 100%; margin-top: 34px; }
  .payment-note { margin: 14px 0 0; }
  .message-form { margin-top: 54px; padding: 28px 22px; }
  .form-grid { display: block; }
  .form-grid > * { margin-bottom: 18px; }
  .section-eligibility { padding-top: 70px; }
  .eligibility-mark { margin-bottom: 42px; }
  .site-footer { display: block; padding: 36px 20px; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; margin: 36px 0 20px; }
  .footer-note { margin: 0; }
}
