:root {
  --ink: #17211f;
  --muted: #5e6c68;
  --line: #d8e2de;
  --paper: #fbfdfc;
  --soft: #eef6f1;
  --aqua: #0d7c83;
  --aqua-dark: #07575e;
  --leaf: #789a3d;
  --gold: #d1962f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 39, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  align-items: center;
  background: rgba(251, 253, 252, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 226, 222, 0.85);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  align-items: center;
  background: var(--aqua-dark);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  width: 40px;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: #31413d;
}

.header-action {
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 18px;
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(251, 253, 252, 0.96) 0%, rgba(251, 253, 252, 0.84) 38%, rgba(251, 253, 252, 0.26) 70%, rgba(251, 253, 252, 0.08) 100%);
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 760px;
  padding: 154px clamp(20px, 6vw, 84px) 52px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--aqua-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(46px, 7vw, 86px);
  letter-spacing: 0;
  line-height: 0.94;
  margin-bottom: 24px;
  max-width: 720px;
}

.hero-copy {
  color: #344642;
  font-size: 19px;
  max-width: 650px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--aqua-dark);
  color: var(--white);
}

.button.secondary,
.footer-button {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
  color: var(--ink);
}

.button.disabled,
.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.trust-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 48px 0 0;
  max-width: 680px;
}

.trust-strip div {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 226, 222, 0.9);
  border-radius: 8px;
  padding: 16px;
}

.trust-strip dt {
  font-size: 23px;
  font-weight: 800;
}

.trust-strip dd {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin: 2px 0 0;
}

.service-bar {
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 14px 18px;
}

.service-bar span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #eef6f1;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 13px;
}

.section {
  padding: 86px clamp(20px, 5vw, 70px);
}

.intro {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(240px, 0.78fr) 1.22fr;
}

h2 {
  font-size: clamp(31px, 4vw, 52px);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 16px;
}

.section-heading {
  margin-bottom: 36px;
  max-width: 820px;
}

.section-heading p:not(.section-kicker),
.area-section p,
.pricing-note p {
  color: var(--muted);
}

.feature-grid,
.area-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.area-grid article,
.price-card,
.pricing-note,
.appointment-card,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(19, 48, 43, 0.06);
}

.feature-grid article,
.area-grid article {
  padding: 24px;
}

.icon {
  color: var(--gold);
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 26px;
}

.feature-grid h3,
.area-grid h3,
.price-card h3,
.pricing-note h3,
.appointment-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.feature-grid p,
.area-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.pricing-section,
.area-section {
  background: var(--soft);
}

.pricing-layout,
.scheduler {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
}

.price-list {
  display: grid;
  gap: 14px;
}

.price-card {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto;
  padding: 20px;
}

.price-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.price {
  color: var(--aqua-dark);
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
}

.pricing-note,
.appointment-card {
  padding: 24px;
  position: sticky;
  top: 96px;
}

.pricing-note ul {
  color: #334642;
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-left: 20px;
}

.scheduler-section {
  background: var(--paper);
}

.schedule-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label,
fieldset {
  border: 0;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

fieldset {
  margin: 20px 0;
}

label span,
legend {
  color: #334642;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  background: #f8fbfa;
  border: 1px solid #cbd9d4;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px 13px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(13, 124, 131, 0.14);
  outline: 0;
}

.slot-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.slot-grid input {
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.slot-grid label {
  align-items: center;
  background: #f8fbfa;
  border: 1px solid #cbd9d4;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 10px;
  text-align: center;
}

.slot-grid label:has(input:checked) {
  background: var(--aqua-dark);
  border-color: var(--aqua-dark);
  color: var(--white);
}

.submit-button {
  margin-top: 20px;
  width: 100%;
}

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

.summary-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.summary-list div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.summary-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.summary-list dd {
  font-weight: 700;
  margin: 3px 0 0;
  overflow-wrap: anywhere;
}

.area-section {
  display: grid;
  gap: 34px;
  grid-template-columns: 0.75fr 1.25fr;
}

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

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.faq-list p {
  color: var(--muted);
  margin: 12px 0 0;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 34px clamp(20px, 5vw, 70px);
}

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

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    order: 3;
    overflow-x: auto;
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero img {
    height: 100%;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(251, 253, 252, 0.96) 0%, rgba(251, 253, 252, 0.82) 56%, rgba(251, 253, 252, 0.38) 100%);
  }

  .hero-content {
    padding-top: 74px;
  }

  .intro,
  .pricing-layout,
  .scheduler,
  .area-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .area-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .pricing-note,
  .appointment-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 58px 18px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .form-grid,
  .slot-grid,
  .price-card {
    grid-template-columns: 1fr;
  }

  .price {
    white-space: normal;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
