:root {
  --ink: #1c2524;
  --muted: #5e6a66;
  --line: #e2e0d9;
  --paper: #fbfaf6;
  --white: #ffffff;
  --sage: #5d7c69;
  --forest: #1f4b3d;
  --blush: #d89a94;
  --clay: #a66d4e;
  --charcoal: #202729;
  --gold: #b99358;
  --shadow: 0 18px 45px rgba(28, 37, 36, 0.11);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  background: var(--forest);
  color: white;
  padding: 10px 14px;
  z-index: 50;
}
.skip-link:focus { top: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(28, 37, 36, 0.08);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: white;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.brand strong { display: block; font-size: 17px; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}
.site-nav a { text-decoration: none; color: var(--charcoal); }
.site-nav a:hover { color: var(--forest); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 9px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}
.hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  color: white;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 31, 29, 0.76), rgba(18, 31, 29, 0.35) 48%, rgba(18, 31, 29, 0.08));
  z-index: -1;
}
.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 92px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.hero .eyebrow { color: #f2d79b; }
h1, h2, h3 {
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: 0;
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 88px;
  max-width: 850px;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
}
h3 { font-size: 22px; }
p { margin: 0 0 18px; }
.hero-copy {
  max-width: 670px;
  font-size: 23px;
  color: rgba(255,255,255,0.92);
}
.button-row, .center-action {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 19px;
  border-radius: 8px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: white;
  text-decoration: none;
  font-weight: 800;
  box-shadow: none;
  cursor: pointer;
}
.button:hover { background: #15382d; }
.button-secondary {
  background: rgba(255,255,255,0.9);
  color: var(--forest);
  border-color: rgba(255,255,255,0.55);
}
.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}
.intro-band {
  padding-top: 52px;
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 72px;
}
.stats-strip div {
  background: var(--white);
  padding: 24px;
}
.stats-strip strong {
  display: block;
  font-size: 24px;
  color: var(--forest);
}
.stats-strip span { color: var(--muted); }
.two-column, .split-feature, .booking-layout, .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}
.measure { max-width: 820px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid rgba(28, 37, 36, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card img {
  width: 100%;
  height: clamp(230px, 19vw, 285px);
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-kicker {
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.article-card h3 a { text-decoration: none; }
.text-link {
  color: var(--forest);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.split-feature {
  align-items: center;
  background: #f4efe7;
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}
.split-feature img {
  width: 100%;
  height: clamp(320px, 35vw, 470px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.service-detail {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.service-detail img {
  width: 100%;
  height: clamp(320px, 35vw, 470px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.article-shell {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0 92px;
  font-size: 18px;
}
.article-shell .lead {
  font-size: 23px;
  line-height: 1.48;
  color: var(--charcoal);
}
.article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}
.article-meta span {
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: 999px;
  background: white;
}
.article-shell section { padding-top: 36px; }
.article-shell h2 { font-size: 42px; margin-top: 10px; }
.article-shell h3 { margin-top: 22px; }
.article-shell figure { margin: 42px 0; }
.article-shell figure img {
  width: 100%;
  height: clamp(320px, 45vw, 520px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}
.article-shell ul {
  padding-left: 22px;
  margin: 0 0 20px;
}
.article-shell li { margin-bottom: 8px; }
.editorial-note {
  border-left: 4px solid var(--gold);
  padding-left: 18px;
  color: var(--muted);
}
.contact-panel, .booking-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.booking-form {
  display: grid;
  gap: 16px;
}
label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-weight: 800;
}
input, textarea, select {
  width: 100%;
  border: 1px solid #cfcac0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}
textarea { resize: vertical; }
.form-note { color: var(--muted); font-size: 14px; }
.site-footer {
  background: #17211f;
  color: rgba(255,255,255,0.82);
  padding: 58px max(16px, calc((100% - 1180px) / 2)) 26px;
}
.site-footer h2 {
  font-family: inherit;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
}
.site-footer a { color: white; }
.footer-grid {
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 32px;
}
.footer-brand .brand-mark { background: white; color: var(--forest); }
.footer-brand small { color: rgba(255,255,255,0.62); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.16);
  margin-top: 42px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.62);
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 10px 0; }
  .hero { min-height: 68vh; }
  h1 { font-size: 62px; }
  h2 { font-size: 42px; }
  .hero-copy { font-size: 21px; }
  .article-shell h2 { font-size: 36px; }
  .two-column, .split-feature, .booking-layout, .footer-grid, .service-detail {
    grid-template-columns: 1fr;
  }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-strip { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .header-inner { min-height: 68px; }
  .brand small { display: none; }
  .brand-mark { width: 40px; height: 40px; }
  .site-nav { top: 68px; }
  .hero-inner { padding: 64px 0 74px; }
  h1 { font-size: 43px; }
  h2 { font-size: 34px; }
  .hero-copy { font-size: 18px; }
  .article-shell h2 { font-size: 31px; }
  .card-grid { grid-template-columns: 1fr; }
  .section, .article-shell { padding-top: 56px; padding-bottom: 56px; }
  .card-body, .contact-panel, .booking-form { padding: 22px; }
}
