:root {
  --sage: #5c715e;
  --sage-deep: #3b4e3d;
  --ink: #2c352d;
  --muted: #5f6b60;
  --gold: #c3a35d;
  --gold-soft: #dfc889;
  --cream: #faf8f5;
  --paper: #ffffff;
  --line: #e8e3dc;
  --dark: #222b23;
  --shadow: 0 18px 50px rgba(34, 43, 35, 0.08);
  --nav: 78px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, p { margin: 0; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; }

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 227, 220, 0.8);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.mark { width: 42px; height: 42px; flex: none; }
.brand strong { display: block; font-family: var(--serif); font-size: 18px; font-weight: 600; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 12px; letter-spacing: 0.04em; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--sage);
  color: white;
  font-size: 14px;
  font-weight: 600;
}
.btn:hover { background: var(--sage-deep); }
.btn.gold { background: var(--gold); color: #2a2416; }
.btn.gold:hover { background: var(--gold-soft); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn.light { background: white; color: var(--ink); }
.menu-btn { background: var(--dark); }

.overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(34, 43, 35, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(440px, 100%);
  height: 100%;
  background: var(--cream);
  padding: 28px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: auto;
}
.drawer.open { transform: none; }
.drawer header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.drawer nav { display: grid; gap: 4px; }
.drawer nav a {
  text-decoration: none;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.25;
  padding: 4px 0;
}
.drawer nav a:hover { color: var(--sage); }
.drawer-foot { margin-top: 28px; color: var(--muted); font-size: 14px; }

.toast {
  width: min(1180px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: #eef5f0;
  color: var(--sage-deep);
}
.toast.err { background: #fdecec; color: #7a2e2e; }

.hero { position: relative; min-height: calc(100vh - var(--nav)); background: var(--dark); }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.is-active { opacity: 1; position: relative; min-height: calc(100vh - var(--nav)); }
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 28, 22, 0.78) 0%, rgba(18, 28, 22, 0.45) 48%, rgba(18, 28, 22, 0.15) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 64px));
  padding: 12vh 0 12vh 7vw;
  color: white;
}
.hero-copy h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  margin: 14px 0 18px;
}
.hero-copy h1 em { font-style: italic; color: var(--gold-soft); }
.hero-copy .lead { max-width: 540px; color: rgba(255,255,255,0.86); font-size: 17px; }
.hero-ui {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}
.dot, .hero-ui button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: white;
  cursor: pointer;
}
.dot.is-on { background: white; color: var(--dark); }

.section { padding: 84px 0; }
.section h2 { font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); line-height: 1.1; font-weight: 500; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 32px; }
.section-head p { max-width: 460px; color: var(--muted); }

.areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.area {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.area:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.area svg, .glyph {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: #f3f6f2;
  padding: 11px;
  color: var(--sage-deep);
}
.area strong { display: block; font-size: 18px; }
.area span { color: var(--muted); font-size: 14px; }

.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 24px;
  border-radius: 26px;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
}
.bento a:first-child { background: var(--dark); color: white; }
.bento a:nth-child(4) { background: #eef3ee; }
.tile em { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 15px; }
.tile h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; margin: 10px 0; }
.tile p { color: var(--muted); }
.bento a:first-child p { color: rgba(255,255,255,0.75); }

.band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.band article { padding: 64px 7vw; }
.band article + article { background: #f4f1ea; }
.band h2 { font-family: var(--serif); font-size: 40px; font-weight: 500; margin: 8px 0 12px; }
.band p { color: var(--muted); }

.catalog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 180px;
}
.card:hover { border-color: #d5c7a4; }
.card h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.card p { color: var(--muted); }
.card .more { margin-top: auto; color: var(--sage-deep); font-size: 14px; font-weight: 600; }
.regions { grid-template-columns: repeat(4, 1fr); }
.regions .card { min-height: 0; }

.page-hero { padding: 64px 0 10px; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(40px, 5vw, 68px); font-weight: 500; line-height: 1.05; margin-top: 8px; }
.lede { max-width: 680px; color: var(--muted); font-size: 18px; margin-top: 14px; }

.story { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 42px; align-items: start; }
.portrait { border-radius: 28px; width: 100%; height: 620px; object-fit: cover; object-position: center top; }
.story .copy p + p { margin-top: 16px; }
.stat {
  display: flex;
  gap: 18px;
  align-items: baseline;
  margin: 8px 0 18px;
}
.stat b { font-family: var(--serif); font-size: 64px; font-weight: 500; color: var(--sage); line-height: 1; }
.blocks, .values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.block, .value { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 18px; }
.block strong, .value strong { display: block; font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 6px; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 26px; }
.filters a {
  text-decoration: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
}
.filters a.is-on { background: var(--dark); color: white; border-color: var(--dark); }

.experts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.expert {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
}
.expert .photo, .expert .initials {
  height: 240px;
  width: 100%;
  object-fit: cover;
  background: #e7eee8;
}
.expert .initials {
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 54px;
  color: var(--sage-deep);
}
.expert div { padding: 16px 18px 20px; }
.expert h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.chips span { font-size: 12px; background: #f3f6f2; color: var(--sage-deep); border-radius: 999px; padding: 4px 8px; }

.recs { display: grid; gap: 14px; }
.rec {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}
.rec b { font-family: var(--serif); font-size: 18px; color: var(--sage); }
.rec h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; }
.note { color: var(--muted); }

.article { width: min(780px, calc(100% - 40px)); margin: 20px auto 70px; }
.article.with-side {
  width: min(1120px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 56px;
  align-items: start;
}
.article .back { color: var(--sage-deep); text-decoration: none; font-size: 14px; font-weight: 600; }
.article h1 { font-family: var(--serif); font-size: clamp(36px, 5vw, 60px); font-weight: 500; line-height: 1.08; margin: 12px 0; }
.article .hero-img { width: 100%; border-radius: 24px; max-height: 460px; object-fit: cover; margin: 12px 0 22px; }
.article p + p { margin-top: 16px; }
.prose > :first-child { margin-top: 0; }
.prose h2, .prose h3 { font-family: var(--serif); font-weight: 500; line-height: 1.2; margin: 1.1em 0 0.35em; }
.prose h2 { font-size: 32px; }
.prose h3 { font-size: 24px; }
.prose ul, .prose ol { margin: 0.6em 0; padding-left: 1.25em; }
.prose img { max-width: 100%; height: auto; border-radius: 16px; margin: 12px 0; }
.prose a { color: var(--sage-deep); }
.prose table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.prose td, .prose th { border: 1px solid var(--line); padding: 8px 10px; vertical-align: top; }
.prose blockquote { margin: 12px 0; padding-left: 14px; border-left: 3px solid var(--gold); }
.quote .prose p { font-family: var(--serif); font-size: 20px; line-height: 1.45; margin: 0; }
.hero-copy .lead.prose, .hero-copy .lead.prose p { max-width: 540px; color: rgba(255,255,255,0.86); font-size: 17px; margin: 0; }
.related { display: grid; gap: 8px; margin-top: 36px; }
.article.with-side .related {
  position: sticky;
  top: 28px;
  max-height: calc(100vh - 48px);
  overflow: auto;
  margin: 8px 0 0;
  padding: 18px 8px 18px 22px;
  border-left: 1px solid var(--line);
  gap: 2px;
}
.related strong {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.related a {
  color: var(--sage-deep);
  text-decoration: none;
  border-radius: 10px;
  padding: 8px 12px;
}
.article.with-side .related a:hover { background: #f3f6f2; }
.related a.is-on {
  background: var(--sage);
  color: white;
  font-weight: 600;
}

.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: start; }
.panel, form.stack, .job {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
}
form.stack { display: grid; gap: 12px; }
label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffcf8;
  border-radius: 14px;
  padding: 12px 14px;
}
textarea { min-height: 120px; resize: vertical; }
.map { width: 100%; height: 280px; border: 0; border-radius: 20px; margin-top: 16px; }
.jobs { display: grid; gap: 12px; }
.hours { color: var(--muted); margin-top: 8px; }

.quotes { background: var(--dark); color: white; padding: 72px 0; }
.quotes .kicker { color: var(--gold-soft); }
.quote-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 22px; }
.quote-head h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 500; }
.trust { display: flex; gap: 16px; color: rgba(255,255,255,0.8); font-size: 14px; }
.trust strong { color: white; font-size: 22px; display: block; }
.scroller { display: grid; grid-auto-flow: column; grid-auto-columns: 400px; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.quote {
  margin: 0;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 22px 24px;
}
.quote p { font-family: var(--serif); font-size: 20px; line-height: 1.45; }
.quote footer { margin-top: 16px; color: var(--gold-soft); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }

.footer { background: #1a221c; color: rgba(255,255,255,0.78); padding: 56px 0 24px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 28px; }
.footer a { color: white; text-decoration: none; }
.footer h3 { font-family: var(--serif); color: white; font-size: 28px; font-weight: 500; margin-bottom: 8px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.legal { margin-top: 28px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.disclaimer { margin-top: 18px; font-size: 13px; max-width: 720px; }

.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}
dialog {
  border: 0;
  border-radius: 24px;
  padding: 22px;
  width: min(440px, calc(100% - 28px));
  background: var(--cream);
  box-shadow: var(--shadow);
}
dialog::backdrop { background: rgba(20, 28, 22, 0.46); }
dialog h3 { font-family: var(--serif); font-size: 32px; font-weight: 500; }
.map-links { display: grid; gap: 8px; margin-top: 14px; }
.map-links a { text-decoration: none; background: white; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 980px) {
  .areas, .catalog, .experts, .regions { grid-template-columns: 1fr 1fr; }
  .bento, .band, .story, .split, .foot-grid, .rec, .article.with-side { grid-template-columns: 1fr; }
  .article.with-side .related { position: static; border-left: 0; padding-left: 0; margin-top: 28px; }
  .bento a:first-child { grid-row: auto; }
  .portrait { height: 420px; }
  .hero-copy { padding: 18vh 0 16vh; width: min(100% - 40px, 680px); margin-inline: auto; }
}
@media (max-width: 680px) {
  .areas, .catalog, .experts, .regions, .blocks, .values { grid-template-columns: 1fr; }
  .nav { padding: 0 14px; }
  .brand small { display: none; }
  .brand strong { font-size: 16px; white-space: nowrap; }
  .hero-ui { bottom: 88px; left: 16px; }
  .scroller { grid-auto-columns: min(400px, 86vw); }
  .section { padding: 56px 0; }
  .section-head, .quote-head, .legal { flex-direction: column; align-items: start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
