:root {
  --espresso: #312717;
  --cream: #f8f6f1;
  --white: #ffffff;
  --gold: #a77c37;
  --gold-light: #d6b878;
  --slate: #a5aac1;
  --ink: #1d1b18;
  --muted: #665f56;
  --line: rgba(49,39,23,.14);
  --shadow: 0 24px 70px rgba(49,39,23,.13);
  --radius: 1.25rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at var(--mx, 76%) var(--my, 8%), rgba(167,124,55,.13), transparent 26rem),
    radial-gradient(circle at 8% 46%, rgba(165,170,193,.17), transparent 23rem),
    var(--cream);
  transition: background-position .18s ease-out;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.skip-link { position: fixed; left: 1rem; top: -6rem; z-index: 100; padding: .7rem 1rem; background: var(--white); }
.skip-link:focus { top: 1rem; }
.container { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.eyebrow { margin: 0 0 .8rem; color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; color: var(--espresso); font-family: Georgia, "Times New Roman", serif; line-height: 1.05; letter-spacing: -.025em; }
h1 { font-size: clamp(2.75rem, 6.6vw, 5.65rem); }
h2 { font-size: clamp(2.1rem, 4.7vw, 4rem); }
h3 { font-size: 1.45rem; }
p { margin: 0; }
.lede { color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.26rem); line-height: 1.65; }
.section { padding: clamp(4.75rem, 9vw, 8.5rem) 0; }
.section-head { max-width: 760px; margin-bottom: 2.25rem; }
.section-head .lede { margin-top: 1rem; }
.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; }

.topbar { background: var(--espresso); color: rgba(255,255,255,.86); font-size: .78rem; }
.topbar .container { display: flex; justify-content: center; gap: 1.1rem; padding: .45rem 0; text-align: center; }
.topbar a { color: var(--gold-light); font-weight: 700; text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid rgba(49,39,23,.08); background: rgba(248,246,241,.88); backdrop-filter: blur(18px); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .72rem; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(167,124,55,.5); border-radius: 50%; background: var(--espresso); color: var(--white); font: 700 1rem/1 Georgia, serif; box-shadow: inset 0 0 0 4px var(--espresso), inset 0 0 0 5px rgba(255,255,255,.25); }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { color: var(--espresso); font-family: Georgia, serif; font-size: 1.05rem; }
.brand-copy small { margin-top: .25rem; color: var(--muted); font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.35rem; }
.nav-links a { color: var(--espresso); font-size: .9rem; font-weight: 700; text-decoration: none; }
.nav-links a.btn { color: var(--white); }
.nav-links a.btn:hover { color: var(--white); }
.nav-links a:not(.btn) { position: relative; padding: .4rem 0; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: .2rem; height: 2px; background: var(--gold); transition: right .24s ease; }
.nav-links a:not(.btn):hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--espresso); font-weight: 800; font-size: 1rem; }
.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: .55rem; padding: .78rem 1.15rem; border: 1px solid transparent; border-radius: 999px; background: var(--espresso); color: var(--white); font-size: .9rem; font-weight: 800; text-decoration: none; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); background: var(--gold); box-shadow: 0 14px 32px rgba(49,39,23,.18); }
.btn.secondary { border-color: rgba(49,39,23,.22); background: transparent; color: var(--espresso); }
.btn.secondary:hover { border-color: var(--gold); background: var(--white); }
.btn.light { background: var(--white); color: var(--espresso); }
.btn.light:hover { background: var(--gold-light); }

.hero { position: relative; min-height: 720px; display: grid; align-items: center; overflow: hidden; background: var(--espresso); color: var(--white); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center right; filter: saturate(.88) contrast(1.02); transform: scale(1.025); animation: heroDrift 16s ease-in-out infinite alternate; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(49,39,23,.98) 0%, rgba(49,39,23,.90) 39%, rgba(49,39,23,.28) 72%, rgba(49,39,23,.12) 100%); }
@keyframes heroDrift { to { transform: scale(1.075) translateX(-1%); } }
.hero .container { position: relative; z-index: 1; padding-block: 6rem; }
.hero-copy { max-width: 690px; }
.hero h1 { color: var(--white); }
.hero h1 span { color: var(--gold-light); font-style: italic; }
.hero .lede { max-width: 610px; margin-top: 1.4rem; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero .btn.secondary { border-color: rgba(255,255,255,.5); color: var(--white); }
.hero .btn.secondary:hover { background: rgba(255,255,255,.12); }
.trust-row { display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; margin-top: 2.2rem; color: rgba(255,255,255,.74); font-size: .86rem; }
.trust-row span { display: inline-flex; align-items: center; gap: .45rem; }
.trust-row span::before { content: "✓"; display: grid; width: 1.35rem; height: 1.35rem; place-items: center; border: 1px solid rgba(214,184,120,.6); border-radius: 50%; color: var(--gold-light); font-size: .72rem; }
.metric-strip { position: relative; z-index: 3; margin-top: -2.4rem; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid rgba(49,39,23,.1); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.metric { min-height: 145px; padding: 1.65rem; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; color: var(--espresso); font: 700 clamp(2rem, 4vw, 3rem)/1 Georgia, serif; }
.metric span { display: block; margin-top: .55rem; color: var(--muted); font-size: .85rem; }

.split { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.media-card { position: relative; overflow: hidden; border-radius: 1.75rem; box-shadow: var(--shadow); }
.media-card img { width: 100%; min-height: 520px; object-fit: cover; }
.media-card::after { content: ""; position: absolute; inset: auto 0 0; height: 35%; background: linear-gradient(transparent, rgba(49,39,23,.54)); }
.floating-note { position: absolute; right: 1rem; bottom: 1rem; z-index: 2; max-width: 235px; padding: 1rem; border: 1px solid rgba(255,255,255,.3); border-radius: 1rem; background: rgba(49,39,23,.86); color: var(--white); backdrop-filter: blur(12px); font-size: .86rem; }
.content-list { display: grid; gap: 1.15rem; margin-top: 1.7rem; }
.content-item { display: grid; grid-template-columns: 42px 1fr; gap: .8rem; align-items: start; }
.content-item b { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(167,124,55,.28); border-radius: 50%; background: rgba(167,124,55,.08); color: var(--gold); font: 700 1rem Georgia, serif; }
.content-item p { color: var(--muted); font-size: .95rem; }
.content-item strong { display: block; color: var(--espresso); }

.dark { position: relative; overflow: hidden; background: var(--espresso); color: rgba(255,255,255,.82); }
.dark::before { content: "CLEAR"; position: absolute; right: -1rem; top: -2.5rem; color: rgba(255,255,255,.035); font: 700 min(22vw, 18rem)/1 Georgia, serif; letter-spacing: -.08em; }
.dark h2, .dark h3 { color: var(--white); }
.dark .section-head .lede { color: rgba(255,255,255,.66); }
.clear-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: .85rem; }
.glow-card { --gx: 50%; --gy: 50%; position: relative; min-height: 235px; padding: 1.35rem; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 1.1rem; background: radial-gradient(circle at var(--gx) var(--gy), rgba(167,124,55,.34), transparent 11rem), rgba(255,255,255,.055); transition: transform .2s ease, border-color .2s ease; }
.glow-card:hover { transform: translateY(-5px); border-color: rgba(214,184,120,.68); }
.glow-card .letter { display: block; color: var(--gold-light); font: italic 700 3rem/1 Georgia, serif; }
.glow-card h3 { margin-top: 1.2rem; font-size: 1.1rem; }
.glow-card p { margin-top: .55rem; color: rgba(255,255,255,.64); font-size: .87rem; }

.path-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: path; }
.path-card { counter-increment: path; position: relative; min-height: 280px; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.64); box-shadow: 0 12px 40px rgba(49,39,23,.06); transition: transform .25s ease, background .25s ease; }
.path-card:hover { transform: translateY(-6px); background: var(--white); }
.path-card::before { content: "0" counter(path); display: inline-flex; margin-bottom: 2.4rem; color: var(--gold); font: 700 .9rem Georgia, serif; letter-spacing: .12em; }
.path-card h3 { margin-bottom: .7rem; }
.path-card p { color: var(--muted); font-size: .93rem; }

.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.audience-card { position: relative; min-height: 470px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border-radius: 1.65rem; color: var(--white); isolation: isolate; }
.audience-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.audience-card:hover img { transform: scale(1.045); }
.audience-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 25%, rgba(49,39,23,.92) 100%); }
.audience-card.content-only { background: linear-gradient(145deg, var(--slate), var(--espresso)); }
.audience-card.content-only::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at var(--gx, 60%) var(--gy, 25%), rgba(255,255,255,.24), transparent 35%); }
.audience-copy { padding: clamp(1.6rem, 4vw, 2.5rem); }
.audience-copy h3 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.audience-copy p { max-width: 500px; margin-top: .8rem; color: rgba(255,255,255,.76); }
.text-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.1rem; color: var(--gold-light); font-weight: 800; text-decoration: none; }
.text-link:hover { gap: .75rem; }

.video-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 1rem; }
.video-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 16px 42px rgba(49,39,23,.07); }
.video-card iframe { display: block; width: 100%; aspect-ratio: 16/9; border: 0; background: #17130e; }
.video-card .video-copy { padding: 1.25rem; }
.video-card h3 { font-size: 1.2rem; }
.video-card p { margin-top: .5rem; color: var(--muted); font-size: .88rem; }
.side-videos { display: grid; gap: 1rem; }

.bio { background: var(--white); }
.bio-card { display: grid; grid-template-columns: .72fr 1.28fr; overflow: hidden; border: 1px solid var(--line); border-radius: 1.75rem; background: var(--cream); box-shadow: var(--shadow); }
.bio-portrait { position: relative; min-height: 100%; overflow: hidden; background: linear-gradient(150deg, var(--espresso), #574223); color: var(--white); }
.bio-portrait img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; object-position: 51% center; }
.bio-identity { position: absolute; inset: auto 1rem 1rem; padding: 1rem 1.1rem; border: 1px solid rgba(255,255,255,.3); border-radius: 1rem; background: rgba(49,39,23,.88); text-align: left; backdrop-filter: blur(12px); }
.bio-identity strong { display: block; color: var(--white); font: 700 1.35rem Georgia, serif; }
.bio-identity span { display: block; margin-top: .25rem; color: rgba(255,255,255,.7); font-size: .78rem; }
.monogram { width: 150px; height: 150px; display: grid; place-items: center; border: 1px solid rgba(214,184,120,.65); border-radius: 50%; background: rgba(255,255,255,.06); color: var(--gold-light); font: italic 700 4rem Georgia, serif; box-shadow: inset 0 0 0 10px rgba(255,255,255,.035); }
.bio-portrait strong { display: block; margin-top: 1.2rem; font: 700 1.55rem Georgia, serif; }
.bio-portrait span { display: block; margin-top: .35rem; color: rgba(255,255,255,.62); font-size: .82rem; }
.bio-copy { padding: clamp(2rem, 5vw, 4rem); }
.bio-copy .lede { margin-top: 1rem; }
.badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.badge { padding: .55rem .8rem; border: 1px solid rgba(167,124,55,.3); border-radius: 999px; color: var(--espresso); font-size: .78rem; font-weight: 800; }

.life-section { background: #e8e7eb; }
.life-intro { display: grid; grid-template-columns: 1fr .8fr; gap: 2rem; align-items: end; margin-bottom: 2.2rem; }
.life-intro .lede { max-width: 560px; justify-self: end; }
.life-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.life-photo { position: relative; aspect-ratio: 3 / 4; overflow: hidden; margin: 0; border-radius: 1.15rem; background: #d8d6d2; box-shadow: 0 12px 34px rgba(49,39,23,.1); }
.life-photo img { width: 100%; height: 100%; object-fit: contain; transition: transform .55s ease, filter .35s ease; }
.life-photo:hover img { filter: saturate(1.08); }
.life-photo figcaption { position: absolute; inset: auto .7rem .7rem; padding: .45rem .65rem; border-radius: .65rem; background: rgba(49,39,23,.76); color: var(--white); font-size: .72rem; opacity: 0; transform: translateY(.4rem); transition: opacity .25s ease, transform .25s ease; backdrop-filter: blur(8px); }
.life-photo:hover figcaption, .life-photo:focus-within figcaption { opacity: 1; transform: translateY(0); }

.service-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.service-link { padding: 1.3rem; border: 1px solid var(--line); border-radius: 1rem; background: rgba(255,255,255,.65); color: var(--espresso); font-weight: 800; text-decoration: none; transition: border .2s ease, transform .2s ease; }
.service-link:hover { border-color: var(--gold); transform: translateY(-3px); }
.service-link small { display: block; margin-top: .4rem; color: var(--muted); font-weight: 500; }

.faq { max-width: 900px; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { display: flex; justify-content: space-between; gap: 1rem; padding: 1.35rem .1rem; color: var(--espresso); cursor: pointer; font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--gold); font-size: 1.25rem; }
details[open] summary::after { content: "−"; }
details p { max-width: 760px; padding: 0 .1rem 1.35rem; color: var(--muted); }

.cta { position: relative; overflow: hidden; padding: clamp(4rem, 8vw, 7rem) 0; background: var(--gold); color: var(--espresso); }
.cta::after { content: ""; position: absolute; width: 34rem; height: 34rem; right: -12rem; top: -16rem; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(255,255,255,.07), 0 0 0 10rem rgba(255,255,255,.04); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.cta h2 { max-width: 720px; }
.cta p { max-width: 680px; margin-top: 1rem; color: rgba(49,39,23,.77); }

.site-footer { padding: 3rem 0 1.5rem; background: var(--espresso); color: rgba(255,255,255,.64); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr .9fr; gap: 2rem; }
.site-footer .brand-copy strong { color: var(--white); }
.site-footer .brand-copy small { color: rgba(255,255,255,.5); }
.footer-col strong { display: block; margin-bottom: .8rem; color: var(--white); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; margin: .4rem 0; color: rgba(255,255,255,.7); text-decoration: none; }
.footer-col a:hover { color: var(--gold-light); }
.disclosure { margin-top: 2.3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .73rem; line-height: 1.65; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1rem; font-size: .73rem; }

.subpage-hero { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--espresso); color: var(--white); }
.subpage-hero h1 { max-width: 800px; color: var(--white); font-size: clamp(2.5rem, 5.5vw, 4.8rem); }
.subpage-hero .lede { max-width: 700px; margin-top: 1rem; color: rgba(255,255,255,.72); }
.prose { max-width: 860px; }
.prose h2 { margin: 2.5rem 0 1rem; font-size: 2rem; }
.prose h3 { margin: 1.8rem 0 .65rem; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 1.25rem; }
.prose a { color: #74501b; font-weight: 700; }

@media (max-width: 980px) {
  .nav-links { display: none; position: absolute; top: 76px; left: 1rem; right: 1rem; padding: 1rem; flex-direction: column; align-items: stretch; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .bio-card { grid-template-columns: 1fr; }
  .bio-portrait img { min-height: 540px; max-height: 760px; }
  .life-intro { grid-template-columns: 1fr; }
  .life-intro .lede { justify-self: start; }
  .life-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clear-grid { grid-template-columns: repeat(2, 1fr); }
  .clear-grid .glow-card:last-child { grid-column: 1 / -1; }
  .path-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .side-videos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .topbar .container { display: block; }
  .topbar span { display: none; }
  .brand-copy small { max-width: 195px; }
  .hero { min-height: 760px; align-items: end; }
  .hero-media img { object-position: 62% center; }
  .hero-media::after { background: linear-gradient(0deg, rgba(49,39,23,.98) 14%, rgba(49,39,23,.75) 64%, rgba(49,39,23,.25) 100%); }
  .hero .container { padding-block: 10rem 4.5rem; }
  .hero-actions .btn { width: 100%; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric { min-height: 125px; padding: 1.15rem; }
  .clear-grid, .path-grid, .audience-grid, .side-videos, .service-links, .footer-grid { grid-template-columns: 1fr; }
  .life-gallery { grid-template-columns: 1fr; }
  .clear-grid .glow-card:last-child { grid-column: auto; }
  .audience-card { min-height: 420px; }
  .media-card img { min-height: 420px; }
  .cta-inner { align-items: stretch; flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
