:root {
  --terracotta: #C45A32;
  --terracotta-deep: #9E4324;
  --terracotta-soft: #F3E0D6;
  --adobe: #F4E8D8;
  --adobe-warm: #EAD9C4;
  --adobe-deep: #D9C4A8;
  --olive: #5C6B3A;
  --olive-deep: #3F4A28;
  --olive-soft: #E8EDDC;
  --ink: #2A2A24;
  --muted: #5A564C;
  --line: #D4C6B2;
  --white: #ffffff;
  --focus: #5C6B3A;
  --error: #9B2C2C;
  --shadow: 0 14px 40px rgba(42, 42, 36, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --max: 1120px;
  --font-display: "Literata", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--adobe);
  line-height: 1.65;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--olive); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--terracotta-deep); }
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--olive-deep); color: #fff; padding: .75rem 1rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.utility-bar {
  background: var(--olive-deep); color: var(--adobe); font-size: .9rem;
}
.utility-bar .container {
  display: flex; flex-wrap: wrap; gap: .5rem 1.25rem;
  justify-content: space-between; align-items: center; padding: .55rem 0;
}
.utility-bar a {
  color: var(--adobe); text-decoration: none; font-weight: 600;
  min-height: 44px; display: inline-flex; align-items: center;
}
.utility-bar a:hover { color: #fff; text-decoration: underline; }

.site-header {
  background: rgba(244, 232, 216, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .75rem 0; flex-wrap: wrap;
}
.logo {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none; color: var(--ink); min-height: 44px;
}
.logo-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(145deg, var(--terracotta), var(--terracotta-deep));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.15);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { font-family: var(--font-display); font-size: 1.15rem; }
.logo-text span { font-size: .8rem; color: var(--muted); }

.nav-toggle {
  display: none; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); width: 48px; height: 48px;
  padding: 0; cursor: pointer; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--olive-deep);
}
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .15rem .1rem; align-items: center;
}
.site-nav a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: .35rem .55rem; text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: .92rem; border-radius: 8px;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  background: var(--olive-soft); color: var(--olive-deep);
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none; width: 100%;
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); padding: .5rem;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .site-nav a { width: 100%; }
}

.hero {
  padding: 2.5rem 0 2rem;
  background:
    radial-gradient(ellipse at top right, rgba(196,90,50,.12), transparent 50%),
    linear-gradient(180deg, var(--adobe) 0%, var(--adobe-warm) 100%);
}
.hero-grid {
  display: grid; gap: 2rem; align-items: center;
  grid-template-columns: 1.15fr .85fr;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.eyebrow {
  display: inline-block; font-size: .85rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--terracotta-deep); margin: 0 0 .5rem;
}
h1, h2, h3 {
  font-family: var(--font-display); line-height: 1.25; color: var(--ink);
}
h1 { font-size: clamp(1.85rem, 4vw, 2.6rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); margin: 0 0 .85rem; }
h3 { font-size: 1.2rem; margin: 0 0 .6rem; }
.lead { font-size: 1.2rem; color: var(--muted); margin: 0 0 1.25rem; }
.trust-line {
  display: inline-flex; flex-wrap: wrap; gap: .35rem .75rem;
  background: var(--olive-soft); color: var(--olive-deep);
  border: 1px solid #c9d4ae; border-radius: 999px;
  padding: .4rem .9rem; font-size: .92rem; font-weight: 600; margin-bottom: 1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.hero-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--white);
}
.hero-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-card figcaption {
  padding: .75rem 1rem; font-size: .92rem; color: var(--muted);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: .65rem 1.15rem; border-radius: 999px;
  font-weight: 700; text-decoration: none; border: 2px solid transparent;
  cursor: pointer; font-size: 1rem; font-family: inherit;
}
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terracotta-deep); color: #fff; }
.btn-secondary { background: var(--olive); color: #fff; }
.btn-secondary:hover { background: var(--olive-deep); color: #fff; }
.btn-outline {
  background: transparent; border-color: var(--olive); color: var(--olive-deep);
}
.btn-outline:hover { background: var(--olive-soft); color: var(--olive-deep); }
.btn-soft {
  background: var(--white); border-color: var(--line); color: var(--ink);
}
.btn-soft:hover { border-color: var(--terracotta); color: var(--terracotta-deep); }

.section { padding: 3rem 0; }
.section-alt { background: var(--white); }
.section-olive {
  background: linear-gradient(180deg, var(--olive-deep), #2f3620);
  color: var(--adobe);
}
.section-olive a { color: #f0e2c8; }
.section-olive h2, .section-olive h3 { color: #fff; }
.section-terracotta {
  background: linear-gradient(135deg, var(--terracotta-soft), var(--adobe));
}

.olive-rule {
  width: 64px; height: 3px; border: 0; margin: 0 0 1.25rem;
  background: linear-gradient(90deg, var(--terracotta), var(--olive));
}

.grid-2 {
  display: grid; gap: 1.75rem; grid-template-columns: 1fr 1fr; align-items: start;
}
.grid-3 {
  display: grid; gap: 1.25rem; grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.35rem;
  box-shadow: 0 8px 24px rgba(42,42,36,.05);
}
.card h3 { margin-top: 0; }
.card img {
  width: 100%; border-radius: var(--radius-sm); margin-bottom: 1rem;
  aspect-ratio: 4/3; object-fit: cover;
}
.intent-card {
  border-top: 4px solid var(--terracotta);
}
.intent-card.mc { border-top-color: var(--olive); }
.intent-card.respite { border-top-color: #8B6B3E; }

.prose p { margin: 0 0 1rem; }
.prose ul, .prose ol { margin: 0 0 1rem; padding-left: 1.25rem; }
.prose li { margin-bottom: .4rem; }

.callout {
  display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center;
  justify-content: space-between; background: var(--white);
  border: 1px solid var(--line); border-left: 5px solid var(--terracotta);
  border-radius: var(--radius); padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
}
.notice {
  background: var(--terracotta-soft); border: 1px solid #e0b9a6;
  border-radius: var(--radius-sm); padding: 1rem 1.15rem; margin: 1rem 0;
}
.notice strong { color: var(--terracotta-deep); }
.sample-badge {
  display: inline-block; background: var(--terracotta); color: #fff;
  font-size: .75rem; font-weight: 800; letter-spacing: .04em;
  padding: .2rem .5rem; border-radius: 6px; vertical-align: middle;
}

.page-hero {
  padding: 2rem 0 1.5rem;
  background: linear-gradient(180deg, var(--adobe-warm), var(--adobe));
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-size: .92rem; color: var(--muted); margin-bottom: .75rem;
}
.breadcrumb a { color: var(--olive); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.media-band {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 1rem; align-items: stretch;
}
.media-band img {
  width: 100%; height: 100%; min-height: 220px; object-fit: cover;
  border-radius: var(--radius);
}
@media (max-width: 760px) {
  .media-band { grid-template-columns: 1fr; }
}

.gallery-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.gallery-grid figure {
  margin: 0; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-grid figcaption { padding: .75rem .9rem; font-size: .92rem; color: var(--muted); }

.rate-table {
  width: 100%; border-collapse: collapse; background: var(--white);
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
}
.rate-table th, .rate-table td {
  padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--line);
}
.rate-table th { background: var(--olive-soft); color: var(--olive-deep); }
.rate-table tr:last-child td { border-bottom: 0; }

.faq details {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: .85rem 1rem; margin-bottom: .75rem;
}
.faq summary {
  cursor: pointer; font-weight: 700; min-height: 44px;
  display: flex; align-items: center;
}
.faq details[open] summary { margin-bottom: .5rem; color: var(--terracotta-deep); }

.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 1rem; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form-grid.two { grid-template-columns: 1fr; } }
label { display: block; font-weight: 600; margin-bottom: .35rem; }
input, select, textarea {
  width: 100%; min-height: 44px; padding: .65rem .8rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; background: var(--adobe); color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .92rem; color: var(--muted); }

.alnm-band {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem 1.4rem;
  border-left: 5px solid var(--olive);
}
.alnm-band a.hero-alnm { font-weight: 700; color: var(--olive-deep); }

.footer-map {
  background: var(--adobe-warm); padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
}
.footer-map-head { margin-bottom: 1rem; }
.footer-map-head h2 { margin-bottom: .35rem; }
.map-wrap {
  position: relative; width: 100%; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow); background: var(--white);
}
.map-wrap iframe {
  width: 100% !important; max-width: 100%; height: 450px; display: block;
}

.site-footer {
  background: var(--olive-deep); color: var(--adobe); padding: 2.5rem 0 1.5rem;
}
.site-footer a { color: #f0e2c8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer h2 {
  color: #fff; font-size: 1.05rem; margin: 0 0 .75rem;
  font-family: var(--font-body); letter-spacing: .02em;
}
.footer-grid {
  display: grid; gap: 1.75rem;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer address { font-style: normal; line-height: 1.7; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .4rem; }
.site-footer li a {
  display: inline-flex; align-items: center; min-height: 44px;
}
.social-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.social-pills a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: .4rem .85rem; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  font-weight: 600; font-size: .92rem;
}
.social-pills a.alnm { background: rgba(196,90,50,.25); border-color: rgba(196,90,50,.45); }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex; flex-wrap: wrap; gap: .75rem 1.25rem;
  justify-content: space-between; align-items: center; font-size: .92rem;
}
.legal-links { display: flex; flex-wrap: wrap; gap: .75rem 1rem; }
.small { font-size: .92rem; }

.compare-table {
  width: 100%; border-collapse: collapse; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  font-size: 1rem;
}
.compare-table th, .compare-table td {
  padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table th { background: var(--olive-soft); }
.checklist { list-style: none; padding: 0; margin: 0 0 1rem; }
.checklist li {
  position: relative; padding-left: 1.6rem; margin-bottom: .55rem;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: .65rem; height: .65rem; border-radius: 50%;
  background: var(--terracotta);
}
