:root {
  --ivory: #f6f0e4;
  --ivory-deep: #ece3d2;
  --paper: #fbf8f1;
  --forest: #173d2b;
  --forest-deep: #0f2d20;
  --moss: #4e725b;
  --sage: #9aa98d;
  --gold: #a88a4d;
  --gold-light: #c7aa6d;
  --ink: #20332a;
  --muted: #5c685f;
  --line: rgba(23, 61, 43, 0.17);
  --serif: "Iowan Old Style", "Baskerville", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding-block: 128px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -80px; padding: 10px 16px; color: var(--ivory); background: var(--forest); }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  background: rgba(246, 240, 228, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}
.site-header.scrolled { background: rgba(246, 240, 228, 0.97); border-color: rgba(23, 61, 43, 0.12); box-shadow: 0 12px 30px rgba(15,45,32,.06); }
.nav-shell { min-height: 88px; display: flex; align-items: center; justify-content: space-between; }
.wordmark { display: inline-flex; align-items: center; gap: 13px; line-height: 1; }
.wordmark img { width: 50px; height: 50px; }
.wordmark span { display: flex; flex-direction: column; }
.wordmark strong { color: var(--forest); font-family: var(--serif); font-size: 23px; font-weight: 700; letter-spacing: .04em; }
.wordmark em { margin-top: 5px; color: var(--gold); font-family: var(--serif); font-size: 12px; font-style: normal; font-weight: 600; letter-spacing: .31em; }
.main-nav { display: flex; align-items: center; gap: 34px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 1px; background: var(--gold); transition: width 180ms ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }
.nav-cta { padding: 11px 19px; border: 1px solid rgba(23,61,43,.52); transition: color 180ms ease, background 180ms ease; }
.nav-cta:hover { color: var(--ivory); background: var(--forest); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: 158px 0 40px;
  background: radial-gradient(circle at 78% 43%, rgba(200,173,113,.13), transparent 29%), linear-gradient(120deg, var(--ivory) 0%, #faf6ed 50%, var(--ivory-deep) 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .2; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E"); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px; }
.eyebrow, .kicker { margin: 0 0 24px; color: var(--gold); font-size: 11px; font-weight: 750; letter-spacing: .21em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow > span:first-child { width: 44px; height: 1px; background: var(--gold); }
h1, h2, h3 { margin: 0; color: var(--forest); font-family: var(--serif); font-weight: 500; line-height: .98; }
h1 { font-size: clamp(66px, 7vw, 104px); letter-spacing: -.055em; }
h1 em, h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.hero-intro { max-width: 575px; margin: 32px 0 0; color: #405247; font-family: var(--serif); font-size: 21px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 42px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 0 27px; border: 0; border-radius: 0; cursor: pointer; font-size: 11px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; transition: transform 180ms ease, background 180ms ease, color 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ivory); background: var(--forest); box-shadow: 0 16px 30px rgba(15,45,32,.16); }
.button-primary:hover { background: var(--gold); }
.text-link, .brand-action { display: inline-flex; align-items: center; gap: 8px; }
.text-link { padding-bottom: 3px; color: var(--forest); border-bottom: 1px solid rgba(23,61,43,.25); font-family: var(--serif); font-size: 17px; font-style: italic; }
.text-link span, .brand-action span { color: var(--gold); transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px,3px); }
.hero-identity { position: relative; min-height: 580px; display: grid; place-items: center; }
.identity-halo { position: absolute; width: 520px; height: 520px; border: 1px solid rgba(168,138,77,.3); border-radius: 50%; }
.identity-halo::before, .identity-halo::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(23,61,43,.12); }
.identity-halo::before { inset: 20px; }
.identity-halo::after { inset: -34px; border-style: dashed; animation: rotate 70s linear infinite; }
.hero-mark { position: relative; width: min(490px,42vw); filter: drop-shadow(0 30px 38px rgba(31,56,43,.13)); }
.identity-caption { position: absolute; bottom: 7px; display: flex; align-items: center; gap: 14px; color: var(--forest); font-size: 9px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.identity-caption i { width: 30px; height: 1px; background: var(--gold); }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(23,61,43,.09); }
.orbit-left { width: 230px; height: 230px; left: -130px; top: 180px; }
.orbit-right { width: 110px; height: 110px; right: -45px; bottom: 90px; border-color: rgba(168,138,77,.24); }
.hero-foot { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 65px; color: var(--moss); font-family: var(--serif); font-size: 13px; font-style: italic; letter-spacing: .08em; }
.hero-foot i { width: 4px; height: 4px; border: 1px solid var(--gold); border-radius: 50%; }

.vision-section { background: var(--paper); }
.vision-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 11vw; align-items: start; }
.section-intro { position: sticky; top: 130px; }
.section-intro h2, .values-copy > h2, .about-copy h2, .contact-copy h2 { font-size: clamp(48px,5.5vw,78px); letter-spacing: -.04em; }
.vision-copy { padding-left: 54px; border-left: 1px solid rgba(168,138,77,.4); }
.vision-copy p { max-width: 650px; color: #536158; }
.vision-copy .statement { margin: 0 0 28px; color: var(--forest); font-family: var(--serif); font-size: clamp(26px,3vw,38px); line-height: 1.36; }
.signature { display: inline-block; margin-top: 35px; padding-top: 15px; color: var(--gold); border-top: 1px solid var(--gold); font-family: var(--serif); font-size: 17px; font-style: italic; }

.brands-section { position: relative; overflow: hidden; color: #dfe7df; background: var(--forest-deep); }
.brands-section::before { content: "HORIZON"; position: absolute; top: 130px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.025); font-family: var(--serif); font-size: 20vw; line-height: 1; white-space: nowrap; }
.brands-heading { position: relative; display: grid; grid-template-columns: 1fr 320px; gap: 80px; align-items: end; margin-bottom: 70px; }
.brands-heading h2 { color: var(--ivory); font-size: clamp(48px,5.5vw,76px); letter-spacing: -.04em; }
.brands-heading > p { margin: 0 0 8px; color: #b5c1b8; }
.kicker-light { color: var(--gold-light); }
.brand-list { position: relative; border-top: 1px solid rgba(246,240,228,.17); }
.brand-card { position: relative; display: grid; grid-template-columns: 58px 100px minmax(300px,1fr) 180px; gap: 28px; align-items: center; min-height: 238px; padding: 40px 8px; border-bottom: 1px solid rgba(246,240,228,.17); overflow: hidden; }
.brand-card::before { content: ""; position: absolute; inset: 0; transform: scaleX(0); transform-origin: left; background: rgba(246,240,228,.045); transition: transform 500ms cubic-bezier(.2,.8,.2,1); }
.brand-card:hover::before { transform: scaleX(1); }
.brand-card > * { position: relative; }
.brand-index { align-self: start; color: var(--gold-light); font-family: var(--serif); font-size: 14px; }
.brand-symbol { display: grid; place-items: center; width: 82px; height: 82px; border: 1px solid rgba(198,165,91,.5); border-radius: 50%; }
.brand-symbol svg { width: 48px; height: 48px; fill: none; stroke: var(--gold-light); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.brand-kicker { margin: 0 0 10px; color: var(--sage); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.brand-content h3 { color: var(--ivory); font-size: clamp(38px,4.5vw,62px); }
.brand-content > p:last-child { max-width: 620px; margin: 17px 0 0; color: #b5c1b8; font-size: 15px; }
.brand-action { justify-self: end; padding: 8px 0; color: var(--gold-light); border: 0; background: none; font-family: var(--serif); font-size: 17px; font-style: italic; white-space: nowrap; cursor: pointer; }
.brand-action:hover span { transform: translate(3px,-3px); }

.values-section { background: var(--ivory-deep); }
.values-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 9vw; align-items: center; }
.values-visual { position: relative; min-height: 650px; overflow: hidden; background: var(--forest); }
.values-visual::before { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(246,240,228,.15); }
.sun-disc { position: absolute; top: 80px; left: 50%; width: 310px; height: 310px; transform: translateX(-50%); border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 30px rgba(168,138,77,.08); }
.botanical-line { position: absolute; inset: auto 0 0; width: 100%; height: 90%; fill: var(--forest-deep); stroke: var(--gold-light); stroke-width: 2; stroke-linejoin: round; }
.values-copy > h2 { margin-bottom: 58px; }
.value-row { display: grid; grid-template-columns: 45px 1fr; gap: 24px; padding: 27px 0; border-top: 1px solid var(--line); }
.value-row:last-child { border-bottom: 1px solid var(--line); }
.value-row > span { color: var(--gold); font-family: var(--serif); font-size: 13px; }
.value-row h3 { margin-bottom: 8px; font-size: 25px; }
.value-row p { margin: 0; color: var(--muted); font-size: 14px; }

.about-section { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: center; }
.about-mark { position: relative; display: grid; aspect-ratio: 1; place-items: center; overflow: hidden; background: var(--ivory-deep); }
.about-mark::before { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(168,138,77,.4); border-radius: 50%; }
.about-mark img { position: relative; width: 76%; filter: drop-shadow(0 24px 28px rgba(15,45,32,.12)); }
.about-copy h2 { margin-bottom: 30px; }
.about-copy > p:not(.kicker) { max-width: 670px; color: var(--muted); font-size: 17px; }
.facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 46px 0 0; padding-top: 28px; border-top: 1px solid var(--line); }
.facts div { display: grid; gap: 5px; }
.facts dt { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.facts dd { margin: 0; color: var(--forest); font-family: var(--serif); font-size: 17px; font-weight: 700; }

.contact-section { background: var(--forest); color: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 8vw; align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy h2 { color: var(--ivory); }
.contact-copy > p:not(.kicker) { max-width: 470px; margin-top: 28px; color: #bdc7bf; font-family: var(--serif); font-size: 19px; }
.direct-contact { display: grid; gap: 9px; margin-top: 38px; }
.direct-contact a { width: fit-content; color: var(--gold-light); border-bottom: 1px solid rgba(198,165,91,.5); font-weight: 650; }
.contact-form { padding: clamp(28px,5vw,52px); color: var(--ink); background: var(--ivory); box-shadow: 0 30px 60px rgba(5,23,15,.2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { margin-bottom: 22px; }
.field label { display: block; margin-bottom: 8px; color: var(--forest); font-size: 12px; font-weight: 750; letter-spacing: .06em; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; color: var(--ink); border: 1px solid rgba(23,61,43,.24); border-radius: 0; background: var(--paper); outline: none; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(168,138,77,.13); }
.field [aria-invalid="true"] { border-color: #a63c32; }
.checkbox-field { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; margin: 2px 0 24px; color: var(--muted); font-size: 13px; }
.checkbox-field input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--forest); }
.checkbox-field a { text-decoration: underline; text-underline-offset: 3px; }
.submit-button { width: 100%; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 12px; }
.form-status { min-height: 26px; margin: 9px 0 0; color: var(--moss); font-size: 13px; font-weight: 700; }

.site-footer { color: #bac4bc; background: #092218; }
.footer-main { display: grid; grid-template-columns: 1fr 180px 180px; gap: 80px; padding: 75px 0 60px; }
.wordmark-light strong { color: var(--ivory); }
.wordmark-light img { width: 56px; height: 56px; border-radius: 50%; }
.footer-brand > p { margin: 18px 0 0 70px; color: var(--gold-light); font-family: var(--serif); font-style: italic; }
.footer-column { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-column > p { margin: 0 0 8px; color: var(--ivory); font-size: 10px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.footer-column a:hover { color: var(--gold-light); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; padding: 22px 0 28px; border-top: 1px solid rgba(246,240,228,.12); color: #839087; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom > span { color: var(--gold-light); text-align: center; }
.footer-bottom > div { display: flex; justify-content: flex-end; gap: 22px; }
.footer-bottom a:hover { color: var(--ivory); }

.legal-page { min-height: 100vh; background: var(--ivory); }
.legal-page .site-header { position: static; background: var(--ivory); border-bottom: 1px solid var(--line); }
.legal-shell { max-width: 860px; padding-block: 86px 120px; }
.back-link { display: inline-flex; margin-bottom: 50px; color: var(--moss); font-weight: 700; }
.legal-shell > h1 { margin-bottom: 42px; font-size: clamp(48px,7vw,82px); }
.legal-card { padding: clamp(28px,6vw,64px); background: var(--paper); box-shadow: 0 24px 60px rgba(15,45,32,.07); }
.legal-card h2 { margin: 42px 0 12px; font-size: 25px; line-height: 1.15; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 { margin: 28px 0 8px; font-size: 18px; }
.legal-card p, .legal-card li, .legal-card address { color: var(--muted); }
.legal-card address { font-style: normal; }
.legal-card a { color: var(--moss); text-decoration: underline; text-underline-offset: 3px; }
.legal-note { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 120ms; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
@keyframes rotate { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .container { width: min(calc(100% - 40px),760px); }
  .section { padding-block: 96px; }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-identity { min-height: 520px; }
  .hero-mark { width: 430px; }
  .identity-halo { width: 460px; height: 460px; }
  .vision-grid { grid-template-columns: 1fr; gap: 55px; }
  .section-intro, .contact-copy { position: static; }
  .vision-copy { padding-left: 32px; }
  .brands-heading { grid-template-columns: 1fr; gap: 25px; }
  .brands-heading > p { max-width: 550px; }
  .brand-card { grid-template-columns: 48px 90px 1fr; }
  .brand-action { grid-column: 3; justify-self: start; }
  .values-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .values-visual { min-height: 540px; }
  .about-mark { max-width: 560px; }
  .footer-main { grid-template-columns: 1fr 150px 150px; gap: 30px; }
  .footer-bottom { grid-template-columns: 1fr 1fr; }
  .footer-bottom > span { display: none; }
}

@media (max-width: 720px) {
  .container { width: calc(100% - 32px); }
  .nav-shell { min-height: 74px; }
  .wordmark img { width: 44px; height: 44px; }
  .wordmark strong { font-size: 19px; }
  .wordmark em { font-size: 10px; }
  .menu-button { position: relative; z-index: 102; display: grid; width: 44px; height: 44px; padding: 11px; border: 0; place-content: center; gap: 7px; background: transparent; cursor: pointer; }
  .menu-button > span:not(.sr-only) { display: block; width: 22px; height: 1px; background: var(--forest); transition: transform 200ms ease; }
  .menu-button[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .menu-button[aria-expanded="true"] > span:not(.sr-only) { background: var(--ivory); }
  .main-nav { position: fixed; z-index: 101; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; opacity: 0; visibility: hidden; color: var(--ivory); background: var(--forest-deep); font-family: var(--serif); font-size: 26px; font-weight: 400; text-transform: none; transition: opacity 220ms ease, visibility 220ms ease; }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav .nav-cta { margin-top: 12px; border-color: var(--gold-light); }
  .hero { padding-top: 120px; }
  h1 { font-size: clamp(54px,16vw,76px); }
  .hero-intro { font-size: 18px; }
  .hero-actions { flex-direction: column; gap: 22px; }
  .hero-identity { min-height: 390px; }
  .hero-mark { width: min(350px,90vw); }
  .identity-halo { width: min(370px,94vw); height: min(370px,94vw); }
  .identity-caption { bottom: -2px; flex-wrap: wrap; justify-content: center; width: 100%; }
  .hero-foot { margin-top: 45px; gap: 11px; font-size: 11px; }
  .section { padding-block: 80px; }
  .section-intro h2, .values-copy > h2, .about-copy h2, .contact-copy h2 { font-size: 48px; }
  .vision-copy { padding-left: 22px; }
  .vision-copy .statement { font-size: 25px; }
  .brands-heading h2 { font-size: 47px; }
  .brand-card { grid-template-columns: 46px 1fr; gap: 20px; padding: 34px 0; }
  .brand-index { grid-row: 1 / span 3; }
  .brand-symbol { width: 70px; height: 70px; }
  .brand-content, .brand-action { grid-column: 2; }
  .brand-content h3 { font-size: 46px; }
  .values-visual { min-height: 470px; }
  .sun-disc { width: 250px; height: 250px; }
  .facts { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 26px 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 16px; }
  .footer-brand > p { margin-left: 0; }
  .footer-bottom { grid-template-columns: 1fr; align-items: start; gap: 12px; }
  .footer-bottom > div { justify-content: flex-start; }
  .legal-shell { padding-block: 60px 90px; }
}

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