/* shared.css — Therapy11 shared styles */

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

:root {
  --primary: #B7522A;
  --primary-dark: #9A4422;
  --gold: #A68B5B;
  --text: #2D2926;
  --text-light: #7A6F63;
  --bg: #FAF6F1;
  --bg-alt: #F5F0EB;
  --white: #FFFFFF;
  --border: #E0D8CF;
  --max-w: 1060px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

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

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

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

/* NAV */
.nav { padding: 16px 0; background: var(--bg); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--text);
  text-decoration: none; letter-spacing: -0.5px;
}
.nav-logo span { font-variant: small-caps; font-size: 0.85em; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; margin-left: auto; margin-right: 24px; }
.nav-links a { font-size: 0.9rem; color: var(--text); text-decoration: none; font-weight: 400; }
.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-cta-btn {
  display: inline-block; background: var(--primary); color: var(--white);
  font-size: 0.85rem; font-weight: 500; padding: 10px 20px;
  border-radius: 6px; text-decoration: none; transition: background 0.2s;
}
.nav-cta-btn:hover { background: var(--primary-dark); text-decoration: none; }
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger svg { width: 24px; height: 24px; stroke: var(--text); }

@media (max-width: 768px) {
  .nav-links, .nav-cta-btn { display: none; }
  .hamburger { display: block; }
}

.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--bg); z-index: 100;
  flex-direction: column; padding: 80px 32px 32px; gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.2rem; color: var(--text); text-decoration: none; }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; font-size: 2rem; color: var(--text); cursor: pointer;
}

/* BUTTONS */
.btn-primary {
  display: inline-block; background: var(--primary); color: var(--white);
  font-size: 0.95rem; font-weight: 500; padding: 14px 32px;
  border-radius: 6px; text-decoration: none; transition: background 0.2s;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--primary-dark); text-decoration: none; }
.btn-secondary {
  display: inline-block; color: var(--primary); font-size: 0.95rem; font-weight: 500;
  padding: 14px 32px; border: 1.5px solid var(--primary); border-radius: 6px;
  text-decoration: none; transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--primary); color: var(--white); text-decoration: none; }
.btn-ghost {
  display: inline-block; color: var(--primary); font-size: 0.95rem; font-weight: 500;
  padding: 14px 8px; text-decoration: none;
}
.btn-ghost:hover { text-decoration: underline; }

/* DIVIDER */
.divider { width: 48px; height: 1px; background: var(--border); margin: 0 auto; }

/* SECTIONS */
section { padding: 72px 0; }
.section-label {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-light); margin-bottom: 12px;
}
.section-center { text-align: center; }

/* SR-ONLY */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* FOOTER */
.footer { background: var(--text); color: rgba(255,255,255,0.6); padding: 48px 0 32px; font-size: 0.88rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 48px; margin-bottom: 32px; }
.footer-brand { max-width: 300px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--white); margin-bottom: 8px; }
.footer-logo span { color: var(--gold); }
.footer-col h4 { color: var(--white); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom a { color: rgba(255,255,255,0.6); margin-left: 16px; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
