:root {
  --ink: #181815;
  --ink-soft: #25241f;
  --paper: #f6f3ec;
  --paper-deep: #ebe5d9;
  --white: #ffffff;
  --copper: #b87345;
  --copper-light: #d79b70;
  --sand: #c9bca8;
  --muted: #6f6b62;
  --line: rgba(24, 24, 21, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 80px rgba(27, 23, 17, 0.12);
  --radius: 2px;
  --container: min(1180px, calc(100% - 40px));
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--copper); color: var(--white); }

.container { width: var(--container); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 88px;
  color: var(--white);
  transition: background .3s ease, box-shadow .3s ease, color .3s ease, height .3s ease;
}
.site-header.is-scrolled {
  height: 76px;
  background: rgba(246, 243, 236, .95);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; position: relative; z-index: 2; }
.brand img { width: 224px; height: auto; }
.site-header:not(.is-scrolled) .brand img { filter: brightness(0) invert(1); }
.site-nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 600; }
.site-nav > a { position: relative; padding: 12px 0; }
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  height: 1px;
  inset: auto 0 8px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav > a:hover::after,
.site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 20px !important; border: 1px solid currentColor; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; height: 1px; margin: 6px 0; background: currentColor; transition: transform .25s ease, opacity .25s ease; }

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(184, 115, 69, .16), transparent 30%),
    linear-gradient(115deg, #11110f 0%, #1c1b17 54%, #26231d 100%);
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}
.hero::after {
  content: "HO";
  position: absolute;
  right: -1vw;
  bottom: -14vw;
  font-family: var(--serif);
  font-size: clamp(260px, 40vw, 620px);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.055);
  pointer-events: none;
}
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.hero-orbit-one { width: 510px; height: 510px; right: 7%; top: 12%; }
.hero-orbit-two { width: 330px; height: 330px; right: 14%; top: 22%; border-color: rgba(184,115,69,.25); }
.hero-layout { position: relative; z-index: 2; min-height: 100%; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(310px, .55fr); align-items: center; gap: 9vw; padding-top: 92px; }
.hero-copy { max-width: 760px; }
.eyebrow { margin: 0 0 22px; color: var(--copper-light); font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow-dark { color: var(--copper); }
.hero h1, .section h2, .legal-content h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.035em;
}
.hero h1 { max-width: 830px; font-size: clamp(54px, 7.1vw, 102px); }
.hero-lead { max-width: 680px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.35vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--copper); color: var(--white); }
.button-primary:hover { background: #9f6038; }
.button-ghost { border-color: rgba(255,255,255,.28); color: var(--white); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.button-small { min-height: 42px; padding: 8px 18px; }
.hero-panel {
  position: relative;
  align-self: center;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.hero-panel::before { content: ""; position: absolute; width: 34px; height: 2px; left: -1px; top: -1px; background: var(--copper); }
.hero-panel-kicker { margin: 0 0 22px; color: rgba(255,255,255,.55); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.hero-panel ul { list-style: none; padding: 0; margin: 0; }
.hero-panel li { display: flex; align-items: center; gap: 18px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.11); font-family: var(--serif); font-size: 20px; }
.hero-panel li span { color: var(--copper-light); font-family: var(--sans); font-size: 10px; letter-spacing: .12em; }
.hero-panel-footer { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.scroll-cue { position: absolute; z-index: 2; left: 50%; bottom: 28px; display: flex; flex-direction: column; align-items: center; gap: 9px; color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue i { display: block; width: 1px; height: 38px; background: linear-gradient(var(--copper-light), transparent); animation: pulse-line 1.8s ease-in-out infinite; }
@keyframes pulse-line { 0%,100% { transform: scaleY(.6); transform-origin: top; opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

.section { padding: 130px 0; }
.section-light { background: var(--paper); }
.section-stone { background: var(--paper-deep); }
.section-dark { background: var(--ink); color: var(--white); }
.section h2 { font-size: clamp(42px, 5vw, 70px); }
.split-layout { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1fr); gap: 10vw; align-items: start; }
.section-heading { max-width: 650px; }
.section-heading.centered { margin: 0 auto 70px; text-align: center; }
.prose { max-width: 710px; color: #4f4b43; font-size: 18px; }
.prose p { margin: 0 0 24px; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 86px; background: var(--line); border: 1px solid var(--line); }
.principle-card { min-height: 286px; padding: 34px; background: var(--paper); }
.card-number, .service-index { display: block; color: var(--copper); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.principle-card h3 { margin: 70px 0 14px; font-family: var(--serif); font-size: 26px; line-height: 1.2; }
.principle-card p { margin: 0; color: var(--muted); }
.quote-block { margin-top: 95px; padding: 0 5vw; }
.quote-block blockquote { max-width: 930px; margin: 0 auto; text-align: center; font-family: var(--serif); font-size: clamp(34px, 4vw, 56px); font-style: italic; line-height: 1.24; color: #3b372f; }
.quote-block blockquote::before { content: "“"; display: block; margin-bottom: -10px; color: var(--copper); font-size: 72px; line-height: .8; }
.section-topline { display: grid; grid-template-columns: 1fr .68fr; gap: 8vw; align-items: end; margin-bottom: 66px; }
.section-topline > p { margin: 0 0 8px; color: rgba(255,255,255,.6); font-size: 17px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.service-card { position: relative; min-height: 290px; padding: 30px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); overflow: hidden; transition: background .25s ease, transform .25s ease; }
.service-card:hover { background: rgba(255,255,255,.045); transform: translateY(-4px); }
.service-card h3 { margin: 64px 0 18px; font-family: var(--serif); font-size: 25px; line-height: 1.18; }
.service-card p { margin: 0; color: rgba(255,255,255,.57); font-size: 14px; }
.service-line { position: absolute; inset: auto 30px 26px; height: 1px; background: var(--line-light); }
.service-line::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--copper); }
.partners-list { display: grid; gap: 42px; }
.partner-card { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 470px; background: var(--paper); box-shadow: var(--shadow); }
.partner-card.reverse { grid-template-columns: 1.25fr .75fr; }
.partner-card.reverse .partner-portrait { order: 2; }
.partner-card.reverse .partner-content { order: 1; }
.partner-portrait { position: relative; display: grid; place-items: center; min-height: 440px; overflow: hidden; background: #26241f; }
.partner-portrait::before, .partner-portrait::after { content: ""; position: absolute; border-radius: 50%; }
.partner-portrait::before { width: 340px; height: 340px; border: 1px solid rgba(255,255,255,.13); }
.partner-portrait::after { width: 210px; height: 210px; border: 1px solid rgba(184,115,69,.48); }
.partner-portrait span { position: relative; z-index: 2; font-family: var(--serif); font-size: clamp(82px, 9vw, 138px); font-style: italic; color: rgba(255,255,255,.9); letter-spacing: -.09em; }
.partner-portrait i { position: absolute; width: 68%; height: 1px; background: rgba(255,255,255,.12); transform: rotate(-36deg); }
.portrait-mh { background: radial-gradient(circle at 65% 30%, #4a4035, #1a1916 60%); }
.portrait-co { background: radial-gradient(circle at 32% 34%, #44423a, #191916 62%); }
.partner-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 6vw, 78px); }
.partner-role { margin: 0 0 12px; color: var(--copper); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.partner-content h3 { margin: 0; max-width: 610px; font-family: var(--serif); font-size: clamp(37px, 4vw, 58px); line-height: 1.05; }
.partner-study { max-width: 660px; margin: 25px 0 32px; color: var(--muted); font-size: 17px; }
.text-button { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; padding: 6px 0; border: 0; border-bottom: 1px solid var(--ink); background: transparent; font-size: 13px; font-weight: 700; cursor: pointer; }
.text-button span { color: var(--copper); font-size: 18px; transition: transform .25s ease; }
.text-button[aria-expanded="true"] span { transform: rotate(45deg); }
.profile-details { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.profile-details ul { margin: 0; padding-left: 18px; color: #58544b; }
.profile-details li { margin-bottom: 10px; }
.contact-section { position: relative; background: linear-gradient(110deg, #151512 0%, #201e19 100%); color: var(--white); overflow: hidden; }
.contact-section::after { content: ""; position: absolute; right: -180px; top: -180px; width: 520px; height: 520px; border: 1px solid rgba(184,115,69,.16); border-radius: 50%; }
.contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: start; }
.contact-intro h2 { max-width: 520px; }
.contact-intro > p:not(.eyebrow) { max-width: 520px; margin-top: 26px; color: rgba(255,255,255,.62); }
.contact-data { display: grid; gap: 1px; margin-top: 44px; font-style: normal; background: var(--line-light); border: 1px solid var(--line-light); }
.contact-data a { padding: 19px 22px; background: #1b1a16; transition: background .2s ease; }
.contact-data a:hover { background: #23211c; }
.contact-data span { display: block; margin-bottom: 3px; color: var(--copper-light); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact-form { padding: 45px; background: var(--paper); color: var(--ink); box-shadow: 0 30px 80px rgba(0,0,0,.24); }
.form-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row { margin-bottom: 23px; }
.form-row label { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 700; }
.form-row label em { color: var(--copper); font-style: normal; }
.form-row input, .form-row textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #a9a297;
  border-radius: 0;
  outline: none;
  padding: 11px 1px;
  background: transparent;
  color: var(--ink);
  transition: border-color .2s ease;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--copper); }
.form-row .is-invalid { border-color: #a33232; }
.field-error { display: block; min-height: 18px; padding-top: 4px; color: #a33232; font-size: 11px; }
.textarea-meta { display: flex; justify-content: space-between; gap: 16px; }
.textarea-meta > span { padding-top: 4px; color: var(--muted); font-size: 10px; }
.consent-row { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin-bottom: 2px; }
.consent-row input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--copper); }
.consent-row label { margin: 0; color: #5e5a52; font-size: 11px; font-weight: 500; line-height: 1.5; }
.consent-row a { border-bottom: 1px solid currentColor; }
.checkbox-error { margin-bottom: 14px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { width: 100%; margin-top: 4px; }
.form-status { min-height: 22px; margin: 15px 0 0; text-align: center; font-size: 13px; }
.form-status.success { color: #2b7447; }
.form-status.error { color: #a33232; }
.form-submit[disabled] { opacity: .65; cursor: progress; transform: none; }
.site-footer { padding: 70px 0 24px; background: #0e0e0c; color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr 1fr; gap: 60px; padding-bottom: 54px; }
.footer-grid img { width: 220px; }
.footer-grid > div:first-child p { margin: 14px 0 0; color: rgba(255,255,255,.42); }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; }
.footer-label { margin: 0 0 8px; color: var(--copper-light); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid a { font-size: 13px; }
.footer-grid a:hover, .footer-bottom a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: 11px; }
.footer-bottom p { margin: 0; }
.compact-footer { padding-top: 24px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

.legal-page { background: var(--paper); }
.legal-page .site-header { color: var(--ink); }
.legal-main { padding: 150px 0 100px; }
.legal-content { max-width: 860px; }
.legal-content h1 { max-width: 800px; margin-bottom: 34px; font-size: clamp(46px, 6vw, 76px); }
.legal-content h2 { margin: 42px 0 12px; font-family: var(--serif); font-size: 28px; }
.legal-content p { color: #514d45; }
.legal-content a { color: #86502f; border-bottom: 1px solid currentColor; }
.legal-note { padding: 18px 20px; border-left: 3px solid var(--copper); background: var(--paper-deep); }
.legal-content > .text-button { margin-top: 42px; color: var(--ink); }

@media (max-width: 1050px) {
  .hero-layout { gap: 5vw; grid-template-columns: 1.2fr .65fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { gap: 5vw; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 30px, 720px); }
  .site-header { height: 74px; }
  .site-header.is-scrolled { height: 68px; }
  .brand img { width: 190px; }
  .nav-toggle { display: block; position: relative; z-index: 3; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    padding: 90px 32px 40px;
    background: var(--paper);
    color: var(--ink);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s ease;
  }
  .site-nav.is-open { transform: translateX(0); visibility: visible; }
  .site-nav > a { padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 30px; }
  .site-nav .nav-cta { margin-top: 16px; padding: 13px 20px !important; border: 1px solid var(--ink); font-family: var(--sans); font-size: 14px; text-align: center; }
  .hero { min-height: 820px; height: auto; }
  .hero-layout { grid-template-columns: 1fr; align-content: center; gap: 46px; padding-top: 130px; padding-bottom: 110px; }
  .hero h1 { font-size: clamp(52px, 12vw, 78px); }
  .hero-panel { max-width: 520px; }
  .hero-orbit-one { right: -230px; }
  .hero-orbit-two { right: -130px; }
  .section { padding: 92px 0; }
  .split-layout, .section-topline, .contact-layout { grid-template-columns: 1fr; gap: 45px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 230px; }
  .principle-card h3 { margin-top: 48px; }
  .section-topline { margin-bottom: 48px; }
  .partner-card, .partner-card.reverse { grid-template-columns: 1fr; }
  .partner-card.reverse .partner-portrait, .partner-card.reverse .partner-content { order: initial; }
  .partner-portrait { min-height: 360px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 24px); }
  .hero { min-height: 760px; }
  .hero-layout { padding-top: 110px; padding-bottom: 90px; }
  .hero h1 { font-size: clamp(46px, 13.5vw, 66px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-panel { padding: 25px; }
  .hero-panel li { font-size: 18px; }
  .scroll-cue { display: none; }
  .section { padding: 75px 0; }
  .section h2 { font-size: clamp(38px, 11vw, 52px); }
  .prose { font-size: 16px; }
  .principles-grid { margin-top: 54px; }
  .quote-block { margin-top: 65px; padding: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .section-heading.centered { margin-bottom: 45px; }
  .partner-content { padding: 36px 26px; }
  .partner-portrait { min-height: 300px; }
  .contact-form { padding: 30px 22px; }
  .form-columns { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .legal-main { padding-top: 120px; }
}

@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; }
}
