@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --ink: #0A1B36;
  --muted: #3E5170;
  --bg: #F6F7FA;
  --bg-deep: #E7EAF1;
  --line: rgba(15, 51, 117, 0.16);
  --accent: #2E56A0;
  --accent-dark: #0F3375;
  --accent-soft: #E7EAF1;
  --gold: #C9A66B;
  --gold-dark: #A8843F;
  --primary-link: #0F3375;
  --serif: 'Libre Baskerville', Georgia, serif;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 2px;
  font-size: 17px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary-link); text-decoration: none; }
a:hover { color: var(--ink); }

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

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; margin: 0; color: var(--ink); }

main { display: block; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* Header / nav */

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(246, 247, 250, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  flex-wrap: wrap;
}

.brand img { height: 38px; width: auto; margin: 0; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
  flex-wrap: wrap;
}
.nav-links a { text-decoration: none; position: relative; padding-bottom: 3px; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent-dark);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  order: 2;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-open span:nth-child(2) { opacity: 0; }
.nav-toggle-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.phone {
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
  color: var(--ink);
  font-weight: 600;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  white-space: nowrap;
  border: 1px solid var(--accent-dark);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary { background: var(--accent-dark); color: #fff; border-color: var(--accent-dark); }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: #fff; }

.btn-small { padding: 6px 14px; font-size: 0.85rem; }
.btn-block { display: block; width: 100%; }
.btn-large { padding: 16px 20px; font-size: 1.1rem; }

/* Section shell (shared rhythm across every content section) */

.section { padding: 64px 0; border-top: 1px solid var(--line); }
.section:first-of-type { border-top: none; }

.kicker {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--accent-dark);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.section-head p { color: var(--muted); max-width: 52ch; margin: 0; }

/* Hero (home page) */

.hero { padding: 56px 0 64px; border-top: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); margin-bottom: 18px; }
.hero h1 i { font-style: italic; color: var(--accent-dark); }
.hero-lede { font-size: 1.05rem; color: var(--muted); max-width: 44ch; margin: 0 0 26px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { display: flex; gap: 22px; flex-wrap: wrap; font-size: 0.85rem; color: var(--muted); list-style: none; margin: 0; padding: 0; }
.hero-meta li { display: flex; align-items: center; gap: 8px; }
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-dark); flex: none; display: inline-block; }

.hero-art {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero-art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,27,54,0) 45%, rgba(10,27,54,0.75) 100%);
}
.hero-art-label {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 1;
  color: #fff; font-family: var(--serif); font-style: italic; font-size: 1.05rem;
}

/* Page intro (inner pages: treatment / about / team / faq / contact) */

.page-intro { padding: 48px 0 8px; }
.page-intro .kicker { margin-bottom: 10px; }
.page-intro h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 12px; }
.page-intro .lede { color: var(--muted); max-width: 60ch; margin: 0; font-size: 1rem; }

/* Treatment category grid (home page) */

.treat-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.treat-cat { padding: 32px; border-right: 1px solid var(--line); }
.treat-cat:last-child { border-right: none; }
.treat-cat .sub { display: block; color: var(--accent-dark); font-size: 0.82rem; font-weight: 600; margin-bottom: 18px; }
.treat-cat h3 { font-size: 1.25rem; margin-bottom: 4px; }
.treat-list { list-style: none; margin: 0; padding: 0; }
.treat-list li { border-top: 1px solid var(--line); }
.treat-list li:first-child { border-top: none; }
.treat-list a {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 13px 0; color: var(--ink); font-weight: 600; font-size: 0.96rem;
}
.treat-list a .arrow { color: var(--accent-dark); font-weight: 400; }
.treat-list a:hover { color: var(--accent-dark); }
.treat-list li small { display: block; color: var(--muted); font-size: 0.82rem; font-weight: 400; padding: 0 0 12px; }

/* Treatment detail cards (treatment pages) */

.treatment { padding: 22px 0; border-top: 1px solid var(--line); }
.treatment:first-of-type { border-top: none; }
.treatment h2 { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; font-size: 1.2rem; }
.price { color: var(--gold-dark); font-weight: 600; white-space: nowrap; font-size: 0.95rem; }
.sub-prices { color: var(--muted); font-size: 0.9rem; margin: 6px 0 0; }

.treatment-img { border-radius: var(--radius); margin-bottom: 10px; max-height: 280px; width: 100%; object-fit: cover; }
.img-caption { font-size: 0.8rem; color: var(--muted); text-align: center; margin: -6px 0 10px; font-style: italic; }

.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 16px 0; }
.gallery img { border-radius: var(--radius); }

.prep-list, .award-list, .policy-list { margin: 12px 0 20px; padding-left: 20px; color: var(--muted); }
.prep-list li, .award-list li, .policy-list li { margin-bottom: 6px; }

.promo-note { color: var(--muted); font-style: italic; margin: -8px 0 12px; }

blockquote { border-left: 3px solid var(--gold); margin: 20px 0; padding-left: 14px; color: var(--muted); font-style: italic; }

.award-img { max-width: 140px; margin: 8px 0 20px; }

/* About-style two-column section (About page, Home "about preview") */

.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.about-art { aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; }
.about-art img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .role { display: block; color: var(--accent-dark); font-weight: 600; font-size: 0.88rem; margin-bottom: 16px; }
.about-copy p { color: var(--muted); margin: 0 0 16px; max-width: 56ch; }
.cred-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.cred-list li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--ink); padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.cred-list li::before { content: "—"; color: var(--gold-dark); flex: none; }

/* Team cards */

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { padding: 26px 22px; background: #fff; border: 1px solid var(--line); text-align: center; }
.team-card img { width: 84px; height: 84px; object-fit: cover; border-radius: 50%; margin: 0 auto 16px; }
.team-card h2 { font-size: 1.1rem; margin-bottom: 6px; }
.team-card .role { display: block; color: var(--accent-dark); font-weight: 600; font-size: 0.82rem; margin-bottom: 10px; }
.team-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* Testimonials */

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { padding: 24px 22px; background: #fff; border: 1px solid var(--line); }
.testi .stars { color: var(--gold-dark); letter-spacing: 2px; font-size: 0.85rem; margin: 0 0 10px; }
.testi p { font-size: 0.95rem; color: var(--muted); margin: 0 0 14px; }
.testi cite { font-style: normal; font-size: 0.85rem; color: var(--accent-dark); font-weight: 600; }

/* Gift banner */

.gift {
  background: var(--accent-dark); color: #fff; border-radius: var(--radius);
  padding: 44px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center;
}
.gift h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; }
.gift p { color: rgba(255,255,255,0.82); max-width: 46ch; margin: 0; }
.gift .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.gift .btn-primary:hover { background: #fff; border-color: #fff; }

/* Location (Contact page) */

.loc-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.loc-card { border: 1px solid var(--line); padding: 28px; background: #fff; }
.loc-card h3 { font-size: 1.1rem; margin-bottom: 16px; }
.loc-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 0.92rem; }
.loc-row:first-of-type { border-top: none; }
.loc-row .label { color: var(--muted); }
.map-block {
  border: 1px solid var(--line); min-height: 100%; min-width: 0;
  display: flex; flex-direction: column; gap: 16px; padding: 16px; text-align: center;
}
.map-embed { position: relative; width: 100%; min-width: 0; flex: 1; min-height: 260px; overflow: hidden; }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-block a { align-self: center; font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--accent-dark); text-decoration: underline; text-underline-offset: 4px; }

/* Contact (Contact page) */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-copy p { color: var(--muted); max-width: 46ch; margin: 0 0 20px; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 12px 0; border-top: 1px solid var(--line); display: flex; gap: 12px; font-size: 0.94rem; }
.contact-list li:first-child { border-top: none; }
.contact-list .label { color: var(--accent-dark); font-weight: 600; min-width: 84px; }

/* FAQ page */

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.faq-card { border: 1px solid var(--line); background: #fff; padding: 28px; }
.faq-card h2 { font-size: 1.1rem; margin-bottom: 16px; }
.faq-list dt { font-weight: 600; margin-top: 12px; }
.faq-list dt:first-child { margin-top: 0; }
.faq-list dd { margin: 3px 0 0; color: var(--muted); font-size: 0.94rem; }

/* CTA band (closes every inner page) */

.cta-band { text-align: center; padding: 64px 0; }
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 46ch; margin: 0 auto 24px; }
.cta-band .hero-actions { justify-content: center; }

/* Footer */

.site-footer { background: var(--ink); color: rgba(246, 247, 250, 0.75); padding: 48px 0 24px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 1fr; gap: 40px; margin-bottom: 36px; }
.foot-brand { font-family: var(--serif); color: #fff; font-size: 1.2rem; margin-bottom: 12px; }
.site-footer p { margin: 0; }
.site-footer h4 { color: rgba(246, 247, 250, 0.5); font-size: 0.76rem; font-weight: 600; margin: 0 0 14px; letter-spacing: 0.03em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 0.88rem; }
.site-footer a { color: rgba(246, 247, 250, 0.75); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(246, 247, 250, 0.14); padding-top: 18px;
  font-size: 0.8rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}

/* Landing pages: no nav, single CTA — unchanged, deliberately outside the reference layout */

body.lp { background: var(--bg); }
.lp-main {
  max-width: 420px; margin: 0 auto; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 32px 24px;
}
.lp-logo { margin-bottom: 20px; }
.lp-main h1 { font-size: 1.9rem; margin-bottom: 10px; }
.lp-blurb { color: var(--muted); margin-bottom: 16px; }
.lp-price { font-size: 1.4rem; margin-bottom: 20px; }
.lp-phone { margin-top: 16px; }
.lp-phone a { text-decoration: none; color: var(--ink); font-weight: 600; }

/* Responsive */

@media (max-width: 920px) {
  .hero-grid, .about-grid, .loc-grid, .contact-grid, .foot-grid, .section-head { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .treat-cats, .team-grid, .testi-grid, .faq-grid { grid-template-columns: 1fr; }
  .treat-cat { border-right: none; border-top: 1px solid var(--line); }
  .treat-cat:first-child { border-top: none; }
  .gift { grid-template-columns: 1fr; padding: 32px 24px; text-align: left; }
}

@media (min-width: 600px) {
  :root { font-size: 18px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    order: 5;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 12px;
    border-top: 1px solid var(--line);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a::after { display: none; }
}
