/* ============================================================
   POPPY PLUMBING — Main Stylesheet
   Palette:
     --poppy:    hsl(22, 90%, 52%)   #F26B21
     --espresso: hsl(25, 30%, 12%)   #251A10
     --cream:    hsl(36, 60%, 97%)   #FBF7F2
     --parchment:hsl(36, 40%, 93%)   #F2EBE0
     --sand:     hsl(36, 35%, 88%)   #E8DDD0
     --mid:      hsl(25, 15%, 42%)   #736056
   ============================================================ */

/* ── Google Fonts (loaded via wp_enqueue_style) ── */

/* ── CSS Custom Properties ── */
:root {
  --poppy:       hsl(22, 90%, 52%);
  --poppy-dark:  hsl(22, 90%, 46%);
  --poppy-light: hsl(22, 90%, 62%);
  --espresso:    hsl(25, 30%, 12%);
  --cream:       hsl(36, 60%, 97%);
  --parchment:   hsl(36, 40%, 93%);
  --sand:        hsl(36, 35%, 88%);
  --mid:         hsl(25, 15%, 42%);
  --light-mid:   hsl(25, 15%, 55%);
  --border:      hsl(36, 25%, 88%);

  --font-sans:   'DM Sans', system-ui, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;
  --radius:      0.5rem;
  --max-w:       80rem;

  --shadow-sm:   0 2px 6px rgba(28,20,9,.08);
  --shadow-md:   0 6px 20px rgba(28,20,9,.10);
  --shadow-lg:   0 12px 40px rgba(28,20,9,.12);
  --shadow-xl:   0 20px 60px rgba(28,20,9,.16);
  --shadow-2xl:  0 32px 80px rgba(28,20,9,.20);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--espresso);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.1; color: var(--espresso); }

/* ── Utility classes ── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--poppy);
  color: #fff;
  box-shadow: 0 4px 16px hsla(22, 90%, 52%, 0.25);
}
.btn-primary:hover {
  background: var(--poppy-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px hsla(22, 90%, 52%, 0.4);
}
.btn-ghost {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.20); }

/* ── Section labels ── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--poppy);
}

/* ── Fade-up animation ── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  /* Mobile: always solid */
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  padding-block: 0.75rem;
}

/* Desktop transparent-at-top */
@media (min-width: 768px) {
  #site-header {
    background: hsla(36, 60%, 97%, 0.30);
    backdrop-filter: blur(4px);
    border-bottom-color: transparent;
    padding-block: 1.25rem;
  }
  #site-header.scrolled {
    background: hsla(36, 60%, 97%, 0.96);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--sand);
    padding-block: 0.75rem;
  }
}

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo__icon { width: 2rem; height: 2rem; color: var(--poppy); flex-shrink: 0; }
.nav-logo__text {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .nav-logo__text { color: var(--espresso); }
  #site-header:not(.scrolled) .nav-logo__text { color: #fff; }
}

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--espresso); }
@media (min-width: 768px) {
  #site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.75); }
  #site-header:not(.scrolled) .nav-links a:hover { color: #fff; }
}

/* Desktop actions */
.nav-actions {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 768px) { .nav-actions { display: flex; } }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--espresso);
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--poppy); }
.nav-phone svg { color: var(--poppy); }
@media (min-width: 768px) {
  #site-header:not(.scrolled) .nav-phone { color: rgba(255,255,255,0.85); }
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--espresso);
}
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

/* Mobile nav panel */
#mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  inset-inline: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.2s ease;
}
#mobile-nav.open { display: flex; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
#mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--espresso);
  border-bottom: 1px solid var(--sand);
}
.mobile-nav__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-weight: 600;
  color: var(--poppy) !important;
}
.mobile-nav__cta {
  margin-top: 0.75rem;
  width: 100%;
  background: var(--poppy);
  color: #fff !important;
  text-align: center;
  padding: 0.875rem !important;
  border-radius: 9999px;
  font-weight: 600;
  border-bottom: none !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Mobile: heavy bottom gradient */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    transparent 18%,
    hsla(25, 30%, 10%, 0.6) 38%,
    hsla(25, 30%, 10%, 0.96) 55%,
    hsl(25, 30%, 10%) 68%);
}
/* Desktop: split overlays */
@media (min-width: 768px) {
  .hero__overlay {
    background: linear-gradient(to top, hsla(25,30%,8%,0.9) 0%, hsla(25,30%,8%,0.4) 50%, transparent 100%);
  }
  .hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(25,30%,8%,0.5) 0%, transparent 60%);
  }
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
}
.hero__inner {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
  padding-top: 6rem;
  align-items: end;
}
@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 3fr 2fr;
    padding-bottom: 4rem;
  }
}

.hero__stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}
.hero__stars svg {
  width: 1rem;
  height: 1rem;
  color: var(--poppy);
  fill: var(--poppy);
}
.hero__stars span {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-left: 0.35rem;
}

.hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 0.15em;
}
.hero__h1--italic {
  font-style: italic;
  color: var(--poppy-light);
  display: block;
  margin-bottom: 1.5rem;
}
.hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 30rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .hero__sub { font-size: 0.9rem; max-width: 20rem; }
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (min-width: 768px) {
  .hero__ctas { flex-direction: row; gap: 1rem; }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 767px) { .hero__scroll-indicator { display: none; } }

/* Hero quote card */
.hero__card {
  background: var(--cream);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(0,0,0,0.06);
}
.hero__card-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.hero__card-badge-bar {
  width: 0.25rem;
  height: 1.25rem;
  background: var(--poppy);
  border-radius: 9999px;
}
.hero__card-badge-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
}
.hero__card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 1.25rem;
}

/* ── Quote Form ── */
.quote-form { display: grid; gap: 0.75rem; }
.quote-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 767px) { .quote-form__row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.form-input, .form-select, .form-textarea {
  background: var(--parchment);
  border: 0;
  border-radius: 0.5rem;
  padding: 0.625rem 0.875rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--espresso);
  width: 100%;
  outline: none;
  transition: box-shadow 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  box-shadow: 0 0 0 2px var(--poppy);
}
.form-textarea { resize: none; }
.form-error { font-size: 0.75rem; color: #dc2626; }
.btn-submit {
  width: 100%;
  background: var(--poppy);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.875rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-submit:hover {
  background: var(--poppy-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px hsla(22, 90%, 52%, 0.35);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-alt { text-align: center; font-size: 0.75rem; color: var(--light-mid); }
.form-alt a { font-weight: 600; color: var(--espresso); }
.form-alt a:hover { color: var(--poppy); }

/* Quote success state */
.quote-success { padding: 2rem 0; text-align: center; }
.quote-success__title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.quote-success__sub { color: var(--mid); }

/* Mobile quote section */
.section-quote-mobile {
  background: var(--cream);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--sand);
}
@media (min-width: 768px) { .section-quote-mobile { display: none; } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--espresso);
  color: #fff;
}
.trust-strip__inner {
  padding-block: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .trust-strip__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--poppy);
  flex-shrink: 0;
}
.trust-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   SERVICES
   ============================================================ */
.section-services {
  padding-block: 4rem;
  background: var(--cream);
}
@media (min-width: 768px) { .section-services { padding-block: 7rem; } }

.section-header { margin-bottom: 4rem; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.1;
  margin-top: 0.75rem;
}
.section-title em { font-style: italic; }

.services-list { border-top: 1px solid var(--border); }
.service-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: all 0.2s;
}
.service-row:hover .service-num { color: var(--poppy); }
.service-row:hover .service-name { color: var(--poppy); }

.service-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sand);
  min-width: 2.5rem;
  transition: color 0.3s;
  line-height: 1;
  user-select: none;
}
.service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .service-body {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}
.service-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--espresso);
  transition: color 0.3s;
}
.service-desc {
  color: var(--mid);
  font-size: 0.95rem;
  max-width: 30rem;
  line-height: 1.6;
}
.service-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--sand);
  flex-shrink: 0;
  transition: all 0.3s;
}
.service-row:hover .service-arrow { color: var(--poppy); transform: translateX(4px); }

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.section-process {
  padding-block: 4rem;
  background: var(--parchment);
}
@media (min-width: 768px) { .section-process { padding-block: 7rem; } }

.process-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    position: relative;
  }
  .process-grid::before {
    content: '';
    position: absolute;
    top: 3.5rem;
    left: 16.67%;
    right: 16.67%;
    height: 1px;
    background: var(--border);
  }
}

.process-step { padding-top: 1rem; }
.process-num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: var(--cream);
  border: 2px solid var(--border);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.process-num {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--poppy);
}
.process-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.75rem;
}
.process-desc { font-size: 0.95rem; color: var(--mid); line-height: 1.7; }

/* ============================================================
   ABOUT / VAN + TECH PHOTO
   ============================================================ */
.section-about {
  padding-block: 4rem;
  background: var(--cream);
}
@media (min-width: 768px) { .section-about { padding-block: 7rem; } }

.about-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
  }
}

.about-img-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--espresso);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.625rem;
}
.about-img-badge__num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--poppy-light);
  line-height: 1;
}
.about-img-badge__label { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

.about-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--espresso);
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}
.about-tagline em { font-style: italic; color: var(--poppy); }
.about-body { color: var(--mid); font-size: 0.95rem; line-height: 1.8; }
.about-body p { margin-bottom: 1rem; }
.about-body p:last-child { margin-bottom: 0; }

.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.pillar-tag {
  padding: 0.375rem 0.875rem;
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--espresso);
}

/* ============================================================
   REVIEWS / CAROUSEL
   ============================================================ */
.section-reviews {
  padding-block: 4rem;
  background: var(--espresso);
  color: #fff;
}
@media (min-width: 768px) { .section-reviews { padding-block: 7rem; } }

.reviews-header { margin-bottom: 3rem; }
.reviews-header .eyebrow { color: var(--poppy-light); }
.reviews-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-top: 0.75rem;
}

.reviews-carousel { position: relative; }
.review-slide { display: none; }
.review-slide.active { display: block; }

.review-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  max-width: 40rem;
  margin-bottom: 1.5rem;
}
.review-quote::before { content: '\201C'; color: var(--poppy); font-size: 3rem; line-height: 0; vertical-align: -0.5rem; margin-right: 0.25rem; }

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-author__stars { display: flex; gap: 0.25rem; }
.review-author__stars svg { width: 1rem; height: 1rem; color: var(--poppy); fill: var(--poppy); }
.review-author__name { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.review-author__loc { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

.review-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
.review-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.review-dot.active { background: var(--poppy); width: 1.5rem; }

/* ============================================================
   FAQ
   ============================================================ */
.section-faq {
  padding-block: 4rem;
  background: var(--cream);
}
@media (min-width: 768px) { .section-faq { padding-block: 7rem; } }

.faq-list { max-width: 42rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-block: 1.25rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--espresso);
  gap: 1rem;
  background: none;
  cursor: pointer;
}
.faq-question:hover { color: var(--poppy); }
.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--poppy);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-answer__inner {
  padding-bottom: 1.25rem;
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.section-cta {
  padding-block: 4rem;
  background: var(--poppy);
}
@media (min-width: 768px) { .section-cta { padding-block: 5rem; } }

.cta-inner {
  text-align: center;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.cta-sub { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; }
.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-cta-primary {
  background: #fff;
  color: var(--poppy);
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-cta-primary:hover { background: var(--cream); transform: translateY(-2px); }
.btn-cta-ghost {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-cta-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--espresso);
  color: #fff;
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-brand__logo svg { width: 1.75rem; height: 1.75rem; color: var(--poppy); }
.footer-brand__name { font-size: 1.1rem; font-weight: 600; color: #fff; }
.footer-brand__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 22rem;
  margin-bottom: 1.25rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.625rem;
}
.footer-contact-item svg { width: 1rem; height: 1rem; color: var(--poppy); flex-shrink: 0; margin-top: 0.1rem; }
.footer-contact-item a:hover { color: rgba(255,255,255,0.8); }

.footer-col__title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-block: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-bottom-links { display: flex; gap: 1.25rem; justify-content: center; }

/* ============================================================
   LEGAL PAGES (Terms / Privacy)
   ============================================================ */
.legal-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding-block: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.legal-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-nav__back {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.2s;
}
.legal-nav__back:hover { color: var(--espresso); }

.legal-hero {
  background: var(--espresso);
  color: #fff;
  padding-block: 4rem 3.5rem;
}
@media (min-width: 768px) { .legal-hero { padding-block: 5rem 4rem; } }

.legal-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}
.legal-hero__title em { font-style: italic; color: var(--poppy-light); }
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.legal-meta strong { color: rgba(255,255,255,0.7); font-weight: 500; }

.legal-body {
  display: grid;
  gap: 0;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-block: 3rem 5rem;
}
@media (min-width: 1024px) {
  .legal-body { grid-template-columns: 14rem 1fr; gap: 5rem; align-items: start; }
}

/* TOC sidebar */
.legal-toc {
  display: none;
  position: sticky;
  top: 5rem;
  padding-top: 0.5rem;
}
@media (min-width: 1024px) { .legal-toc { display: block; } }
.legal-toc__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-mid);
  margin-bottom: 1rem;
}
.legal-toc__list { list-style: none; }
.legal-toc__list li a {
  display: block;
  font-size: 0.825rem;
  color: var(--mid);
  padding: 0.4rem 0.75rem;
  border-left: 2px solid transparent;
  border-radius: 0 0.25rem 0.25rem 0;
  transition: all 0.15s;
}
.legal-toc__list li a:hover {
  color: var(--poppy);
  border-left-color: var(--poppy);
  background: hsla(22, 90%, 52%, 0.05);
}
.legal-toc__card {
  margin-top: 2rem;
  background: var(--espresso);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.legal-toc__card p { font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 0.75rem; }
.legal-toc__card a {
  display: inline-block;
  background: var(--poppy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}
.legal-toc__card a:hover { background: var(--poppy-dark); }

/* Legal sections */
.legal-section {
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child { border-bottom: none; }
.legal-section__num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--poppy);
  margin-bottom: 0.5rem;
}
.legal-section__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 1.25rem;
}
.legal-section p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 40rem;
  margin-bottom: 1rem;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { list-style: none; max-width: 40rem; margin: 1rem 0; }
.legal-section ul li {
  display: flex;
  gap: 0.75rem;
  padding-block: 0.625rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.6;
}
.legal-section ul li:last-child { border-bottom: none; }
.legal-section ul li::before { content: '—'; color: var(--poppy); flex-shrink: 0; }
.legal-callout {
  background: var(--cream);
  border-left: 3px solid var(--poppy);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  max-width: 40rem;
}
.legal-callout p { margin: 0; font-size: 0.875rem; }

/* ============================================================
   WORDPRESS BLOCK EDITOR OVERRIDES
   ============================================================ */
.wp-block-group { margin-block: 0; }
.entry-content { padding-block: 3rem; }
.entry-content > * + * { margin-top: 1.5rem; }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}
