:root {
  --gold: #bc860e;
  --ink: #151515;
  --muted: #626262;
  --wash: #f7f7f5;
  --line: #e9e7e2;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.container {
  width: min(1120px, calc(100% - 32px));
  margin: auto;
}
.site-header {
  height: 96px;
  background: #efefeb;
  border-top: 3px solid #111;
  border-bottom: 3px solid #111;
  color: #111;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
  position: relative;
  padding-left: 8px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.1rem, 2vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #111;
  min-width: 270px;
  margin-left: 6px;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.brand span {
  color: #111;
}
.brand .brand-accent,
.eyebrow,
.gold {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-size: 1.1rem;
  font-weight: 500;
  color: #111;
}
.nav-links a {
  color: #1b1b1b;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--gold);
}
.button {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
  transition: filter 0.2s ease, color 0.2s ease;
}
.button:hover,
.button:focus,
.nav-book-button:hover,
.nav-book-button:focus {
  color: #ffffff;
  filter: brightness(1.05);
}
.nav-book-button {
  min-width: 175px;
  text-align: center;
  padding: 16px 28px;
  font-size: 1.05rem;
  border-radius: 999px;
  color: #fff;
}
.button-outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.menu-button {
  display: none;
  background: none;
  border: 0;
  color: #111;
  font-size: 1.4rem;
}
.hero,
.page-hero {
  color: #fff;
  display: grid;
  align-items: center;
  position: relative;
  background: #222 center/cover no-repeat;
}
.hero {
  min-height: 590px;
}
.hero:before,
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28));
}
.hero .container,
.page-hero .container {
  position: relative;
}

/* Outline buttons on dark hero backgrounds should be visible */
.hero .button-outline,
.page-hero .button-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.32);
  background: transparent;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.hero .button-outline:hover,
.page-hero .button-outline:hover,
.hero .button-outline:focus,
.page-hero .button-outline:focus {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.56);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.05;
  max-width: 760px;
  margin-bottom: 20px;
  color: #fff;
}
.hero p {
  max-width: 590px;
  color: #fff;
  font-size: 1.08rem;
}
.hero .eyebrow {
  color: #fff;
}
.hero-actions,
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.section {
  padding: 78px 0;
}
.section-wash {
  background: var(--wash);
}
.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.section-heading {
  max-width: 680px;
  margin-bottom: 36px;
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 7px 0 12px;
}
.muted {
  color: var(--muted);
}
.grid {
  display: grid;
  gap: 22px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}
.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body {
  padding: 22px;
}
.card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.card p {
  font-size: 0.94rem;
  color: var(--muted);
}
.pill {
  display: inline-block;
  padding: 5px 9px;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  background: #fbf5e0;
  color: var(--gold);
  font-weight: 700;
}

/* Improved Explore treatment link used on featured treatment cards */
.card .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(188, 134, 14, 0.12);
  background: linear-gradient(180deg, rgba(214, 153, 20, 0.04), transparent);
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease, color 0.14s ease;
}
.card .explore-link::after {
  content: "\00BB"; /* » */
  font-size: 1.05rem;
  line-height: 1;
}
.card .explore-link:hover,
.card .explore-link:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(188, 134, 14, 0.12);
  background: var(--gold);
  color: #0f0a0a;
}
.card .explore-link:hover::after,
.card .explore-link:focus::after {
  color: #fff;
}

/* Local serving / contact section */
.local-cta {
  background: linear-gradient(180deg, rgba(188,134,14,0.04), rgba(247,247,245,0.6));
  border: 1px solid var(--line);
  padding: 40px 0;
  border-radius: 14px;
  margin-top: 28px;
}
.local-cta .local-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: center;
}
.local-cta h3 {
  margin: 0 0 8px 0;
  font-size: 1.6rem;
}
.local-cta p.lead {
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.local-cta .local-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.local-cta .address {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.local-cta .areas {
  color: var(--muted);
  font-size: 0.95rem;
}
@media (max-width: 880px) {
  .local-cta .local-inner { grid-template-columns: 1fr; }
  .local-cta { padding: 28px 0; }
}

/* Testimonials / Reviews */
.reviews .section-heading { text-align: center; margin: 0 auto 36px; max-width: 820px; }
.review-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.review-card {
  background: #fbfcfc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}
.review-card .stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.review-card blockquote {
  margin: 0 0 18px 0;
  font-style: italic;
  color: var(--muted);
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.review-name { font-weight: 700; }
.review-sub { color: var(--muted); font-size: 0.9rem; }
@media (max-width: 880px) {
  .review-grid { grid-template-columns: 1fr; }
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  border-block: 1px solid var(--line);
  padding: 35px 0;
}
.stats strong {
  display: block;
  font-size: 2rem;
  color: var(--gold);
}
.feature,
.detail {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  margin: 12px 0;
}
.cta {
  padding: 70px 0;
  background: linear-gradient(120deg, #151515, #49380d);
  color: #fff;
  text-align: center;
}
.page-hero {
  padding: 100px 0 80px;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.1;
  margin: 8px 0;
}
.filter {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
}
.filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.treatment-card {
  height: 100%;
}
.treatment-card .meta {
  display: flex;
  justify-content: space-between;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: bold;
}
.detail {
  scroll-margin-top: 95px;
  padding: 38px;
}
.detail h2 {
  font-size: 2rem;
  line-height: 1.15;
}
.faq {
  border-top: 1px solid var(--line);
}
.faq button {
  border: 0;
  background: none;
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}
.faq p {
  display: none;
  color: var(--muted);
  margin-bottom: 18px;
}
.faq.open p {
  display: block;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.portrait {
  border-radius: 18px;
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full {
  grid-column: 1/-1;
}
label {
  font-size: 0.82rem;
  font-weight: bold;
  display: block;
}
input,
textarea {
  width: 100%;
  border: 1px solid #d8d5cf;
  border-radius: 10px;
  padding: 12px;
  margin-top: 5px;
  font: inherit;
}
textarea {
  min-height: 120px;
}
.site-footer {
  position: relative;
  overflow: hidden;
  background: #11110f;
  color: #b8b7b2;
  padding: 0;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Footer background logo (keeps logo visible without extra text) */
.site-footer {
  background-image: url("assets/logo.png");
  background-repeat: no-repeat;
  background-position: 18px calc(100% - 42px);
  background-size: 48px 48px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 1.05fr 0.8fr 0.95fr;
  gap: 30px;
  padding: 64px 0 46px;
}
.footer-brand { max-width: 300px; }
.footer-brand .brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 15px; color: #fff; font-size: 1.25rem; letter-spacing: -0.03em; }
.footer-brand .brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; border: 2px solid rgba(188,134,14,0.9); background: #fff; padding: 4px; }
.footer-brand .brand span { font-weight: 700; }

/* Ensure the specific footer 'Aesthetics' word is white */
.footer-brand .brand .footer-accent { color: #fff; }

/* Ensure brand words stay on the same line (prevent stacking) */
.footer-brand .brand {
  white-space: nowrap;
}
.footer-brand .brand span {
  display: inline-block;
}
.footer-brand p { margin-bottom: 20px; font-size: 0.94rem; line-height: 1.75; }
.footer-kicker { margin: 0 0 10px; color: var(--gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer h3 { color: #fff; margin: 0 0 15px; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.site-footer a { color: inherit; transition: color 0.2s ease, transform 0.2s ease; }
.footer-column a { margin: 5px 0; font-size: 0.9rem; }
.footer-social a { white-space: nowrap; }
.site-footer a:hover, .site-footer a:focus-visible { color: #fff; }
.footer-column a:hover { transform: translateX(3px); }
.footer-contact a { line-height: 1.5; }
.footer-book { margin-top: 14px; border: 1px solid var(--gold); border-radius: 999px; padding: 9px 16px; color: #fff !important; font-size: 0.8rem !important; font-weight: 700; }
.footer-book:hover { background: var(--gold); transform: none !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #302f2b; padding: 18px 0 22px; color: #85847f; font-size: 0.78rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a { text-decoration: underline; text-decoration-color: #5a5953; text-underline-offset: 3px; }
.copyright { margin: 0; }
@media (max-width: 760px) {
  .menu-button {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #151515;
    padding: 18px 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .grid-3,
  .grid-2,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .hero {
    min-height: 520px;
  }
  .section {
    padding: 58px 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}
/* Responsive refinements for every static page */
body {
  overflow-x: hidden;
}
.page-hero {
  min-height: 410px;
  background-position: center;
}
.page-hero p {
  max-width: 680px;
  color: #f1f1f1;
  font-size: 1.05rem;
}
.site-header a {
  white-space: nowrap;
}
.card-image {
  aspect-ratio: 4/3;
  height: auto;
}
.card {
  min-width: 0;
}
.feature,
.detail {
  min-width: 0;
}
.button {
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.button:hover {
  transform: translateY(-1px);
  background: #9e6f0b;
}
@media (max-width: 900px) {
  .nav-links {
    gap: 14px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }
  .page-hero {
    padding: 82px 0 64px;
    min-height: 360px;
  }
  .portrait {
    height: 360px;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }
  .site-header {
    height: 64px;
  }
  .nav-links {
    top: 64px;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
    gap: 0;
  }
  .nav-links a {
    width: 100%;
    padding: 11px 0;
  }
  .nav-links .button {
    width: auto;
    margin-top: 8px;
  }
  .hero {
    min-height: 540px;
    background-position: center;
  }
  .hero h1 {
    font-size: 2.45rem;
  }
  .hero p,
  .page-hero p {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .button {
    text-align: center;
  }
  .page-hero {
    min-height: 330px;
    padding: 66px 0 48px;
  }
  .page-hero h1 {
    font-size: 2.25rem;
  }
  .section {
    padding: 46px 0;
  }
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .grid-2 {
    gap: 16px;
  }
  .stats {
    padding: 28px 0;
    gap: 16px;
  }
  .stats strong {
    font-size: 1.55rem;
  }
  .card-body {
    padding: 18px;
  }
  .detail,
  .feature {
    padding: 20px;
  }
  .detail {
    padding: 24px;
  }
  .detail h2 {
    font-size: 1.65rem;
  }
  .filters {
    margin-top: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }
  .filter {
    white-space: nowrap;
  }
  .portrait {
    height: 280px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-grid {
    gap: 18px;
  }
  .form-grid {
    gap: 12px;
  }
  input,
  textarea {
    font-size: 16px;
  }
}
.treatment-price {
  display: inline-block;
  margin: 0 0 20px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fbf5e0;
  color: #7e5700;
}
.treatment-price strong {
  color: #151515;
}
/* Shared navigation and motion */
.site-header {
  height: 76px;
  min-height: 76px;
}
.nav-wrap {
  height: 100%;
}
.nav-links {
  height: 100%;
}
.nav-links > a:not(.button) {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.nav-book-button {
  padding: 10px 18px !important;
}
.menu-button {
  height: 40px;
  min-width: 60px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.card {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}
.card-image {
  transition: transform 0.5s ease;
}
.card:hover .card-image {
  transform: scale(1.04);
}
.card {
  overflow: hidden;
}
.page-hero h1,
.hero h1 {
  animation: hero-enter 0.7s ease both;
}
.page-hero p,
.hero p {
  animation: hero-enter 0.7s 0.12s ease both;
}
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 640px) {
  .site-header {
    height: 64px;
    min-height: 64px;
  }
  .nav-links {
    height: auto;
  }
  .nav-links > a:not(.button) {
    height: auto;
  }
  .menu-button {
    height: 38px;
  }
  .nav-book-button {
    padding: 10px 18px !important;
  }
}
.gallery-hero {
  position: relative;
  min-height: 635px;
  display: grid;
  align-items: center;
  color: #fff;
  background-color: #171717;
  background-position: center;
  background-size: cover;
}
.gallery-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.3));
}
.gallery-hero .container {
  position: relative;
  z-index: 1;
}
.gallery-hero h1 {
  max-width: 760px;
  margin: 10px 0 30px;
  font-size: clamp(3.4rem, 6vw, 5.7rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.gallery-hero p:not(.eyebrow) {
  max-width: 660px;
  font-size: 1.25rem;
  color: #e1e1e1;
}
.gallery-results {
  background: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.gallery-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.gallery-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.14);
}
.gallery-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #ececec;
}
.gallery-media img,
.gallery-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-card:hover .gallery-media img {
  transform: scale(1.05);
}
.gallery-card figcaption {
  padding: 20px 24px 23px;
}
.gallery-card h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  line-height: 1.25;
}
.gallery-card p {
  margin: 0;
  color: #657084;
  font-size: 1rem;
}
.gallery-video video {
  display: block;
}
@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .gallery-hero {
    min-height: 520px;
  }
}
@media (max-width: 700px) {
  .gallery-hero {
    min-height: 440px;
  }
  .gallery-hero h1 {
    font-size: 3rem;
    margin-bottom: 18px;
  }
  .gallery-hero p:not(.eyebrow) {
    font-size: 1rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .gallery-card {
    border-radius: 18px;
  }
  .gallery-card figcaption {
    padding: 15px;
  }
  .gallery-card h3 {
    font-size: 1rem;
  }
  .gallery-card p {
    font-size: 0.9rem;
  }
}
@media (max-width: 390px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Keep the site navigation identical on every page, including treatments. */
body > .site-header {
  height: 76px !important;
  min-height: 76px !important;
  width: 100%;
}
.site-header .nav-wrap {
  height: 76px !important;
}
.site-header .brand {
  line-height: 1;
}
.site-header .nav-links {
  height: 76px !important;
  align-items: center;
}
.site-header .nav-links > a {
  box-sizing: border-box;
}
@media (max-width: 640px) {
  body > .site-header,
  .site-header .nav-wrap {
    height: 64px !important;
    min-height: 64px !important;
  }
  .site-header .nav-links {
    height: auto !important;
  }
}
.partner-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  color: #fff;
  background-color: #111;
  background-size: cover;
  background-position: center;
}
.partner-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.26));
}
.partner-hero .container {
  position: relative;
  z-index: 1;
}
.network-badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 15px;
  border: 1px solid rgba(188, 134, 14, 0.55);
  border-radius: 999px;
  background: rgba(188, 134, 14, 0.16);
  color: #f0c040;
  font-size: 0.88rem;
  font-weight: 700;
}
.partner-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.08;
}
.partner-hero p {
  max-width: 720px;
  margin: 0;
  color: #e4e4e4;
  font-size: 1.12rem;
}
.partner-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f8f8f7;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.04);
}
.partner-card h2 {
  margin: 12px 0;
  font-size: 2rem;
}
.partner-card p {
  margin: 0;
  color: var(--muted);
}
.partner-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: #fbf5e0;
  color: var(--gold);
  font-size: 1.9rem;
  font-weight: 700;
}
.partner-cta {
  padding: 78px 0;
  background: var(--gold);
  color: #fff;
  text-align: center;
}
.partner-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}
.partner-cta p {
  margin: 0 auto 26px;
  max-width: 680px;
  font-size: 1.1rem;
}
.partner-button {
  background: #fff;
  color: #9e6f0b;
}
.partner-button:hover {
  background: #f5f5f5;
}
@media (max-width: 640px) {
  .partner-hero {
    min-height: 430px;
  }
  .partner-card {
    padding: 25px;
  }
  .partner-cta {
    padding: 55px 0;
  }
}
.blog-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
  color: #fff;
  background-color: #151515;
  background-size: cover;
  background-position: center;
}
.blog-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35));
}
.blog-hero .container {
  position: relative;
  z-index: 1;
}
.blog-hero h1 {
  max-width: 950px;
  margin: 0 0 18px;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.08;
}
.blog-hero > .container > p {
  max-width: 760px;
  color: #e5e5e5;
  font-size: 1.1rem;
}
.blog-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}
.blog-points article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.28);
}
.blog-points h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.blog-points p {
  margin: 0;
  color: #dedede;
  font-size: 0.9rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.blog-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--wash);
}
.blog-card img {
  display: block;
  width: 100%;
  height: 220px;
  margin: 0 0 20px;
  border-radius: 16px;
  object-fit: cover;
}
.blog-card h2 {
  font-size: 1.6rem;
  line-height: 1.2;
}
.blog-card p,
.blog-article p {
  color: var(--muted);
}
.blog-article {
  width: min(850px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}
.blog-feature-image {
  display: block;
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  margin: 28px 0 12px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}
.blog-article > section {
  margin: 42px 0;
}
.blog-article h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.2;
}
.blog-intro {
  font-size: 1.2rem;
  line-height: 1.75;
}
.blog-post-hero {
  min-height: 440px;
}
.blog-post-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}
@media (max-width: 760px) {
  .blog-hero {
    min-height: 450px;
  }
  .blog-points,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-points {
    margin-top: 25px;
  }
  .blog-post-hero {
    min-height: 390px;
  }
  .blog-article {
    padding: 48px 0;
  }
}
.about-hero {
  position: relative;
  min-height: 715px;
  display: grid;
  align-items: center;
  color: #fff;
  background-color: #111;
  background-size: cover;
  background-position: center;
}
.about-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.28));
}
.about-hero .container {
  position: relative;
  z-index: 1;
}
.about-hero h1 {
  margin: 15px 0 28px;
  font-size: clamp(3.3rem, 6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.about-hero h1 span {
  color: var(--gold);
}
.about-hero > .container > p:not(.eyebrow) {
  max-width: 790px;
  margin: 0;
  color: #e4e4e4;
  font-size: 1.12rem;
  line-height: 1.75;
}
.about-pillar {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fafafa;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
}
.about-pillar h2 {
  font-size: 1.3rem;
  margin: 15px 0 8px;
}
.about-pillar p {
  margin: 0;
  color: var(--muted);
}
.pillar-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  background: #fff6dc;
  border: 1px solid #f0dfad;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 700;
}
.about-foundation {
  background: #f5f5f4;
}
.foundation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.foundation-grid h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.12;
}
.foundation-grid p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}
.foundation-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.foundation-points div {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}
.foundation-points div:before {
  content: "";
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  margin-right: 12px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.72rem;
}
.center-heading {
  text-align: center;
  margin-bottom: 48px;
}
.center-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  margin: 8px 0;
}
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.milestone-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fafafa;
}
.milestone-card span {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.25em;
}
.milestone-card p {
  margin: 18px 0 0;
  color: #26364b;
  font-size: 1.05rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.08);
}
.team-card > img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}
.team-card-content {
  padding: 24px;
}
.team-card h3 {
  margin: 0;
  font-size: 1.35rem;
}
.team-card-content span {
  display: block;
  margin: 4px 0 15px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}
.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}
@media (max-width: 760px) {
  .about-hero {
    min-height: 590px;
  }
  .about-hero h1 {
    font-size: 3.15rem;
  }
  .about-hero > .container > p:not(.eyebrow) {
    font-size: 1rem;
  }
  .foundation-grid,
  .team-grid,
  .milestone-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .foundation-points {
    gap: 12px;
  }
  .about-pillar {
    padding: 24px;
  }
  .team-card > img {
    height: 390px;
  }
  .center-heading {
    margin-bottom: 32px;
  }
}

/* Treatment navigation and contact page */
.treatment-nav { position: relative; height: 100%; display: flex; align-items: center; }
.treatment-nav-trigger { height: 100%; padding: 0; border: 0; background: transparent; color: inherit; font: inherit; cursor: pointer; }
.treatment-nav-trigger::after { content: none; }
.treatment-menu { position: absolute; z-index: 20; top: calc(100% - 7px); left: -18px; display: none; width: 260px; padding: 10px; border: 1px solid #2d2d2d; border-radius: 12px; background: #1a1a1a; box-shadow: 0 16px 32px rgba(0,0,0,.3); }
.treatment-nav:hover .treatment-menu, .treatment-nav:focus-within .treatment-menu, .treatment-nav.is-open .treatment-menu { display: block; }
.treatment-menu a { display: block; padding: 9px 10px; border-radius: 7px; color: #f5f5f5; font-size: .85rem; }
.treatment-menu a:hover, .treatment-menu a:focus { background: #303030; color: #fff; }
.treatment-menu .all-treatments-link { margin-top: 6px; padding-top: 14px; border-top: 1px solid #373737; border-radius: 0; color: #e4ae3e; font-weight: 700; }
.treatments-hero { background-position: center 42%; }
.contact-hero { background-position: center; }
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.contact-card { padding: 30px; border: 1px solid var(--line); border-radius: 17px; background: var(--wash); }
.contact-card h2 { margin-bottom: 10px; font-size: 1.25rem; }
.contact-card p { min-height: 76px; color: var(--muted); }
.contact-icon { display: grid; place-items: center; width: 45px; height: 45px; margin-bottom: 18px; border-radius: 50%; background: #fbf5e0; color: var(--gold); font-size: 1.35rem; }
.opening-hours dl { margin: 0 0 20px; }
.opening-hours dl div { display: flex; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.opening-hours dt { font-weight: 700; }.opening-hours dd { margin: 0; color: var(--muted); }
.contact-form-layout, .faq-section { max-width: 850px; }.contact-form { padding: 30px; border: 1px solid var(--line); border-radius: 17px; background: var(--wash); }.form-note { margin: 18px 0; color: var(--muted); font-size: .82rem; }
.contact-social { padding-top: 0; }.contact-social-links { display: flex; flex-wrap: wrap; gap: 12px; }.contact-social-links a { display: inline-flex; align-items: center; min-height: 44px; padding: 10px 17px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); font-weight: 700; }.contact-social-links a:hover, .contact-social-links a:focus-visible { border-color: var(--gold); color: var(--gold); }
@media (max-width: 760px) { .contact-cards { grid-template-columns: 1fr; }.contact-card p { min-height: 0; } }
@media (max-width: 640px) { .treatment-nav { display: block; width: 100%; height: auto; }.treatment-nav-trigger { width: 100%; height: auto; padding: 11px 0; text-align: left; }.treatment-menu { position: static; width: 100%; margin: 0 0 8px; box-shadow: none; } }
/* Responsive layout refinements */
@media (max-width: 1024px) {
  .site-header, .site-header .nav-wrap { height: 70px; min-height: 70px; }
  .brand { min-width: 0; }
  .menu-button { display: grid; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    height: auto;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    padding: 14px 24px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #efefeb;
    border: 1px solid rgba(17,17,17,0.12);
    box-shadow: 0 14px 24px rgba(0,0,0,.12);
    z-index: 30;
  }
  .nav-links.open { display: flex; }
  .nav-links > a:not(.button) { display: block; width: 100%; height: auto; padding: 11px 0; font-size: 1rem; }
  .nav-links .button { align-self: flex-start; margin-top: 10px; }
  .treatment-nav { display: block; width: 100%; height: auto; }
  .treatment-nav-trigger { width: 100%; height: auto; padding: 11px 0; text-align: left; }
  .treatment-menu { position: static; width: 100%; margin: 0 0 8px; box-shadow: none; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { gap: 28px; }
  .foundation-grid { gap: 42px; }
}
@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 52px 0; }
  .page-hero { min-height: 320px; padding: 72px 0 52px; }
  .page-hero h1, .blog-hero h1, .about-hero h1 { font-size: clamp(2.2rem, 11vw, 3.1rem); }
  .grid-3, .grid-2, .split, .contact-cards, .foundation-grid, .team-grid, .milestone-grid, .blog-grid, .blog-points { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-card, .contact-form, .detail { padding: 22px; }
  .card-body { padding: 18px; }
  .team-card > img { height: min(105vw, 420px); }
  .portrait { height: min(92vw, 360px); }
  .opening-hours dl div { align-items: flex-start; flex-direction: column; gap: 2px; }
  .filters { margin-inline: -2px; padding-inline: 2px; }
  .blog-article { padding-inline: 0; }
}
@media (max-width: 420px) {
  .site-header, .site-header .nav-wrap { height: 64px; min-height: 64px; }
  .nav-links { top: 64px; max-height: calc(100vh - 64px); padding-inline: 14px; }
  .brand { font-size: 1.08rem; }
  .foundation-points, .stats { grid-template-columns: 1fr; }
  .hero-actions .button, .contact-form .button { width: 100%; text-align: center; }
  .treatment-menu a { white-space: normal; }
}
@media (hover: none) { .card:hover { transform: none; box-shadow: 0 8px 25px rgba(0,0,0,.04); }.card:hover .card-image { transform: none; } }
/* Mobile navigation toggle */
@media (max-width: 1024px) {
  .menu-button { position: relative; display: grid; width: 44px; min-width: 44px; height: 44px; place-items: center; padding: 0; border: 1px solid rgba(17,17,17,.25); border-radius: 9px; color: transparent; background: rgba(255,255,255,.3); }
  .menu-button::before, .menu-button::after { content: ""; position: absolute; width: 19px; height: 2px; border-radius: 2px; background: #111; transition: transform .2s ease, top .2s ease, box-shadow .2s ease; }
  .menu-button::before { top: 15px; box-shadow: 0 6px 0 #111, 0 12px 0 #111; }
  .menu-button::after { top: 27px; opacity: 0; }
  .menu-button.is-open::before { top: 20px; box-shadow: none; transform: rotate(45deg); }
  .menu-button.is-open::after { top: 20px; opacity: 1; transform: rotate(-45deg); }
  .menu-button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
}
/* Shared content for individual treatment pages */
.treatment-information .section-heading { max-width: 720px; }
.treatment-benefits { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.treatment-benefits article { padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.treatment-benefits h3 { margin: 0 0 10px; font-size: 1.12rem; }
.treatment-benefits h3::before { content: ""; display: inline-block; width: 9px; height: 9px; margin: 0 10px 1px 0; border-radius: 50%; background: var(--gold); }
.treatment-benefits p, .treatment-more-information p { color: var(--muted); }
.treatment-more-information h2 { max-width: 630px; font-size: clamp(2rem, 3.8vw, 3.1rem); line-height: 1.15; }
.treatment-steps { display: grid; gap: 14px; }
.treatment-steps div { display: flex; align-items: center; gap: 16px; padding: 19px; border: 1px solid var(--line); border-radius: 14px; background: var(--wash); }
.treatment-steps strong { color: var(--gold); font-size: 1.25rem; }.treatment-steps span { font-weight: 700; }
.treatment-faq-list { max-width: 850px; }
.treatment-faq-list .faq button { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.treatment-faq-list .faq button::after { content: "+"; color: var(--gold); font-size: 1.35rem; font-weight: 400; }.treatment-faq-list .faq.open button::after { content: "−"; }
@media (max-width: 1024px) { .treatment-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px) { .treatment-benefits { grid-template-columns: 1fr; }.treatment-benefits article { padding: 21px; }.treatment-steps div { padding: 16px; } }
/* Footer layout overrides */
@media (max-width: 760px) {
  .footer-main { grid-template-columns: 1fr; gap: 30px; padding: 48px 0 36px; }
  .footer-bottom { flex-direction: column; gap: 9px; }
}
@media (max-width: 640px) {
  .site-footer { padding-top: 0; }
  .footer-main { padding-top: 44px; }
}
