/* ============================================================
   DR. AMANDA WILLIAMS — WEBSITE STYLES
   Palette: Warm ivory · Navy · Terracotta · Deep charcoal
   Fonts: Lora (headings) · Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --ivory:       #FDFAF6;
  --ivory-dark:  #F5EDE0;
  --sage:        #2C4A7C;
  --sage-light:  #C0D0E8;
  --sage-dark:   #1A2E52;
  --terra:       #C07A5A;
  --terra-light: #EDD8C8;
  --blush:       #D8E2F0;
  --charcoal:    #2C2825;
  --warm-gray:   #6B6460;
  --divider:     #DDD5CC;

  --font-serif:  'Lora', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --max-w:       1100px;
  --section-v:   88px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 2px 24px rgba(44,40,37,0.08);
  --shadow-hover:0 6px 32px rgba(44,40,37,0.14);

  --transition:  0.25s ease;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── BASE ───────────────────────────────────────────── */
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--warm-gray); }

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

section { padding: var(--section-v) 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
  display: block;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
}
.btn-primary:hover {
  background: #b3734f;
  border-color: #b3734f;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--divider);
}
.btn-outline:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  transform: translateY(-1px);
}

.btn-sage {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}
.btn-sage:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: #1a2f5e;
  line-height: 1.2;
}
.nav-logo span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #1a2f5e;
  text-transform: uppercase;
  margin-top: 1px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: #1a2f5e;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terra);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 0.88rem; }

/* hamburger */
.mobile-nav-cta { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: #1a2f5e;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--ivory) 0%, var(--ivory-dark) 45%, var(--blush) 100%);
  padding: 100px 0 96px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,133,106,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 300px 1fr 420px;
  gap: 48px;
  align-items: center;
}

.hero-photo {
  display: flex;
  justify-content: center;
}

.hero-photo-frame {
  width: 280px;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
  position: relative;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--blush) 0%, var(--ivory-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-placeholder span {
  font-size: 0.85rem;
  color: var(--warm-gray);
  font-style: italic;
}

.hero-text { max-width: 600px; }

.hero-headline {
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--terra);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 32px;
  font-size: 0.84rem;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--divider);
  flex-shrink: 0;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--divider);
}

.hero-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}

.hero-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.hero-card p {
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

.hours-list {
  list-style: none;
  font-size: 0.88rem;
  color: var(--warm-gray);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--ivory-dark);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list strong { color: var(--charcoal); font-weight: 500; }

/* ── TRUST BAR ───────────────────────────────────────── */
.trust-bar {
  background: var(--ivory-dark);
  padding: 28px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--warm-gray);
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── PILLARS ─────────────────────────────────────────── */
.pillars { background: #fff; }

.pillars-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.pillars-header p { margin-top: 16px; font-size: 1.05rem; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--divider);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pillar-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--terra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.pillar-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.pillar-card p  { font-size: 0.95rem; line-height: 1.7; }

/* ── ABOUT SNAPSHOT ──────────────────────────────────── */
.about-snap {
  background: var(--ivory);
}

.about-snap-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-snap-image {
  position: relative;
}

.about-snap-image .image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--blush), var(--terra-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.6);
}

.about-snap-image .accent-block {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: var(--radius-lg);
  background: var(--sage-light);
  z-index: -1;
}

.about-snap-text .eyebrow { margin-bottom: 12px; }
.about-snap-text h2 { margin-bottom: 24px; }
.about-snap-text p  { margin-bottom: 20px; font-size: 1rem; line-height: 1.8; }

.about-quote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--ivory-dark);
  border-left: 3px solid var(--terra);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
}

/* ── SERVICES ─────────────────────────────────────────── */
.services { background: #fff; }

.services-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.services-header p { margin-top: 16px; font-size: 1.05rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--divider);
  display: flex;
  gap: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.service-card-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card-body p  { font-size: 0.93rem; line-height: 1.7; }

.services-note {
  text-align: center;
  padding: 28px;
  background: var(--blush);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  color: var(--warm-gray);
}
.services-note strong { color: var(--charcoal); }

/* ── CTA BAND ─────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.cta-band p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 40px;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--sage-dark);
  border-color: #fff;
}
.cta-band .btn-primary:hover {
  background: var(--ivory);
  border-color: var(--ivory);
}
.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.cta-band .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}
.cta-band-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand .nav-logo span { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-col h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact-icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--ivory) 0%, var(--blush) 100%);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--divider);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { font-size: 1.1rem; max-width: 540px; }

/* ── ABOUT PAGE ──────────────────────────────────────── */
.credentials-section { background: var(--ivory-dark); }

.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cred-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--divider);
}
.cred-card h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}
.cred-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cred-card ul li {
  font-size: 0.92rem;
  color: var(--warm-gray);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.cred-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* ── APPOINTMENTS PAGE ───────────────────────────────── */
.appt-steps {
  counter-reset: steps;
}

.appt-step {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  align-items: flex-start;
}
.appt-step-num {
  counter-increment: steps;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.appt-step-num::after { content: counter(steps); }

.appt-step-body h3 { margin-bottom: 8px; }
.appt-step-body p  { font-size: 0.95rem; }

.appt-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.info-card {
  background: var(--ivory-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--divider);
}
.info-card h3 { margin-bottom: 16px; font-size: 1.15rem; }

/* ── FORMS PAGE ──────────────────────────────────────── */
.forms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.form-card {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition);
}
.form-card:hover { box-shadow: var(--shadow-hover); }
.form-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.form-card p  { font-size: 0.92rem; flex: 1; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-v: 64px; }

  .hero-inner        { grid-template-columns: 1fr; }
  .hero-photo        { display: block; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-card         { display: none; }
  .pillars-grid      { grid-template-columns: 1fr; }
  .about-snap-inner  { grid-template-columns: 1fr; }
  .about-snap-image  { display: none; }
  .services-grid     { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr; gap: 36px; }
  .footer-4-inner    { grid-template-columns: 1fr !important; gap: 36px !important; padding: 0 24px !important; }
  .footer-tagline-stair div { padding-left: 0 !important; }
  .footer-4-bottom   { padding: 18px 24px 0 !important; }
  .cred-grid         { grid-template-columns: 1fr; }
  .appt-info-grid    { grid-template-columns: 1fr; }
  .forms-grid        { grid-template-columns: 1fr; }
  .trust-bar-inner   { gap: 16px; flex-direction: column; align-items: flex-start; padding-left: 10%; }
  .trust-item        { width: 100%; }

  .nav-links         { display: none !important; }
  .nav-toggle        { display: flex !important; }
  .nav .nav-cta      { display: none !important; }
  .mobile-nav-cta    { display: block !important; }

  .hero-note         { justify-content: center; text-align: center; margin-left: auto; margin-right: auto; }
  .hero-note::before { display: none; }

  #mobile-nav li {
    border-bottom: 1px solid #eee;
  }

  #mobile-nav li:last-child {
    border-bottom: none;
  }

  #mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    color: #1a2f5e;
  }

  #mobile-nav .mobile-nav-cta {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
  }

  #mobile-nav .mobile-nav-cta a {
    display: block;
    background: #C07A5A;
    color: #fff !important;
    text-align: center;
    padding: 12px 0;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
  }
}

@media (max-width: 600px) {
  .hero { padding: 72px 0 64px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── FOOTER-4 (shared footer) ─────────────────────────── */
footer.footer-4 {
  background: #fff;
  border-top: 5px solid #C07A5A;
  padding: 48px 0 24px;
}
.footer-4-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 0 8%;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px 24px;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: #1a2f5e;
  line-height: 1.2;
  margin-bottom: 4px;
}
.footer-brand-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a2f5e;
  margin-bottom: 14px;
}
.footer-tagline-stair {
  margin-top: 12px;
  font-size: 0.9rem;
  font-style: italic;
  color: #1a2f5e;
  line-height: 1.9;
}
.footer-col-heading {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C07A5A;
  margin-bottom: 14px;
}
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav li a { color: #1a2f5e; text-decoration: none; font-size: 0.9rem; }
.footer-nav li a:hover { color: #C07A5A; }
.footer-contact-item { font-size: 0.9rem; color: #1a2f5e; margin-bottom: 10px; line-height: 1.5; }
.footer-4-bottom {
  border-top: 1px solid #eee;
  margin-top: 36px;
  padding: 18px 40px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #1a2f5e;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
