/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FDF6EC;
  --bg-warm: #FFF0E0;
  --bg-card: #FFFAF4;
  --primary: #C4622D;
  --primary-dark: #9E4A20;
  --secondary: #E8956D;
  --accent: #8B6914;
  --text: #3D2B1F;
  --text-muted: #8C6E5D;
  --text-light: #BFA094;
  --border: #EDD9C8;
  --font: 'Lato', system-ui, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(100, 50, 20, 0.10);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
em { font-style: italic; color: var(--primary); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--primary-dark);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--primary); }

.btn-nav {
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}

.btn-nav:hover { background: var(--primary-dark) !important; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1508214751196-bcfd4ca60f91?q=85&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  padding: 0 2rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(60, 25, 10, 0.72) 0%,
    rgba(140, 60, 20, 0.45) 60%,
    rgba(200, 100, 40, 0.25) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding-top: 68px;
}

.hero-eyebrow {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(196, 98, 45, 0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 2rem;
}

.section-warm {
  background: var(--bg-warm);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 2.5rem;
  max-width: 700px;
}

/* ===== ABOUT GRID ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* ===== PHOTO STRIP ===== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 280px;
}

.strip-img {
  background-size: cover;
  background-position: center;
}

/* ===== JOANN SECTION ===== */
.joann-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
}

.joann-photo-wrap {
  position: sticky;
  top: 100px;
}

.joann-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  text-align: center;
  line-height: 1.6;
  border: 2px dashed var(--text-light);
}

.joann-text h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.joann-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.joann-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.credentials {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.cred-icon { font-size: 1.1rem; }

/* ===== SPECIALTIES ===== */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.specialty-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.specialty-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.specialty-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.specialty-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.specialty-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== WHY THERAPY ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--primary);
}

.why-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-container {
  text-align: center;
  max-width: 680px;
}

.contact-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.contact-icon { font-size: 1.2rem; }

.contact-detail {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
}

.contact-note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  padding: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--secondary);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .about-grid,
  .joann-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .joann-photo-wrap { position: static; }
  .specialties-grid,
  .why-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 360px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
