:root {
  color-scheme: light;
  --ink: #17302d;
  --muted: #5b706a;
  --paper: #f8f6f0;
  --panel: #ffffff;
  --sage: #dce8dc;
  --teal: #1f6964;
  --teal-dark: #164d49;
  --gold: #b88a44;
  --line: #d7ded7;
  --shadow: 0 18px 55px rgba(23, 48, 45, 0.12);
  --header-offset: 96px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 246, 240, .92);
  border-bottom: 1px solid rgba(215, 222, 215, .8);
  backdrop-filter: blur(18px);
}

.nav-wrap, .section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  font-weight: 800;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
  padding: .55rem .7rem;
  border-radius: 6px;
}
.main-nav a[aria-current="page"], .main-nav a[aria-current="location"], .main-nav a.is-active, .main-nav a:hover {
  color: var(--teal-dark);
  background: var(--sage);
}
.language-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-left: .4rem;
}
.language-switch a {
  padding: .45rem .65rem;
  border-radius: 0;
}
.language-switch a[aria-current="true"] {
  color: var(--teal-dark);
  background: var(--sage);
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: end;
  background-image: linear-gradient(90deg, rgba(10, 32, 30, .82), rgba(10, 32, 30, .38)), var(--hero);
  background-size: cover;
  background-position: center;
  color: white;
}
.hero .section-inner {
  padding: 6rem 0 5rem;
}
.eyebrow {
  margin: 0 0 .8rem;
  color: #f4d8a3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: .86rem;
}
h1, h2, h3 {
  line-height: 1.1;
  letter-spacing: 0;
}
h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.9rem, 8vw, 5.8rem);
}
.hero h1 {
  max-width: 880px;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}
.hero p {
  max-width: 650px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 1.2rem 0 0;
}
.hero-actions, .actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .78rem 1.05rem;
  border-radius: 6px;
  border: 1px solid transparent;
  background: var(--gold);
  color: white;
  text-decoration: none;
  font-weight: 800;
}
.button.secondary {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .48);
}
.button.outline {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal);
}

.section {
  padding: 5rem 0;
}
.nav-section {
  scroll-margin-top: var(--header-offset);
}
.section.alt {
  background: #eef4ee;
}
.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}
.section-head h2, .page-intro h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.section-head p, .page-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.page-intro {
  padding: 4.5rem 0 2.5rem;
}
.blog-intro {
  padding-bottom: 0;
}
.page-meta {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}
.blog-intro .page-meta {
  margin: 1.1rem 0 1.35rem;
}
.blog-intro .page-meta + p {
  margin: 0;
}
.blog-article {
  padding-top: 3rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.review-grid + .review-grid {
  margin-top: 1rem;
}
.review-grid.is-collapsed {
  display: none !important;
}
.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
}
.service-layout {
  display: block;
}
.about-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .8fr);
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.3rem;
  box-shadow: 0 8px 28px rgba(23, 48, 45, .06);
}
.blog-figure {
  margin: 1.6rem 0;
}
.blog-figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.blog-figure figcaption {
  margin-top: .65rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.price-card.featured {
  border-color: rgba(184, 138, 68, .65);
  box-shadow: var(--shadow);
}
.badge {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  display: inline-flex;
  color: var(--teal-dark);
  background: #f6e8c9;
  border: 1px solid #e1c384;
  border-radius: 999px;
  padding: .25rem .65rem;
  font-weight: 800;
  font-size: .82rem;
}
.price-card.featured h3 {
  padding-right: 9rem;
}
.price {
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--teal-dark);
}
.price small {
  display: block;
  font-size: .92rem;
  color: var(--muted);
  font-weight: 700;
}
.price-tiers {
  margin: .8rem 0 1rem;
  padding: .75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}
.price-tiers div {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
}
.price-tiers div + div {
  margin-top: .35rem;
}
.price-tiers dt,
.price-tiers dd {
  margin: 0;
}
.price-tiers dd {
  color: var(--ink);
  font-weight: 850;
  white-space: nowrap;
}
.clean-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}
.clean-list li {
  position: relative;
  padding-left: 1.4rem;
  margin: .5rem 0;
}
.clean-list li::before {
  content: "";
  width: .52rem;
  height: .52rem;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  left: 0;
  top: .55rem;
}
.compact-list { margin-top: .35rem; }
.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.service-item + .service-item {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
.service-item h3 { margin-bottom: .55rem; }
.service-item p { margin: .35rem 0; }
.service-more {
  margin-top: .35rem;
  padding: 0;
  border: 0;
  background: transparent;
}
.service-more summary {
  color: var(--teal-dark);
  font-size: .95rem;
}
.service-more p:first-of-type {
  margin-top: .55rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: .8rem;
}
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
}
.step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  background: var(--teal);
  font-weight: 900;
}

.review {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.review-text {
  display: grid;
  gap: .45rem;
}
.review p {
  margin: 0;
}
.stars {
  color: var(--gold);
  font-weight: 900;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.profile-card {
  width: min(100%, 480px);
  margin: 0;
  justify-self: end;
}
.profile-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}
.gallery figure {
  margin: 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.gallery figcaption {
  padding: 1rem;
}
.gallery figcaption h3 {
  margin: 0 0 .35rem;
  font-weight: 800;
}
.gallery figcaption p {
  margin: 0;
  color: var(--muted);
}

details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}
details + details { margin-top: .7rem; }
summary {
  cursor: pointer;
  font-weight: 850;
}
.faq-more {
  margin-top: 1.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
label {
  display: grid;
  gap: .35rem;
  font-weight: 800;
  color: var(--ink);
}
fieldset {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}
legend {
  padding: 0 .35rem;
  font-weight: 900;
  color: var(--ink);
}
.date-range {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
  background: #f7faf6;
}
.date-range .fineprint {
  grid-column: 1 / -1;
  margin: 0;
}
.consent-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: .55rem;
  width: 100%;
  min-width: 0;
}
.consent-field input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: .15rem;
  padding: 0;
}
.consent-field span {
  min-width: 0;
  overflow-wrap: normal;
}
.turnstile-wrap {
  margin-top: 1rem;
}
.form-status {
  min-height: 1.5rem;
  margin: 1rem 0;
  padding: .85rem 1rem;
  border-radius: 8px;
  background: #f7faf6;
  border: 1px solid var(--line);
  font-weight: 800;
}
.form-status.success {
  color: #1f6964;
  border-color: rgba(31, 105, 100, .35);
  background: #eef8f3;
}
.form-status.error {
  color: #9b2c2c;
  border-color: rgba(180, 35, 24, .35);
  background: #fff4f2;
}
.is-invalid {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, .14);
}
.email-suggestion {
  font-size: .9rem;
  font-weight: 700;
  color: var(--muted);
}
.email-suggestion button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-weight: 850;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .8rem .85rem;
  font: inherit;
  color: var(--ink);
  background: white;
}
textarea { min-height: 130px; resize: vertical; }
.full { grid-column: 1 / -1; }
.fineprint {
  color: var(--muted);
  font-size: .92rem;
}

.site-footer {
  color: white;
  background: var(--ink);
  padding: 2.5rem 0;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .8fr .8fr 1fr;
  gap: 1.4rem;
}
.site-footer p {
  line-height: 1.65;
}
.site-footer a {
  color: white;
  font-size: .9rem;
}
.footer-locations p {
  columns: 2;
  column-gap: 1.2rem;
  line-height: 1.7;
}
.footer-locations a {
  color: rgba(255, 255, 255, .86);
  font-size: .85rem;
}
.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
}

@media (max-width: 900px) {
  :root { --header-offset: 150px; }
  .nav-wrap { align-items: flex-start; padding: .8rem 0; flex-direction: column; }
  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: .2rem;
    scrollbar-width: thin;
  }
  .main-nav a { flex: 0 0 auto; }
  .main-nav a[data-section-link="home"] {
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--paper);
    box-shadow: 10px 0 14px rgba(248, 246, 240, .92);
  }
  .main-nav a[data-section-link="home"].is-active {
    background: var(--sage);
  }
  .language-switch {
    position: sticky;
    right: 0;
    z-index: 3;
    flex: 0 0 auto;
    margin-left: auto;
    background: var(--paper);
    box-shadow: -10px 0 14px rgba(248, 246, 240, .92);
  }
  .hero { min-height: 560px; }
  .grid, .two-col, .contact-layout, .footer-grid { grid-template-columns: 1fr; }
  .footer-locations p { columns: 1; }
  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  }
  .gallery { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .profile-card {
    justify-self: center;
    width: min(100%, 360px);
    padding: .9rem;
  }
}

@media (max-width: 620px) {
  .nav-wrap, .section-inner { width: min(100% - 24px, 1120px); }
  .main-nav a { font-size: .86rem; padding: .45rem .5rem; }
  .section { padding: 3.4rem 0; }
  .review {
    gap: .65rem;
  }
  .review-text {
    gap: .35rem;
  }
  .review-grid,
  .review-grid + .review-grid {
    gap: .85rem;
  }
  .review-grid + .review-grid {
    margin-top: .85rem;
  }
  .actions {
    margin-top: 1.1rem;
  }
  .service-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .date-range { grid-template-columns: 1fr; }
  .hero .section-inner { padding: 5.4rem 0 5rem; }
  .hero .eyebrow { margin-bottom: 1.05rem; }
  .hero p { margin-top: 1.45rem; }
  .hero-actions { margin-top: 2rem; }
}
