/* =========================================================
   Woodside Skin Clinic — shared styles
   ========================================================= */

:root {
  /* Brand palette */
  --aqua: #576C6F;          /* primary brand colour (was sage-dark) */
  --aqua-deep: #3f5255;     /* darker variant for hover/footer */
  --pale-green: #A4A792;    /* secondary brand colour (was sage) */
  --pale-pink: #F8EFEA;     /* warm background accent */
  --blue-grey: #C9CDCC;     /* lines, dividers, subtle UI */

  /* Semantic aliases — keep old names for compatibility */
  --sage: #576C6F;
  --sage-dark: #3f5255;
  --sage-light: #A4A792;
  --sage-faint: #e3e8e6;
  --cream: #F8EFEA;
  --cream-warm: #f0e4dc;
  --ink: #2d3835;
  --muted: #6b7572;
  --line: #C9CDCC;
  --sidebar-w: 340px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background-color: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* Subtle circular logo watermark — fixed in background, very low opacity */
body::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(85vw, 900px);
  height: min(85vw, 900px);
  transform: translate(-50%, -50%);
  background-image: url('logo-circle.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
/* Ensure all content sits above the watermark */
nav.site-nav, main, header.page-header, section, footer.site-footer {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--sage-dark);
  line-height: 1.15;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

a { color: var(--sage-dark); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.7; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== NAV ========== */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 239, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
nav.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
nav.site-nav .nav-logo img {
  height: 64px;
  display: block;
  mix-blend-mode: multiply;
}
nav.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
nav.site-nav ul a {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
}
nav.site-nav ul a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--sage);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  background: var(--sage);
  color: var(--cream);
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s, transform 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { background: var(--sage-dark); opacity: 1; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border: 1px solid var(--sage);
}
.btn-outline:hover { background: var(--sage); color: var(--cream); }
.btn-block { display: block; width: 100%; text-align: center; }

/* ========== SECTIONS ========== */
section { padding: 5rem 0; }
.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.section-heading { margin-bottom: 1rem; }
.section-intro {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ========== PAGE HEADER (interior pages) ========== */
.page-header {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 80% 30%, rgba(164, 167, 146, 0.18), transparent 60%),
    var(--cream);
}
.page-header h1 { margin-bottom: 0.8rem; }
.page-header p { color: var(--muted); font-size: 1.15rem; max-width: 640px; }

/* ========== FOOTER ========== */
footer.site-footer {
  background: var(--sage-dark);
  color: var(--cream);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
footer.site-footer .container { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
footer.site-footer h4 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
footer.site-footer p, footer.site-footer a { color: rgba(248, 239, 234, 0.8); font-size: 0.95rem; }
footer.site-footer a:hover { color: var(--cream); }
footer.site-footer ul { list-style: none; }
footer.site-footer li { margin-bottom: 0.6rem; }
.footer-logo {
  display: inline-block;
  margin-bottom: 1.2rem;
}
.footer-logo span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  line-height: 1;
}
.footer-logo .footer-logo-name {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.footer-logo .footer-logo-sub {
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  color: rgba(248, 239, 234, 0.7);
}
.footer-bottom {
  border-top: 1px solid rgba(248, 239, 234, 0.15);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(248, 239, 234, 0.6);
}
.footer-credentials {
  font-size: 0.82rem;
  color: rgba(248, 239, 234, 0.55);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}
.socials { display: flex; gap: 1rem; }
.socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 239, 234, 0.3);
  border-radius: 50%;
  transition: all 0.2s;
}
.socials a:hover { background: var(--cream); color: var(--sage-dark); }
.socials svg { width: 18px; height: 18px; }

/* ========== HOMEPAGE: hero + sidebar layout ========== */
.landing {
  min-height: calc(100vh - 77px); /* viewport minus nav */
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(164, 167, 146, 0.22), transparent 55%),
    radial-gradient(ellipse at 5% 90%, rgba(248, 239, 234, 0.55), transparent 50%),
    var(--cream);
}
.landing-hero {
  padding: 5rem 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: 0;
}
.landing-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.8rem;
  font-weight: 400;
}
.landing-eyebrow .dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--sage);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 0.7rem;
  position: relative;
  top: -2px;
}
.landing-hero h1 {
  margin-bottom: 1.8rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
}
.landing-hero h1 em {
  font-style: italic;
  color: var(--sage);
}
.landing-hero p.lede {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.landing-credentials {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  max-width: 600px;
}
.cred {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.cred-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1;
  height: 2.8rem;
  display: flex;
  align-items: flex-end;
  color: var(--sage-dark);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cred-num-text {
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.cred-num-small {
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 500;
}
.cred-plus {
  font-size: 1.4rem;
  vertical-align: super;
  margin-left: 2px;
  color: var(--sage);
  line-height: 1;
}
.cred-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}
.cred-divider {
  width: 1px;
  background: var(--line);
  align-self: stretch;
  min-height: 100px;
}

/* Hero banner photo - spans full width of hero side */
.hero-banner-fullwidth {
  margin: 3rem -4rem 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px -25px rgba(63, 82, 85, 0.35);
}
.hero-banner-fullwidth img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-banner-fullwidth::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(248, 239, 234, 0.12));
  pointer-events: none;
}

/* Treatment marks strip on homepage */
.treatment-marks {
  margin-top: 2.5rem;
  max-width: 100%;
}
.treatment-marks-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  font-weight: 400;
}
.treatment-marks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.treatment-mark {
  flex: 1 1 calc(20% - 0.7rem);
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(248, 239, 234, 0.5);
  color: var(--sage-dark);
  text-align: center;
  transition: all 0.25s;
}
.treatment-mark:hover {
  border-color: var(--sage);
  background: var(--cream-warm);
  transform: translateY(-2px);
  opacity: 1;
}
.treatment-mark svg {
  width: 28px;
  height: 28px;
  color: var(--sage);
}
.treatment-mark span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.3;
}

/* ========== BOOKING SIDEBAR ========== */
.booking-sidebar {
  background: var(--cream-warm);
  border-left: 1px solid var(--line);
  padding: 4rem 2.5rem 4rem;
  position: sticky;
  top: 77px;
  align-self: start;
  max-height: calc(100vh - 77px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.booking-sidebar h3 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}
.booking-sidebar p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 2rem;
}
.booking-sidebar .booking-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.8rem;
}
.booking-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.booking-list li {
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.96rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.booking-list li:last-child { border-bottom: none; }
.booking-list li > span:last-child {
  text-align: right;
}
.booking-list li small {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
  text-align: right;
  font-weight: 300;
}
.booking-sidebar .btn-block {
  padding: 1.1rem 2rem;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  box-shadow: 0 8px 24px -8px rgba(63, 82, 85, 0.45);
}
.brochure-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
  padding: 0.7rem 1rem;
  background: transparent;
  color: var(--sage-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.2s;
}
.brochure-link:hover {
  background: var(--cream-warm);
  border-color: var(--sage);
  color: var(--sage-dark);
  opacity: 1;
}
.brochure-link svg {
  flex-shrink: 0;
}
.booking-meta {
  margin-top: 2rem;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.booking-meta .label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.3rem;
}
.booking-meta .phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--sage-dark);
  display: block;
  margin-bottom: 0.5rem;
}

/* ========== CONCERNS GRID ========== */
.concerns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.concern-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-warm);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.3s;
  text-decoration: none;
}
.concern-card:hover {
  transform: translateY(-4px);
  border-color: var(--sage-light);
  opacity: 1;
  box-shadow: 0 20px 40px -20px rgba(63, 82, 85, 0.25);
}
.concern-card-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--cream);
}
.concern-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.concern-image-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(87, 108, 111, 0.08), rgba(164, 167, 146, 0.12)),
    var(--cream);
  position: relative;
}
.concern-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(87, 108, 111, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(164, 167, 146, 0.08) 0%, transparent 50%);
}
.concern-card:hover .concern-card-image img {
  transform: scale(1.05);
}
.concern-card-body {
  padding: 1.5rem 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.concern-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.concern-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}
.concern-link {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}
.concerns-cta {
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--cream-warm);
  border-radius: 4px;
  text-align: center;
}
.concerns-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
.concerns-cta a {
  color: var(--sage);
  border-bottom: 1px solid var(--sage);
}

/* ========== TREATMENT CARDS (treatments page) ========== */.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.treatment-card {
  background: var(--cream-warm);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.treatment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 1px;
  background: var(--sage);
  transition: width 0.4s;
}
.treatment-card:hover { transform: translateY(-4px); border-color: var(--sage-light); }
.treatment-card:hover::before { width: 100%; }
.treatment-card .icon {
  width: 48px; height: 48px;
  margin-bottom: 1.5rem;
  color: var(--sage);
}
.treatment-card h3 { margin-bottom: 0.8rem; }
.treatment-card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 1.2rem; }
.treatment-card .learn-more {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

/* ========== TREATMENT DETAIL BLOCKS ========== */
.treatment-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--line);
  align-items: start;
  scroll-margin-top: 110px;
}
.treatment-detail:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.treatment-detail-image {
  aspect-ratio: 4/5;
  background:
    linear-gradient(160deg, rgba(87, 108, 111, 0.15), rgba(248, 239, 234, 0.4)),
    var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  border-radius: 4px;
  overflow: hidden;
}
.treatment-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: 2rem;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(87, 108, 111, 0.04) 12px, rgba(87, 108, 111, 0.04) 24px);
}
.image-placeholder .placeholder-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--sage-dark);
  font-weight: 400;
}
.image-placeholder .placeholder-sub {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.treatment-detail h2 { margin-bottom: 1.5rem; }
.treatment-detail h4 {
  font-size: 1.05rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 1.5rem 0 0.6rem;
}
.treatment-detail p { margin-bottom: 1rem; }

/* ========== ABOUT PAGE ========== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.about-portrait {
  aspect-ratio: 4/5;
  background: var(--cream);
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(63, 82, 85, 0.25);
  position: sticky;
  top: 100px;
  overflow: hidden;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-text p { margin-bottom: 1.2rem; color: var(--ink); }
.about-text p.lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--sage-dark);
  margin-bottom: 2rem;
  line-height: 1.4;
}
.signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--sage);
  margin-top: 1.5rem;
}
.qualifications {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.qualifications h4 {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}
.qual-list { list-style: none; }
.qual-list li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.qual-list li strong { color: var(--ink); font-weight: 500; }

/* ========== PRICING ========== */
/* ========== PRICING (deck-style panel) ========== */
.pricing-panel {
  max-width: 820px;
  margin: 0 auto;
  background: var(--cream-warm);
  border-radius: 6px;
  padding: 3rem 3rem 2.5rem;
}
.pricing-panel-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid var(--line);
  text-align: left;
}
.pricing-table { max-width: 100%; margin: 0; }
.pricing-group { margin-bottom: 2.5rem; }
.pricing-group:last-child { margin-bottom: 0; }
.pricing-group h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--sage-dark);
  border-bottom: 1px solid var(--sage);
  padding-bottom: 0.5rem;
  font-weight: 400;
}
.pricing-group h3 .group-note {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-left: 0.6rem;
  font-weight: 300;
  vertical-align: middle;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--line);
  gap: 1.5rem;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row-note { opacity: 0.7; }
.pricing-name {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  font-family: 'Jost', sans-serif;
}
.pricing-name small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.15rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
}
.pricing-cost {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--sage-dark);
  font-weight: 500;
  font-style: italic;
  white-space: nowrap;
  flex-shrink: 0;
}
.pricing-row-note .pricing-cost {
  font-size: 0.95rem;
}

/* ========== TESTIMONIALS / RESULTS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial {
  padding: 2.5rem 2rem;
  background: var(--cream-warm);
  border-radius: 4px;
}
.testimonial .quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--sage-light);
  line-height: 0.6;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.result-pair { text-align: center; }
.result-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 1rem;
}
.result-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(87, 108, 111, 0.15), rgba(248, 239, 234, 0.4)), var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  border-radius: 2px;
  position: relative;
}
.result-img span {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(248, 239, 234, 0.9);
  padding: 2px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-family: 'Jost', sans-serif;
  font-style: normal;
}
.result-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
}

/* ========== FAQ ========== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--sage-dark);
  margin: 3rem 0 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 400;
  font-style: italic;
}
.faq-section-heading:first-child {
  margin-top: 0;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  cursor: pointer;
}
details summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--sage-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  font-size: 1.8rem;
  color: var(--sage);
  transition: transform 0.3s;
  font-weight: 300;
}
details[open] summary::after { transform: rotate(45deg); }
details p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 90%;
}
.faq-table-wrap {
  margin: 1.25rem 0 0.5rem;
  overflow-x: auto;
}
.faq-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--cream-warm);
  border-radius: 4px;
  overflow: hidden;
}
.faq-table thead {
  background: rgba(87, 108, 111, 0.08);
}
.faq-table th {
  text-align: left;
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  border-bottom: 1px solid var(--line);
}
.faq-table td {
  padding: 0.85rem 1rem;
  vertical-align: top;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
  line-height: 1.45;
}
.faq-table tbody tr:last-child td { border-bottom: none; }
.faq-table td:first-child {
  white-space: nowrap;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--sage-dark);
  font-size: 1rem;
}
.faq-table td:first-child strong {
  font-weight: 500;
}
.faq-table td:last-child {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.9rem;
}
.faq-note {
  font-style: italic;
  font-size: 0.88rem !important;
  color: var(--muted);
}
@media (max-width: 720px) {
  .faq-table { font-size: 0.82rem; }
  .faq-table th, .faq-table td { padding: 0.6rem 0.5rem; }
  .faq-table td:first-child, .faq-table td:last-child { white-space: normal; }
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
.contact-info p { margin-bottom: 1rem; color: var(--muted); }
.contact-detail {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.contact-detail .label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.3rem;
}
.contact-detail .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--ink);
}

form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 0.4rem;
}
input, textarea, select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1.5px solid var(--blue-grey);
  background: #FFFFFF;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--ink);
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:hover, textarea:hover, select:hover {
  border-color: var(--pale-green);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(87, 108, 111, 0.15);
}
input::placeholder, textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}
textarea { min-height: 140px; resize: vertical; }

label .optional {
  text-transform: none;
  letter-spacing: normal;
  color: var(--muted);
  font-weight: 300;
  font-style: italic;
}

.contact-detail-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.4rem;
  font-style: italic;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
  font-style: italic;
  line-height: 1.5;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.landing-eyebrow, .landing-hero h1, .landing-hero p.lede, .landing-credentials, .booking-sidebar > * {
  animation: fadeUp 0.9s ease-out backwards;
}
.landing-eyebrow { animation-delay: 0.05s; }
.landing-hero h1 { animation-delay: 0.15s; }
.landing-hero p.lede { animation-delay: 0.3s; }
.landing-credentials { animation-delay: 0.5s; }
.booking-sidebar > * { animation-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .concerns-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  nav.site-nav ul { display: none; }
  nav.site-nav .nav-logo img { height: 48px; }
  .landing { grid-template-columns: 1fr; min-height: auto; }
  .landing-hero { padding: 3.5rem 2rem; max-width: 100%; }
  .landing-credentials { gap: 1.5rem; }
  .cred-num { font-size: 2.2rem; }
  .cred-label { font-size: 0.7rem; letter-spacing: 0.14em; }
  .hero-banner-fullwidth { margin: 2rem -2rem 0; }
  .treatment-marks { margin-top: 2rem; }
  .treatment-marks-row { gap: 0.6rem; }
  .treatment-mark span { font-size: 0.7rem; letter-spacing: 0.05em; }
  .concerns-grid { grid-template-columns: 1fr; }
  .booking-sidebar {
    position: static;
    max-height: none;
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 3rem 2rem;
  }
  section { padding: 3.5rem 0; }
  .treatments-grid, .testimonials-grid, .results-grid { grid-template-columns: 1fr; }
  .treatment-detail, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-portrait { position: static; max-width: 400px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  footer.site-footer .container { grid-template-columns: 1fr; gap: 2rem; }
  .container { padding: 0 1.5rem; }
  .pricing-panel { padding: 2rem 1.5rem 1.75rem; }
  .pricing-name { font-size: 0.92rem; }
  .pricing-name small { font-size: 0.78rem; }
  .pricing-cost { font-size: 1.2rem; }
}

/* ========== TREATMENT PLANS (pricing + treatments pages) ========== */
.plans-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.plans-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 980px;
  margin: 0 auto;
}
.plan-card {
  background: var(--cream-warm);
  border-radius: 6px;
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  border: 0.5px solid transparent;
  transition: border-color 0.2s ease;
}
.plan-card:hover { border-color: var(--sage-light); }
.plan-card.plan-card-wide { grid-column: 1 / -1; }
.plan-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 0.85rem;
  margin-bottom: 1rem;
}
.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.55rem;
  color: var(--sage-dark);
  font-weight: 400;
  line-height: 1.15;
}
.plan-name .plan-for {
  display: block;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-top: 0.4rem;
}
.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--sage-dark);
  font-weight: 500;
  font-style: italic;
  white-space: nowrap;
  flex-shrink: 0;
}
.plan-price small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  text-align: right;
  margin-top: 0.15rem;
}
.plan-summary {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.plan-phase {
  margin-bottom: 0.9rem;
}
.plan-phase-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.plan-phase p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.plan-includes {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
}
.plan-note {
  max-width: 980px;
  margin: 2rem auto 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}
.pricing-bridge {
  max-width: 760px;
  margin: 4rem auto 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.pricing-bridge-large {
  font-size: 1.3rem;
}
@media (max-width: 720px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { padding: 1.5rem 1.5rem 1.35rem; }
  .plan-name { font-size: 1.35rem; }
  .plan-price { font-size: 1.3rem; }
}

/* ========== TIERED PLAN PRICING (scar, rejuvenation) ========== */
.plan-tiers {
  margin: 1rem 0 0.25rem;
  padding: 0.85rem 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
.plan-tier-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.plan-tier-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.3rem 0;
  font-size: 0.92rem;
}
.plan-tier-row + .plan-tier-row {
  border-top: 1px solid var(--line);
  margin-top: 0.15rem;
  padding-top: 0.5rem;
}
.plan-tier-name {
  color: var(--ink);
}
.plan-tier-name small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.1rem;
}
.plan-tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--sage-dark);
  white-space: nowrap;
  font-weight: 500;
}
.plan-tier-price small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  margin-top: 0.1rem;
}

/* ========================================================
   BOLD CARD TREATMENT — concern cards as sage "tiles",
   plan cards with sage header band. Pale-cream text on sage.
   ======================================================== */

/* CONCERN CARDS — solid sage, cream text, button-like */
.concern-card {
  background: var(--sage);
  border: none;
  border-radius: 4px;
  color: var(--cream);
  padding: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px -12px rgba(63, 82, 85, 0.35);
  overflow: hidden;
}
.concern-card:hover {
  background: var(--sage-dark);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -16px rgba(63, 82, 85, 0.5);
  border: none;
}
/* Image area visible — placeholder styled for sage card */
.concern-card-image {
  display: block;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--cream);
}
.concern-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.concern-image-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(248, 239, 234, 1), rgba(240, 228, 220, 1));
  position: relative;
}
.concern-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(87, 108, 111, 0.10) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(164, 167, 146, 0.12) 0%, transparent 55%);
}
.concern-card:hover .concern-card-image img {
  transform: scale(1.05);
}
.concern-card-body {
  padding: 1.6rem 1.6rem 1.55rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.7rem;
}
.concern-card h3 {
  color: var(--cream);
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.01em;
}
.concern-card p {
  color: var(--cream);
  opacity: 0.88;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.concern-card .concern-link {
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.4rem;
  display: inline-block;
  border-bottom: 1px solid rgba(248, 239, 234, 0.45);
  padding-bottom: 0.2rem;
  align-self: flex-start;
  transition: border-color 0.2s;
}
.concern-card:hover .concern-link {
  border-bottom-color: var(--cream);
}

/* PLAN CARDS — sage header band, cream-warm body, stronger shadow */
.plan-card {
  background: var(--cream-warm);
  border: none;
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px -14px rgba(63, 82, 85, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -16px rgba(63, 82, 85, 0.45);
  border: none;
}
.plan-card-head {
  background: var(--sage);
  color: var(--cream);
  padding: 1.5rem 1.75rem 1.35rem;
  border-bottom: none;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.plan-card-head .plan-name {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.15;
}
.plan-card-head .plan-name .plan-for {
  color: var(--cream);
  opacity: 0.82;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  letter-spacing: 0.16em;
}
.plan-card-head .plan-price {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1.5rem;
}
.plan-card-head .plan-price small {
  color: var(--cream);
  opacity: 0.82;
  font-family: 'Jost', sans-serif;
  font-style: normal;
}
/* Body padding restored under the header */
.plan-card > .plan-summary,
.plan-card > .plan-phase,
.plan-card > .plan-tiers,
.plan-card > .plan-includes {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.plan-card > .plan-summary {
  padding-top: 1.25rem;
}
.plan-card > .plan-includes {
  padding-bottom: 1.5rem;
}

@media (max-width: 720px) {
  .plan-card-head {
    padding: 1.25rem 1.4rem 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .plan-card-head .plan-price { text-align: left; }
  .plan-card-head .plan-price small { text-align: left; }
  .plan-card > .plan-summary,
  .plan-card > .plan-phase,
  .plan-card > .plan-tiers,
  .plan-card > .plan-includes {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }
  .concern-card-body { padding: 1.4rem 1.3rem 1.35rem; }
}
