html { background: var(--paper); }
body {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.modal-open { overflow: hidden; }
body::after {
  content: "";
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: var(--bronze-dark);
  opacity: 0;
  pointer-events: none;
  animation: page-veil-enter .4s ease-out both;
}
body.page-leaving { pointer-events: none; }
body.page-leaving::after {
  animation: none;
  opacity: .16;
  transition: opacity .22s ease-in-out;
}
@keyframes page-veil-enter {
  from { opacity: .16; }
  to { opacity: 0; }
}
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--wide { width: min(calc(100% - 48px), 1380px); margin-inline: auto; }
.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: 999; top: 12px; left: 12px; padding: 10px 16px; background: var(--ink); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.eyebrow { color: var(--bronze); font-family: var(--font-gotham); font-size: .74rem; font-weight: 700; font-synthesis: weight; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, h4, h5, h6 { color: var(--bronze); font-weight: 400; line-height: 1.08; }
h1, h2, .serif { font-family: var(--font-serif); }
h1 { font-size: clamp(3.4rem, 7vw, 7.4rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.5rem, 4.5vw, 4.7rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
.lead { color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.8; }
.section { padding: clamp(88px, 10vw, 148px) 0; }
.section--white { background: var(--white); }
.section--bronze { background: var(--bronze-dark); color: var(--white); }
.section--bronze h2, .section--bronze h3 { color: var(--bronze); }
.section--bronze .eyebrow { color: var(--bronze-light); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; align-items: start; margin-bottom: 64px; }
.section-heading .eyebrow { margin-bottom: 18px; }
.section-heading .lead { max-width: 720px; justify-self: start; }
.rule { width: 58px; height: 1px; margin: 24px 0; background: var(--bronze); }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 12px; padding: 0 26px; border: 1px solid var(--bronze); background: transparent; color: var(--bronze-dark); font-size: .72rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; transition: .3s var(--ease); }
.btn:hover, .btn:focus-visible { background: var(--bronze); color: var(--white); transform: translateY(-2px); }
.btn--solid { background: var(--bronze); color: var(--white); }
.btn--solid:hover { background: var(--bronze-dark); border-color: var(--bronze-dark); }
.btn--light { border-color: rgba(255,255,255,.5); color: white; }
.btn--light:hover { background: white; color: var(--bronze-dark); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.page-hero { min-height: 600px; display: grid; align-items: end; padding: 190px 0 84px; color: white; background-position: center; background-size: cover; position: relative; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(99,81,58,.82), rgba(181,131,110,.2)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { display: block; width: max-content; padding: 0; border: 0; background: transparent; color: var(--white); text-decoration: none; text-shadow: none; }
.page-hero .eyebrow::after { content: ""; display: block; width: 42px; height: 1px; margin-top: 9px; background: rgba(255,255,255,.9); }
.page-hero h1 { color: var(--white); }
.page-hero h1 { max-width: 850px; }
.page-hero p { max-width: 640px; margin-top: 22px; font-size: 1.15rem; }
.page-hero--compact { min-height: 470px; }
strong { font-weight: 400; }
::selection { background: var(--bronze); color: white; }
@media (prefers-reduced-motion: reduce) {
  body::after, body.page-leaving::after { animation: none; opacity: 0; transition: none; }
}
