:root {
  --green: #135f3d;
  --green-dark: #0d3d2a;
  --gold: #b88327;
  --sun: #f4b431;
  --coral: #b6322a;
  --cream: #fffaf0;
  --paper: #fffdf7;
  --ink: #2a2118;
  --muted: #6f6258;
  --line: rgba(42, 33, 24, 0.16);
  --shadow: 0 20px 70px rgba(42, 33, 24, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  background: var(--green);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  min-height: 72px;
  padding: 0.7rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1;
  font-size: 1rem;
}

.brand small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--green);
}

.phone-link {
  justify-self: end;
  text-decoration: none;
  color: white;
  background: var(--green);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(19, 95, 61, 0.22);
}

.banner-hero {
  background:
    linear-gradient(180deg, rgba(19, 95, 61, 0.08), transparent 38%),
    #fffaf0;
  border-bottom: 1px solid var(--line);
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(0.75rem, 2vw, 1.25rem) clamp(1rem, 2.5vw, 1.5rem);
}

.banner-frame {
  position: relative;
  overflow: hidden;
  max-width: 1600px;
  margin: 0 auto;
  border: 1px solid rgba(184, 131, 39, 0.28);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 54px rgba(42, 33, 24, 0.14);
}

.banner-frame img {
  width: 100%;
  height: auto;
}

.banner-book-hotspot {
  position: absolute;
  left: 35.1%;
  top: 72.4%;
  width: 17.2%;
  height: 13.2%;
  border-radius: 999px;
  text-decoration: none;
}

.banner-book-hotspot span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.banner-book-hotspot:focus-visible {
  outline: 4px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 8px var(--green);
}

.hero-intro {
  position: relative;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 12% 30%, rgba(244, 180, 49, 0.24), transparent 32%),
    linear-gradient(135deg, var(--green-dark), var(--green));
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 6vw, 5rem);
}

.hero-content {
  position: relative;
  width: min(980px, 100%);
  margin: 0;
  color: white;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-intro .eyebrow {
  color: #ffd36b;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  max-width: 13ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.8rem 1.1rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 14px 30px rgba(19, 95, 61, 0.24);
}

.hero-intro .button.primary {
  background: var(--sun);
  color: #24170a;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--green-dark);
}

.button.ghost {
  background: white;
  color: var(--green);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: white;
}

.quick-strip div {
  padding: clamp(1rem, 3vw, 1.45rem) clamp(1rem, 4vw, 4rem);
  border-right: 1px solid var(--line);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quick-strip strong {
  display: block;
  margin-top: 0.3rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.section {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.intro-grid,
.booking-band,
.service-areas,
.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.section-copy p,
.booking-copy p,
.service-areas p,
.faq p,
.trust-grid p {
  color: var(--muted);
  font-size: 1.03rem;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(182, 50, 42, 0.13);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 0.9rem;
  align-items: end;
}

.image-stack img,
.trust-grid img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.image-stack img:last-child {
  aspect-ratio: 4 / 3;
  margin-bottom: 1.4rem;
}

.booking-band {
  align-items: start;
  background:
    linear-gradient(180deg, rgba(19, 95, 61, 0.08), rgba(255, 253, 247, 0)),
    var(--cream);
  border-block: 1px solid var(--line);
}

.contact-panel {
  display: grid;
  gap: 0.2rem;
  width: min(100%, 360px);
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(19, 95, 61, 0.22);
  background: white;
}

.contact-panel span,
.contact-panel small {
  color: var(--muted);
  font-weight: 750;
}

.contact-panel a {
  color: var(--green);
  font-size: 1.55rem;
  font-weight: 950;
  text-decoration: none;
}

.booking-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.form-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.progress-dot {
  height: 0.38rem;
  flex: 1;
  border-radius: 999px;
  background: rgba(19, 95, 61, 0.16);
}

.progress-dot.active {
  background: var(--green);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 1rem;
  color: var(--green-dark);
  font-size: 1.2rem;
  font-weight: 950;
}

.form-step {
  display: none;
}

.form-step.active {
  display: grid;
  gap: 1rem;
}

.choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.choice:has(input:checked) {
  border-color: var(--green);
  background: rgba(19, 95, 61, 0.07);
}

.choice input,
.consent input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--green);
}

.choice strong,
.choice small {
  display: block;
}

.choice small {
  margin-top: 0.2rem;
  color: var(--muted);
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.pill-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.pill-grid input {
  accent-color: var(--green);
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field span {
  color: var(--green-dark);
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(42, 33, 24, 0.2);
  border-radius: var(--radius);
  background: #fffdfa;
  padding: 0.82rem 0.9rem;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(244, 180, 49, 0.35);
  border-color: var(--gold);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.summary {
  border-left: 4px solid var(--sun);
  background: rgba(244, 180, 49, 0.13);
  border-radius: var(--radius);
  padding: 0.85rem;
  color: #4d3a16;
  font-size: 0.95rem;
}

.form-success {
  margin-top: 1rem;
  border-radius: var(--radius);
  background: rgba(19, 95, 61, 0.1);
  color: var(--green-dark);
  padding: 1rem;
}

.form-success p {
  margin-bottom: 0;
}

.service-areas {
  grid-template-columns: 0.86fr 1fr;
}

.browse-button {
  margin-top: 1rem;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.area-tags span {
  border: 1px solid rgba(19, 95, 61, 0.2);
  border-radius: 999px;
  background: white;
  padding: 0.72rem 0.95rem;
  color: var(--green-dark);
  font-weight: 850;
}

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  background: #f8f5ec;
}

.trust-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 1rem;
}

.trust-grid img {
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
  box-shadow: none;
}

.text-link {
  color: var(--green);
  font-weight: 950;
}

.faq {
  max-width: 980px;
  margin: 0 auto;
}

.faq h2 {
  max-width: 15ch;
}

details {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 950;
  font-size: 1.08rem;
}

details p {
  margin: 0.75rem 0 0;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  background: var(--green-dark);
  color: white;
}

.footer a {
  color: #ffd36b;
  font-weight: 950;
  text-decoration: none;
}

.footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer .medical-note {
  grid-column: 1 / -1;
  max-width: 980px;
  font-size: 0.9rem;
}

.location-hero h1 {
  max-width: 12ch;
}

.location-hero .hero-content p:not(.eyebrow) {
  max-width: 760px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.local-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  box-shadow: 0 10px 34px rgba(42, 33, 24, 0.08);
}

.local-card h2,
.pricing-section h2,
.location-index-group h2 {
  max-width: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
}

.local-card p,
.pricing-section p,
.source-note {
  color: var(--muted);
}

.landmark-row,
.nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.landmark-row span,
.nearby-links a,
.nearby-links span {
  border: 1px solid rgba(19, 95, 61, 0.18);
  border-radius: 999px;
  background: rgba(19, 95, 61, 0.07);
  color: var(--green-dark);
  padding: 0.5rem 0.68rem;
  font-weight: 850;
  text-decoration: none;
}

.local-list {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  background: #f8f5ec;
  border-block: 1px solid var(--line);
}

.pricing-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
}

.pricing-table div {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) 1fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.pricing-table div:last-child {
  border-bottom: 0;
}

.pricing-table strong {
  color: var(--green-dark);
}

.pricing-table span {
  color: var(--muted);
}

.location-index {
  display: grid;
  gap: 2rem;
}

.location-index > .source-note {
  max-width: 900px;
  border-left: 4px solid var(--sun);
  background: rgba(244, 180, 49, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
}

.location-index-group {
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.location-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.location-link-grid a {
  min-height: 44px;
  border: 1px solid rgba(19, 95, 61, 0.16);
  border-radius: var(--radius);
  background: white;
  color: var(--green-dark);
  padding: 0.62rem 0.7rem;
  font-weight: 800;
  text-decoration: none;
}

.location-link-grid a:hover,
.location-link-grid a:focus {
  border-color: var(--green);
  background: rgba(19, 95, 61, 0.06);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .quick-strip,
  .intro-grid,
  .booking-band,
  .service-areas,
  .trust-grid,
  .location-grid,
  .pricing-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .location-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 3.5rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    gap: 0.75rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.82rem;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    display: none;
  }

  .phone-link {
    padding: 0.65rem 0.72rem;
    font-size: 0.88rem;
  }

  .hero-content {
    width: calc(100% - 2rem);
    margin: 0 auto 2rem;
  }

  .hero-intro {
    padding-inline: 1rem;
  }

  .banner-book-hotspot {
    left: 34.4%;
    top: 72%;
    width: 18.7%;
    height: 14%;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .image-stack,
  .pill-grid,
  .two-col,
  .pricing-table div,
  .location-link-grid {
    grid-template-columns: 1fr;
  }

  .image-stack img:last-child {
    margin-bottom: 0;
  }
}
