:root {
  --cream: #faf6f0;
  --cream-dark: #f3ece2;
  --gold: #b08d57;
  --gold-dark: #8f7040;
  --text: #3a352f;
  --text-light: #6f675d;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 1.05rem;
}

h1, h2, h3, blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1.2rem; }
h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

p { margin-bottom: 1.1rem; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* NAV */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.2rem;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
#mainNav.scrolled { background: rgba(250,246,240,0.96); box-shadow: 0 1px 12px rgba(0,0,0,0.06); }
#mainNav .logo img { height: 62px; width: auto; transition: height 0.3s; }
#mainNav.scrolled .logo img { height: 48px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding-bottom: 3px; border-bottom: 1px solid transparent; transition: border-color 0.25s;
}
.nav-links a:hover, .nav-links a.active { border-color: var(--gold); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--text); margin: 6px 0; }

.mobile-menu {
  position: fixed; inset: 0; background: var(--cream); z-index: 99;
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.15rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* HERO */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(30,25,20,0.34), rgba(30,25,20,0.5)); }
.hero-content { position: relative; z-index: 2; padding: 2rem; max-width: 820px; }
.hero-content h4 { color: rgba(255,255,255,0.9); }
.hero-content p { font-size: 1.15rem; max-width: 640px; margin: 1.2rem auto 2rem; color: rgba(255,255,255,0.94); }

/* PAGE HERO (subpages) */
.page-hero { position: relative; min-height: 55vh; display: flex; align-items: flex-end; color: var(--white); }
.page-hero .hero-bg, .page-hero .hero-overlay { position: absolute; inset: 0; }
.page-hero .hero-bg { background-size: cover; background-position: center; }
.page-hero .hero-content { position: relative; z-index: 2; padding: 3rem 2.2rem; text-align: left; }

/* SECTIONS */
section { padding: 5.5rem 0; }
.section-wide { max-width: 1180px; margin: 0 auto; padding: 0 2.2rem; }
.section-narrow { max-width: 760px; margin: 0 auto; padding: 0 2.2rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col.reverse .col-img { order: 2; }
.col-img img { width: 100%; height: 620px; object-fit: cover; }

.therapy-list { list-style: none; columns: 2; gap: 2rem; margin: 1.4rem 0; }
.therapy-list li { padding: 0.45rem 0 0.45rem 1.4rem; position: relative; break-inside: avoid; }
.therapy-list li::before { content: ''; position: absolute; left: 0; top: 1.05em; width: 14px; height: 1px; background: var(--gold); }

/* BUTTONS */
.btn {
  display: inline-block; padding: 0.95rem 2.6rem;
  border: 1px solid var(--gold); color: var(--gold-dark);
  font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn:hover { background: var(--gold); color: var(--white); }
.btn-white { border-color: var(--white); color: var(--white); }
.btn-white:hover { background: var(--white); color: var(--text); }
.btn-solid { background: var(--gold); color: var(--white); }
.btn-solid:hover { background: var(--gold-dark); }

.divider { width: 60px; height: 1px; background: var(--gold); margin: 3rem auto; }

/* TESTIMONIALS */
.testimonials { background: var(--cream-dark); text-align: center; }
.testimonial-card blockquote { font-size: clamp(1.25rem, 2.6vw, 1.7rem); font-style: italic; margin-bottom: 1.2rem; }
.testimonial-card cite { font-style: normal; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); }

/* INFO CARDS (Yin Touch) */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; margin-top: 2.5rem; }
.info-card { background: var(--cream); padding: 2.2rem 1.8rem; text-align: center; }
.info-card h3 { font-size: 1.35rem; margin-bottom: 0.7rem; color: var(--gold-dark); }
.info-card p { margin-bottom: 0.3rem; }

/* CONTACT */
.contact-block { text-align: center; }
.contact-block .big-link { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 3.4vw, 2.1rem); display: block; margin: 0.4rem 0; transition: color 0.25s; }
.contact-block .big-link:hover { color: var(--gold); }

/* FOOTER */
.site-footer { background: var(--cream); text-align: center; padding: 4rem 2rem 3rem; }
.site-footer .logo img { height: 84px; margin: 0 auto 1.6rem; width: auto; }
.footer-links { list-style: none; display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold-dark); }
.footer-contact { font-size: 0.95rem; color: var(--text-light); margin-bottom: 0.3rem; }
.footer-social { display: flex; justify-content: center; gap: 1.4rem; margin-top: 1.2rem; }
.footer-social a { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .two-col { grid-template-columns: 1fr; gap: 2.4rem; }
  .two-col.reverse .col-img { order: 0; }
  .col-img img { height: 420px; }
  .therapy-list { columns: 1; }
  section { padding: 3.6rem 0; }
}