:root {
  --forest: #244a3b;
  --forest-deep: #17362b;
  --sage: #76917f;
  --sage-soft: #dfe7df;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --gold: #c6984f;
  --gold-soft: #e6d1aa;
  --ink: #24322b;
  --muted: #69736d;
  --line: rgba(36, 74, 59, 0.16);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(25, 53, 43, 0.15);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.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;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--white);
  color: var(--forest-deep);
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(36, 74, 59, 0.1);
}

.header-shell,
.content-shell,
.footer-shell,
.hero-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.header-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand img { flex: 0 0 auto; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong {
  color: var(--forest-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: Arial, Helvetica, sans-serif;
}
.site-nav a {
  position: relative;
  color: var(--forest-deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transition: right 0.2s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--forest-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(246, 241, 231, 0.96) 0%, rgba(255, 253, 248, 0.92) 52%, rgba(223, 231, 223, 0.9) 100%);
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 440px;
  height: 440px;
  right: -160px;
  top: 40px;
  border: 1px solid rgba(36, 74, 59, 0.12);
}
.hero::after {
  width: 620px;
  height: 620px;
  right: -250px;
  top: -55px;
  border: 1px solid rgba(198, 152, 79, 0.22);
}
.hero-glow {
  position: absolute;
  left: 8%;
  top: 18%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 152, 79, 0.18), transparent 70%);
  filter: blur(6px);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding: 92px 0 100px;
}

.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--forest-deep);
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 500;
}
.hero-lead {
  max-width: 670px;
  margin: 34px 0 0;
  color: #4a5c53;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(198, 152, 79, 0.4); outline-offset: 3px; }
.button-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(36, 74, 59, 0.18);
}
.button-primary:hover { background: var(--forest-deep); }
.button-secondary {
  border-color: rgba(36, 74, 59, 0.25);
  background: rgba(255, 255, 255, 0.45);
  color: var(--forest-deep);
}
.button-secondary:hover { background: var(--white); }
.button-wide { width: 100%; margin-top: 9px; }

.hero-card {
  position: relative;
  min-height: 400px;
  padding: 52px 42px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(36, 74, 59, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(198, 152, 79, 0.26);
  border-radius: 20px;
  pointer-events: none;
}
.hero-mark { width: 124px; margin-bottom: 26px; }
.hero-card-rule { width: 42px; height: 1px; background: var(--gold); margin: 0 auto 22px; }
.hero-card p { margin: 4px 0; color: var(--muted); font-size: 16px; }
.hero-card .hero-card-kicker {
  color: var(--forest-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.hero-card .hero-card-meta {
  margin-top: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section { padding: 110px 0; }
.section-light { background: var(--paper); }
.section-paper { background: var(--cream); }
.section-forest {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}
.section-forest::after {
  content: '';
  position: absolute;
  right: -180px;
  bottom: -290px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(230, 209, 170, 0.16);
  border-radius: 50%;
}
.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 9vw, 120px);
}
.section h2 {
  margin: 0;
  color: var(--forest-deep);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.prose {
  max-width: 690px;
  color: #4f5d56;
  font-size: 19px;
}
.prose p { margin: 0 0 23px; }
.prose strong { color: var(--forest-deep); }
.section-label-light { color: var(--gold-soft); }
.section .light-heading { color: var(--white); max-width: 800px; }

.detail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 58px;
}
.detail-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}
.detail-number {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--gold-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.detail-card h3 {
  margin: 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d7e0db;
}
.detail-card p {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1.45;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
}
.contact-intro > p:last-child {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
}
.contact-panel {
  padding: 34px;
  border: 1px solid rgba(36, 74, 59, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 22px 44px rgba(38, 51, 44, 0.08);
}
.contact-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding: 15px 0 23px;
}
.contact-row + .contact-row { border-top: 1px solid var(--line); padding-top: 23px; }
.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
}
.contact-icon svg { width: 20px; height: 20px; fill: var(--forest); }
.contact-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-row address { font-style: normal; }
.contact-row address,
.contact-row a { color: var(--forest-deep); font-size: 17px; }
.contact-row a { text-decoration-thickness: 1px; text-underline-offset: 4px; }

.site-footer {
  background: #10281f;
  color: rgba(255, 255, 255, 0.74);
}
.footer-shell {
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 44px; }
.footer-brand div { display: grid; }
.footer-brand strong {
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.13em;
}
.footer-brand span {
  margin-top: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}
.footer-shell > p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}

@media (max-width: 920px) {
  .hero { min-height: auto; }
  .hero-shell { grid-template-columns: 1fr; padding: 72px 0 78px; }
  .hero-card { min-height: 330px; max-width: 520px; width: 100%; }
  .detail-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .header-shell { min-height: 72px; }
  .brand img { width: 48px; height: 48px; }
  .brand-copy small { display: none; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 67px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 10px; }
  .site-nav a::after { display: none; }
  .hero h1 { font-size: clamp(50px, 16vw, 78px); }
  .two-column { grid-template-columns: 1fr; gap: 34px; }
  .section { padding: 78px 0; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card { min-height: 170px; }
  .detail-number { margin-bottom: 32px; }
  .footer-shell { padding: 34px 0; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .header-shell,
  .content-shell,
  .footer-shell,
  .hero-shell { width: min(calc(100% - 28px), var(--max)); }
  .brand-copy strong { font-size: 15px; }
  .hero-shell { padding-top: 56px; }
  .hero-lead { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-card { padding: 42px 24px 32px; }
  .contact-panel { padding: 24px; }
  .contact-row { grid-template-columns: 38px 1fr; }
  .contact-icon { width: 36px; height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
