/* ==========================================================
   Cirencester Handyman - Global Stylesheet
   Version 3.2  |  Heritage Purple + Cotswold Stone palette
   Fonts: Lora (headings) + Lexend (body)
   WCAG 2.1 AAA compliant  |  Mobile-first
   Design: scroll animations, hero redesign, noise texture
   ========================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2A1A3A;
  --primary-dark: #1E1229;
  --stone: #D9D0C1;
  --cream: #F5F5F0;
  --sage: #6B8E78;
  --sage-dark: #355A3F;
  --white: #FFFFFF;
  --text: #2A1A3A;
  --text-light: #4A3A5A;
  --border: #C4B9A8;
  --shadow: rgba(42, 26, 58, 0.08);
  --radius: 6px;
  --radius-lg: 12px;
}

html, body { max-width: 100vw; overflow-x: hidden; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 18px;
}

body {
  font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--stone);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
.price-table { max-width: 100%; }
.table-wrap { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
a { color: var(--sage-dark); text-decoration: underline; }
a:hover { color: var(--primary); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  z-index: 9999;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  line-height: 1.25;
  color: var(--primary);
  font-weight: 700;
}
h1 { font-size: 2.4rem; margin-bottom: 0.5em; }
h2 { font-size: 1.75rem; margin-bottom: 0.5em; }
h3 { font-size: 1.25rem; margin-bottom: 0.4em; }
h4 { font-size: 1.05rem; margin-bottom: 0.3em; }
p { margin-bottom: 1em; }
ul, ol { margin: 0 0 1em 1.2em; }
li { margin-bottom: 0.4em; }
hr { border: none; border-top: 1px solid rgba(107,142,120,0.2); margin: 2.5rem 0; }
blockquote {
  border-left: 4px solid var(--sage);
  padding: 8px 0 8px 20px;
  margin: 1.5rem 0;
  color: var(--text-light);
  font-style: italic;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.lead {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

section { padding: 5rem 0; }

.bg-white { background: var(--cream); }
.bg-cream { background: var(--stone); }
.bg-purple-light { background: var(--cream); }
.bg-purple { background: var(--primary); color: var(--white); }
.bg-purple h2, .bg-purple h3 { color: var(--white); }
.bg-purple .section-subtitle { color: rgba(255,255,255,0.85); }
.text-center { text-align: center; }

/* Section dividers */
section + section { border-top: 1px solid rgba(107,142,120,0.12); }
.hero + section, .page-hero + section, .breadcrumbs + section,
.cta-strip + section, section.cta-strip,
.bg-purple + section, section + .bg-purple,
section + .cta-strip { border-top: none; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: 'Lexend', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  min-height: 52px;
  min-width: 48px;
}
.btn:active { transform: scale(0.98); }

.btn-gold, .btn-purple {
  background: var(--primary);
  color: var(--white);
}
.btn-gold:hover, .btn-gold:focus,
.btn-purple:hover, .btn-purple:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(42,26,58,0.2);
}

.btn-outline {
  background: var(--sage-dark);
  color: var(--white);
  border: none;
}
.btn-outline:hover, .btn-outline:focus {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--cream);
  color: var(--primary);
}
.btn-white:hover, .btn-white:focus {
  background: var(--white);
  color: var(--primary);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 24px;
  flex-wrap: wrap;
  min-width: 0;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  padding: 8px 12px;
  margin: -8px -12px;
  border-radius: var(--radius);
}
.header-brand-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.header-brand-text {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  line-height: 1.2;
}
.header-brand-text span {
  display: block;
  font-family: 'Lexend', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Phone pulse on load */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  animation: phonePulse 2s ease-out 1s 1;
}
@keyframes phonePulse {
  0% { box-shadow: 0 0 0 0 rgba(42,26,58,0.3); border-radius: 8px; }
  50% { box-shadow: 0 0 0 8px rgba(42,26,58,0); border-radius: 8px; }
  100% { box-shadow: 0 0 0 0 rgba(42,26,58,0); }
}
.header-phone:hover { color: var(--sage-dark); }
.header-phone svg { flex-shrink: 0; }

.header-nav { display: flex; align-items: center; gap: 8px; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 12px;
  margin: 0;
}
.nav-links li { margin: 0; }
.nav-links a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: background 0.15s;
}
.nav-links a:hover { background: var(--stone); color: var(--primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  color: var(--primary);
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
}
.mobile-nav {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--sage-dark); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  background: var(--cream);
  padding: 14px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; margin: 0; }
.breadcrumbs li + li::before { content: '›'; color: var(--text-light); }
.breadcrumbs a { color: var(--sage-dark); text-decoration: none; font-weight: 500; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs li:last-child { color: var(--text-light); font-weight: 500; }

/* ===== HERO (with noise texture + gradient + entrance animations) ===== */
.hero {
  background:
    radial-gradient(ellipse 85% 65% at 10% 95%, rgba(74,26,107,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 65% 55% at 90% 5%, rgba(107,142,120,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(217,208,193,0.12) 0%, transparent 70%),
    #1a0a2e;
  color: var(--white);
  padding: 5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.5;
  pointer-events: none;
}
/* Sage radial glow */
.hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217,208,193,0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  text-align: left;
}
.hero-content { max-width: 620px; }
.hero h1 {
  color: var(--white);
  font-size: 2.6rem;
  margin: 0 0 0.4em;
  animation: heroFadeUp 0.5s ease-out both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin: 0 0 1.8rem;
  line-height: 1.6;
  animation: heroFadeUp 0.5s ease-out 0.15s both;
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 1.2rem;
  animation: heroFadeUp 0.5s ease-out 0.3s both;
}
.hero-phone:hover { color: var(--stone); }
.hero-phone svg { flex-shrink: 0; }
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: heroFadeUp 0.5s ease-out 0.3s both;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  animation: heroFadeUp 0.5s ease-out 0.45s both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(107,142,120,0.15);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(107,142,120,0.25);
}
.hero-trust-item svg { color: var(--sage); flex-shrink: 0; }

/* Hero photo */
.hero-photo {
  width: 260px;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(245,245,240,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  flex-shrink: 0;
  animation: heroFadeUp 0.6s ease-out 0.2s both;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(175deg, #321E45 0%, var(--primary) 40%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.5;
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  font-size: 2.2rem;
  max-width: 760px;
  margin: 0 auto 0.5em;
  animation: heroFadeUp 0.5s ease-out both;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  animation: heroFadeUp 0.5s ease-out 0.15s both;
}

/* ===== ABOUT / CONTENT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--stone);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--text-light); }

.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.5rem; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(107,142,120,0.12);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-dark);
  border: 1px solid rgba(107,142,120,0.25);
}
.trust-badge svg { flex-shrink: 0; color: var(--sage-dark); }

/* Long-form content */
.prose { max-width: 760px; margin: 0 auto; font-size: 1.05rem; color: var(--text); }
.prose p { color: var(--text); margin-bottom: 1.2em; }
.prose h2 {
  font-size: 1.6rem;
  margin: 2.2rem 0 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(107,142,120,0.15);
}
.prose h2:first-of-type { padding-top: 0; border-top: none; margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin: 1.6rem 0 0.6rem; color: var(--primary); }
.prose ul, .prose ol { margin-bottom: 1.2em; padding-left: 1.4em; }
.prose li { margin-bottom: 0.5em; }
.prose strong { color: var(--primary); }
.prose a { color: var(--sage-dark); }
.prose a:hover { color: var(--primary); }
.prose .info-box {
  background: var(--cream);
  border-left: 4px solid var(--sage);
  padding: 18px 22px;
  border-radius: var(--radius);
  margin: 1.8rem 0;
}
.prose .info-box p:last-child { margin-bottom: 0; }

/* ===== SERVICE CARDS ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.service-card:hover {
  box-shadow: 0 8px 24px var(--shadow);
  border-color: var(--sage);
  transform: translateY(-4px);
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.4em; color: var(--primary); }
.service-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }
.service-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(107,142,120,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--sage-dark);
}
.category-heading {
  text-align: left;
  font-size: 1.4rem;
  color: var(--primary);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--sage);
}
.category-heading:first-of-type { margin-top: 0; }

/* ===== PRICING ===== */
.pricing-callout {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 2.5rem;
  font-size: 0.98rem;
  text-align: center;
}
.pricing-callout strong { color: var(--primary); }

.rate-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 3rem;
}
.rate-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rate-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--shadow);
}
.rate-card-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.rate-card-price {
  font-family: 'Lora', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}
.rate-card-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-light); font-family: 'Lexend', sans-serif; }
.rate-card-note { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 4px var(--shadow);
}
.price-table caption {
  text-align: left;
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  padding: 0 0 12px;
  caption-side: top;
}
.price-table thead th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.price-table thead th:last-child { text-align: right; }
.price-table tbody td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.price-table tbody tr:nth-child(even) { background: var(--stone); }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table .price-col { text-align: right; font-weight: 600; color: var(--primary); white-space: nowrap; }
.price-table .note-text { font-size: 0.8rem; color: var(--text-light); display: block; margin-top: 2px; }

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}
.package-card {
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.package-card:hover {
  border-color: var(--sage);
  box-shadow: 0 8px 28px var(--shadow);
  transform: translateY(-3px);
}
.package-card.featured { border-color: var(--sage); }
.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage-dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.package-name { font-family: 'Lora', Georgia, serif; font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.package-price { font-family: 'Lora', Georgia, serif; font-size: 2.2rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.package-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-light); font-family: 'Lexend', sans-serif; }
.package-hours { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }
.package-features { list-style: none; text-align: left; margin: 0 0 20px; padding: 0; }
.package-features li { padding: 6px 0; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 8px; margin: 0; }
.package-features li::before { content: '✓'; color: var(--sage-dark); font-weight: 700; flex-shrink: 0; }

/* ===== AREAS ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 1.5rem;
}
.area-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.area-tag:hover { border-color: var(--sage); box-shadow: 0 4px 16px var(--shadow); transform: translateY(-2px); color: var(--primary); }
.area-tag svg { color: var(--sage-dark); flex-shrink: 0; }
.area-tag.primary { border-color: var(--sage); background: rgba(107,142,120,0.08); }
.area-note {
  margin-top: 1.5rem;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--sage);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 2rem; }
.testimonial-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.testimonial-stars { color: var(--sage-dark); font-size: 1.2rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--text-light); font-size: 0.98rem; margin-bottom: 14px; line-height: 1.65; }
.testimonial-author { font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.testimonial-placeholder { text-align: center; padding: 3rem 2rem; background: var(--cream); border-radius: var(--radius-lg); border: 2px dashed var(--border); }
.testimonial-placeholder p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0; }

/* ===== FAMILY CALLOUT ===== */
.family-callout {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  overflow: hidden;
}
.family-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.5;
  pointer-events: none;
}
.family-callout > * { position: relative; }
.family-callout h2 { color: var(--white); margin-bottom: 1rem; }
.family-callout p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 1.5rem; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(175deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.5;
  pointer-events: none;
}
.cta-strip > * { position: relative; }
.cta-strip h2 { color: var(--white); margin-bottom: 0.6em; }
.cta-strip p { color: rgba(255,255,255,0.9); max-width: 620px; margin: 0 auto 1.5rem; font-size: 1.1rem; }
.cta-strip .hero-phone { font-size: 1.5rem; margin-bottom: 0.8rem; animation: none; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info-block { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(107,142,120,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--sage-dark);
}
.contact-info-label { font-size: 0.8rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.04em; }
.contact-info-value { font-weight: 600; font-size: 1.1rem; margin-top: 2px; }
.contact-info-value a { color: var(--primary); text-decoration: none; }
.contact-info-value a:hover { color: var(--sage-dark); }

.contact-form label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: 'Lexend', sans-serif; font-size: 1rem;
  color: var(--text); background: var(--white);
  transition: border-color 0.2s; min-height: 48px;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--sage-dark); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.85rem; color: var(--text-light); margin-top: 8px; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 22px 0;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(107,142,120,0.12);
  color: var(--sage-dark);
  font-size: 1.4rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.2s;
  font-family: 'Lexend', sans-serif;
}
.faq-item details[open] summary::after { content: '−'; background: var(--primary); color: var(--white); }
.faq-item summary:hover { color: var(--primary); }
.faq-answer { padding: 0 0 22px; color: var(--text-light); font-size: 1rem; line-height: 1.7; }
.faq-answer p { margin-bottom: 0.8em; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2.5rem;
  position: relative;
}
/* Sage green top accent line */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage) 0%, rgba(107,142,120,0.3) 100%);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; }
.footer-brand { font-family: 'Lora', Georgia, serif; font-weight: 700; font-size: 1.2rem; color: var(--white); margin-bottom: 8px; }
.footer-about { font-size: 0.9rem; line-height: 1.6; max-width: 320px; }
.footer-heading { color: var(--white); font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.15s; }
.footer-links a:hover { color: var(--sage); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-size: 0.82rem;
}
.footer-badges { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(107,142,120,0.15);
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.9);
}

/* ===== FLOATING CALL ===== */
.float-call {
  display: none; position: fixed; bottom: 20px; right: 20px; z-index: 999;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary); color: var(--white); border: none;
  box-shadow: 0 4px 20px rgba(42,26,58,0.35);
  cursor: pointer; align-items: center; justify-content: center;
  text-decoration: none; transition: transform 0.15s, background 0.2s;
}
.float-call:hover { background: var(--primary-dark); transform: scale(1.05); }
.float-call svg { width: 28px; height: 28px; }

/* Related links */
.related-links {
  background: var(--cream); border-radius: var(--radius-lg); padding: 28px 32px;
  margin: 2.5rem auto; max-width: 760px; border: 1px solid var(--border);
}
.related-links h3 { font-size: 1.05rem; margin-bottom: 12px; color: var(--primary); }
.related-links ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 8px; }
.related-links li { margin: 0; }
.related-links a {
  display: block; padding: 10px 14px; background: var(--white);
  border-radius: var(--radius); text-decoration: none; font-weight: 500; font-size: 0.95rem;
  color: var(--sage-dark); border: 1px solid transparent; transition: border-color 0.15s;
}
.related-links a:hover { border-color: var(--sage); }

/* Two-col / sidebar */
.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
.sidebar-card {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; position: sticky; top: 100px;
}
.sidebar-card h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 0.8em; }
.sidebar-card p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 1em; }
.sidebar-card .btn { width: 100%; }

/* 404 */
.error-page { text-align: center; padding: 5rem 0; }
.error-page h1 { font-size: 3rem; }
.error-page .big-num { font-family: 'Lora', Georgia, serif; font-size: 5rem; color: var(--sage-dark); font-weight: 700; line-height: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-book-now { padding: 8px 14px; font-size: 0.82rem; }
  .header-logo { width: 160px; }
  .nav-toggle { display: flex; }
  .header-phone .phone-text { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-photo { width: 180px; height: 200px; margin: 0 auto 1.5rem; }
  .hero .container { display: flex; flex-direction: column-reverse; }
  .hero-trust { justify-content: center; }
  .hero-buttons { justify-content: center; }
}
@media (max-width: 640px) {
  html { font-size: 17px; }
  section { padding: 3rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: 2rem; }
  .hero-phone { font-size: 1.3rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 320px; }
  .page-hero h1 { font-size: 1.7rem; }
  .rate-cards { grid-template-columns: repeat(2, 1fr); }
  .price-table { font-size: 0.88rem; }
  .price-table thead th, .price-table tbody td { padding: 10px 12px; }
  .packages-grid { grid-template-columns: 1fr; }
  .family-callout { padding: 2rem 1.5rem; }
  .float-call { display: flex; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .related-links { padding: 22px 24px; }
  .header-logo { width: 130px; }
  .header-inner { padding: 10px 16px; gap: 12px; }
  .btn-book-now { padding: 6px 10px; font-size: 0.78rem; }
}
@media (max-width: 400px) {
  .rate-cards { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: center; gap: 10px; }
  .header-logo { width: 110px; }
  .header-inner { gap: 8px; }
  .btn-book-now { display: none; }
  .header-phone { font-size: 0.9rem; }
}




/* ===== INTERACTIVE PRICING TABS ===== */
.pricing-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0 1.75rem;
}
.pricing-tab {
  background: none;
  border: 2px solid var(--stone);
  color: var(--text);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  min-height: 48px;
}
.pricing-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pricing-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.pricing-panel {
  display: none;
}
.pricing-panel.active {
  display: block;
}
.pricing-card-new {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 660px;
  margin: 0 auto;
  box-shadow: 0 2px 12px var(--shadow);
}
.pricing-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--stone);
  flex-wrap: wrap;
}
.pricing-card-duration {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}
.pricing-card-price {
  font-family: 'Lora', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.pricing-card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.pricing-card-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.pricing-card-includes li {
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pricing-card-includes li:last-child { border-bottom: none; }
.pricing-card-includes li::before {
  content: '✓';
  color: var(--sage-dark);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-deposit-note {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.btn-sage {
  background: var(--sage);
  color: var(--white);
  border: none;
}
.btn-sage:hover, .btn-sage:focus {
  background: var(--sage-dark);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(107,142,120,0.3);
}
@media (max-width: 600px) {
  .pricing-tabs { gap: 8px; }
  .pricing-tab { padding: 10px 18px; font-size: 0.9rem; }
  .pricing-card-new { padding: 1.75rem 1.25rem; }
  .pricing-card-price { font-size: 2.25rem; }
}

/* ===== LOGO ===== */
.header-logo {
  width: 200px;
  height: auto;
  display: block;
}
.footer-logo {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 28px;
}
/* ===== BOOK NOW BUTTON ===== */
.btn-book-now {
  margin-left: 8px;
  background: var(--sage-dark);
  color: var(--white);
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-book-now:hover, .btn-book-now:focus {
  background: var(--primary);
  color: var(--white);
}

/* ===== BOOKING WIDGET ===== */
#book iframe {
  min-height: 600px;
}
@media (max-width: 640px) {
  #book iframe { min-height: 500px; }
}

/* ===== TIME BANK ===== */
#time-bank + .section-subtitle + .packages-grid .package-hours {
  font-size: 0.85rem;
}
@media print {
  .site-header, .float-call, .nav-toggle, .mobile-nav, .cta-strip, .related-links { display: none !important; }
  section { padding: 1rem 0; }
  body { font-size: 12pt; background: white; color: black; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================
   BLOG — Tips & Local
   ========================================================== */

.blog-hero {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 0 2rem;
}
.blog-hero .container {
  text-align: center;
}
.blog-hero h1 {
  color: var(--white);
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.blog-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}

.blog-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 1rem 1rem;
  flex-wrap: wrap;
}
.blog-filter-tabs button {
  background: var(--cream);
  color: var(--primary);
  border: 2px solid var(--border);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.blog-filter-tabs button:hover,
.blog-filter-tabs button.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  padding: 2rem 0 4rem;
}

.blog-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 3px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover, .blog-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow);
}
.blog-card-image {
  aspect-ratio: 16 / 10;
  background: var(--stone);
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.blog-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.blog-tag-tip {
  background: var(--sage);
  color: var(--white);
}
.blog-tag-whats-on {
  background: #8B6914;
  color: var(--white);
}
.blog-card h2 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--primary);
  margin: 0 0 0.6rem 0;
}
.blog-card p {
  color: var(--text);
  margin-bottom: 1rem;
  flex: 1;
}
.blog-card-link {
  color: var(--sage-dark);
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
}
.blog-card-link:hover { color: var(--primary); text-decoration: underline; }
.blog-card a.blog-card-link::after { content: " →"; }

.blog-card[data-hidden] { display: none; }

/* ---- Blog post page ---- */
.blog-post-hero {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(220px, 38vw, 400px);
  overflow: hidden;
  background: var(--stone);
  margin: 0;
}
.blog-post-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}
.blog-post h1 {
  font-family: 'Lora', serif;
  color: var(--primary);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.blog-author-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.blog-author-photo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.blog-author-box strong {
  color: var(--primary);
  display: block;
  font-size: 1rem;
}
.blog-author-box span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-body {
  font-size: 1.05rem;
  line-height: 1.75;
}
.blog-body h2 {
  font-family: 'Lora', serif;
  color: var(--primary);
  font-size: 1.5rem;
  margin: 2.25rem 0 0.85rem;
}
.blog-body h3 {
  font-family: 'Lora', serif;
  color: var(--primary);
  font-size: 1.2rem;
  margin: 1.75rem 0 0.6rem;
}
.blog-body p { margin-bottom: 1.1rem; }
.blog-body ul, .blog-body ol { margin: 0 0 1.25rem 1.25rem; }
.blog-body li { margin-bottom: 0.4rem; }
.blog-body strong { color: var(--primary); }
.blog-body blockquote {
  border-left: 3px solid var(--sage);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--cream);
  font-style: italic;
  color: var(--text-light);
}

.blog-source-note {
  margin: 2rem 0;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-left: 3px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-light);
}
.blog-source-note a { color: var(--sage-dark); }

.event-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--sage);
}
.event-card h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin: 0 0 0.35rem 0;
}
.event-card .event-meta {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.event-card .event-meta span + span::before {
  content: " • ";
  color: var(--border);
}
.event-card p { margin-bottom: 0.5rem; }
.event-card a.event-link {
  font-weight: 600;
  color: var(--sage-dark);
}

.blog-cta {
  margin: 2.5rem 0 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
}
.blog-cta h3 {
  color: var(--white);
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.blog-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}
.blog-cta .btn {
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
}
.blog-cta .btn:hover { background: var(--cream); }

.blog-related {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}
.blog-related h2 {
  font-family: 'Lora', serif;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.blog-empty-state {
  text-align: center;
  padding: 2.5rem 1.5rem;
  margin: 1rem 0 3rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Mobile responsiveness fixes (2026-04-23 audit, revised) --- */
/* Revised: earlier version used display: inline-flex on nav a which forced
   the desktop header-nav to render beyond the viewport at 375 and 412px.
   This revision uses vertical padding to enlarge tap targets without
   changing the display mode of any element. Base 17-18px font left untouched. */
@media (max-width: 768px) {
  .menu-toggle,
  [aria-label*="menu" i] {
    min-width: 44px;
    min-height: 44px;
  }
  button,
  .btn,
  input[type="submit"],
  input[type="button"] {
    min-height: 44px;
    min-width: 44px;
  }
  footer a,
  .site-footer a {
    padding-block: 10px;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}
