/* ============================================
   INTEGRALLIFEFORCE HOMEOPATHY — GLOBAL STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:ital,wght@1,400&display=swap');

:root {
  --teal:       #2D5A27;   /* deep forest green */
  --teal-mid:   #3A7032;
  --teal-light: #4E8C45;
  --gold:       #6B8F3E;   /* olive sage green */
  --gold-light: #8AAF55;
  --cream:      #F2F5EE;   /* soft leaf white */
  --cream-deep: #E4EBD8;   /* pale sage */
  --warm-white: #F8FAF5;   /* barely-there green white */
  --charcoal:   #1C2B1A;   /* deep forest charcoal */
  --muted:      #526B4A;   /* muted herb green */
  --border:     rgba(45,90,39,0.13);
  --shadow:     0 4px 24px rgba(45,90,39,0.11);
  --radius:     4px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Subtle organic grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; color: var(--muted); font-weight: 300; line-height: 1.85; }

a { text-decoration: none; color: inherit; }

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 0.6rem;
  display: block;
}

.teal-line {
  width: 44px; height: 2px;
  background: var(--teal);
  margin-bottom: 1.75rem;
}

.gold-line {
  width: 44px; height: 2px;
  background: var(--teal-mid);
  margin-bottom: 1.75rem;
}

/* ── LAYOUT ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5.5rem 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--cream);
}
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-gold {
  background: var(--teal-mid);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--cream); }

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── TOP BAR ── */
.top-bar {
  background: var(--teal);
  color: rgba(255,255,255,0.82);
  padding: 0.5rem 0;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar a { color: rgba(255,255,255,0.82); transition: color 0.2s; }
.top-bar a:hover { color: var(--gold-light); }
.top-bar-left, .top-bar-right { display: flex; gap: 1.5rem; align-items: center; }
.top-bar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.25); }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0; z-index: 200;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: rgba(26,74,74,0.06); }
.nav-book { margin-left: 0.75rem; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--teal); margin: 5px 0; transition: 0.3s; border-radius: 2px; }
.mobile-menu {
  display: none;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.65rem 0; font-size: 0.9rem; font-weight: 500; color: var(--charcoal); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO (Home) ── */
.hero {
  min-height: 88vh;
  display: block;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: var(--cream-deep);
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 78vh;
  position: relative;
  z-index: 1;
}
.hero-text { position: relative; }
.hero-text h1 { color: var(--teal); margin-bottom: 1.25rem; }
.hero-text h1 em { font-style: italic; color: var(--gold); font-family: 'Playfair Display', serif; }
.hero-text p { font-size: 1.05rem; max-width: 480px; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 2rem; margin-top: 2.5rem; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-num { font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: var(--teal); }
.hero-trust-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.hero-visual {
  display: flex; align-items: center; justify-content: center;
}
.hero-visual-inner {
  width: 420px; height: 480px;
  background: var(--cream-deep);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-accent-box {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 110px; height: 110px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}
.hero-badge {
  position: absolute;
  top: 1.5rem; right: -1rem;
  background: var(--teal);
  color: var(--cream);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}
.hero-badge strong { display: block; font-size: 1.3rem; font-family: 'DM Serif Display', serif; font-weight: 400; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--teal);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 35%;
  background: rgba(184,134,11,0.08);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-hero h1 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero p { color: rgba(245,240,232,0.75); max-width: 540px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--cream);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb .container { display: flex; gap: 0.5rem; font-size: 0.78rem; color: var(--muted); align-items: center; }
.breadcrumb a { color: var(--teal); font-weight: 500; }
.breadcrumb-sep { color: var(--muted); }

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--cream);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.intro-strip .container { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.intro-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--warm-white);
}
.intro-icon {
  width: 44px; height: 44px;
  background: rgba(26,74,74,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.intro-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.intro-item-text strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }
.intro-item-text span { font-size: 0.78rem; color: var(--muted); }

/* ── ABOUT SECTION (home) ── */
.about-home { background: var(--warm-white); }
.about-home-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: center; }
.about-photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-photo-deco {
  position: absolute; top: -18px; right: -18px;
  width: 100px; height: 100px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about-home-text h2 { color: var(--teal); margin-bottom: 1rem; }
.about-home-text p { margin-bottom: 1rem; }
.credential-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
.pill {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  background: var(--cream);
  color: var(--teal);
  border-radius: 2px;
  border: 1px solid var(--border);
}

/* ── CONDITIONS ── */
.conditions { background: var(--cream); }
.conditions-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 2.5rem; background: var(--border); }
.condition-item {
  background: var(--warm-white);
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 400;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 0.5rem;
}
.condition-item::before { content: '—'; color: var(--gold); font-weight: 300; }
.condition-item:hover { background: var(--teal); color: var(--cream); }
.condition-item:hover::before { color: var(--gold-light); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--teal); }
.testimonials-section h2 { color: var(--cream); }
.testimonials-section .eyebrow { color: var(--gold-light); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.testi-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
  transition: background 0.3s;
}
.testi-card:hover { background: rgba(255,255,255,0.11); }
.testi-stars { color: var(--gold-light); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testi-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(245,240,232,0.9);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testi-author strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--cream); }
.testi-author span { font-size: 0.75rem; color: rgba(245,240,232,0.55); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--teal-mid);
  padding: 3.5rem 0;
}
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: 1.8rem; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-top: 0.4rem; }
.cta-band .btn-outline-white { padding: 0.85rem 2.2rem; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  background: var(--warm-white);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--teal);
  transform: scaleY(0);
  transition: transform 0.3s;
  transform-origin: bottom;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon-wrap {
  width: 50px; height: 50px;
  background: rgba(26,74,74,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon-wrap svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.service-card h3 { font-size: 1.2rem; color: var(--charcoal); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.88rem; }

/* ── APPOINTMENT (full page) ── */
.appt-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: start; }
.appt-form-wrap {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.appt-form-wrap h2 { color: var(--teal); margin-bottom: 0.5rem; font-size: 1.7rem; }
.appt-form-wrap > p { margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.45rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.75rem; color: var(--muted); margin-top: 0.35rem; }
.form-submit { width: 100%; padding: 1rem; font-size: 0.85rem; margin-top: 0.5rem; }

.appt-sidebar h3 { font-size: 1.3rem; color: var(--teal); margin-bottom: 1.25rem; }
.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}
.sidebar-card h4 { color: var(--teal); margin-bottom: 0.75rem; font-size: 1rem; }
.sidebar-info-item { display: flex; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.88rem; }
.sidebar-info-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.sidebar-info-item span { color: var(--muted); }
.sidebar-info-item strong { color: var(--charcoal); display: block; font-weight: 600; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.hours-table tr td { padding: 0.35rem 0; color: var(--muted); }
.hours-table tr td:last-child { text-align: right; color: var(--charcoal); font-weight: 500; }
.hours-table tr td.closed { color: #c0392b; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none;
  text-align: left; padding: 1.25rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--teal); }
.faq-question .faq-icon { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--teal); fill: none; stroke-width: 2; transition: transform 0.3s; }
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 0 1.25rem; font-size: 0.93rem; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; }
.contact-form-wrap {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h2 { color: var(--teal); margin-bottom: 0.5rem; }
.contact-form-wrap > p { margin-bottom: 2rem; }
.map-placeholder {
  width: 100%; height: 280px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--muted);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.map-placeholder-inner { text-align: center; }
.map-placeholder-inner svg { width: 40px; height: 40px; stroke: var(--teal); fill: none; margin-bottom: 0.75rem; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-btn {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--teal); border-color: var(--teal); }
.social-btn svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; transition: stroke 0.2s; }
.social-btn:hover svg { stroke: var(--cream); }

/* ── ABOUT PAGE ── */
.about-full-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.about-sidebar-photo {
  position: sticky; top: 100px;
}
.photo-frame-tall {
  aspect-ratio: 3/4;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  margin-bottom: 1.5rem;
}
.photo-deco-corner {
  position: absolute; bottom: -16px; left: -16px;
  width: 80px; height: 80px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about-sidebar-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.about-sidebar-card h4 { color: var(--teal); margin-bottom: 0.75rem; }
.about-sidebar-card ul { list-style: none; }
.about-sidebar-card ul li {
  font-size: 0.88rem; color: var(--muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem;
}
.about-sidebar-card ul li:last-child { border-bottom: none; }
.about-sidebar-card ul li::before { content: '✓'; color: var(--teal); font-size: 0.8rem; font-weight: 700; }
.about-content h2 { color: var(--teal); margin-bottom: 0.75rem; }
.about-content h3 { color: var(--teal); font-size: 1.3rem; margin: 2rem 0 0.65rem; }
.about-content p { margin-bottom: 1rem; }
.quote-block {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block p {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.quote-block cite { font-size: 0.8rem; color: var(--muted); font-style: normal; font-weight: 600; }

/* ── PRIVACY ── */
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-content h2 { font-size: 1.4rem; color: var(--teal); margin: 2.5rem 0 0.75rem; }
.privacy-content p { margin-bottom: 1rem; }
.privacy-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-content ul li { font-size: 0.95rem; color: var(--muted); margin-bottom: 0.4rem; line-height: 1.7; }

/* ── FOOTER ── */
footer { background: var(--charcoal); color: rgba(245,240,232,0.7); }
.footer-main { padding: 4rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; }
.footer-brand { }
.footer-logo-main { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--cream); margin-bottom: 0.2rem; }
.footer-logo-sub { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; margin-bottom: 1.25rem; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(245,240,232,0.65); transition: color 0.2s; font-weight: 300; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-contact-item { display: flex; gap: 0.6rem; font-size: 0.82rem; margin-bottom: 0.65rem; align-items: flex-start; }
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(245,240,232,0.65); }
.footer-contact-item a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(245,240,232,0.08); padding: 1.25rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; font-size: 0.78rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(245,240,232,0.5); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--cream); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--teal); color: var(--cream);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s;
  z-index: 9999;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero::before { display: none; }
  .hero-visual { display: none; }
  .about-home-grid { grid-template-columns: 1fr; }
  .about-photo-frame { aspect-ratio: 4/3; max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .conditions-grid { grid-template-columns: repeat(3,1fr); }
  .appt-layout { grid-template-columns: 1fr; }
  .about-full-grid { grid-template-columns: 1fr; }
  .about-sidebar-photo { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
}

/* Mobile portrait */
@media (max-width: 768px) {

  /* Top bar — compact single row, centred */
  .top-bar { padding: 0.35rem 0; font-size: 0.7rem; }
  .top-bar .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
    padding: 0 1rem;
  }
  .top-bar-left, .top-bar-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
  }
  .top-bar-divider { display: none; }

  /* Navbar */
  .navbar .container { padding: 0.7rem 1rem; }
  .hamburger { display: block; }
  .nav-desktop { display: none; }
  .nav-logo-main { font-size: 1.05rem; }
  .nav-logo-sub { font-size: 0.52rem; letter-spacing: 0.12em; }
  .mobile-menu { padding: 0.75rem 1rem 1.25rem; }
  .mobile-menu a { font-size: 0.93rem; padding: 0.7rem 0; }

  /* Global spacing */
  section { padding: 2.5rem 0; }
  .container { padding: 0 1rem; }

  /* Page heroes */
  .page-hero { padding: 2rem 0; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .page-hero p { font-size: 0.88rem; }

  /* Home hero */
  .hero { padding: 2rem 0; }
  .hero-text h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-text p { font-size: 0.9rem; }
  .hero-ctas { flex-direction: column; gap: 0.75rem; }
  .hero-ctas .btn, .hero-ctas a { width: 100%; text-align: center; margin-right: 0; display: block; }
  .hero-trust { gap: 1rem; flex-wrap: wrap; }
  .hero-trust-num { font-size: 1.5rem; }

  /* Intro strip */
  .intro-strip .container { grid-template-columns: 1fr; }

  /* Grids → single column */
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .bio-layout { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .process-steps::before { display: none; }
  .cases-grid { grid-template-columns: 1fr !important; }
  .reviews-grid { grid-template-columns: 1fr !important; }

  /* Inline style grids override */
  .contact-method-card,
  .contact-card { width: 100%; }

  /* CTA band */
  .cta-band { padding: 2rem 0; }
  .cta-band .container { flex-direction: column; text-align: center; gap: 1.25rem; }
  .cta-band h2 { font-size: 1.4rem; }

  /* Footer */
  .footer-main { padding: 2.5rem 0 1.25rem; }
  .footer-bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 0.75rem; }

  /* Sidebar */
  .sidebar-card { padding: 1.25rem; }
  .appt-sidebar { margin-top: 2rem; }

  /* About page two-col blocks */
  .about-home-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-full-grid { grid-template-columns: 1fr; }

  /* Hours table */
  .hours-table td { font-size: 0.82rem; padding: 0.3rem 0; }

  /* Credential pills */
  .credential-pills { gap: 0.35rem; }
  .pill { font-size: 0.65rem; padding: 0.3rem 0.7rem; }

  /* Satisfaction banner */
  .satisfaction-banner { flex-direction: column; gap: 1rem; padding: 1.5rem; }

  /* Nature images */
  .photo-grid-2, .photo-grid-3 { grid-template-columns: 1fr; }
  .photo-grid-2 img, .photo-grid-3 img { height: 200px; }
  .img-strip { height: 180px; }
  .nature-divider { height: 150px; }

  /* Quote/stat grids in inline styles */
  .hero-badge { right: 0.5rem; top: 0.75rem; }
}

/* Small phones ≤ 420px */
@media (max-width: 420px) {
  .top-bar { display: none; }
  .nav-logo-main { font-size: 0.95rem; }
  .conditions-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: clamp(1.5rem, 8vw, 2rem); }
  h2 { font-size: clamp(1.2rem, 6vw, 1.6rem); }
  .btn { padding: 0.72rem 1.1rem; font-size: 0.7rem; }
  .testi-text { font-size: 0.92rem; }
  .review-card { padding: 1.25rem; }
}

/* Dashboard styles */
.dashboard-wrap { min-height: 100vh; background: #F0F4F4; }
.dashboard-header {
  background: var(--teal);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.dashboard-header h1 { color: var(--cream); font-size: 1.3rem; }
.dashboard-header span { color: rgba(245,240,232,0.7); font-size: 0.8rem; }
.dashboard-body { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 60px); }
.dashboard-nav { background: var(--charcoal); padding: 1.5rem 0; }
.dashboard-nav a { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.5rem; font-size: 0.85rem; color: rgba(245,240,232,0.65); font-weight: 400; transition: all 0.2s; }
.dashboard-nav a:hover, .dashboard-nav a.active { background: rgba(255,255,255,0.07); color: var(--cream); }
.dashboard-nav a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; flex-shrink: 0; }
.dashboard-content { padding: 2rem; }
.dash-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 2rem; }
.dash-stat {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
}
.dash-stat-num { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--teal); }
.dash-stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.dash-section-title { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; }
.appt-table { width: 100%; border-collapse: collapse; background: var(--warm-white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.appt-table th { background: var(--cream); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); font-weight: 700; padding: 0.85rem 1.25rem; text-align: left; }
.appt-table td { padding: 1rem 1.25rem; border-top: 1px solid var(--border); font-size: 0.88rem; color: var(--charcoal); }
.appt-table tr:hover td { background: #F7FAFA; }
.status-badge { display: inline-block; padding: 0.2rem 0.65rem; border-radius: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.status-new { background: rgba(184,134,11,0.12); color: var(--gold); }
.status-confirmed { background: rgba(26,74,74,0.1); color: var(--teal); }
.status-done { background: rgba(0,0,0,0.06); color: var(--muted); }

/* ── NATURE IMAGERY ── */
.img-panel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.img-strip {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius);
}

.img-accent {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius);
}

.nature-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.nature-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.9);
}
.nature-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
}

/* Photo grid */
.photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.photo-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.photo-grid-2 img,
.photo-grid-3 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: saturate(0.88);
}
.photo-grid-2 img:hover,
.photo-grid-3 img:hover {
  transform: scale(1.02);
  filter: saturate(1.05);
}
.photo-grid-2 img.tall,
.photo-grid-3 img.tall {
  height: 340px;
}

/* Full-bleed nature divider */
.nature-divider {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  filter: brightness(0.65) saturate(0.85);
}

@media (max-width: 768px) {
  .photo-grid-2, .photo-grid-3 { grid-template-columns: 1fr; }
  .photo-grid-2 img, .photo-grid-3 img { height: 200px; }
  .img-strip { height: 200px; }
  .nature-divider { height: 180px; }
}

/* ── INLINE GRID MOBILE OVERRIDES ── */
@media (max-width: 768px) {
  /* Contact page two-card grid */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Stats 4-col → 2-col */
  div[style*="repeat(4,1fr)"],
  div[style*="repeat(4, 1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
  /* 3-col inline → 1-col */
  div[style*="repeat(3,1fr)"],
  div[style*="repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  /* Any inline display:grid with columns → collapse */
  .about-section .bio-layout,
  .about-section > div[style*="grid"] {
    grid-template-columns: 1fr !important;
  }
  /* Overflow fix */
  body, .container { max-width: 100%; overflow-x: hidden; }
  img { max-width: 100%; height: auto; }
  table { width: 100%; }
}
