:root {
  color-scheme: dark;
  --ground: #121014;
  --ground-2: #171218;
  --panel: #1d171d;
  --panel-2: #241b22;
  --paper: #f4efe8;
  --paper-soft: #e6d9ce;
  --muted: #b9a99f;
  --rose: #c4a494;
  --rose-2: #d7b8a6;
  --wine: #8a4a55;
  --wine-2: #a45c67;
  --rule: rgba(196, 164, 148, 0.28);
  --rule-strong: rgba(244, 239, 232, 0.24);
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  --max: 1160px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: 0;
}

body,
html {
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-color: rgba(196, 164, 148, 0.55);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--rose-2);
}

.skip-link {
  left: 18px;
  position: absolute;
  top: -60px;
  z-index: 30;
  background: var(--paper);
  color: var(--ground);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 52px);
  padding-left: max(clamp(18px, 4vw, 52px), env(safe-area-inset-left));
  padding-right: max(clamp(18px, 4vw, 52px), env(safe-area-inset-right));
  background: rgba(18, 16, 20, 0.96);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--rose);
  color: var(--rose-2);
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1;
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.13rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-subtitle {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.8vw, 26px);
  color: var(--paper-soft);
  font-size: 0.81rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.nav-links a,
.mobile-menu a {
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  color: var(--rose-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--rose);
  background: transparent;
  color: var(--paper);
  font: 700 0.78rem/1 var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--ground);
}

.btn-primary {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ground);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--rose-2);
  border-color: var(--rose-2);
  color: var(--ground);
}

.btn-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--rule-strong);
  background: transparent;
  color: var(--paper);
  border-radius: 4px;
  font: 700 0.72rem/1 var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-menu {
  position: fixed;
  inset: 76px 0 auto 0;
  z-index: 19;
  display: grid;
  gap: 0;
  padding: 12px 18px 18px;
  padding-left: max(18px, env(safe-area-inset-left));
  padding-right: max(18px, env(safe-area-inset-right));
  padding-bottom: max(18px, env(safe-area-inset-bottom));
  background: #121014;
  border-bottom: 1px solid var(--rule);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  padding: 13px 0;
  border-bottom: 1px solid rgba(244, 239, 232, 0.1);
  color: var(--paper-soft);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-menu-actions {
  display: grid;
  gap: 10px;
  padding-top: 16px;
}

.mobile-menu-actions .btn {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  font-size: 0.68rem;
  border-bottom: 1px solid var(--rose);
}

main {
  overflow: hidden;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 64px);
}

.section-tight {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
}

.section-alt {
  background: var(--ground-2);
}

.section-wine {
  background: linear-gradient(180deg, #21141a 0%, #151015 100%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  align-items: start;
  gap: clamp(36px, 6vw, 80px);
}

.two-col-balanced {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 62px);
}

.hero {
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 64px) clamp(50px, 7vw, 86px);
  border-bottom: 1px solid var(--rule);
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

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

.hero-copy,
.body-copy,
.section-heading,
.card,
.fee-card,
.form-card,
.brand {
  min-width: 0;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  font-size: clamp(1.24rem, 2.4vw, 1.72rem);
}

.lede {
  margin: 20px 0 0;
  color: var(--paper-soft);
  font-size: clamp(1.18rem, 2.2vw, 1.58rem);
  line-height: 1.5;
}

.welcome {
  margin: 22px 0 0;
  max-width: 720px;
  color: var(--rose-2);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.42;
}

.body-copy {
  max-width: 760px;
  color: var(--paper-soft);
}

.body-copy p,
.panel p,
.card p,
.fee-card p,
.split-copy p {
  margin: 16px 0 0;
}

.hero-body {
  margin-top: 28px;
  color: var(--paper-soft);
  max-width: 700px;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fee-hint,
.location-note,
.contact-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-note a {
  color: var(--paper);
  font-weight: 700;
}

.fee-hint strong {
  color: var(--paper);
  font-weight: 700;
}

.portrait {
  width: min(100%, 430px);
  justify-self: center;
}

.mobile-portrait {
  display: none;
}

.portrait img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center center;
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  box-shadow: none;
}

.about-portrait {
  width: min(100%, 330px);
}

.cred-strip {
  padding: 25px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
  background: #151116;
}

.cred-strip .container {
  display: grid;
  gap: 5px;
  text-align: center;
}

.cred-strip p {
  margin: 0;
  color: var(--paper-soft);
  font-size: clamp(0.9rem, 1.7vw, 1.05rem);
  letter-spacing: 0.03em;
}

.cred-strip strong {
  color: var(--rose-2);
  font-weight: 600;
}

.display-line {
  margin: 28px 0 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.38rem);
  line-height: 1.22;
}

.quiet-line {
  margin-top: 18px;
  color: var(--rose-2);
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.48;
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--paper-soft);
  font-size: 1.06rem;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card,
.panel,
.fee-card {
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--panel);
}

.card,
.fee-card {
  padding: 24px;
}

.card h3,
.fee-card h3 {
  margin-bottom: 10px;
}

.card p,
.fee-card p {
  color: var(--paper-soft);
}

.card-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--rose-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.rule-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.rule-list li {
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  color: var(--paper-soft);
}

.rule-list strong {
  color: var(--paper);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.sticky-words {
  position: sticky;
  top: 104px;
  padding: 24px 0;
}

.sticky-words span {
  display: block;
  color: rgba(244, 239, 232, 0.34);
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: 0.96;
}

.sticky-words span:first-child,
.sticky-words span:nth-child(2) {
  color: var(--paper);
}

.method-steps {
  display: grid;
  gap: 18px;
}

.method-step {
  padding: 26px;
  border-top: 1px solid var(--rule);
}

.method-step:first-child {
  border-top: 0;
}

.media-band {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: #0f0f12;
}

.live-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.live-strip span {
  border: 1px solid rgba(196, 164, 148, 0.45);
  color: var(--rose-2);
  padding: 6px 9px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.fee-card .price {
  margin-top: 12px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.05;
}

.fee-card .price span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.83rem;
  line-height: 1.4;
}

details {
  border-top: 1px solid var(--rule);
  padding: 19px 0;
}

details:first-of-type {
  border-top: 0;
}

summary {
  cursor: pointer;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.34rem;
  list-style: none;
}

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

summary::after {
  content: "+";
  float: right;
  color: var(--rose-2);
  font-family: var(--sans);
}

details[open] summary::after {
  content: "-";
}

details p {
  color: var(--paper-soft);
  max-width: 800px;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.form-card {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: #171218;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label,
.label {
  color: var(--paper);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  background: #100e12;
  color: var(--paper);
  font: inherit;
  padding: 11px 12px;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

select {
  appearance: auto;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(196, 164, 148, 0.38);
  outline-offset: 2px;
  border-color: var(--rose);
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--paper-soft);
  font-size: 0.94rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 5px;
}

.hidden {
  display: none;
}

.fine-print {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 46px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--rule);
  background: #0f0d11;
  color: var(--paper-soft);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 28px;
}

.footer-grid h2,
.footer-grid h3 {
  margin-bottom: 12px;
  font-family: var(--sans);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  margin: 6px 0 0;
  color: var(--paper-soft);
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 5px;
}

.copyright {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 239, 232, 0.1);
  color: var(--muted);
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid,
  .two-col,
  .two-col-balanced,
  .method-grid,
  .form-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portrait {
    justify-self: start;
    width: min(78vw, 300px);
  }

  .sticky-words {
    position: static;
    padding: 0;
  }

  .sticky-words span {
    display: inline;
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .grid-3,
  .fee-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    display: flex;
    align-items: center;
    min-height: 68px;
    padding: 10px 12px;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
    width: 100%;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 0.76rem;
  }

  .brand {
    gap: 8px;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .brand-name {
    max-width: 132px;
    font-size: 0.76rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-subtitle {
    display: none;
  }

  .header-cta {
    flex: 0 0 auto;
    width: auto;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.68rem;
  }

  .menu-toggle {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 10px 11px;
    font-size: 0.68rem;
  }

  .mobile-menu {
    inset-block-start: 68px;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
  }

  .section {
    padding: 48px max(20px, env(safe-area-inset-right)) 52px max(20px, env(safe-area-inset-left));
  }

  .hero {
    padding: 32px max(20px, env(safe-area-inset-right)) 42px max(20px, env(safe-area-inset-left));
  }

  .hero-grid {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .container,
  .narrow,
  .hero-copy,
  .body-copy,
  .section-heading,
  .hero-body,
  .welcome,
  .lede,
  .fee-hint,
  .contact-note,
  .location-note {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy p,
  .body-copy p,
  .section-heading p,
  .card p,
  .fee-card p {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero-body {
    margin-top: 22px;
  }

  h1 {
    font-size: clamp(1.92rem, 8.5vw, 2.38rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.32rem, 5.2vw, 1.62rem);
    line-height: 1.08;
  }

  .lede {
    font-size: 1.03rem;
  }

  .welcome {
    font-size: 1.03rem;
  }

  .display-line {
    font-size: 1.2rem;
    line-height: 1.34;
  }

  .quiet-line {
    font-size: 1.04rem;
  }

  .sticky-words span {
    font-size: clamp(1.65rem, 6.8vw, 2.15rem);
  }

  .grid-2,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .action-row .btn,
  .form-card .btn {
    width: 100%;
  }

  .portrait {
    width: min(100%, 318px);
    margin: 10px auto 0;
    justify-self: center;
  }

  .desktop-portrait {
    display: none;
  }

  .mobile-portrait {
    display: block;
    width: min(190px, 50vw);
    margin: 18px 0 0;
  }

  .mobile-portrait img {
    aspect-ratio: 4 / 5;
    object-position: center center;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 8px;
  }

  .brand-name {
    display: block;
    max-width: 116px;
  }

  .header-cta,
  .menu-toggle {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 0.66rem;
  }

  .hero-grid {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(1.86rem, 8.6vw, 2.18rem);
  }

  h2 {
    font-size: clamp(1.28rem, 5.4vw, 1.5rem);
  }

  .display-line {
    font-size: 1.14rem;
  }

  .sticky-words span {
    font-size: clamp(1.48rem, 6.2vw, 1.86rem);
  }
}

@media (max-width: 360px) {
  .brand-name {
    max-width: 96px;
    font-size: 0.68rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .header-cta,
  .menu-toggle {
    padding: 8px 8px;
    font-size: 0.61rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
