@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Beau+Rivage&family=Mr+De+Haviland&family=Herr+Von+Muellerhoff&family=Style+Script&family=Petit+Formal+Script&display=swap');

@font-face {
  font-family: 'tex-gyre-termes-reg';
  src: url('fonts/7700Tex-Gyre-Termes-Reg.woff2') format('woff2'),
       url('fonts/7700Tex-Gyre-Termes-Reg.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'bestina-signature';
  src: url('fonts/113Bestina-Signature.woff2') format('woff2'),
       url('fonts/113Bestina-Signature.woff') format('woff');
  font-display: swap;
}

:root {
  --cream: #efebde;
  --cream-soft: #f5f2e9;
  --maroon: #9f0025;
  --maroon-dark: #7a001c;
  --brown: #755539;
  --brown-dark: #776456;
  --taupe: #93877e;
  --olive: #929471;
  --tan: #ead1aa;
  --white: #ffffff;
  --font-serif: 'tex-gyre-termes-reg', Georgia, 'Times New Roman', Times, serif;
  --font-sans: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
  --font-script: 'bestina-signature', cursive;
}

* { box-sizing: border-box; }


body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--brown);
  background: var(--cream-soft);
  line-height: 1.7;
}

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

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

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--brown);
  margin: 0 0 20px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--maroon);
  color: var(--white) !important;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 38px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn:hover { background: var(--maroon-dark); transform: translateY(-1px); }
.btn-green { background: var(--olive); }
.btn-green:hover { background: var(--brown-dark); }
.btn-grey-arrow { background: #ac9da8; }
.btn-grey-arrow::after {
  content: '';
  display: inline-block;
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: width 0.25s ease, opacity 0.25s ease, margin 0.25s ease;
  vertical-align: middle;
}
.btn-grey-arrow:hover { background: #968892; }
.btn-grey-arrow:hover::after { content: '\00BB'; width: 0.7em; opacity: 1; margin-left: 8px; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--maroon);
  color: var(--maroon) !important;
}
.btn-outline:hover { background: var(--maroon); color: var(--white) !important; }
.btn-tan { background: var(--olive); color: var(--cream) !important; font-size: 16px; padding: 4.8px 16px; border-radius: 3px; }
.btn-tan:hover { background: var(--brown-dark); color: var(--cream) !important; }
.btn-cream { background: var(--cream); color: var(--taupe) !important; font-size: 16px; letter-spacing: 2px; padding: 11px 24px; border-radius: 5px; }
.btn-cream:hover { background: var(--white); color: var(--taupe) !important; }
.btn-learn-more {
  font-size: 18px;
  letter-spacing: 2px;
  padding: 5.4px 18px;
  border-radius: 5px;
}
.btn-hero-cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 4px;
  padding: 10px 32px;
  border-radius: 5px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(239, 235, 222, 0.72);
  border-bottom: 1px solid rgba(117, 85, 57, 0.12);
  transition: background 0.3s ease;
}
.site-header.scrolled {
  background: var(--cream);
}
.nav-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: padding 0.3s ease;
}
.site-header.scrolled .nav-wrap { padding: 10px 40px; }
.nav-group { display: flex; align-items: center; gap: 28px; }
.nav-group.right { justify-content: flex-start; }
.mobile-toggle { margin-left: auto; }
.nav-group a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--maroon);
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-group a:hover { color: var(--maroon-dark); }

.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' \25BE'; font-size: 10px; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  padding: 10px 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 10px 24px;
  color: var(--brown) !important;
  font-size: 12px;
}
.dropdown a:hover { background: var(--cream); color: var(--maroon) !important; }

.logo {
  text-align: center;
  white-space: nowrap;
}
.logo img { height: 90px; width: auto; transition: height 0.3s ease; }
.site-header.scrolled .logo img { height: 60px; }

.mobile-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--maroon); cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 100px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(239, 235, 222, 0.85);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.hero h1 { font-size: 44px; line-height: 1.25; margin-bottom: 28px; }
.hero h1 .accent { color: var(--maroon); font-weight: 700; }
.hero .lede { font-family: var(--font-serif); font-weight: 500; font-size: 22px; max-width: 480px; }

.feel-seen { font-family: 'Mr De Haviland', var(--font-script); font-style: normal; font-weight: 400; color: var(--maroon); font-size: 64px; text-align: center; margin-bottom: 10px; }
.check-list { list-style: none; margin: 0 0 34px; padding: 0; }
.check-list li { display: flex; gap: 16px; margin-bottom: 22px; font-size: 19px; }
.check-list li::before {
  content: '\2713';
  color: var(--maroon);
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

/* ---------- Sections ---------- */
section { padding: 90px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-taupe { background: var(--taupe); color: var(--cream); padding: 55px 0; }
.section-taupe p { color: var(--cream); font-size: 18px; font-weight: 400; line-height: 1.7; }
.section-taupe .max-text { max-width: 1100px; }
.dg-heading { font-family: 'Mr De Haviland', var(--font-script); font-weight: 400; color: var(--cream); font-size: 68px; }
.section-olive { background: var(--olive); color: var(--cream); }
.section-olive h1, .section-olive h2, .section-olive h3, .section-olive h4 { color: var(--cream); }
.section-olive p { color: var(--white); }
.center { text-align: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 13px; color: var(--maroon); font-weight: 700; margin-bottom: 14px; }
.section-title { font-size: 34px; margin-bottom: 24px; }
.max-text { max-width: 760px; margin: 0 auto; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.two-col.split-3-2 { grid-template-columns: 3fr 2fr; }
.two-col.split-2-3 { grid-template-columns: 2fr 3fr; }
.two-col.split-2-1 { grid-template-columns: 2fr 1fr; }
.two-col.reverse .col-img { order: 2; }
.col-img img { max-width: min(420px, 100%); box-shadow: 0 25px 40px rgba(0,0,0,0.2); }

.script-heading {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--maroon);
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-olive .section-title.script-heading { font-family: 'Petit Formal Script', var(--font-script); color: var(--cream); font-size: 38px; font-weight: 500; margin-bottom: 90px; }
.feel-seen-font { font-family: 'Petit Formal Script', var(--font-script); font-size: 56px; }
.cursive-title { font-family: 'Mr De Haviland', var(--font-script); font-weight: 400; color: var(--taupe); font-size: 44px; margin-bottom: 8px; }
.service-card {
  display: inline-block;
  background: var(--white);
  padding: 48px 110px;
  box-shadow: 0 25px 45px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 55px rgba(0,0,0,0.2);
}
.service-card h2.script-heading { font-family: 'Mr De Haviland', var(--font-script); color: var(--brown); font-size: 38px; margin-bottom: 13px; }
.service-card h3 { font-family: var(--font-sans); font-weight: 500; font-size: 18px; color: var(--taupe); margin-bottom: 22px; }
.service-card .btn { font-size: 11px; padding: 13px 30px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.steps > div { display: flex; flex-direction: column; align-items: center; height: 100%; }
.steps > div p { flex-grow: 1; }
.step-num { font-family: var(--font-script); font-size: 46px; color: var(--tan); margin-bottom: 6px; }
.steps p { color: var(--cream); }
.step-icon { display: flex; justify-content: center; margin-bottom: 14px; color: var(--cream); }
.step-icon svg { width: 40px; height: 40px; }

/* Team */
.team-row + .team-row { margin-top: 60px; }
.team-row .two-col { grid-template-columns: 360px 1fr; gap: 60px; }
.team-row img { width: 360px; max-width: 100%; aspect-ratio: 708 / 1058; height: auto; object-fit: cover; box-shadow: 0 25px 40px rgba(0,0,0,0.2); }
.team-row h3 { font-family: 'Petit Formal Script', var(--font-script); font-weight: 500; font-size: 40px; margin-bottom: 0; color: var(--maroon); }
.team-row p { font-size: 15px; font-weight: 500; line-height: 1.7; color: var(--taupe); }
.team-row a:not(.btn) { color: var(--maroon); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; display: inline-block; margin-top: 14px; }
.team-row a.btn { margin-top: 14px; }

/* Parallax feature section — matches Divi's CSS-only parallax (fixed attachment, top-anchored) */
.section-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
  position: relative;
}
.section-parallax .container { position: relative; z-index: 2; }
.section-parallax .two-col p { font-size: 18px; }
.section-parallax .two-col > div:first-child { padding-left: 0; }
@media (max-width: 980px) {
  .section-parallax { background-attachment: scroll; }
}

/* Full-bleed background section with overlay text */
.section-bg-feature {
  position: relative;
  background-size: cover;
  background-position: center 20%;
  padding: 110px 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.section-bg-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(239, 235, 222, 0.92) 0%, rgba(239, 235, 222, 0.65) 35%, rgba(239, 235, 222, 0) 60%);
  pointer-events: none;
}
.section-bg-feature .container { position: relative; z-index: 1; }
.section-bg-feature h3 { font-size: 24px; font-weight: 700; }
.section-bg-feature p { font-size: 18px; font-weight: 500; }

/* Treatments */
.treatments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.treatment-card {
  background: rgba(0, 0, 0, 0.1);
  padding: 42px 16px 24px;
  text-align: center;
  position: relative;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.treatment-card.featured { background: var(--tan); }
.treatment-card.featured h3, .treatment-card.featured p, .treatment-card.featured .badge { color: var(--brown-dark); }
.treatment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}
.treatment-card img { width: 100%; height: 160px; object-fit: cover; margin-bottom: 16px; }
.treatment-card h3 { font-family: 'Petit Formal Script', var(--font-script); font-size: 34px; font-weight: 400; margin-bottom: 8px; color: var(--cream); }
.treatment-card p { min-height: 44px; font-size: 18px; color: var(--white); flex-grow: 1; }
.badge {
  display: block;
  background: transparent; color: var(--cream); font-size: 11px; letter-spacing: 1px;
  font-style: italic; text-transform: none;
  position: absolute; top: 16px; left: 0; right: 0;
}

/* Logos strip */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px; }
.logo-strip img { height: 190px; width: 190px; object-fit: contain; }

/* FAQ */
.faq-item { background: var(--cream); border-radius: 8px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); padding: 22px 28px; margin-bottom: 18px; }
.faq-item summary { cursor: pointer; font-family: var(--font-serif); font-size: 19px; color: var(--brown); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; color: var(--maroon); margin-left: 20px; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 16px; font-size: 15px; }

/* Service inner hero */
.hero-single { padding: 110px 0 90px; min-height: 620px; display: flex; align-items: center; }
.hero-single::before { display: none; }
.hero-greyed { background-color: var(--cream); background-blend-mode: overlay; display: block; min-height: 0; padding: 300px 0 45px; }
.hero-single .inner { max-width: 620px; }
.hero-single .eyebrow-title { font-family: var(--font-serif); font-size: 47px; letter-spacing: normal; color: var(--brown); margin-bottom: 10px; text-transform: none; }
.hero-single h1 { font-size: 34px; margin-bottom: 20px; }
.hero-single .lede { font-size: 19px; margin-bottom: 32px; }
.hero-mobile-photo { display: none; }
.content-mobile-photo { display: none; }

.quote-hero::before { background: rgba(239, 235, 222, 0.45); }
.quote-hero blockquote { font-size: 30px; color: var(--maroon); font-family: var(--font-serif); margin: 0 0 16px; max-width: 640px; }
.quote-hero .sig { font-family: 'Mr De Haviland', var(--font-script); font-size: 34px; color: var(--maroon); }

/* Blog */
.blog-list { display: flex; flex-direction: column; gap: 50px; max-width: 800px; margin: 0 auto; }
.blog-post h2 { font-size: 26px; margin-bottom: 8px; }
.blog-post .meta { font-size: 13px; color: var(--taupe); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.blog-post .meta a { color: var(--maroon); }
.blog-img { margin: 30px 0; }
.blog-img-inline { float: left; margin: 0 15px 0 0; width: 169px; }
.comment-notes { font-size: 14px; color: var(--taupe); margin-bottom: 20px; }
.comment-form .consent-row { display: flex; flex-direction: row; align-items: center; gap: 10px; }
.comment-form .consent-row label { font-size: 14px; color: var(--brown); }
.comment-form .consent-row input { flex: 0 0 auto; padding: 0; background: none; width: 16px; height: 16px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; }
.contact-grid-boxed { background: rgba(239, 235, 222, 0.95); padding: 60px; }
.contact-info h3 { font-family: 'Mr De Haviland', var(--font-script); font-weight: 400; font-size: 44px; color: var(--maroon); }
.contact-info p { margin: 6px 0; }
.contact-info a { color: var(--maroon); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form input, .contact-form textarea {
  font-family: var(--font-sans);
  padding: 16px 18px;
  border: none;
  background: var(--taupe);
  font-size: 15px;
  color: var(--cream);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--cream); opacity: 0.85; }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form button { align-self: flex-start; background: var(--brown-dark); }
.contact-form button:hover { background: var(--brown); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--taupe);
  color: var(--cream);
}
.footer-main {
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col p, .footer-col a { color: var(--cream); font-size: 14px; }
.footer-col a { display: block; margin-bottom: 10px; }
.footer-menu-list { list-style: disc; padding-left: 18px; margin: 0 0 10px; }
.footer-menu-list li { margin-bottom: 8px; }
.footer-menu-list li::marker { color: var(--cream); }
.footer-menu-list a { display: inline; margin-bottom: 0; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-hours { list-style: none; padding: 0; margin: 0 0 20px; font-size: 14px; }
.footer-hours li { margin-bottom: 4px; }
.footer-emphasis { font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; color: var(--maroon) !important; }
.footer-col a.footer-emphasis:hover { color: var(--maroon-dark) !important; }
.footer-col a[href*="privacy-policy"] { color: var(--maroon) !important; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; }
.footer-map iframe { width: 100%; height: 260px; border: 0; }
.footer-brand {
  background: var(--brown-dark);
  padding: 50px 0 40px;
  text-align: center;
}
.footer-brand img { width: 220px; margin: 0 auto 24px; }
.footer-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--tan);
  color: var(--brown-dark);
  border-radius: 8px;
}
.footer-instagram svg { width: 24px; height: 24px; }
.footer-instagram:hover { background: var(--cream); }
.footer-bottom {
  background: var(--brown-dark);
  color: var(--cream);
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 20px 0;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-group.left, .nav-group.right { display: none; }
  .nav-wrap { justify-content: space-between; }
  .mobile-toggle { display: block; }
  .hero-grid, .two-col, .contact-grid, .two-col.split-2-1, .two-col.split-3-2 { grid-template-columns: 1fr; }
  .two-col.reverse .col-img { order: 0; }
  .mobile-img-first .col-img { order: -1; }
  .steps, .team-grid { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; text-align: center; }
  .footer-map iframe { height: 220px; }
  .team-row .two-col { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  section { padding: 60px 0; }
  .container { padding: 0 24px; }
  .mobile-photo-off { background-image: none !important; background-color: var(--white); }
  .mobile-photo-off::before { content: none; }
  .mobile-photo-off.section-bg-feature { min-height: 0; }
  .section-olive .section-title.script-heading { margin-bottom: 60px; }
  .mobile-stack-photo { background-image: none !important; background-color: var(--tan); min-height: 0; padding-bottom: 0; }
  .mobile-stack-photo .hero-grid { gap: 0; }
  .hero-mobile-photo { display: block; max-width: 320px; margin: 30px auto 0; }
  .content-mobile-photo { display: block; width: 100%; height: auto; margin: 0 0 24px; box-shadow: 0 25px 40px rgba(0,0,0,0.2); }
}
@media (max-width: 560px) {
  .treatments-grid { grid-template-columns: 1fr; }
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream-soft);
  z-index: 999;
  padding: 30px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav .close-btn { background: none; border: none; font-size: 28px; color: var(--maroon); float: right; cursor: pointer; }
.mobile-nav a { display: block; padding: 14px 0; font-size: 16px; font-weight: 700; letter-spacing: 1px; color: var(--maroon); text-transform: uppercase; border-bottom: 1px solid rgba(117,85,57,0.12); }
.mobile-nav .sub a { padding-left: 20px; font-size: 14px; color: var(--brown); }
