/* ==========================================================================
   Stone Ridge Wellness & Aesthetics — shared stylesheet
   ========================================================================== */

:root {
  --gold: #b9942f;
  --gold-light: #e8d5a0;
  --gold-dark: #7d6119;
  --gold-soft: #f4ecd8;
  --charcoal: #4d4d4d;
  --gray: #666666;
  --ink: #2b2b2b;
  --cream: #faf8f3;
  --white: #ffffff;
  --border: #e9e2d0;
  --shadow: 0 10px 30px rgba(43, 43, 43, 0.08);
  --radius: 4px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.3rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; color: var(--gray); font-size: 1.05rem; }

a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--gold); }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  font-size: 1.15rem;
  margin-bottom: 0.5em;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}
.btn-primary:hover { background: #5c480f; border-color: #5c480f; color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ---------- Top announcement bar ---------- */
.announce {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 10px 16px;
}
.announce strong { color: var(--gold-light); }
.announce a { color: var(--gold-light); text-decoration: underline; }
.announce a:hover { color: var(--white); }

/* ---------- Header / Nav ---------- */
header.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img.mark { height: 52px; width: auto; }
.brand img.word { height: 40px; width: auto; }

nav.primary-nav { display: flex; align-items: center; }
nav.primary-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

nav.primary-nav a {
  display: block;
  padding: 10px 16px;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
nav.primary-nav > ul > li > a:hover,
nav.primary-nav > ul > li.active > a { color: var(--gold-dark); }

.has-dropdown { position: relative; }
.dropdown {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  padding: 10px 22px;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.96rem;
}
.dropdown a:hover { background: var(--gold-soft); color: var(--gold-dark); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--charcoal);
  white-space: nowrap;
}
.nav-phone svg { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 60%);
  padding: 64px 0 76px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 0.4em; }
.hero .lede { font-size: 1.15rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-art img { max-width: 320px; }
.hero-photo-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  outline: 1px solid var(--border);
}
.hero-photo-frame img { width: 100%; height: 420px; object-fit: cover; display: block; }
.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(185,148,47,0.25);
}
.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge img { height: 40px; width: 40px; }
.hero-badge .txt { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--charcoal); line-height: 1.3; }
.hero-badge .txt strong { display: block; color: var(--gold-dark); font-size: 1rem; }

/* ---------- Ornamental divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 40px;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: var(--gold-light);
}
.divider svg { flex-shrink: 0; }

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  position: relative;
  padding: 90px 0 70px;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(43,43,43,0.82) 10%, rgba(43,43,43,0.55) 60%, rgba(185,148,47,0.35));
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner .eyebrow { color: var(--gold-light); }
.page-banner h1 { color: var(--white); }
.page-banner p { color: #ece7da; max-width: 55ch; }

/* ---------- Photo band (full-bleed two column) ---------- */
.photo-band img { border-radius: 8px; box-shadow: var(--shadow); width: 100%; height: 420px; object-fit: cover; }

/* ---------- Service card with photo ---------- */
.service-card.has-photo { padding: 0; overflow: hidden; }
.service-card.has-photo img { width: 100%; height: 190px; object-fit: cover; }
.service-card.has-photo .body { padding: 26px 26px 30px; }

/* ---------- Rebrand notice block ---------- */
.rebrand-block {
  background: var(--gold-soft);
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  padding: 36px 40px;
  margin: 0 0 60px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.rebrand-block .tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-dark);
  white-space: nowrap;
}
.rebrand-block p { margin: 0; color: var(--charcoal); }
.rebrand-block .cta { white-space: nowrap; }

/* ---------- Section ---------- */
section { padding: 60px 0; }
.section-alt { background: var(--cream); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.section-head p { margin-top: 10px; }

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 34px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  scroll-margin-top: 100px;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--gold);
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 1rem; margin-bottom: 0; }

/* ---------- Full service section (services page) ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 46px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 110px;
}
.service-detail:last-child { border-bottom: none; }
.service-detail .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold-light);
}
.service-detail h3 { margin-bottom: 8px; }
.service-detail .tagline {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-soft);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ---------- Quicklinks (resources / services jump nav) ---------- */
.jumplinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 60px;
}
.jumplinks a {
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.jumplinks a:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-soft); }

/* ---------- Two column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col img { border-radius: 8px; box-shadow: var(--shadow); }

/* ---------- About / provider ---------- */
.provider {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.provider img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
}
.provider .role {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-soft);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.provider .credentials {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 18px;
  font-size: 0.95rem;
  color: var(--gray);
  font-style: italic;
}

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  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: 1.4rem;
  color: var(--gold);
  margin-left: 20px;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .a { padding: 0 0 22px; color: var(--gray); }

/* ---------- Reviews ---------- */
.review-cta {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 8px;
  padding: 56px 40px;
  text-align: center;
}
.review-cta h2 { color: var(--white); }
.review-cta p { color: #cfcfcf; max-width: 60ch; margin: 0 auto 26px; }
.stars { color: var(--gold-light); font-size: 1.6rem; letter-spacing: 4px; margin-bottom: 16px; }

/* ---------- Social ---------- */
.social-row { display: flex; gap: 16px; flex-wrap: wrap; }
.social-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 12px 24px;
  color: var(--charcoal);
}
.social-pill:hover { border-color: var(--gold); color: var(--gold-dark); }

/* ---------- Blog placeholder ---------- */
.blog-card {
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  color: var(--gray);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info-list { list-style: none; margin: 0; padding: 0; }
.contact-info-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-list li .icon { color: var(--gold); flex-shrink: 0; }
.contact-info-list li strong { display: block; color: var(--charcoal); margin-bottom: 2px; }
.map-frame {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* ---------- Location cards (multi-location contact) ---------- */
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  scroll-margin-top: 100px;
}
.location-card .loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.location-card .loc-info { padding: 40px; }
.location-card .loc-tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-soft);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.location-card iframe { width: 100%; height: 100%; min-height: 280px; border: 0; }
@media (max-width: 820px) {
  .location-card .loc-grid { grid-template-columns: 1fr; }
  .location-card iframe { min-height: 260px; }
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--charcoal);
  color: #d8d3c8;
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid img { height: 44px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-grid h3 {
  color: var(--gold-light);
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: #d8d3c8; font-size: 0.98rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: #d8d3c8;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .two-col, .provider, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .rebrand-block { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  nav.primary-nav {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--white);
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    padding: 90px 24px 24px;
    overflow-y: auto;
  }
  nav.primary-nav.open { transform: translateX(0); box-shadow: -10px 0 30px rgba(0,0,0,0.15); }
  nav.primary-nav > ul { flex-direction: column; align-items: stretch; width: 100%; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    display: none;
    padding-left: 14px;
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-phone { display: none; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail .num { display: none; }
}
