:root {
  --sage: #7A9A7E;
  --sage-deep: #5F7F64;
  --sage-dark: #3E5542;
  --sage-soft: #E8F0E9;
  --sage-mist: #F2F6F2;
  --cream: #F7F1E6;
  --cream-warm: #F0E8D8;
  --cream-deep: #E5DAC6;
  --terracotta: #C45A3A;
  --terracotta-deep: #A3462C;
  --terracotta-soft: #F5E4DE;
  --ink: #2C322E;
  --muted: #5A635C;
  --line: #D8CFC0;
  --white: #ffffff;
  --focus: #5F7F64;
  --error: #9B2C2C;
  --shadow: 0 14px 40px rgba(44, 50, 46, 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(--cream);
  line-height: 1.65;
  font-size: 1.125rem; /* 18px floor */
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-deep); 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(--sage-dark); 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(--sage-dark); color: var(--cream); 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(--cream); 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(247, 241, 230, 0.94);
  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: .85rem 0;
}
.logo {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none; color: var(--ink); font-weight: 700;
}
.logo-mark {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--sage), var(--sage-dark));
  display: grid; place-items: center; color: var(--cream);
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .02em;
  box-shadow: 0 6px 16px rgba(95, 127, 100, 0.28);
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute; bottom: 8px; width: 10px; height: 12px;
  background: var(--terracotta); border-radius: 2px;
}
.logo-text { line-height: 1.15; }
.logo-text strong { display: block; font-size: 1.05rem; }
.logo-text span { display: block; font-size: .78rem; font-weight: 500; color: var(--muted); }

.nav-toggle {
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--white); display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--sage-dark); border-radius: 2px;
}

.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: .9rem; border-radius: 8px;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  background: var(--sage-soft); color: var(--sage-dark);
}
.site-nav a.nav-cta {
  background: var(--terracotta); color: #fff; margin-left: .25rem;
}
.site-nav a.nav-cta:hover { background: var(--terracotta-deep); color: #fff; }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream); border-bottom: 1px solid var(--line);
    display: none; padding: .75rem 1rem 1.25rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .site-nav a { width: 100%; }
  .site-nav a.nav-cta { margin-left: 0; justify-content: center; }
}

.hero {
  padding: 2.5rem 0 2rem;
  background:
    radial-gradient(ellipse at 10% 0%, var(--sage-soft), transparent 50%),
    radial-gradient(ellipse at 90% 20%, var(--terracotta-soft), transparent 45%),
    var(--cream);
}
.hero-grid {
  display: grid; gap: 2rem; align-items: center;
  grid-template-columns: 1.1fr .9fr;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--terracotta-deep);
  margin: 0 0 .6rem;
}
h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 600; line-height: 1.2;
  color: var(--ink); margin: 0 0 .75rem;
}
h1 { font-size: clamp(1.85rem, 4vw, 2.65rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
.lede, .hero-copy > p { max-width: 42rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.hero-figure {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.hero-figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-alnm {
  display: inline-block; margin-top: .85rem; font-weight: 700;
}

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

.section { padding: 3rem 0; }
.section-alt { background: var(--sage-mist); }
.section-cream { background: var(--cream-warm); }
.sage-rule {
  width: 64px; height: 3px; background: var(--sage); border: 0; margin: 0 0 1.25rem;
}

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

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.35rem 1.4rem;
  box-shadow: 0 8px 24px rgba(62, 85, 66, 0.06);
  height: 100%;
}
.card h3 { margin-top: 0; color: var(--sage-dark); }
.path-card .path-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--terracotta); margin: 0 0 .4rem;
}
.path-card a.stretched {
  font-weight: 700; text-decoration: none; display: inline-flex; min-height: 44px; align-items: center;
}

.prose p { margin: 0 0 1rem; }
.prose ul, .check-list {
  margin: 0 0 1rem; padding-left: 1.15rem;
}
.check-list { list-style: none; padding-left: 0; }
.check-list li {
  position: relative; padding-left: 1.5rem; margin-bottom: .55rem;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: .65rem; height: .65rem; border-radius: 50%;
  background: var(--sage);
}

.notice {
  background: var(--terracotta-soft); border-left: 4px solid var(--terracotta);
  padding: 1rem 1.15rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1rem 0;
}
.notice-soft {
  background: var(--sage-soft); border-left: 4px solid var(--sage);
  padding: 1rem 1.15rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1rem 0;
}

.feature-img {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.feature-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature-img figcaption {
  padding: .65rem .9rem; font-size: .9rem; color: var(--muted); background: var(--white);
}

.price-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem; text-align: center;
}
.price-card .amount {
  font-family: var(--font-display); font-size: 1.85rem; color: var(--sage-dark);
  margin: .35rem 0;
}
.price-card .note { font-size: .88rem; color: var(--muted); margin: 0; }
.sample-badge {
  display: inline-block; background: var(--terracotta-soft); color: var(--terracotta-deep);
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .25rem .55rem; border-radius: 999px; margin-bottom: .5rem;
}

.callout {
  display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center;
  justify-content: space-between;
  background: var(--sage-dark); color: var(--cream);
  padding: 1.75rem 1.85rem; border-radius: var(--radius-lg);
}
.callout h2 { color: var(--cream); margin: 0 0 .5rem; }
.callout p { margin: 0; color: var(--cream-deep); max-width: 40rem; }
.callout a:not(.btn) { color: #fff; }
.callout .btn-primary { background: var(--terracotta); }

.page-hero {
  padding: 2.25rem 0 1.5rem; background: var(--sage-mist);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: .5rem; }

.faq details {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 0; margin-bottom: .75rem;
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 1rem 1.15rem;
  min-height: 44px; list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--sage-deep); font-size: 1.25rem; }
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 1.15rem 1.15rem; color: var(--muted); }
.faq .faq-body p:last-child { margin-bottom: 0; }

.gallery-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 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; background: var(--cream-deep);
}
.gallery-grid figcaption {
  padding: .6rem .85rem; font-size: .88rem; color: var(--muted);
}

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

.seven-q ol { padding-left: 1.25rem; }
.seven-q li { margin-bottom: .85rem; }

.compare-table {
  width: 100%; border-collapse: collapse; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.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(--sage-soft); color: var(--sage-dark); }
.compare-table tr:last-child td { border-bottom: 0; }

.footer-map {
  background: var(--cream-warm); padding: 2.5rem 0; border-top: 1px solid var(--line);
}
.footer-map-head h2 { margin-bottom: .25rem; }
.footer-map-head p { margin: 0 0 1rem; color: var(--muted); }
.map-wrap {
  position: relative; width: 100%; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line);
  aspect-ratio: 16 / 9; max-height: 450px; background: var(--cream-deep);
}
.map-wrap iframe {
  position: absolute; inset: 0; width: 100% !important; height: 100% !important;
  border: 0;
}

.site-footer {
  background: var(--sage-dark); color: var(--cream-deep); padding: 2.75rem 0 1.5rem;
}
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: #fff; }
.site-footer h2, .site-footer h3 {
  color: var(--cream); font-size: 1rem; margin: 0 0 .85rem;
  font-family: var(--font-body); font-weight: 700; letter-spacing: .02em;
  text-transform: uppercase;
}
.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; margin: 0 0 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .45rem; }
.site-footer li a {
  display: inline-flex; align-items: center; min-height: 44px;
  text-decoration: none;
}
.social-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.social-pills a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: .4rem .85rem; border-radius: 999px;
  background: rgba(247, 241, 230, 0.12); text-decoration: none; font-weight: 600; font-size: .9rem;
}
.social-pills a.alnm { background: var(--terracotta); color: #fff; }
.social-pills a:hover { background: rgba(247, 241, 230, 0.22); }
.social-pills a.alnm:hover { background: var(--terracotta-deep); color: #fff; }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(247,241,230,.18);
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between;
  font-size: .92rem;
}
.footer-bottom p { margin: 0; }
.legal-links { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; }
.legal-links a { text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }

.muted { color: var(--muted); }
.small { font-size: .92rem; }
