:root {
  color-scheme: light;
  --green-900: #1e4730;
  --green-700: #34794b;
  --green-600: #4d965c;
  --green-100: #eaf5ec;
  --green-50: #f5fbf6;
  --purple-800: #5d3a71;
  --purple-650: #81579a;
  --purple-100: #f3eaf7;
  --rose-100: #faedf2;
  --ink: #26312b;
  --muted: #66716a;
  --line: #e3e8e0;
  --paper: #ffffff;
  --soft: #fbf8f4;
  --shadow: 0 18px 45px rgba(39, 55, 43, 0.12);
  --radius: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--paper);
  background: var(--purple-800);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 72px;
  padding: 10px clamp(16px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(227, 232, 224, 0.72);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(39, 55, 43, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.brand img {
  width: 132px;
  height: auto;
}

.nav-toggle {
  justify-self: end;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--green-100);
  border: 1px solid rgba(52, 121, 75, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-900);
  border-radius: 999px;
}

.site-nav {
  position: fixed;
  inset: 72px 14px auto 14px;
  display: none;
  grid-column: 1 / -1;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-open .site-nav {
  display: grid;
}

.site-nav a {
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green-900);
  background: var(--green-50);
}

.header-action {
  display: none;
}

.section {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
  padding-block: clamp(44px, 8vw, 88px);
}

.hero {
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding-top: clamp(22px, 4vw, 42px);
}

.hero-media {
  overflow: hidden;
  background: var(--green-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-900);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 12vw, 4.7rem);
}

h2 {
  font-size: clamp(1.75rem, 7vw, 3rem);
}

h3 {
  font-size: clamp(1.08rem, 4vw, 1.35rem);
}

.hero-text {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 4vw, 1.2rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button,
.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-primary,
.header-action {
  color: var(--paper);
  background: var(--green-700);
  box-shadow: 0 14px 26px rgba(52, 121, 75, 0.22);
}

.button-primary:hover,
.header-action:hover {
  background: var(--green-900);
}

.button-secondary {
  color: var(--purple-800);
  background: var(--purple-100);
  border-color: rgba(93, 58, 113, 0.16);
}

.centered {
  width: fit-content;
  margin: 22px auto 0;
}

.trust-points {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--green-900);
  list-style: none;
}

.trust-points li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 750;
}

.trust-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--purple-650);
  border-radius: 999px;
}

.trust-band {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 5vw, 36px);
  background: linear-gradient(135deg, var(--green-50), var(--purple-100));
  border: 1px solid rgba(93, 58, 113, 0.12);
  border-radius: var(--radius);
}

.trust-band p:last-child {
  max-width: 72ch;
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(24px, 5vw, 38px);
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-grid,
.price-grid,
.steps {
  display: grid;
  gap: 16px;
}

.service-card,
.price-card,
.step-card,
.guidance-card,
.hours-card,
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(39, 55, 43, 0.06);
}

.service-card {
  padding: 22px;
}

.service-card.featured {
  display: grid;
  gap: 18px;
  padding: 0;
  overflow: hidden;
}

.service-card.featured div {
  padding: 0 22px 22px;
}

.service-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.service-card p,
.step-card p,
.price-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.prices {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - var(--max-width)) / 2));
  background: var(--green-50);
  border-block: 1px solid rgba(52, 121, 75, 0.12);
}

.price-grid {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.prices .section-heading {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  margin-bottom: clamp(24px, 5vw, 38px);
}

.price-card {
  padding: 22px;
}

.price-list {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(52, 121, 75, 0.22);
}

.price-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-list span {
  color: var(--ink);
}

.price-list strong {
  color: var(--purple-800);
  white-space: nowrap;
}

.note {
  width: min(100%, var(--max-width));
  margin: 20px auto 0;
  color: var(--muted);
  text-align: center;
}

.step-card {
  position: relative;
  min-height: 190px;
  padding: 24px;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--paper);
  font-weight: 900;
  background: var(--purple-800);
  border-radius: 999px;
}

.guidance {
  padding-top: clamp(34px, 7vw, 72px);
}

.guidance-layout {
  display: grid;
  gap: 18px;
}

.guidance-card,
.hours-card {
  padding: 22px;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--green-600);
  border-radius: 999px;
}

.hours-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.8fr) 1fr;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(52, 121, 75, 0.2);
}

.hours-list dt {
  color: var(--green-900);
  font-weight: 800;
}

.hours-list dd {
  margin: 0;
  color: var(--muted);
}

.hours-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.studio {
  display: grid;
  gap: 22px;
  align-items: center;
}

.studio-content p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.studio img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 0;
}

.faq summary {
  min-height: 56px;
  padding: 16px 18px;
  color: var(--green-900);
  font-weight: 850;
  cursor: pointer;
}

.faq details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - var(--max-width)) / 2));
  background: var(--purple-100);
}

.contact-card {
  display: grid;
  gap: 20px;
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding: clamp(22px, 5vw, 36px);
  background: var(--paper);
  border: 1px solid rgba(93, 58, 113, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

address {
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
}

address a {
  color: var(--green-900);
  font-weight: 800;
}

.map-placeholder {
  display: grid;
  place-content: center;
  min-height: 240px;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.56) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.56) 1px, transparent 1px),
    linear-gradient(135deg, var(--green-100), var(--rose-100));
  background-size: 24px 24px, 24px 24px, auto;
  border: 1px solid rgba(52, 121, 75, 0.2);
  border-radius: var(--radius);
}

.map-placeholder span {
  color: var(--purple-800);
  font-weight: 850;
}

.map-placeholder strong {
  margin-top: 8px;
  color: var(--green-900);
  font-size: 1.15rem;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 28px clamp(16px, 4vw, 42px);
  color: rgba(255, 255, 255, 0.86);
  background: var(--green-900);
}

.site-footer strong {
  display: block;
  color: var(--paper);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer a {
  color: var(--paper);
  font-weight: 760;
  text-decoration: none;
}

.site-footer a:hover,
.text-link:hover {
  text-decoration: underline;
}

.legal-page {
  background: var(--soft);
}

.legal-content {
  max-width: 820px;
  padding-top: clamp(38px, 8vw, 72px);
}

.legal-content h1 {
  max-width: 15ch;
  margin-bottom: 30px;
  font-size: clamp(2rem, 9vw, 3.5rem);
}

.legal-content h2 {
  margin-top: 28px;
  font-size: clamp(1.25rem, 5vw, 1.65rem);
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--green-900);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
}

:focus-visible {
  outline: 3px solid rgba(129, 87, 154, 0.35);
  outline-offset: 3px;
}

@media (max-width: 420px) {
  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hours-list div,
  .price-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

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

  .hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero-media {
    order: 2;
  }

  .hero-content {
    order: 1;
  }

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

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

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

  .guidance-layout,
  .studio,
  .contact-card {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .site-header {
    min-height: 78px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    grid-column: auto;
    justify-content: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-nav a {
    min-height: 42px;
    padding: 10px 11px;
    font-size: 0.95rem;
  }

  .header-action {
    display: inline-flex;
  }

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

  .service-card.featured:first-child {
    grid-column: span 2;
  }

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

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