/* ─────────────────────────────────────────────────────────────
   Naples Therapists — shared stylesheet for the landing, guide
   and location pages. The original pages carry their own inline
   styles; these newer pages share one cached file instead so
   each new page stays small.
   ───────────────────────────────────────────────────────────── */

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

:root {
  --sand:   #f5f0ea;
  --warm:   #e8ddd2;
  --taupe:  #9e8472;
  --brown:  #7a5c48;
  --dark:   #2e2420;
  --white:  #ffffff;
  --text:   #3d2f28;
  --light:  #faf7f4;
  --accent: #c4956a;
  --rule:   #e3d8cc;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.2; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--accent); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--dark); color: #fff; padding: 12px 20px; font-size: 13px;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ─── ANNOUNCEMENT + NAV ─── */
.announcement-bar {
  background: var(--brown); color: var(--white); text-align: center;
  padding: 10px 20px; font-size: 13px; letter-spacing: 0.08em; font-weight: 500;
}
.announcement-bar a { color: var(--warm); text-decoration: underline; }

nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--warm);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.12em; font-weight: 500;
  text-transform: uppercase; color: var(--text); transition: color 0.2s;
}
.nav-links a:hover { color: var(--brown); }
.nav-cta {
  background: var(--brown); color: var(--white) !important;
  padding: 11px 24px; border-radius: 30px; font-size: 12px !important;
  letter-spacing: 0.12em; font-weight: 600 !important; transition: background 0.2s;
}
.nav-cta:hover { background: var(--dark); }

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
  max-width: 1080px; margin: 0 auto; padding: 20px 32px 0;
  font-size: 12px; letter-spacing: 0.06em; color: var(--taupe);
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumbs li + li::before { content: '/'; margin-right: 8px; color: var(--rule); }
.breadcrumbs a:hover { color: var(--brown); text-decoration: underline; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--sand); padding: 56px 32px 64px;
  border-bottom: 1px solid var(--warm);
}
.page-hero-inner { max-width: 1080px; margin: 0 auto; }
.eyebrow {
  display: inline-block; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--taupe); margin-bottom: 18px;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 20px; max-width: 20ch; }
.page-hero .lede { font-size: 18px; line-height: 1.75; max-width: 62ch; color: #5a4a3f; }
.divider { width: 48px; height: 2px; background: var(--accent); margin: 24px 0 28px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn-primary, .btn-secondary {
  display: inline-block; padding: 14px 30px; border-radius: 30px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  transition: all 0.2s;
}
.btn-primary { background: var(--brown); color: var(--white); }
.btn-primary:hover { background: var(--dark); }
.btn-secondary { border: 1.5px solid var(--brown); color: var(--brown); }
.btn-secondary:hover { background: var(--brown); color: var(--white); }

/* ─── ANSWER BOX (the short, quotable answer AI assistants lift) ─── */
.answer-box {
  max-width: 1080px; margin: 44px auto 0; padding: 28px 32px;
  background: var(--light); border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
}
.answer-box h2 {
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); margin-bottom: 14px;
}
.answer-box p { font-size: 17px; line-height: 1.75; }
.answer-box p + p { margin-top: 12px; }
.answer-box strong { color: var(--dark); font-weight: 600; }

/* ─── PROSE ─── */
.prose { max-width: 760px; margin: 0 auto; padding: 56px 32px 24px; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 48px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.35rem; margin: 34px 0 12px; color: var(--dark); }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 20px 22px; }
.prose li { margin-bottom: 10px; }
.prose a:not(.btn-primary):not(.btn-secondary) {
  color: var(--brown); text-decoration: underline; text-decoration-color: var(--rule);
  text-underline-offset: 3px;
}
.prose a:not(.btn-primary):not(.btn-secondary):hover { text-decoration-color: var(--accent); }
.prose strong { color: var(--dark); font-weight: 600; }
.prose blockquote {
  margin: 28px 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--warm);
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--brown);
}

/* ─── KEY / FACT TABLE ─── */
.fact-table { width: 100%; border-collapse: collapse; margin: 24px 0 28px; font-size: 15px; }
.fact-table caption { text-align: left; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); padding-bottom: 12px; }
.fact-table th, .fact-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.fact-table thead th { background: var(--sand); font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brown); font-weight: 600; }
.fact-table tbody th { font-weight: 500; color: var(--dark); width: 38%; }

/* ─── CARD GRID ─── */
.section { padding: 64px 32px; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-head p { max-width: 60ch; margin: 14px auto 0; color: #5a4a3f; }
.section.alt { background: var(--light); }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card {
  background: var(--white); border: 1px solid var(--warm); border-radius: 10px;
  padding: 28px 26px; transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 10px 30px rgba(46,36,32,0.08); transform: translateY(-2px); }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { font-size: 15px; color: #5a4a3f; }
.card .card-meta { display: block; margin-top: 14px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); font-weight: 600; }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--rule); padding: 22px 0; }
.faq-item h3 { font-family: 'Jost', sans-serif; font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 10px; line-height: 1.5; }
.faq-item p { color: #5a4a3f; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--brown); color: var(--white);
  padding: 56px 32px; text-align: center;
}
.cta-strip h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.cta-strip h2 em { color: var(--warm); }
.cta-strip p { max-width: 56ch; margin: 0 auto 28px; color: rgba(255,255,255,0.85); }
.cta-strip .btn-primary { background: var(--warm); color: var(--dark); }
.cta-strip .btn-primary:hover { background: var(--white); }

/* ─── RELATED LINKS ─── */
.related { max-width: 1080px; margin: 0 auto; padding: 56px 32px; }
.related h2 { font-size: 1.6rem; margin-bottom: 20px; }
.related ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.related a {
  display: block; padding: 16px 18px; border: 1px solid var(--warm); border-radius: 8px;
  font-size: 15px; color: var(--brown); transition: background 0.2s;
}
.related a:hover { background: var(--sand); }

/* ─── DISCLAIMER ─── */
.disclaimer {
  max-width: 760px; margin: 0 auto; padding: 0 32px 56px;
  font-size: 13px; line-height: 1.7; color: var(--taupe);
}

/* ─── FOOTER ─── */
footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 64px 48px 28px; }
.footer-grid {
  max-width: 1180px; margin: 0 auto; display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 34ch; }
footer h4 {
  font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--white); font-weight: 600; margin-bottom: 16px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 9px; font-size: 14px; }
footer a:hover { color: var(--warm); text-decoration: underline; }
.footer-contact-item { font-size: 14px; margin-bottom: 12px; }
.footer-contact-item span:first-child {
  display: block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 2px;
}
.footer-bottom {
  max-width: 1180px; margin: 44px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: 12px; color: var(--taupe);
}
.footer-bottom nav { all: unset; display: flex; flex-wrap: wrap; gap: 16px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.mobile-visible { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .page-hero { padding: 36px 20px 44px; }
  .prose, .section, .related, .breadcrumbs { padding-left: 20px; padding-right: 20px; }
  .answer-box { padding: 22px 20px; border-radius: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 48px 20px 24px; }
  .fact-table tbody th { width: 44%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
