:root {
  --sea: #dcebe6;
  --sea-deep: #c9ddd6;
  --olive: #4c5249;
  --olive-dark: #383d37;
  --sand: #e9dcc7;
  --sand-light: #f4ede2;
  --peach: #d99478;
  --peach-dark: #a86249;
  --paper: #fffdfa;
  --line: #bfcfc8;
  --muted: #687168;
  --white: #ffffff;
  --shell: 1160px;
  --radius: 28px;
  --shadow: 0 18px 50px rgba(56, 61, 55, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sea);
  color: var(--olive-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--olive-dark);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--peach-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--peach-dark);
  outline-offset: 3px;
}

button,
input {
  font: inherit;
}

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

h1,
h2,
h3,
.wordmark span {
  font-family: "Trebuchet MS", "Avenir Next", Arial, Helvetica, sans-serif;
  color: var(--olive-dark);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.03;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.3rem;
  line-height: 1.15;
}

p:last-child {
  margin-bottom: 0;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.narrow {
  max-width: 830px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--olive-dark);
  color: var(--white);
  transform: translateY(-180%);
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(220, 235, 230, 0.98);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  min-width: max-content;
  line-height: 1;
  text-decoration: none;
}

.wordmark span {
  font-size: 1.65rem;
}

.wordmark small {
  margin-top: 0.15rem;
  color: var(--peach-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-nav,
.footer-nav,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.primary-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.55rem 0;
  color: var(--olive-dark);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.primary-nav .nav-action {
  padding-inline: 1rem;
  border: 1px solid var(--olive);
  border-radius: 999px;
  background: var(--paper);
}

.primary-nav .nav-action:hover {
  background: var(--olive);
  color: var(--white);
}

.welcome {
  padding-block: clamp(2rem, 4vw, 3.3rem);
  border-bottom: 1px solid var(--line);
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(360px, 1.12fr) minmax(220px, 0.72fr);
  gap: 1rem;
  align-items: center;
}

.welcome-image {
  margin: 0;
}

.welcome-image img {
  height: min(47vw, 540px);
  min-height: 390px;
  border: 7px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.welcome-left {
  margin-top: 2.2rem;
}

.welcome-right {
  margin-bottom: 2.2rem;
}

.welcome-panel {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.welcome-panel p:not(.eyebrow):not(.image-note) {
  max-width: 54ch;
  color: var(--muted);
}

.eyebrow {
  margin-bottom: 0.7rem;
  color: var(--peach-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.image-note,
figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 1rem;
  border: 1px solid var(--olive);
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease;
}

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

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

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

.button-secondary {
  background: var(--paper);
  color: var(--olive-dark);
}

.button-secondary:hover {
  background: var(--sand-light);
}

.treatments-section {
  padding-block: clamp(3.1rem, 6vw, 5rem);
  background: var(--paper);
}

.treatments-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 1.2rem;
  align-items: stretch;
}

.treatments-panel {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand-light);
}

.treatments-intro {
  max-width: 720px;
  margin-bottom: 1.4rem;
}

.treatments-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.treatment-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.treatment-number {
  color: var(--peach-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.treatment-item p {
  color: var(--muted);
  font-size: 0.93rem;
}

.treatments-image {
  margin: 0;
}

.treatments-image img {
  height: calc(100% - 1.7rem);
  min-height: 460px;
  border: 7px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-section {
  padding-block: clamp(3.1rem, 6vw, 5rem);
  border-block: 1px solid var(--line);
  background: var(--sea);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.about-copy {
  padding-top: 0.8rem;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
}

.about-images {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.9rem;
  align-items: end;
}

.about-images figure {
  margin: 0;
}

.about-wide img,
.about-detail img {
  border: 7px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-wide img {
  aspect-ratio: 5 / 4;
}

.about-detail {
  margin-bottom: 2rem !important;
}

.about-detail img {
  aspect-ratio: 4 / 5;
}

.about-note {
  grid-column: 2;
  margin-top: -0.15rem;
}

.visit-newsletter {
  padding-block: clamp(3rem, 5vw, 4.5rem);
  background: var(--sand);
}

.visit-newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 1rem;
}

.location-panel,
.newsletter-panel {
  padding: 1.45rem;
  border: 1px solid #c8b99f;
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.58);
}

.location-panel address {
  display: grid;
  gap: 0.16rem;
  margin: 1rem 0 1.1rem;
  font-style: normal;
}

.location-panel address strong {
  margin-bottom: 0.3rem;
}

.button-location {
  background: var(--olive-dark);
  color: var(--white);
}

.button-location:hover {
  background: var(--peach-dark);
  color: var(--white);
}

.location-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.newsletter-panel > p:not(.eyebrow) {
  color: var(--muted);
}

.newsletter-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 850;
}

.field input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.8rem;
  border: 1px solid #8a918b;
  border-radius: 12px;
  background: var(--paper);
  color: var(--olive-dark);
}

.field input[type="email"]:disabled {
  background: #ebe8e2;
  color: #6e706d;
  cursor: not-allowed;
}

.consent-row {
  display: grid;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.86rem;
}

.consent-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.18rem 0 0;
}

.button-disabled,
.button-disabled:disabled {
  border-color: #aaa89f;
  background: #dedbd4;
  color: #696760;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer {
  padding-block: 1.8rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 0.15rem;
  color: var(--olive-dark);
  font-weight: 900;
}

.site-footer p {
  margin-bottom: 0.15rem;
  font-size: 0.88rem;
}

.footer-nav {
  justify-content: flex-end;
  align-content: start;
}

.footer-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.legal-main {
  background: var(--paper);
}

.legal-intro {
  padding-block: clamp(3rem, 6vw, 4.8rem);
  border-bottom: 1px solid var(--line);
  background: var(--sea);
}

.legal-intro h1 {
  max-width: 13ch;
}

.legal-intro p:last-child {
  max-width: 68ch;
  color: var(--muted);
}

.legal-section {
  padding-block: clamp(3.2rem, 6vw, 5rem);
  scroll-margin-top: 1rem;
}

.legal-alt {
  border-block: 1px solid var(--line);
  background: var(--sand-light);
}

.legal-copy h2 {
  margin-bottom: 2rem;
}

.legal-copy h3 {
  margin-top: 1.65rem;
}

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

.legal-note {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--peach);
  background: #f4ebe5;
  color: var(--olive-dark) !important;
}

.legal-return {
  padding-block: 2.4rem;
}

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .primary-nav {
    width: 100%;
  }

  .welcome-grid {
    grid-template-columns: minmax(180px, 0.72fr) minmax(340px, 1.28fr);
  }

  .welcome-left {
    margin-top: 0;
  }

  .welcome-right {
    grid-column: 1 / -1;
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .welcome-right img {
    height: 340px;
    min-height: 0;
  }

  .treatments-wrap,
  .about-grid,
  .visit-newsletter-grid {
    grid-template-columns: 1fr;
  }

  .about-note {
    grid-column: auto;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 1.3rem), var(--shell));
  }

  .primary-nav {
    gap: 0.3rem 0.7rem;
  }

  .primary-nav a {
    min-height: 46px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.3rem);
  }

  .welcome-grid {
    grid-template-columns: 1fr;
  }

  .welcome-left,
  .welcome-right {
    margin: 0;
    width: 100%;
  }

  .welcome-image img,
  .welcome-right img {
    height: 320px;
    min-height: 0;
  }

  .welcome-panel {
    order: 2;
  }

  .welcome-left {
    order: 1;
  }

  .welcome-right {
    order: 3;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .treatment-grid,
  .about-images {
    grid-template-columns: 1fr;
  }

  .about-detail {
    margin-bottom: 0 !important;
  }

  .about-wide img,
  .about-detail img {
    aspect-ratio: 4 / 3;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
