/* ============================================================
   DR. JEFF WILLIAMSON — Global Stylesheet
   Brand: Warm Community Editorial
   Primary font: New Spirit | Body: Plus Jakarta Sans
   ============================================================ */

/* ----- Font Faces ----------------------------------------- */
@font-face {
  font-family: 'New Spirit';
  src: url('../fonts/New Spirit Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'New Spirit';
  src: url('../fonts/New Spirit Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'New Spirit';
  src: url('../fonts/New Spirit Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'New Spirit';
  src: url('../fonts/New Spirit SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'New Spirit';
  src: url('../fonts/New Spirit Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'New Spirit';
  src: url('../fonts/New Spirit Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ----- CSS Variables --------------------------------------- */
:root {
  --primary:       #ae1d18;
  --primary-dark:  #8a1612;
  --primary-mid:   #d1382d;
  --bg:            #fcf9f8;
  --bg-soft:       #f6f3f2;
  --bg-card:       #f0eded;
  --border:        #e3beb9;
  --border-soft:   #eae7e7;
  --text:          #1b1c1c;
  --text-muted:    #5a403d;
  --text-light:    #8f706c;
  --inverse-bg:    #303030;
  --inverse-text:  #f3f0f0;
  --white:         #ffffff;

  --font-display:  'New Spirit', Georgia, serif;
  --font-body:     'Plus Jakarta Sans', system-ui, sans-serif;

  --container:     1280px;
  --gutter:        24px;
  --section-pad:   80px;
  --radius:        0.5rem;
  --radius-lg:     1rem;
  --radius-full:   9999px;
}

/* ----- Reset & Base --------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ----- Typography ----------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; font-weight: 500; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ----- Layout --------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { padding-block: var(--section-pad); }

.section-header {
  margin-bottom: 3rem;
}
.section-header .eyebrow { margin-bottom: 0.75rem; }

/* ----- Buttons -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  border: 2px solid transparent;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* ----- Navigation ----------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 249, 248, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--primary); }

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 0.5rem; }

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

/* ----- Hero Section --------------------------------------- */
.hero {
  padding-block: 0;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 80px;
  width: 100%;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--primary);
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--text);
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-body {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}
.booking-badge::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-social-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 500;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.hero-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(27,28,28,0.12);
}

.hero-accent-text {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(27,28,28,0.08);
  max-width: 220px;
}
.hero-accent-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.hero-accent-text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ----- Pillars / What I Do -------------------------------- */
.pillars { background: var(--bg-soft); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pillar-card:hover {
  box-shadow: 0 12px 32px rgba(27,28,28,0.08);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: #fbeaea;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.pillar-icon svg { width: 24px; height: 24px; fill: var(--primary); }

.pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.pillar-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ----- About Strip (home) --------------------------------- */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-strip-images {
  position: relative;
  height: 520px;
}
.about-strip-img-main {
  position: absolute;
  inset: 0;
  width: 75%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-strip-img-accent {
  position: absolute;
  bottom: -24px;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--bg);
  box-shadow: 0 8px 24px rgba(27,28,28,0.1);
}

.about-strip-content .eyebrow { margin-bottom: 1rem; }
.about-strip-content h2 { margin-bottom: 1.25rem; }
.about-strip-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}
.about-strip-content p:last-of-type { margin-bottom: 2rem; }

/* ----- Testimonials --------------------------------------- */
.testimonials { background: var(--inverse-bg); color: var(--inverse-text); }
.testimonials h2 { color: var(--inverse-text); }
.testimonials .eyebrow { color: #ffb4aa; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--primary-mid);
  margin-bottom: 1.25rem;
  display: block;
}

.testimonial-card blockquote {
  font-size: 0.9875rem;
  line-height: 1.75;
  color: rgba(243,240,240,0.85);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-author-info strong {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--inverse-text);
}
.testimonial-author-info span {
  font-size: 0.8125rem;
  color: rgba(243,240,240,0.55);
}

/* ----- Email Signup --------------------------------------- */
.email-signup { background: var(--bg-soft); }
.email-signup-inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.email-signup-inner h2 { margin-bottom: 1rem; }
.email-signup-inner p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.signup-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin-inline: auto;
}
.signup-form input {
  flex: 1;
  height: 52px;
  padding: 0 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.signup-form input:focus { border-color: var(--primary); }
.signup-form input::placeholder { color: var(--text-light); }

.signup-disclaimer {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ----- Page Hero (interior pages) ------------------------- */
.page-hero {
  padding-block: 80px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.page-hero-content .eyebrow { margin-bottom: 1rem; }
.page-hero-content h1 { margin-bottom: 1.25rem; }
.page-hero-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.page-hero-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px rgba(27,28,28,0.12);
}

/* ----- About Body Sections -------------------------------- */
.about-story {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}
.about-story-text h2 { margin-bottom: 1.25rem; }
.about-story-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

.about-sidebar { position: sticky; top: 100px; }
.about-sidebar-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.about-sidebar-card h4 { margin-bottom: 1rem; }
.about-sidebar-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.9375rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.about-sidebar-card ul li:last-child { border-bottom: none; }
.about-sidebar-card ul li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ----- Focus Areas Grid ----------------------------------- */
.focus-areas { background: var(--bg-soft); }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.focus-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.focus-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.focus-card-body { padding: 1.5rem; }
.focus-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.focus-card-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ----- Books Page ---------------------------------------- */
.book-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
}
.book-feature.reverse { grid-template-columns: 1fr auto; }
.book-feature.reverse .book-cover { order: 2; }
.book-feature.reverse .book-info { order: 1; }

.book-cover {
  flex-shrink: 0;
}
.book-cover img {
  width: 240px;
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(27,28,28,0.18), 0 4px 12px rgba(27,28,28,0.1);
}

.book-info .eyebrow { margin-bottom: 0.75rem; }
.book-info h2 { margin-bottom: 0.5rem; }
.book-info .book-subtitle {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
}
.book-info p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.book-info p:last-of-type { margin-bottom: 2rem; }

.book-divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin-block: var(--section-pad);
}

/* ----- Blog Section --------------------------------------- */
.blog-intro { background: var(--bg-soft); }
.blog-cta-box {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}
.blog-cta-box h3 { margin-bottom: 1rem; }
.blog-cta-box p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

/* ----- Work With Me --------------------------------------- */
.work-hero { background: var(--inverse-bg); padding-block: 100px; }
.work-hero-inner { text-align: center; max-width: 720px; margin-inline: auto; }
.work-hero .eyebrow { color: #ffb4aa; margin-bottom: 1.25rem; }
.work-hero h1 { color: var(--inverse-text); margin-bottom: 1.5rem; }
.work-hero p {
  font-size: 1.125rem;
  color: rgba(243,240,240,0.8);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.work-booking-note {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(174,29,24,0.2);
  border: 1px solid rgba(174,29,24,0.4);
  border-radius: var(--radius-full);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffb4aa;
  margin-bottom: 2.5rem;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offering-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.offering-card:hover {
  box-shadow: 0 12px 32px rgba(27,28,28,0.08);
  transform: translateY(-4px);
}

.offering-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

.offering-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
}
.offering-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* ----- Contact Form --------------------------------------- */
.contact-section {
  background: var(--bg-soft);
}

.contact-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: #fbeaea;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; fill: var(--primary); }
.contact-detail-text strong {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.contact-detail-text span {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.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.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a403d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ----- Footer --------------------------------------------- */
.site-footer {
  background: var(--inverse-bg);
  color: var(--inverse-text);
  padding-block: 60px 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(243,240,240,0.6);
  line-height: 1.7;
  margin-top: 0.875rem;
  max-width: 280px;
}

.footer-brand .nav-logo {
  font-size: 1.2rem;
  color: var(--inverse-text);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243,240,240,0.5);
  margin-bottom: 1.25rem;
}
.footer-col ul li {
  margin-bottom: 0.625rem;
}
.footer-col ul li a {
  font-size: 0.9375rem;
  color: rgba(243,240,240,0.7);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--inverse-text); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(243,240,240,0.4);
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social .social-link {
  border-color: rgba(255,255,255,0.15);
  color: rgba(243,240,240,0.6);
}
.footer-social .social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ----- Divider / Accent ----------------------------------- */
.divider-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-block: 2rem;
}
.divider-text::before,
.divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-soft);
}
.divider-text span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-muted);
  white-space: nowrap;
  font-style: italic;
}

/* ----- Utilities ------------------------------------------ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

.red { color: var(--primary); }
.italic { font-style: italic; }

/* ----- Responsive ----------------------------------------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image { justify-content: center; }
  .hero-photo-wrap { max-width: 460px; }
  .about-strip { grid-template-columns: 1fr; gap: 3rem; }
  .about-strip-images { height: 360px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-image { display: none; }
  .about-story { grid-template-columns: 1fr; gap: 3rem; }
  .about-sidebar { position: static; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .book-feature, .book-feature.reverse { grid-template-columns: 1fr; }
  .book-feature .book-cover, .book-feature.reverse .book-cover { order: 0; }
  .book-feature .book-info, .book-feature.reverse .book-info { order: 1; }
  .book-cover img { width: 180px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-soft);
    padding: 1.5rem var(--gutter);
    gap: 1.25rem;
    box-shadow: 0 8px 24px rgba(27,28,28,0.1);
    z-index: 99;
  }
  .nav-cta { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-photo-wrap::before { display: none; }
  .hero-photo-wrap img { height: 400px; }
  .signup-form { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
