:root {
  --bg: #F7F5F2;
  --panel: #FFFFFF;
  --ink: #2F3A40;
  --muted: #5F6B70;
  --line: rgba(47, 58, 64, 0.14);
  --green: #5E8C8A;
  --green-2: #3D5A73;
  --gold: #B8A77D;
  --gold-light: #EAF1EF;
  --shadow: 0 22px 70px rgba(47, 58, 64, 0.12);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, rgba(94, 140, 138, 0.16), transparent 28rem), radial-gradient(circle at bottom right, rgba(61, 90, 115, 0.08), transparent 30rem), var(--bg);
  line-height: 1.65;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 20;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(247, 245, 242, 0.9);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.05em;
  box-shadow: 0 12px 35px rgba(61, 90, 115, .22);
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  margin-top: .15rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 .8rem;
  text-decoration: none;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 600;
  border-radius: 999px;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--ink);
  background: rgba(94, 140, 138, 0.11);
  outline: none;
}

.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  margin-left: .35rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.65);
  cursor: pointer;
  padding: .75rem;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  width: 100%;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 78px);
}

.hero-content {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(250,249,246,.78));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.75);
  text-align: center;
  overflow-wrap: break-word;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--green-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.05rem, 4.4vw, 3.85rem);
  max-width: 18ch;
  margin-inline: auto;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.9rem, 3.7vw, 3.65rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 1rem 0 0;
}

.lead {
  color: var(--green);
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  max-width: 58ch;
  margin-inline: auto;
  font-weight: 600;
}

.hero-content > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
  max-width: 58ch;
  margin-inline: auto;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 35px rgba(61, 90, 115, .18);
}

.button.secondary {
  background: #fff;
  color: var(--green);
  border-color: var(--line);
}

button.button {
  font: inherit;
  cursor: pointer;
}

.copy-email {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

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

.hero-card {
  background: linear-gradient(145deg, var(--green-2), var(--green));
  color: #fff;
  border-radius: 34px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -6rem -6rem auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(234, 241, 239, .24);
}

.hero-card h2 {
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.hero-card p,
.hero-card dt {
  color: rgba(255,255,255,.76);
}

.hero-card dl {
  margin: 1.6rem 0;
  display: grid;
  gap: 1rem;
}

.hero-card dt {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
}

.hero-card dd {
  margin: .1rem 0 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  color: var(--gold-light);
  font-weight: 800;
  text-underline-offset: .3em;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 2rem;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.narrow {
  text-align: center;
  margin-inline: auto;
}

.cards,
.price-grid,
.treatment-list {
  display: grid;
  gap: 1rem;
}

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

.mini-card {
  min-height: 116px;
  padding: 1.25rem;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 14px 38px rgba(47, 58, 64, .07);
  display: flex;
  align-items: flex-end;
  font-weight: 800;
}

.split {
  padding-top: 36px;
}

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

.treatment-card,
.price-card,
.about-panel,
.contact-card,
.accordion details {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 16px 46px rgba(47, 58, 64, .07);
}

.treatment-card {
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card-number {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  background: var(--gold-light);
  color: var(--green);
  font-weight: 900;
}

.treatment-card p,
.price-card p,
.about-panel p,
.contact-card p,
.accordion p {
  color: var(--muted);
}

.pricing {
  background: linear-gradient(135deg, rgba(94, 140, 138, 0.10), rgba(61, 90, 115, 0.07));
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
}

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

.price-card {
  position: relative;
  border-radius: var(--radius);
  padding: 1.45rem;
  overflow: hidden;
}

.price-card.featured {
  background: var(--green);
  color: #fff;
}

.price-card.featured p {
  color: rgba(255,255,255,.78);
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold-light);
  color: var(--green);
  font-weight: 900;
  font-size: .75rem;
  padding: .35rem .6rem;
  border-radius: 999px;
}

.price {
  color: var(--green) !important;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.price-label {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}

.regular-price {
  font-size: .88rem;
  margin-top: .45rem !important;
  color: var(--muted) !important;
}

.featured .price-label,
.featured .regular-price {
  color: rgba(255,255,255,.74) !important;
}

.featured .price {
  color: #fff !important;
}

.tax-note {
  text-align: center;
  margin-top: 1.5rem;
}

.about {
  padding-bottom: 40px;
}

.about-panel {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 34px;
  padding: clamp(1.5rem, 5vw, 3.2rem);
}

.faq {
  padding-top: 48px;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: .85rem;
}

.accordion details {
  border-radius: 18px;
  padding: 0 1.2rem;
}

.accordion summary {
  cursor: pointer;
  padding: 1.15rem 0;
  font-weight: 850;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  float: right;
  font-size: 1.3rem;
  color: var(--green-2);
}

.accordion details[open] summary::after {
  content: "–";
}

.accordion details p:last-child {
  padding-bottom: 1.15rem;
}

.contact {
  padding-top: 36px;
}

.contact-card {
  border-radius: 34px;
  padding: clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  color: #fff;
}

.contact-card h2 {
  max-width: 11ch;
}

.contact-card p {
  color: rgba(255,255,255,.75);
  max-width: 68ch;
}

.contact-card .button.secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

.contact-card .button.primary {
  background: #fff;
  color: var(--green);
}

.disclaimer {
  font-size: .92rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .94rem;
}

.site-footer a {
  font-weight: 800;
  color: var(--green);
  text-underline-offset: .25em;
}

.inline-link {
  font-weight: 800;
  color: var(--green-2);
  text-underline-offset: .25em;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--green);
}

@media (max-width: 1080px) {
  .six-cards,
  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .treatment-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: .8rem;
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    justify-content: center;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

  .hero-content {
    padding: 1.75rem;
  }

  h1 {
    max-width: 100%;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section {
    width: min(100% - 1rem, var(--max));
    padding: 56px 0;
  }

  .hero-content,
  .hero-card,
  .about-panel,
  .contact-card {
    border-radius: 24px;
  }

  .six-cards,
  .price-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(1.85rem, 10.5vw, 2.85rem);
    line-height: 1.12;
  }

  .lead {
    font-size: 1.02rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}


.info-note,
.disclaimer-box {
  max-width: 860px;
  margin: 1.75rem auto 0;
  padding: 1.1rem 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .82);
  box-shadow: 0 14px 38px rgba(47, 58, 64, .06);
}

.info-note p,
.disclaimer-box p {
  margin: 0;
  color: var(--muted);
}

.disclaimer-box {
  border-left: 4px solid var(--gold);
}

.disclaimer-box p + p {
  margin-top: .65rem;
}

.process-section {
  padding-top: 40px;
}

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

.process-grid article {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 16px 46px rgba(47, 58, 64, .07);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.process-grid strong {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  margin-bottom: 1rem;
}

.process-grid h3 {
  margin-bottom: .45rem;
}

.process-grid p {
  color: var(--muted);
  margin: 0;
}

.inline-link {
  color: inherit;
  font-weight: 800;
  text-underline-offset: .25em;
}

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

@media (max-width: 580px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
