@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  color-scheme: light;
  --indigo: #2A0057;
  --indigo-mid: #3d0080;
  --mint: #46A58E;
  --mint-light: #e0f2ee;
  --mint-dark: #338a75;
  --cream: #FAF8F5;
  --white: #ffffff;
  --text: #1a1020;
  --text-mid: #4a3f5c;
  --text-light: #7a6e8a;
  --border: #e8e2f0;
  --shadow: rgba(42,0,87,0.10);
  --contrast-bg: #2A0057;
  --contrast-text: #ffffff;
  --contrast-text-muted: rgba(255,255,255,0.75);
  --contrast-border: rgba(255,255,255,0.1);
  --contrast-shadow: rgba(0,0,0,0.3);
  --proof-label-bg: rgba(70,165,142,0.12);
  --proof-label-border: rgba(70,165,142,0.2);
  --theme-toggle-bg: transparent;
  --theme-toggle-text: #2A0057;
  --theme-toggle-border: #e8e2f0;
}

html[data-theme='dark'] {
  color-scheme: dark;
  --indigo: #f5f2f8;
  --indigo-mid: #ffffff;
  --mint: #66c9b1;
  --mint-light: rgba(102,201,177,0.14);
  --mint-dark: #8ce2cd;
  --cream: #0f1115;
  --white: #171a20;
  --text: #f5f2f8;
  --text-mid: #d3ccdd;
  --text-light: #a69db4;
  --border: #2b3039;
  --shadow: rgba(0,0,0,0.35);
  --contrast-bg: #2A0057;
  --contrast-text: #ffffff;
  --contrast-text-muted: rgba(255,255,255,0.75);
  --contrast-border: rgba(255,255,255,0.1);
  --contrast-shadow: rgba(0,0,0,0.3);
  --proof-label-bg: rgba(102,201,177,0.16);
  --proof-label-border: rgba(102,201,177,0.24);
  --theme-toggle-bg: rgba(255,255,255,0.04);
  --theme-toggle-text: #f5f2f8;
  --theme-toggle-border: #2b3039;
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 90px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

/* ===== SITE NAV ===== */
.site-nav {
  background: var(--white);
  padding: 1.1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-image {
  display: block;
  height: 48px;
  width: auto;
}
.logo-image-dark { display: none; }
html[data-theme='dark'] .logo-image-light { display: none; }
html[data-theme='dark'] .logo-image-dark { display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--indigo); }
.nav-links a.active { color: var(--indigo); font-weight: 600; }
.nav-cta {
  background: var(--mint);
  color: white !important;
  padding: 0.55rem 1.3rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--mint-dark) !important; color: white !important; }
.theme-toggle {
  min-width: 74px;
  height: 42px;
  border: 1px solid var(--theme-toggle-border);
  border-radius: 999px;
  background: var(--theme-toggle-bg);
  color: var(--theme-toggle-text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.theme-toggle:hover {
  background: var(--mint-light);
  border-color: var(--mint);
  color: var(--indigo);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--indigo);
  border-radius: 2px;
  display: block;
}

/* ===== SHARED COMPONENTS ===== */
.section { padding: 5rem 4rem; }
.section-narrow { padding: 5rem 4rem; max-width: 800px; margin: 0 auto; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  background: var(--mint-light);
  border-radius: 20px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); color: var(--indigo); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--indigo); }
h3 { font-size: 1.6rem; color: var(--indigo); }

.lead { font-size: 1.15rem; color: var(--text-mid); max-width: 640px; line-height: 1.8; }

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-primary { background: var(--mint); color: white; }
.btn-primary:hover { background: var(--mint-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(70,165,142,0.35); }
.btn-outline { background: transparent; color: var(--indigo); border: 2px solid var(--indigo); }
.btn-outline:hover { background: var(--indigo); color: white; transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--indigo); }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* Quote block */
.pull-quote {
  border-left: 4px solid var(--mint);
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 2px 16px var(--shadow);
  margin: 2rem 0;
}
.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--indigo);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.pull-quote cite {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mint);
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 20px var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px var(--shadow); }

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

/* Divider */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ===== HOME PAGE ===== */

/* Hero */
.hero {
  background: var(--contrast-bg);
  padding: 7rem 4rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(70,165,142,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(70,165,142,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.hero-inner h1 { color: var(--contrast-text); max-width: 700px; margin-bottom: 1.5rem; }
.hero-inner h1 em { color: var(--mint); font-style: normal; }
.hero-inner .lead { color: var(--contrast-text-muted); max-width: 560px; }
.hero-inner .btn-group { margin-top: 2.5rem; }

/* Proof strip */
.proof-strip {
  background: var(--white);
  padding: 1.75rem 4rem;
  border-bottom: 1px solid var(--border);
}
.proof-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
.proof-heading {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.proof-strip .proof-label {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.45rem 0.85rem;
  background: var(--proof-label-bg);
  border: 1px solid var(--proof-label-border);
  border-radius: 999px;
}
.proof-heading p {
  color: var(--text-mid);
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 24rem;
}
.proof-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-height: 100%;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(42,0,87,0.06);
}
.proof-item strong {
  color: var(--indigo);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.proof-item span {
  color: var(--text-mid);
  font-size: 0.86rem;
  line-height: 1.45;
}

/* Intro */
.home-intro { background: var(--cream); }
.home-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.home-intro-text h2 { margin-bottom: 1.5rem; }
.home-intro-text p { color: var(--text-mid); margin-bottom: 1rem; }
.home-intro-img {
  background: var(--indigo);
  border-radius: 16px;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px var(--shadow);
}
.home-intro-img img { width: 100%; height: 100%; object-fit: cover; }

/* What I do */
.what-i-do { background: var(--white); }
.what-i-do .container h2 { margin-bottom: 0.75rem; }
.what-i-do .container .lead { margin-bottom: 3rem; }
.service-card { border-top: 3px solid var(--mint); }
.service-card .service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 1.25rem; }
.service-card .price { font-weight: 700; color: var(--mint); font-size: 0.9rem; }

/* Testimonial feature */
.testimonial-feature {
  background: var(--contrast-bg);
  padding: 6rem 4rem;
}
.testimonial-feature-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial-feature blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--contrast-text);
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 1.5rem;
}
.testimonial-feature cite {
  font-size: 0.85rem;
  color: var(--mint);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* About teaser */
.about-teaser { background: var(--cream); }
.about-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-box {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
}
.stat-box .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--indigo);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-box .stat-label { font-size: 0.82rem; color: var(--text-mid); font-weight: 500; }

/* Testimonials grid */
.testimonials-grid { background: var(--white); }
.testimonials-grid .container h2 { margin-bottom: 0.75rem; }
.testimonials-grid .container .lead { margin-bottom: 3rem; }
.testi-card { border-top: none; }
.testi-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.testi-card cite {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mint);
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: var(--contrast-bg);
  padding: 6rem 4rem 5rem;
}
.about-hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-hero h1 { color: var(--contrast-text); margin-bottom: 1.5rem; }
.about-hero .lead { color: var(--contrast-text-muted); }
.about-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--contrast-border);
  box-shadow: 0 20px 60px var(--contrast-shadow);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-story { background: var(--cream); }
.about-story-inner { max-width: 720px; margin: 0 auto; }
.about-story-inner p { color: var(--text-mid); margin-bottom: 1.25rem; }
.about-story-inner h3 { margin: 2.5rem 0 1rem; }

.credentials { background: var(--white); }
.credentials-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.cred-list { list-style: none; }
.cred-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.cred-list li::before { content: '✓'; color: var(--mint); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ===== SERVICES PAGE ===== */
.services-hero {
  background: var(--cream);
  padding: 5rem 4rem 4rem;
  border-bottom: 1px solid var(--border);
}
.services-hero-inner { max-width: 1100px; margin: 0 auto; }
.services-hero h1 { margin-bottom: 1rem; }
.services-hero .lead { max-width: 600px; }

.services-list { background: var(--white); padding: 5rem 4rem; }
.services-list-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }

.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 2.5rem;
  padding: 2.5rem;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--border);
  align-items: start;
  transition: box-shadow 0.2s;
}
.service-row:hover { box-shadow: 0 6px 28px var(--shadow); }
.service-row-info h3 { margin-bottom: 0.4rem; }
.service-row-info .service-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.service-row-body p { color: var(--text-mid); margin-bottom: 0.75rem; font-size: 0.95rem; }
.service-row-body ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.service-row-body ul li {
  background: var(--mint-light);
  color: var(--mint-dark);
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.service-row-cta { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; min-width: 160px; }
.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--indigo);
  text-align: right;
}
.service-price small { font-size: 0.9rem; color: var(--text-light); display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400; }

/* ===== BOOK PAGE ===== */
.book-hero {
  background: var(--contrast-bg);
  padding: 6rem 4rem;
}
.book-hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
.book-cover {
  aspect-ratio: 2/3;
  background: var(--contrast-border);
  border-radius: 12px;
  box-shadow: 0 30px 80px var(--contrast-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--contrast-border);
}
.book-cover-frame {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
}
.book-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.book-cover-image.is-active {
  opacity: 1;
  transform: scale(1);
}
.book-flip-btn {
  align-self: center;
  min-width: 180px;
}
.book-info h1 { color: var(--contrast-text); margin-bottom: 0.5rem; font-size: clamp(2.2rem, 4vw, 3.2rem); }
.book-info .book-subtitle { color: var(--mint); font-size: 1.1rem; margin-bottom: 1.5rem; font-style: italic; font-family: 'Cormorant Garamond', serif; }
.book-info p { color: var(--contrast-text-muted); margin-bottom: 1rem; }
.book-info .btn-group { margin-top: 2rem; }

/* ===== BLOG PAGE ===== */
.blog-hero {
  background: var(--cream);
  padding: 4rem 4rem 3rem;
  border-bottom: 1px solid var(--border);
}
.blog-hero-inner { max-width: 1100px; margin: 0 auto; }
.blog-posts { padding: 4rem; background: var(--white); }
.blog-posts-inner { max-width: 1100px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.blog-card { background: var(--cream); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px var(--shadow); }
.blog-card-img { height: 180px; background: var(--contrast-bg); display: flex; align-items: center; justify-content: center; color: var(--contrast-text-muted); font-size: 0.8rem; }
.blog-card-body { padding: 1.5rem; }
.blog-tag { font-size: 0.72rem; font-weight: 700; color: var(--mint); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 0.5rem; }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.blog-card-body p { font-size: 0.88rem; color: var(--text-mid); }
.blog-note { background: var(--mint-light); border-radius: 8px; padding: 1rem 1.5rem; margin-top: 2rem; font-size: 0.88rem; color: var(--mint-dark); font-weight: 500; }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: var(--contrast-bg);
  padding: 5rem 4rem 4rem;
}
.contact-hero-inner { max-width: 1100px; margin: 0 auto; }
.contact-hero h1 { color: var(--contrast-text); margin-bottom: 1rem; }
.contact-hero .lead { color: var(--contrast-text-muted); }

.contact-body { padding: 5rem 4rem; background: var(--cream); }
.contact-body-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.contact-methods { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-method {
  background: var(--white);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 2px 12px var(--shadow);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-method:hover { transform: translateY(-2px); box-shadow: 0 6px 24px var(--shadow); }
.contact-method .method-icon { font-size: 1.6rem; flex-shrink: 0; }
.contact-method h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--indigo); margin-bottom: 0.15rem; }
.contact-method p { font-size: 0.85rem; color: var(--text-mid); }

.contact-form-area { background: var(--white); border-radius: 16px; padding: 2.5rem; box-shadow: 0 4px 24px var(--shadow); }
.contact-form-area h3 { margin-bottom: 1.5rem; font-size: 1.4rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-mid); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--cream);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--mint);
}
.form-group textarea { height: 120px; resize: vertical; }

/* Form feedback states */
.form-message {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
  display: none;
}
.form-message.success { background: var(--mint-light); color: var(--mint-dark); border: 1px solid var(--mint); }
.form-message.error { background: #fde8e8; color: #c0392b; border: 1px solid #f5c6c6; }

/* ===== FOOTER ===== */
footer {
  background: var(--contrast-bg);
  color: var(--contrast-text);
  padding: 4rem 4rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--contrast-border);
}
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--contrast-text);
  margin-bottom: 1rem;
}
.footer-brand .footer-logo span { color: var(--mint); }
.footer-brand p { font-size: 0.88rem; color: var(--contrast-text-muted); max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mint); margin-bottom: 1.25rem; }
.footer-col a { display: block; color: var(--contrast-text-muted); text-decoration: none; font-size: 0.9rem; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--contrast-text); }
.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--contrast-text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .site-nav {
    padding: 1rem 2rem;
  }

  .nav-links {
    gap: 1.15rem;
  }

  .section,
  .section-narrow,
  .hero,
  .about-hero,
  .services-hero,
  .services-list,
  .book-hero,
  .contact-hero,
  .contact-body,
  .testimonial-feature,
  .blog-hero,
  .blog-posts,
  footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .home-intro-inner,
  .about-hero-inner,
  .book-hero-inner {
    gap: 3rem;
  }

  .proof-strip-inner {
    grid-template-columns: 1fr;
  }

  .proof-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-teaser-inner,
  .credentials-inner,
  .contact-body-inner {
    gap: 2.5rem;
  }

  .grid-3,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-row {
    grid-template-columns: 1fr 1.5fr;
  }

  .service-row-cta {
    grid-column: 1 / -1;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .service-price {
    text-align: left;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }

  [id] {
    scroll-margin-top: 76px;
  }

  .site-nav {
    padding: 0.85rem 1.5rem;
    position: sticky;
  }

  .logo {
    flex-shrink: 0;
  }

  .logo-image {
    height: 40px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.5rem 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 28px var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.8rem 0;
    font-size: 0.95rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.8rem 1rem !important;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .theme-toggle {
    min-width: 68px;
    height: 40px;
  }

  .section,
  .section-narrow {
    padding: 3rem 1.5rem;
  }

  .hero,
  .about-hero,
  .book-hero,
  .contact-hero {
    padding: 4rem 1.5rem 3.5rem;
  }

  .services-hero,
  .services-list,
  .contact-body,
  .testimonial-feature,
  .blog-hero,
  .blog-posts,
  footer {
    padding: 3rem 1.5rem;
  }

  .hero::before {
    width: 280px;
    height: 280px;
    top: -90px;
    right: -130px;
  }

  .hero::after {
    width: 180px;
    height: 180px;
    bottom: -70px;
    left: -60px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .lead {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .btn-group {
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.25rem;
  }

  .proof-strip {
    padding: 1.25rem 1.5rem;
  }

  .proof-strip-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .proof-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .proof-item {
    width: 100%;
  }

  .home-intro-inner,
  .about-hero-inner,
  .about-teaser-inner,
  .credentials-inner,
  .book-hero-inner,
  .contact-body-inner,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-intro-img,
  .about-photo {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .grid-3,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .stat-box {
    padding: 1rem 0.75rem;
  }

  .stat-box .stat-num {
    font-size: 2.2rem;
  }

  .stat-box .stat-label {
    font-size: 0.76rem;
  }

  .card,
  .contact-form-area {
    padding: 1.5rem;
  }

  .pull-quote {
    padding: 1.25rem 1.5rem;
  }

  .pull-quote p {
    font-size: 1.3rem;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .service-row-body ul {
    margin-bottom: 0;
  }

  .service-row-cta {
    grid-column: auto;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    min-width: 0;
  }

  .service-price {
    text-align: left;
  }

  .book-cover {
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .contact-method {
    padding: 1rem;
    gap: 1rem;
  }

  .contact-method p {
    overflow-wrap: anywhere;
  }

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

  .footer-brand p {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .site-nav {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .proof-items {
    grid-template-columns: 1fr;
  }

  .section,
  .section-narrow,
  .hero,
  .about-hero,
  .services-hero,
  .services-list,
  .book-hero,
  .contact-hero,
  .contact-body,
  .testimonial-feature,
  .blog-hero,
  .blog-posts,
  footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-links {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  .about-stats {
    gap: 0.5rem;
  }

  .stat-box {
    padding: 0.9rem 0.5rem;
  }

  .contact-method {
    align-items: flex-start;
  }
}
