:root {
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #102b4c;
  --ink-soft: #29394e;
  --gold: #b27a1c;
  --gold-deep: #956014;
  --cream: #fbf8f1;
  --cream-deep: #f3eee4;
  --white: #fffdfa;
  --line: #e4dac8;
  --page-width: 86rem;
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4.5rem;
  --space-6: 7rem;
  --radius: .3rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--cream); color: var(--ink-soft); font-family: var(--font-sans); font-size: 1rem; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
img { display: block; max-width: 100%; }
h1, h2, p { margin-top: 0; }
h1, h2 { color: var(--ink); font-family: var(--font-serif); font-weight: 500; line-height: 1.04; }
h1 { max-width: 15ch; font-size: clamp(3rem, 5.7vw, 5.45rem); letter-spacing: -.04em; }
h2 { font-size: clamp(1.45rem, 2.4vw, 2rem); }
.container { width: min(calc(100% - 3rem), var(--page-width)); margin-inline: auto; }
.section { padding-block: var(--space-6); }
.section-muted { border-block: 1px solid var(--line); background: var(--cream-deep); }
.narrow { width: min(100%, 49rem); }
.eyebrow { margin-bottom: var(--space-2); color: var(--gold-deep); font-size: .75rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.lead { max-width: 42rem; color: var(--ink-soft); font-size: clamp(1.1rem, 1.55vw, 1.3rem); line-height: 1.7; }
.skip-link { position: absolute; top: -5rem; left: var(--space-2); z-index: 10; padding: var(--space-1) var(--space-2); background: var(--ink); color: var(--white); }
.skip-link:focus { top: var(--space-2); }

.site-header { position: relative; z-index: 2; border-bottom: 1px solid var(--line); background: rgb(255 253 250 / 96%); box-shadow: 0 .2rem .5rem rgb(16 43 76 / 7%); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 10.25rem; gap: var(--space-4); }
.brand { display: inline-flex; align-items: center; justify-self: start; gap: .7rem; color: var(--ink); }
.brand-mark { width: 5.35rem; height: 6.45rem; object-fit: contain; }
.brand-lockup { display: grid; gap: .1rem; font-family: var(--font-serif); font-size: clamp(1.15rem, 1.65vw, 1.7rem); letter-spacing: .07em; line-height: 1; }
.brand-lockup small { color: var(--gold-deep); font-family: var(--font-sans); font-size: .54em; font-weight: 600; letter-spacing: .38em; text-transform: uppercase; }
.site-nav { display: flex; align-items: stretch; gap: clamp(1.35rem, 3.2vw, 3rem); align-self: stretch; }
.site-nav a { display: grid; align-items: center; position: relative; color: var(--ink); font-size: 1rem; font-weight: 500; }
.site-nav a::after { position: absolute; right: 0; bottom: 2.05rem; left: 0; height: 2px; background: var(--gold); content: ""; opacity: 0; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold-deep); }
.site-nav a[aria-current="page"]::after { opacity: 1; }

.hero { display: flex; align-items: center; min-height: 40rem; padding-block: clamp(5rem, 9vw, 9.2rem) clamp(4.5rem, 7vw, 7rem); background: var(--cream); }
.hero-content { width: 100%; }
.hero-content > div { max-width: 44rem; }
.gold-punctuation { color: var(--gold); }
.hero-rule { width: 6.4rem; height: 1px; margin: 2.2rem 0; background: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: 2.35rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3.8rem; padding: .85rem 2rem; border: 1px solid var(--gold-deep); border-radius: var(--radius); background: var(--gold); box-shadow: inset 0 0 0 1px rgb(255 255 255 / 18%); color: var(--white); font-weight: 700; }
.button:hover { background: var(--gold-deep); }
.button-secondary { background: transparent; box-shadow: none; color: var(--gold-deep); }
.button-secondary:hover { background: rgb(178 122 28 / 8%); color: var(--gold-deep); }
.button-secondary span { margin-left: .85rem; font-size: 1.3em; }

.value-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.values { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: 2.5rem; }
.value { display: grid; grid-template-columns: 3.3rem minmax(0, 1fr); align-items: start; gap: .4rem; padding: .15rem 2rem; }
.value + .value { border-left: 1px solid var(--line); }
.value-icon { width: 2.65rem; height: 2.65rem; object-fit: contain; opacity: .96; }
.value h2 { margin-bottom: .45rem; font-size: 1.25rem; }
.value p { margin: 0; font-size: .88rem; line-height: 1.55; }

.content-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: var(--space-5); }
.content-grid p, .card p, .step p { color: var(--ink-soft); }
.feature-list { margin: var(--space-3) 0 0; padding: 0; list-style: none; }
.feature-list li { padding: var(--space-1) 0 var(--space-1) 1.35rem; border-top: 1px solid var(--line); }
.feature-list li::before { display: inline-block; width: .45rem; height: .45rem; margin-left: -1.35rem; margin-right: .9rem; border: 1px solid var(--gold); content: ""; transform: rotate(45deg); }
.page-intro { padding-bottom: var(--space-4); }
.cards, .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.card, .contact-card { padding: var(--space-3); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.card h2 { font-size: 1.35rem; }
.step { border-top: 2px solid var(--gold); padding-top: var(--space-2); }
.step-number { color: var(--gold-deep) !important; font-size: .75rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.contact-card { margin-top: var(--space-4); max-width: 32rem; }
.contact-card h2 { font-size: 1.15rem; }
.contact-card a { color: var(--gold-deep); font-size: 1.15rem; font-weight: 700; text-decoration: underline; text-underline-offset: .2em; }

.site-footer { padding-block: 3.5rem; border-top: 1px solid var(--line); background: var(--ink); color: rgb(255 253 250 / 80%); }
.footer-inner { display: flex; align-items: end; justify-content: space-between; gap: var(--space-3); }
.site-footer p { margin: 0; }
.site-footer strong, .site-footer a { color: var(--white); }

@media (max-width: 74rem) {
  .header-inner { min-height: auto; padding-block: 1rem; }
  .site-nav { gap: 1.5rem; }
  .value { padding-inline: 1.35rem; }
}

@media (max-width: 52rem) {
  .container { width: min(calc(100% - 2rem), var(--page-width)); }
  .header-inner { align-items: flex-start; flex-direction: column; gap: .7rem; }
  .site-nav { width: 100%; justify-content: space-between; gap: .6rem; overflow-x: auto; padding-bottom: .35rem; }
  .site-nav a::after { bottom: 0; }
  .hero { min-height: auto; padding-top: 4.5rem; }
  .content-grid, .cards, .steps { grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .values { grid-template-columns: repeat(2, 1fr); padding-block: 1rem; }
  .value { padding-block: 1.2rem; }
  .value:nth-child(3) { border-left: 0; }
}

@media (max-width: 28rem) {
  h1 { font-size: clamp(2.7rem, 15vw, 3.6rem); }
  .brand-mark { width: 4.3rem; height: 5.2rem; }
  .brand-lockup { font-size: 1.15rem; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .values { grid-template-columns: 1fr; }
  .value + .value, .value:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
}

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