:root {
  color-scheme: light;
  --ink: #243235;
  --muted: #617072;
  --soft: #fff5c7;
  --soft-2: #fffcf0;
  --line: #f1dea0;
  --blue: #f6c84c;
  --blue-dark: #356f73;
  --teal: #a87500;
  --sage: #eaf7f2;
  --sand: #fff8dc;
  --coral: #b86b4b;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(97, 73, 14, 0.11);
  --shadow-soft: 0 10px 30px rgba(97, 73, 14, 0.075);
  --radius: 10px;
  --container: 1180px;
  --mobile-cta-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fffdf6;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(246, 200, 76, 0.5);
  outline-offset: 3px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(240, 223, 173, 0.85);
  background: rgba(255, 253, 246, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #f7cb53 0%, #f2b83f 100%);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 0.05rem;
}

.brand-name {
  font-size: 0.96rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.brand-role {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.2;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #4a4334;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
  border-radius: 2px;
}

.menu-toggle {
  gap: 4px;
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  z-index: 35;
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem 16px 120px;
  border-top: 1px solid var(--line);
}

.mobile-panel.open {
  display: block;
}

.mobile-panel nav {
  display: grid;
  gap: 0.55rem;
  width: min(460px, 100%);
  margin: 0 auto;
}

.mobile-panel a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 650;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.05rem;
  border-radius: 9px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.95rem;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(145deg, #ffd86b 0%, #f3bd35 100%);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(201, 147, 32, 0.2);
}

.btn-primary:hover {
  background: #eeb22c;
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(128, 97, 26, 0.24);
}

.btn-soft {
  background: var(--soft);
  color: var(--ink);
  border-color: var(--line);
}

.desktop-cta {
  display: none;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 0.65rem 16px calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 28px rgba(92, 73, 30, 0.1);
}

.mobile-sticky-cta .btn {
  width: 100%;
}

main {
  overflow: hidden;
}

.section {
  padding: 3.6rem 0;
  border-top: 1px solid rgba(240, 223, 173, 0.72);
}

[id] {
  scroll-margin-top: 92px;
}

.section-tight {
  padding: 2.4rem 0;
}

.section-soft {
  background: var(--soft-2);
}

.section-blue {
  background: linear-gradient(180deg, #fff1af 0%, #ffe28a 100%);
  color: var(--ink);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.eyebrow::before {
  content: "+";
  width: 22px;
  height: 22px;
  border: 1px solid rgba(95, 152, 140, 0.38);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.9rem;
  line-height: 1;
  color: var(--teal);
}

.section-blue .eyebrow {
  color: var(--blue-dark);
}

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

h1 {
  font-size: clamp(2.05rem, 9.5vw, 5.05rem);
  line-height: 0.96;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.72rem, 6.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 0.9rem;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 0.45rem;
}

.lead {
  font-size: clamp(1.05rem, 4.2vw, 1.28rem);
  color: #645b4c;
  line-height: 1.65;
  margin-bottom: 1.3rem;
}

.section-blue .lead,
.section-blue .muted {
  color: var(--muted);
}

.section-blue .card {
  color: var(--ink);
}

.section-blue .card .muted {
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.hero {
  position: relative;
  padding: 2.9rem 0 3.4rem;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 229, 134, 0.72) 0, rgba(255, 229, 134, 0) 34%),
    linear-gradient(160deg, #fffdf7 0%, var(--white) 50%, #fff2bb 100%);
}

.hero-grid {
  display: grid;
  gap: 1.7rem;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.hero-cta-row,
.cta-row {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.hero-cta-row .btn,
.cta-row .btn {
  width: 100%;
}

.trust-strip {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
}

.trust-pill,
.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(128, 97, 26, 0.16);
  color: #4d4125;
  padding: 0.42rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.mini-pill {
  background: var(--soft);
}

.hero-media {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, var(--white) 0%, #fff4ca 100%);
  border: 1px solid rgba(128, 97, 26, 0.14);
  box-shadow: var(--shadow);
  padding: 0.65rem;
}

.photo-card img {
  display: block;
  width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  border-radius: 6px;
  background: #fff8df;
}

.hero-media .photo-card {
  display: grid;
  place-items: center;
}

.hero-media .photo-card img {
  width: auto;
  height: min(56vh, 560px);
  max-width: 100%;
}

.split > .photo-card {
  max-width: 420px;
}

.split > .photo-card img {
  width: auto;
  height: min(72vh, 680px);
  max-width: 100%;
  margin: 0 auto;
}

.hero-note {
  margin-top: -1.4rem;
  margin-left: 1rem;
  margin-right: 1rem;
  position: relative;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.hero-note strong {
  display: block;
  color: var(--blue-dark);
  margin-bottom: 0.2rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.15rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 250, 234, 0.98) 100%);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -34% auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 229, 134, 0.42);
  pointer-events: none;
}

.card-flat {
  box-shadow: none;
}

.service-card,
.condition-card {
  display: grid;
  gap: 0.65rem;
}

.service-card .btn {
  margin-top: 0.4rem;
  width: 100%;
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--soft) 0%, var(--sand) 100%);
  border: 1px solid rgba(128, 97, 26, 0.14);
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  font-weight: 850;
}

.split {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

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

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: #4b4438;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.47rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.55);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 0.95rem;
  align-items: start;
  min-height: 118px;
}

.step::before {
  content: counter(step);
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 800;
  line-height: 1;
  flex: 0 0 auto;
}

.step h3,
.step p {
  grid-column: 2;
}

.band {
  background: linear-gradient(145deg, #ffe28a 0%, #f6c84c 100%);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
  align-items: center;
}

.band p {
  color: #5e543d;
  margin-bottom: 0;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.profile-links a,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  background: #fffdf7;
  border: 1px solid var(--line);
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.quote {
  font-size: 1.05rem;
  color: #4b4438;
  border-left: 4px solid var(--blue);
  padding-left: 1rem;
  margin: 0;
}

.resources-grid article {
  display: grid;
  gap: 0.45rem;
}

.article-meta {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card a {
  text-decoration: none;
}

.article-card a:hover h3 {
  color: var(--blue-dark);
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-method {
  display: grid;
  gap: 0.2rem;
}

.contact-method a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-method a.btn-primary {
  color: var(--ink);
}

.contact-method a.btn-secondary {
  color: var(--blue-dark);
}

.booking-panel {
  background:
    linear-gradient(145deg, var(--white) 0%, #fff9e5 100%);
  border-radius: var(--radius);
  padding: 1.1rem;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.booking-panel .btn {
  width: 100%;
}

.map-frame {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
  filter: saturate(0.8);
}

.crisis {
  border-left: 4px solid var(--coral);
  background: #fff8ef;
}

.footer {
  background: #fff1b5;
  color: #5e543d;
  padding: 2rem 0 calc(2rem + var(--mobile-cta-height));
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.footer a {
  color: var(--ink);
}

.footer-brand {
  color: var(--ink);
  font-weight: 850;
  margin-bottom: 0.4rem;
}

.footer-small {
  font-size: 0.85rem;
}

.page-hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 225, 123, 0.56) 0, rgba(255, 225, 123, 0) 28%),
    linear-gradient(150deg, #fffdf7 0%, var(--white) 54%, #fff1b5 100%);
  padding: 3.2rem 0;
  border-bottom: 1px solid rgba(240, 223, 173, 0.72);
}

.page-hero .lead {
  max-width: 760px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(128, 97, 26, 0.2);
  background: rgba(255, 255, 255, 0.68);
  color: #4d4125;
  font-size: 0.82rem;
  font-weight: 750;
}

.contact-hero-card {
  align-self: stretch;
  display: grid;
  gap: 0.95rem;
  background: linear-gradient(145deg, #ffe89a 0%, #f6c84c 100%);
  color: var(--ink);
  border: 0;
  box-shadow: 0 22px 58px rgba(201, 147, 32, 0.22);
}

.contact-hero-card h2 {
  color: var(--ink);
  font-size: clamp(1.45rem, 4vw, 2rem);
  margin-bottom: 0.15rem;
}

.contact-hero-card p {
  color: #5e543d;
}

.contact-hero-card .btn-secondary {
  background: var(--white);
  color: var(--ink);
}

.mini-process {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-process li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  color: #4d4125;
}

.mini-process strong {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  color: var(--ink);
}

.toc {
  position: static;
  display: grid;
  gap: 0.45rem;
}

.toc a {
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 700;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.symptom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.symptom {
  padding: 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  color: #4b4438;
  font-weight: 650;
}

.price {
  font-size: 1.5rem;
  font-weight: 850;
  color: var(--blue-dark);
  margin-bottom: 0.25rem;
}

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

.reference-list {
  padding-left: 1.2rem;
  color: var(--muted);
}

.reference-list li {
  margin-bottom: 0.5rem;
}

.reference-list a {
  color: var(--blue-dark);
}

@media (min-width: 560px) {
  .hero-cta-row,
  .cta-row {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-cta-row .btn,
  .cta-row .btn,
  .service-card .btn {
    width: auto;
  }

  .trust-strip {
    display: flex;
    flex-wrap: wrap;
  }

  .symptom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 559px) {
  main {
    padding-bottom: calc(var(--mobile-cta-height) + 2rem);
  }

  .page-hero {
    padding: 2.25rem 0 calc(2.4rem + 0.75rem);
  }

  .section {
    padding: 2.55rem 0;
  }

  .contact-hero-card .mini-process,
  .contact-hero-card .btn-secondary {
    display: none;
  }

  .hero-media .photo-card {
    padding: 0.5rem;
  }

  .hero-media .photo-card img {
    height: min(58vh, 440px);
  }

  .split > .photo-card img {
    height: auto;
    width: 100%;
  }

  [id] {
    scroll-margin-top: 82px;
  }
}

@media (max-width: 559px) and (max-height: 780px) {
  .contact-hero-card {
    gap: 0.55rem;
    padding: 0.95rem 1rem;
  }

  .contact-hero-card p:not(.eyebrow) {
    display: none;
  }
}

@media (min-width: 760px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-grid,
  .split,
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  }

  .band {
    grid-template-columns: 1fr auto;
    padding: 1.35rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (min-width: 980px) {
  .nav {
    min-height: 76px;
  }

  .nav-links {
    display: flex;
  }

  .desktop-cta {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-sticky-cta {
    display: none;
  }

  .section {
    padding: 5rem 0;
  }

  .section-tight {
    padding: 3.4rem 0;
  }

  .hero {
    padding: 4.6rem 0 5rem;
  }

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

  .card {
    padding: 1.35rem;
  }

  .toc {
    position: sticky;
    top: 100px;
  }

  .footer {
    padding-bottom: 2rem;
  }
}

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