:root {
  --ink: #141412;
  --warm: #f5f2ec;
  --mid: #e8e4dc;
  --rule: #c8c3b8;
  --gold: #9a7b4f;
  --gold-lt: #c4a47c;
  --white: #fdfcfa;
  --muted: #4b4943;
  --panel: #f7f3ec;
  --panel-strong: #efe8dd;
  --quiet: #7c786f;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  line-height: 1.7;
}
main { display: block; }
a { color: inherit; }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
img, svg { display: block; max-width: 100%; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.65rem 0.85rem;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.skip-link:focus {
  top: 1rem;
}
.shell {
  width: min(1360px, calc(100vw - 4.5rem));
  margin: 0 auto;
}
.site-header,
.meta-strip,
.section,
.cta-band,
.footer {
  border-top: 1px solid var(--ink);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
}
.site-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-brand {
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.08;
  padding-left: 1rem;
  position: relative;
}
.nav-brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12rem;
  bottom: 0.06rem;
  width: 1px;
  background: var(--gold);
}
.nav-brand__name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-brand__sub {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-main {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav-main a {
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-main a:hover { color: var(--gold); }
.nav-main a.active-link {
  background: var(--ink);
  color: var(--white);
  padding: 0.68rem 1rem;
}
.hero {
  min-height: min(78vh, 800px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 3.4rem;
  background: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  right: 0;
  background: var(--warm);
  border-left: 1px solid var(--rule);
}
.hero::after {
  content: attr(data-watermark);
  position: absolute;
  right: -0.04em;
  top: 50%;
  transform: translateY(-48%);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(7rem, 24vw, 21rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px var(--mid);
  pointer-events: none;
  user-select: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 2.4rem;
  align-items: end;
}
.hero-grid > div:first-child { max-width: 760px; }
.overline,
.section-number,
.section-name,
.label,
.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.overline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.8rem;
}
.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
}
.overline::after {
  content: "";
  width: 84px;
  height: 1px;
  background: var(--gold-lt);
}
.hero h1,
.section h2,
.cta-band h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.hero h1 {
  font-size: clamp(3.05rem, 6.5vw, 6.1rem);
  max-width: 10ch;
}
.hero h1 .accent,
.section h2 .accent,
.cta-band h2 .accent {
  color: var(--gold);
  font-style: italic;
}
.subtitle {
  margin: 1.1rem 0 0;
  max-width: 57ch;
  color: var(--muted);
  font-size: 1.02rem;
}
.hero-actions {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.65rem;
}
.btn {
  border: 1px solid var(--ink);
  padding: 0.84rem 1.06rem;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.btn span { transition: transform 0.16s ease; }
.btn:hover span { transform: translateX(4px); }
.btn:hover {
  background: var(--ink);
  color: var(--white);
}
.btn.primary {
  background: var(--ink);
  color: var(--white);
}
.btn.primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 0.9rem;
  background: var(--panel);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: -1.2rem;
  right: 1.2rem;
  bottom: -1.2rem;
  border: 1px solid var(--gold-lt);
  z-index: -1;
}
.hero-visual::after {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 1.2rem;
  width: 72px;
  height: 1px;
  background: var(--ink);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus, center center);
  filter: saturate(0.96) contrast(1.02);
}
.meta-strip {
  background: var(--ink);
  color: var(--warm);
  padding: 1.2rem 0;
}
.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.meta-grid > div {
  position: relative;
  padding-right: 1rem;
}
.meta-grid > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  bottom: 0.2rem;
  right: 0;
  width: 1px;
  background: #3d372f;
}
.meta-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.meta-value {
  margin-top: 0.32rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  line-height: 1.15;
}
.meta-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-lt);
}
.section {
  padding: 3rem 0 3.2rem;
  background: var(--white);
}
.section-kicker {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  margin-bottom: 0.65rem;
}
.section-number {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
}
.section-name {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
}
.section h2 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  max-width: 11ch;
}
.section > .shell > p.lead {
  margin: 0.95rem 0 0;
  max-width: 68ch;
  color: var(--muted);
}
.section-copy {
  max-width: 66ch;
  color: var(--muted);
  margin: 0;
}
.grid-2 {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 1.5rem 2rem;
}
.cards,
.stats,
.links,
.faq-list {
  display: grid;
  gap: 1rem;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}
.cards.two-up,
.links.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card,
.stat,
.link-card,
.faq,
.callout,
.note-box {
  position: relative;
  border: 1px solid var(--rule);
  background: var(--panel);
  padding: 1.4rem 1.35rem 1.25rem;
  min-height: 100%;
}
.card::before,
.stat::before,
.link-card::before,
.callout::before,
.note-box::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0;
  width: 44px;
  height: 1px;
  background: var(--gold);
}
.card h3,
.link-card h3,
.callout h3,
.note-box h3 {
  margin: 0 0 0.55rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.card p,
.link-card p,
.callout p,
.note-box p,
.stat p,
.faq p,
.checklist li,
.section li {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checklist li {
  padding: 0.9rem 0 0.9rem 1.2rem;
  position: relative;
  border-top: 1px solid var(--rule);
}
.checklist li:first-child {
  padding-top: 0;
  border-top: none;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.52rem;
  width: 0.46rem;
  height: 1px;
  background: var(--gold);
}
.checklist li:first-child::before {
  top: 0.6rem;
}
.stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}
.note-box ul,
.card ul,
.callout ul {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
}
.note-box li,
.card li,
.callout li {
  color: var(--muted);
  margin-top: 0.35rem;
}
.faq details {
  position: relative;
  border-top: 1px solid var(--rule);
  padding: 1rem 1.5rem 0.1rem 0;
}
.faq details:first-child {
  border-top: none;
  padding-top: 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1rem;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  color: var(--gold);
}
.faq details:first-child summary::after { top: 0; }
.faq details[open] summary::after { content: "-"; }
.faq p { margin-top: 0.62rem; }
.content-link {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.08rem;
}
.value-card {
  border-top: 1px solid var(--ink);
  padding-top: 0.85rem;
}
.value-card .meta-label {
  display: block;
}
.value-copy {
  margin-top: 0.3rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.08;
}
.editorial-quote {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  padding: 1.6rem 0;
  margin-top: 1.4rem;
}
.editorial-quote p {
  margin: 0;
  max-width: 18ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.content-link span { transition: transform 0.16s ease; }
.content-link:hover span { transform: translateX(4px); }
.cta-band {
  position: relative;
  background: var(--ink);
  color: var(--warm);
  padding: 2.45rem 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 64%;
  width: 1px;
  background: #443e35;
}
.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: 1.8rem;
  align-items: end;
}
.cta-band h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  max-width: 12ch;
}
.cta-band p {
  margin: 0.85rem 0 0;
  max-width: 58ch;
  color: #d9d2c6;
}
.cta-band .hero-actions {
  margin-top: 0;
  grid-template-columns: 1fr;
}
.cta-band .btn {
  border-color: var(--warm);
  color: var(--warm);
}
.cta-band .btn:hover {
  background: var(--warm);
  color: var(--ink);
}
.cta-band .btn.primary {
  background: var(--warm);
  color: var(--ink);
  border-color: var(--warm);
}
.footer {
  padding: 1.25rem 0 1.5rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-row .muted { color: var(--quiet); }
.small { font-size: 0.92rem; color: var(--muted); }
@media (max-width: 1100px) {
  .hero::before { left: 52%; }
}
@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .cta-grid,
  .meta-grid,
  .cards.two-up,
  .links.two-up {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 5.8rem 0 3rem;
  }
  .hero::before {
    left: 0;
    top: 52%;
    border-left: none;
    border-top: 1px solid var(--rule);
  }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 1rem; }
  .meta-grid > div:not(:last-child)::after,
  .cta-band::before {
    display: none;
  }
}
@media (max-width: 760px) {
  .shell { width: min(1360px, calc(100vw - 1.4rem)); }
  .site-header-inner {
    padding: 0.75rem 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .nav-main { gap: 0.8rem 1rem; }
  body { font-size: 17px; }
}
@media (max-width: 640px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}
