/* Jo Baker Therapy — static site styles */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@0,400;0,600;1,400&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --ink: #333333;
  --paper: #F5F3EF;
  --paper-2: #EDE4DC;
  --brand: #375458;
  --brand-strong: #2B4144;
  --accent: #C4937D;
  --accent-strong: #A8735A;
  --stone-300: #D9CCC5;
  --muted: #4A4642;
  --muted-2: #6B6862;
  --footer-bg: #333333;
  --footer-text: #D9CCC5;
  --footer-muted: #9C948C;
  --cream-text: #F5F1EA;
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); }
a:hover { color: var(--brand-strong); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.rule { width: 64px; height: 2px; background: var(--accent); margin: 14px 0 20px; }
.rule--ink { background: var(--ink); }

/* Header / nav */
.site-header { background: var(--footer-bg); }
.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; row-gap: 10px; max-width: 1200px; margin: 0 auto; padding: 18px 32px;
}
.nav-brand { text-decoration: none; flex-shrink: 0; white-space: nowrap; }
.nav-brand-name { font-family: var(--serif); font-size: 19px; color: var(--cream-text); }
.nav-brand-name em { font-style: italic; color: #D0A088; }
.nav-brand-loc { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #A79E93; margin-top: 2px; }
.nav-links { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 18px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600;
  white-space: nowrap; text-decoration: none; color: var(--stone-300);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-family: var(--sans); font-weight: 600;
  border-radius: 10px; border: 1px solid transparent; cursor: pointer;
  transition: filter 140ms ease, transform 140ms ease, background 140ms ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { filter: brightness(0.93); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--stone-300); }
.btn-outline:hover { filter: brightness(0.96); color: var(--ink); }
.btn-lg { font-size: 15px; padding: 15px 26px; }
.btn-md { font-size: 14px; padding: 12px 22px; }
.btn-sm { font-size: 13px; padding: 10px 18px; }
.btn-full { width: 100%; }

/* Tag */
.tag {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--brand); background: var(--paper-2); border: 1px solid var(--stone-300);
  border-radius: 999px; padding: 6px 14px;
}

/* Section heading */
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); margin: 0; }
.section-heading { margin: 0 0 36px; }
.section-heading.align-center { text-align: center; }
.section-title { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 3vw, 32px); color: var(--ink); margin: 12px 0 0; }
.section-intro { font-size: 16px; line-height: 1.6; color: var(--muted-2); margin: 12px 0 0; max-width: 60ch; }
.align-center .section-intro { margin-left: auto; margin-right: auto; }

/* Cards & grids */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: #fff; border: 1px solid var(--stone-300); border-radius: 4px; padding: 28px;
  transition: transform 220ms cubic-bezier(.22,1,.36,1), box-shadow 220ms cubic-bezier(.22,1,.36,1);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(51,51,51,0.10), 0 3px 8px rgba(51,51,51,0.06); }
.card p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 16px 0 0; }
.card-flex { display: flex; flex-direction: column; }
.card-flex p { flex: 1; }
.card-flex .btn { margin-top: 20px; align-self: flex-start; }
.card--soft { background: var(--paper); border: none; }
.card--soft h3 { font-family: var(--sans); font-weight: 600; font-size: 16px; color: var(--ink); margin: 0 0 8px; }
.card--soft p { font-size: 14px; line-height: 1.6; margin: 0; }

/* Hero */
.hero {
  padding: 56px 32px 88px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(32px,4.4vw,52px); line-height: 1.08; color: var(--ink); margin: 0; text-wrap: balance; }
.hero p.lead { font-size: 19px; line-height: 1.6; color: var(--muted); margin: 22px 0 6px; max-width: 46ch; }
.hero .btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; box-shadow: 0 14px 40px rgba(51,51,51,0.16); }

/* Page header banner (quote-style) */
.page-banner { background: var(--brand); padding: 56px 32px; text-align: center; }
.page-banner h1 {
  font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(20px,2.8vw,29px);
  line-height: 1.5; color: var(--cream-text); max-width: 820px; margin: 0 auto;
}
.page-banner cite { font-size: 14px; color: #A9C4C6; margin: 18px 0 0; display: block; font-style: normal; }

/* Quote block */
.quote-block { background: var(--brand); padding: 72px 32px; text-align: center; }
.quote-block blockquote {
  max-width: 700px; margin: 0 auto; font-family: var(--serif); font-style: italic;
  font-size: clamp(20px,2.6vw,26px); line-height: 1.5; color: var(--cream-text);
}
.quote-block cite { display: block; margin-top: 20px; font-size: 14px; color: #A9C4C6; font-style: normal; }

/* Sections generic */
.section { padding: 80px 32px; }
.section--tight { padding: 64px 32px; }
.section--band { background: var(--paper-2); }
.section--white { background: #fff; }
.section--paper { background: var(--paper); }
.section--brand { background: var(--brand); }
.section--dark { background: var(--footer-bg); }

/* About/location split layouts */
.split { display: grid; gap: 56px; align-items: start; }
.split-photo-text { grid-template-columns: 320px 1fr; justify-content: center; }
.split-text-photo { grid-template-columns: 280px 1fr; }
.split-content-aside { grid-template-columns: 1.1fr 0.9fr; }
.split img { width: 100%; border-radius: 4px; object-fit: cover; }
.split .prose { max-width: 640px; }
.prose h3 { font-family: var(--sans); font-weight: 600; font-size: 17px; color: var(--ink); margin: 0 0 6px; }
.prose p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0; }
.prose-lg p { font-size: 16px; line-height: 1.7; color: var(--muted); margin: 0 0 14px; }

/* FAQ */
.faq-item { border-top: 1px solid var(--paper-2); padding: 22px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--paper-2); }
.faq-item h3 { font-family: var(--sans); font-weight: 600; font-size: 16px; color: var(--ink); margin: 0 0 8px; }
.faq-item p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0; }

/* CTA */
.cta-banner {
  background: var(--paper); padding: 64px 32px; text-align: center;
  border-top: 1px solid var(--stone-300); border-bottom: 1px solid var(--stone-300);
}
.cta-banner .inner { max-width: 760px; margin: 0 auto; }
.cta-banner h2 { font-family: var(--serif); font-weight: 400; font-size: 28px; color: var(--ink); margin: 0 0 26px; text-wrap: balance; }
.cta-strip { background: var(--paper-2); padding: 64px 32px; text-align: center; }
.cta-strip .inner { max-width: 700px; margin: 0 auto; }
.cta-strip h2 { font-family: var(--serif); font-weight: 400; font-size: 26px; color: var(--ink); margin: 14px 0 8px; }
.cta-strip .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

/* Location */
.location { padding: 72px 32px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.location h2 { font-family: var(--serif); font-weight: 400; font-size: 26px; color: var(--ink); margin: 14px 0 12px; max-width: 30ch; }
.location p { font-size: 15px; color: var(--muted-2); margin: 0 0 6px; }

/* Aside box */
.aside-box { background: var(--paper-2); border-radius: 4px; padding: 30px; }
.aside-box p { font-size: 15px; line-height: 1.65; color: #353A35; margin: 16px 0 0; }
.contact-box { background: var(--paper-2); border-radius: 4px; padding: 28px; text-align: center; }
.contact-box .label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand); margin-bottom: 10px; }
.contact-box p { font-size: 14px; color: #353A35; margin: 0 0 18px; }

/* Booking intro card */
.intro-card { background: #fff; border: 1px solid var(--stone-300); border-radius: 4px; padding: 36px; }
.intro-card p { font-size: 17px; line-height: 1.7; color: var(--ink); margin: 0 0 16px; }
.intro-card p.secondary { font-size: 16px; line-height: 1.7; color: var(--muted); }
.intro-card .note { font-size: 13px; color: var(--footer-muted); margin: 20px 0 0; padding-top: 16px; border-top: 1px solid var(--paper-2); }

/* Footer */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 48px 32px 28px; }
.footer-top {
  max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 24px; border-bottom: 1px solid #4A4642; padding-bottom: 28px;
}
.footer-brand { font-family: var(--serif); font-size: 19px; color: var(--cream-text); }
.footer-address { font-size: 13px; margin-top: 6px; }
.footer-links { display: flex; gap: 22px; font-size: 14px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: var(--footer-text); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 18px; font-size: 12px; color: var(--footer-muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero, .split-photo-text, .split-text-photo, .split-content-aside, .location { grid-template-columns: 1fr; }
  .hero img { max-width: 380px; margin: 0 auto; }
  .split img { max-width: 320px; margin: 0 auto; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .container, .section, .hero, .page-banner, .quote-block, .cta-banner, .cta-strip, .location, .site-footer { padding-left: 20px; padding-right: 20px; }
}
