/* ================================================================
   MouldPro Theme — Main Stylesheet
   Designed by GoSonic for the Mould Pro brand
   Inspired by Koh.com's bold, section-blocked aesthetic
   ================================================================ */

/* ────────────────────────────────────────────
   1. DESIGN TOKENS / CSS VARIABLES
──────────────────────────────────────────── */
:root {
  /* Brand Palette */
  --green:         #8CE68C;
  --green-light:   #ABF1BC;
  --mint:          #CFFFF6;
  --blue-light:    #AEE7F8;
  --blue:          #87CDF6;

  /* Extended Palette */
  --navy:          #1B2D3E;
  --navy-deep:     #0F1E2B;
  --navy-mid:      #2C4056;
  --gold:          #CFFFF6;
  --gold-light:    #e8fffc;
  --off-white:     #F5FAF5;
  --white:         #FFFFFF;
  --green-dark:    #3A8C3A;
  --text-dark:     #1B2D3E;
  --text-mid:      #3D5166;
  --text-light:    #6B8299;

  /* Typography */
  --font-display: 'Bricolage Grotesque', 'Arial Black', sans-serif;
  --font-body:    'DM Sans', 'Arial', sans-serif;

  /* Spacing */
  --section-py:    80px;
  --section-py-lg: 120px;
  --container:     1240px;
  --container-sm:  800px;
  --gutter:        24px;

  /* Radii */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  48px;
  --radius-pill:9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(27,45,62,0.08);
  --shadow-md:  0 8px 32px rgba(27,45,62,0.12);
  --shadow-lg:  0 20px 60px rgba(27,45,62,0.16);

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:   180ms;
  --dur-base:   280ms;
  --dur-slow:   420ms;
}


/* ────────────────────────────────────────────
   2. RESET & BASE
──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}


/* ────────────────────────────────────────────
   3. TYPOGRAPHY SCALE
──────────────────────────────────────────── */
.display-xl {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.display-lg {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.display-md {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-sm {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.body-lg {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  font-weight: 400;
}

.body-md {
  font-size: 1rem;
  line-height: 1.65;
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.55;
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


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

.container--sm {
  max-width: var(--container-sm);
}

.section {
  padding-block: var(--section-py);
}

.section--lg {
  padding-block: var(--section-py-lg);
}

.grid {
  display: grid;
  gap: var(--gutter);
}

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

.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--col { flex-direction: column; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ────────────────────────────────────────────
   5. COLOUR BG UTILITIES
──────────────────────────────────────────── */
.bg-green   { background-color: var(--green); }
.bg-green-light { background-color: var(--green-light); }
.bg-mint    { background-color: var(--mint); }
.bg-blue-light { background-color: var(--blue-light); }
.bg-blue    { background-color: var(--blue); }
.bg-navy    { background-color: var(--navy); color: var(--white); }
.bg-navy-deep { background-color: var(--navy-deep); color: var(--white); }
.bg-gold    { background-color: var(--gold); }
.bg-off-white { background-color: var(--off-white); }
.bg-white   { background-color: var(--white); }


/* ────────────────────────────────────────────
   6. BUTTONS
──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease),
              background-color var(--dur-fast) var(--ease);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

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

.btn--primary:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.btn--green {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
}

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

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--off-white);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
}

.btn--lg {
  padding: 20px 44px;
  font-size: 1.125rem;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn span[aria-hidden="true"] {
  transition: transform var(--dur-base) var(--ease-spring);
}

.btn:hover span[aria-hidden="true"] {
  transform: translateX(4px);
}


/* ────────────────────────────────────────────
   7. ANNOUNCEMENT BAR
──────────────────────────────────────────── */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  padding: 10px var(--gutter);
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 36px;
}

.announcement-bar__track {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-bar__item {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

.announcement-bar__item.is-active {
  display: flex;
  animation: fadeInUp 0.5s var(--ease) forwards;
}

.announcement-bar__icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.announcement-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  flex-shrink: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ────────────────────────────────────────────
   8. HEADER / NAVIGATION
──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid rgba(27,45,62,0.08);
  transition: box-shadow var(--dur-base) var(--ease),
              background-color var(--dur-base) var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 16px;
  height: 72px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo__img {
  height: 40px;
  width: auto;
}

.site-logo__text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.site-logo__text span {
  color: var(--green-dark);
}

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.primary-nav__item > a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.primary-nav__item > a:hover,
.primary-nav__item.current-menu-item > a {
  color: var(--navy);
  background: var(--off-white);
}

/* Nav CTA */
.site-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-header__phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header__phone svg {
  color: var(--green-dark);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background-color var(--dur-fast) var(--ease);
}

.nav-toggle:hover {
  background: var(--off-white);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease),
              opacity var(--dur-base) var(--ease);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 190;
  padding: 80px var(--gutter) 40px;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav__close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
  color: var(--navy);
  background: var(--off-white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav__list a {
  display: block;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  border-radius: var(--radius-md);
  transition: background-color var(--dur-fast) var(--ease);
}

.mobile-nav__list a:hover {
  background: var(--off-white);
}

.mobile-nav__footer {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* ────────────────────────────────────────────
   9. HERO SECTION
──────────────────────────────────────────── */
.hero {
  background: var(--off-white);
  overflow: hidden;
  position: relative;
  padding-block: 80px 0;
  min-height: 820px;
}

/* Background blob */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, var(--green-light) 0%, var(--mint) 50%, transparent 75%);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.hero__content {
  padding-bottom: 80px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__headline {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 24px;
  /* flex column so each .hero__line sits on its own row with zero gap */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1; /* fallback for plain text without spans */
}

/* Each line of the hero headline — tight stacking */
.hero__line {
  display: block;
  line-height: 0.9;
}

.hero__headline em {
  font-style: normal;
  color: var(--green-dark);
}

.hero__subheadline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 40px;
}

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

.hero__phone-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
}

.hero__phone-cta a {
  color: var(--navy);
  font-weight: 700;
}

.hero__phone-cta a:hover {
  color: var(--green-dark);
}

.hero__image {
  position: relative;
  align-self: stretch;
  display: flex;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  min-height: 580px;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--green-light) 0%, var(--mint) 50%, var(--blue-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero__image-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--navy);
  opacity: 0.3;
}

.hero__image-placeholder p {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-style: italic;
}

/* Floating badge on hero image */
.hero__badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.hero__badge-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero__badge-text {
  font-size: 0.8rem;
}

.hero__badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}


/* ────────────────────────────────────────────
   10. TRUST STRIP
──────────────────────────────────────────── */
.trust-strip {
  background: var(--navy);
  padding-block: 28px;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  flex-shrink: 0;
  white-space: nowrap;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item__icon {
  width: 36px;
  height: 36px;
  background: rgba(140, 230, 140, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-item__text {
  font-size: 0.85rem;
}

.trust-item__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}


/* ────────────────────────────────────────────
   11. SERVICES SECTION
──────────────────────────────────────────── */
.services {
  background: var(--white);
}

.section-header {
  margin-bottom: 56px;
}

.section-header__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card--green      { background: var(--green); }
.service-card--green-light{ background: var(--green-light); }
.service-card--mint       { background: var(--mint); }
.service-card--blue-light { background: var(--blue-light); }
.service-card--blue       { background: var(--blue); }
.service-card--navy       { background: var(--navy); color: var(--white); }
.service-card--gold       { background: var(--gold); }

.service-card__image {
  aspect-ratio: 3/2.5;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.4;
}

.service-card__body {
  padding: 24px 28px 28px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.service-card--navy .service-card__title {
  color: var(--white);
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-card--navy .service-card__desc {
  color: rgba(255,255,255,0.7);
}

.service-card__features {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.8;
}

.service-card__features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.5;
  flex-shrink: 0;
}

.service-card--navy .service-card__features li { color: var(--white); opacity: 0.85; }
.service-card--navy .service-card__features li::before { background: var(--white); }

.service-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.service-card--navy .service-card__price {
  color: var(--green);
}

.service-card__price-note {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.service-card--navy .service-card__price-note {
  color: rgba(255,255,255,0.5);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: gap var(--dur-fast) var(--ease);
}

.service-card--navy .service-card__link {
  color: var(--green);
}

.service-card__link:hover {
  gap: 10px;
}


/* ────────────────────────────────────────────
   12. HOW IT WORKS
──────────────────────────────────────────── */
.how-it-works {
  background: var(--blue-light);
  overflow: hidden;
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse, var(--blue) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.step {
  position: relative;
}

/* Connector line between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 72px;
  right: -32px;
  height: 0;
  border-top: 2px dashed rgba(27,45,62,0.3);
  z-index: 0;
}

.step__number {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.step__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.step__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.step__detail {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(27,45,62,0.08);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  width: fit-content;
}


/* ────────────────────────────────────────────
   13. PROBLEM AWARENESS SECTION
──────────────────────────────────────────── */
.problem-section {
  background: var(--green);
  overflow: hidden;
  position: relative;
}

.problem-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-section__content .display-md {
  color: var(--navy);
  margin-bottom: 24px;
}

.problem-section__body {
  font-size: 1rem;
  color: var(--navy);
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 32px;
}

.problem-section__checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.check-item__icon {
  width: 28px;
  height: 28px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-item__icon svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}


/* ────────────────────────────────────────────
   14. BEFORE & AFTER
──────────────────────────────────────────── */
.before-after {
  background: var(--navy);
  overflow: hidden;
}

.before-after__header .display-md {
  color: var(--white);
}

.before-after__subheader {
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ba-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy-mid);
  transition: transform var(--dur-base) var(--ease-spring);
}

.ba-card:hover {
  transform: translateY(-4px);
}

.ba-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.ba-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.ba-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0.3;
}

.ba-card__img-placeholder--before {
  background: linear-gradient(135deg, #4a2828 0%, #6b3a3a 100%);
}

.ba-card__img-placeholder--after {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--mint) 100%);
}

.ba-card__label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.ba-card__label--after {
  background: var(--green);
  color: var(--navy);
}

/* Divider line */
.ba-card__divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--white);
  z-index: 2;
  pointer-events: none;
}

.ba-card__info {
  padding: 20px;
}

.ba-card__location {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.ba-card__service {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}


/* ────────────────────────────────────────────
   15. WHY CHOOSE US
──────────────────────────────────────────── */
.why-us {
  background: var(--mint);
  overflow: hidden;
  position: relative;
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 40%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.55) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-us__title {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.why-us__title em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--navy);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.why-us__subtitle {
  font-size: 1rem;
  color: var(--navy);
  opacity: 0.75;
  margin-bottom: 40px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid rgba(27,45,62,0.15);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 2px solid rgba(27,45,62,0.15);
}

.benefit-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.benefit-item__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.why-us__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.why-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--green) 0%, var(--mint) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.4;
}


/* ────────────────────────────────────────────
   16. TESTIMONIALS
──────────────────────────────────────────── */
.testimonials {
  background: var(--white);
}

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

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease);
  border: 1px solid rgba(27,45,62,0.06);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card:nth-child(3n+1) { background: var(--mint); }
.testimonial-card:nth-child(3n+2) { background: var(--off-white); }
.testimonial-card:nth-child(3n+3) { background: var(--blue-light); }

.testimonial-card__stars {
  display: flex;
  gap: 3px;
}

.star {
  width: 18px;
  height: 18px;
  fill: transparent;
  stroke: #ccc;
  stroke-width: 1.5;
}

.star--filled {
  fill: #F5C542;
  stroke: #F5C542;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-dark);
  flex: 1;
}

.testimonial-card__quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  opacity: 0.15;
  display: block;
  line-height: 0.8;
  margin-bottom: 8px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.testimonial-card__meta {
  font-size: 0.85rem;
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.testimonial-card__location {
  color: var(--text-light);
  font-size: 0.8rem;
}

.testimonial-card__service {
  font-size: 0.75rem;
  background: rgba(27,45,62,0.07);
  color: var(--text-mid);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
  font-weight: 500;
}


/* ────────────────────────────────────────────
   17. SERVICE AREA SECTION
──────────────────────────────────────────── */
.service-area {
  background: var(--mint);
}

.service-area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-area__towns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.town-tag {
  background: var(--white);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid rgba(27,45,62,0.1);
  transition: background-color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}

.town-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.service-area__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.service-area__map-placeholder {
  text-align: center;
}

.service-area__map-placeholder svg {
  width: 64px;
  height: 64px;
  color: var(--navy);
  opacity: 0.3;
  margin-bottom: 12px;
}

.service-area__map-placeholder p {
  font-size: 0.875rem;
  color: var(--text-mid);
}


/* ────────────────────────────────────────────
   18. BOOKING / CONTACT CTA SECTION
──────────────────────────────────────────── */
.booking-cta {
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.booking-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, var(--white) 0%, transparent 60%);
  opacity: 0.12;
  pointer-events: none;
}

.booking-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.booking-cta__content .display-md {
  color: var(--navy);
  margin-bottom: 16px;
}

.booking-cta__body {
  color: var(--navy);
  opacity: 0.8;
  margin-bottom: 32px;
  font-size: 1rem;
}

.booking-cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Contact form */
.booking-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(27,45,62,0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(140, 230, 140, 0.25);
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

.form-success,
.form-error {
  display: none;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 12px;
}

.form-success { background: var(--green-light); color: var(--navy); }
.form-error   { background: #ffe4e4; color: #c00; }
.form-success.is-visible,
.form-error.is-visible { display: block; }


/* ────────────────────────────────────────────
   19. FOOTER
──────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
}

.site-footer__upper {
  padding-block: 60px;
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand__logo {
  margin-bottom: 16px;
}

.footer-brand__logo .site-logo__text {
  color: var(--white);
}

.footer-brand__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-brand__acknowledgement {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  font-style: italic;
}

.footer-col__title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav__item {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast) var(--ease);
}

.footer-nav__item:hover {
  color: var(--white);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}

.footer-contact-item a {
  color: inherit;
  transition: color var(--dur-fast) var(--ease);
}

.footer-contact-item a:hover {
  color: var(--white);
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social__link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}

.footer-social__link:hover {
  background: var(--green);
  color: var(--navy);
}

.footer-social__link svg {
  width: 18px;
  height: 18px;
}

/* Footer lower bar */
.site-footer__lower {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast) var(--ease);
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-credits {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

.footer-credits a {
  color: rgba(255,255,255,0.4);
}

.footer-credits a:hover {
  color: rgba(255,255,255,0.7);
}


/* ────────────────────────────────────────────
   20. INTERIOR PAGE TEMPLATES
──────────────────────────────────────────── */
.page-hero {
  background: var(--off-white);
  padding-block: 64px;
  text-align: center;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-inline: auto;
}

.page-content {
  padding-block: 64px;
}

.entry-content {
  max-width: var(--container-sm);
  margin-inline: auto;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
}

.entry-content h2 { font-size: 1.75rem; }
.entry-content h3 { font-size: 1.35rem; }

.entry-content p {
  margin-bottom: 20px;
  color: var(--text-mid);
  line-height: 1.7;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
  list-style: initial;
  color: var(--text-mid);
}

.entry-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.entry-content a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content a:hover {
  color: var(--navy);
}

.entry-content img {
  border-radius: var(--radius-lg);
  margin-block: 32px;
}

.entry-content blockquote {
  border-left: 4px solid var(--green);
  padding: 20px 28px;
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-block: 32px;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-mid);
}


/* ────────────────────────────────────────────
   21. BLOG / ARCHIVE
──────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(27,45,62,0.08);
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.post-card:hover .post-card__thumb img {
  transform: scale(1.04);
}

.post-card__body {
  padding: 24px;
}

.post-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.post-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.post-card__title a {
  transition: color var(--dur-fast) var(--ease);
}

.post-card__title a:hover {
  color: var(--green-dark);
}

.post-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 16px;
}

.post-card__meta {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  border: 2px solid rgba(27,45,62,0.12);
  transition: background-color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}


/* ────────────────────────────────────────────
   22. 404 PAGE
──────────────────────────────────────────── */
.error-404 {
  padding-block: 120px;
  text-align: center;
}

.error-404__number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 24px;
}

.error-404__title {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.error-404__body {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 400px;
  margin-inline: auto;
  margin-bottom: 40px;
}


/* ────────────────────────────────────────────
   23. SCROLL REVEAL ANIMATIONS
──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }


/* ────────────────────────────────────────────
   24. PHONE LINK
──────────────────────────────────────────── */
.phone-link {
  transition: color var(--dur-fast) var(--ease);
}

.phone-link:hover {
  color: var(--green-dark);
}


/* ────────────────────────────────────────────
   25. RESPONSIVE — TABLET (max 1024px)
──────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-py: 60px;
    --section-py-lg: 80px;
  }

  .site-footer__upper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .hero__image-wrap {
    max-height: 480px;
  }

  .hero__badge {
    left: -12px;
    bottom: 24px;
  }

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

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

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

  .booking-cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .booking-cta__content {
    text-align: center;
  }

  .booking-cta__actions {
    justify-content: center;
  }
}


/* ────────────────────────────────────────────
   26. RESPONSIVE — MOBILE (max 768px)
──────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-py: 48px;
    --section-py-lg: 64px;
    --gutter: 16px;
  }

  /* Header */
  .primary-nav,
  .site-header__phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header__inner {
    height: 64px;
  }

  /* Mobile nav visible */
  .mobile-nav {
    display: flex;
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 0;
  }

  .hero__content {
    padding-bottom: 48px;
    text-align: center;
  }

  .hero__subheadline {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image {
    display: none;
  }

  /* Trust strip */
  /* Trust ticker — keep items horizontal on mobile, never stack */
  .trust-ticker .trust-item {
    width: auto !important;
    border-right: 1px solid rgba(255,255,255,0.12) !important;
    border-bottom: none !important;
    padding: 12px 24px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .trust-ticker__set {
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step::after {
    display: none;
  }

  /* Problem section */
  .problem-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Why us */
  .why-us__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-us__image {
    order: -1;
    aspect-ratio: 16/9;
  }

  /* BA */
  .ba-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Service area */
  .service-area__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .site-footer__upper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__lower {
    flex-direction: column;
    text-align: center;
  }

  /* Posts */
  .posts-grid {
    grid-template-columns: 1fr;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Booking form */
  .booking-form {
    padding: 24px;
  }
}


/* ────────────────────────────────────────────
   27. WORDPRESS ALIGNMENT CLASSES
──────────────────────────────────────────── */
.alignleft  { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.aligncenter { display: block; margin-inline: auto; }
.alignwide  { margin-inline: calc(-1 * var(--gutter)); }
.alignfull  { margin-inline: calc(-1 * var(--gutter)); }

/* Clearfix */
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}

/* Screen reader only */
.screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 600;
  z-index: 1000;
  transition: top var(--dur-fast) var(--ease);
}

.skip-link:focus {
  top: 0;
}


/* ────────────────────────────────────────────
   28. DROPDOWN NAV
   Targets both our fallback custom classes AND
   WordPress's native menu classes (.menu-item-has-children / .sub-menu)
──────────────────────────────────────────── */
.primary-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}

/* Both custom and WP-native list items */
.primary-nav__item,
.primary-nav > .menu-item {
  position: relative;
}

/* All nav links */
.primary-nav__item > a,
.primary-nav > .menu-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius-md);
  transition: background-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.primary-nav__item > a:hover,
.primary-nav__item:focus-within > a,
.primary-nav > .menu-item > a:hover,
.primary-nav > .menu-item:focus-within > a {
  background: var(--off-white);
  color: var(--green-dark);
}

/* ── Dropdown panel ── */
.primary-nav__dropdown,
.primary-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 8px;
  z-index: 200;
  border: 1px solid rgba(27,45,62,0.08);
  /* Visual gap between nav bar and dropdown */
  margin-top: 10px;
}

/* ── Hover bridge ──
   The bridge MUST be on the parent li (always in DOM), NOT on the
   dropdown (hidden when you need it, so ::before won't help there).
   This ::after extends downward from the li and covers the margin-top
   gap so the mouse never leaves the hover zone. */
.primary-nav__item.has-dropdown::after,
.primary-nav .menu-item-has-children::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px; /* must be >= margin-top on dropdown */
  background: transparent;
  pointer-events: all;
}

/* Show on hover / focus-within — custom classes */
.primary-nav__item.has-dropdown:hover .primary-nav__dropdown,
.primary-nav__item.has-dropdown:focus-within .primary-nav__dropdown {
  display: block;
}

/* Show on hover / focus-within — WordPress native classes */
.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

/* Dropdown links — custom */
.primary-nav__dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-md);
  transition: background-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}

.primary-nav__dropdown li a:hover {
  background: var(--off-white);
  color: var(--navy);
}

/* Dropdown links — WordPress native */
.primary-nav .sub-menu > .menu-item > a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-md);
  transition: background-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}

.primary-nav .sub-menu > .menu-item > a:hover {
  background: var(--off-white);
  color: var(--navy);
}

/* Chevron — custom fallback */
.primary-nav__item.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--dur-fast) var(--ease);
}

.primary-nav__item.has-dropdown:hover > a::after {
  transform: rotate(225deg) translateY(-2px);
}

/* Chevron — WordPress native */
.primary-nav .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--dur-fast) var(--ease);
  margin-left: 4px;
}

.primary-nav .menu-item-has-children:hover > a::after {
  transform: rotate(225deg) translateY(-2px);
}


/* ────────────────────────────────────────────
   29. FAQ ACCORDION
──────────────────────────────────────────── */
.faqs-page {
  background: var(--white);
}

.faqs-page__inner {
  max-width: 760px;
  margin-inline: auto;
}

.faq-group {
  margin-bottom: 56px;
}

.faq-group__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-light);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(27,45,62,0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(27,45,62,0.1);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--dur-fast) var(--ease);
}

.faq-item__trigger:hover {
  color: var(--green-dark);
}

.faq-item__trigger[aria-expanded="true"] {
  color: var(--green-dark);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  background: var(--green);
  transform: rotate(45deg);
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  color: var(--navy);
}

.faq-item__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-item__body.is-open {
  max-height: 600px;
}

.faq-item__answer {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.faq-item__answer a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-cta {
  background: var(--mint);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  margin-top: 56px;
}

.faq-cta__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.faq-cta__body {
  color: var(--text-mid);
  margin-bottom: 28px;
}

.faq-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* ────────────────────────────────────────────
   30. SERVICES OVERVIEW PAGE
──────────────────────────────────────────── */
.services-page-hero {
  background: var(--green);
  padding-block: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse, var(--white) 0%, transparent 60%);
  opacity: 0.12;
  pointer-events: none;
}

.services-page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 16px;
}

.services-page-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.services-page-hero__subtitle {
  font-size: 1.15rem;
  color: var(--navy);
  opacity: 0.8;
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.6;
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding-block: 80px;
}

.service-full-card {
  background: var(--white);
  border: 2px solid rgba(27,45,62,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}

.service-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.service-full-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
}

.service-full-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.service-full-card:hover .service-full-card__image img {
  transform: scale(1.04);
}

.service-full-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.25;
}

.service-full-card__image-placeholder--green  { background: var(--green); }
.service-full-card__image-placeholder--blue   { background: var(--blue-light); }
.service-full-card__image-placeholder--mint   { background: var(--mint); }
.service-full-card__image-placeholder--navy   { background: var(--navy); }

.service-full-card__price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
}

.service-full-card__body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-full-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-full-card__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}

.service-full-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.service-full-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.service-full-card__features li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%231B2D3E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-full-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.service-full-card__price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.service-full-card__price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}


/* ────────────────────────────────────────────
   31. INDIVIDUAL SERVICE PAGE
──────────────────────────────────────────── */
.service-hero {
  position: relative;
  overflow: hidden;
  padding-block: 80px 60px;
  min-height: 860px;
}

.service-hero--green      { background: var(--green); }
.service-hero--blue-light { background: var(--blue-light); }
.service-hero--mint       { background: var(--mint); }
.service-hero--gold       { background: var(--gold); }

.service-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.service-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.6;
  margin-bottom: 16px;
}

.service-hero__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}

.service-hero__desc {
  font-size: 1.1rem;
  color: var(--navy);
  opacity: 0.8;
  line-height: 1.65;
  margin-bottom: 32px;
}

.service-hero__price-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-hero__price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.service-hero__price-meta {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.service-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-hero__image {
  border-radius: var(--radius-xl);
  position: relative;
  display: flex;
  align-self: stretch;
}

.service-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero__image-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(27,45,62,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.35;
}

/* Service detail sections */
.service-detail {
  padding-block: 72px;
}

.service-detail--alt {
  background: var(--off-white);
}

.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.service-detail__inner--reverse .service-detail__content {
  order: 2;
}

.service-detail__inner--reverse .service-detail__visual {
  order: 1;
}

.service-detail__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.service-detail__title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.service-detail__body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.service-checklist li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%231B2D3E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-detail__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-detail__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.3;
}

/* Process steps (inline) */
.service-process {
  background: var(--navy);
  padding-block: 72px;
}

.service-process__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
}

.service-process__sub {
  text-align: center;
  color: rgba(255,255,255,0.6);
  margin-bottom: 56px;
  font-size: 1rem;
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.service-step {
  text-align: center;
}

.service-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-step__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.service-step__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

/* Pricing panel */
.service-pricing {
  background: var(--mint);
  padding-block: 72px;
}

.service-pricing__inner {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.service-pricing__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

.service-pricing__amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.service-pricing__label {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.service-pricing__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  text-align: left;
  margin-bottom: 36px;
}

.service-pricing__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.service-pricing__feature::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%231B2D3E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.service-pricing__disclaimer {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 16px;
}


/* ────────────────────────────────────────────
   32. ABOUT PAGE
──────────────────────────────────────────── */
.about-hero {
  background: var(--blue-light);
  padding-block: 80px;
  overflow: hidden;
  position: relative;
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.6;
  margin-bottom: 16px;
}

.about-hero__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.1;
}

.about-hero__body {
  font-size: 1rem;
  color: var(--navy);
  opacity: 0.8;
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-hero__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  opacity: 0.3;
}

/* About stats row */
.about-stats {
  background: var(--navy);
  padding-block: 48px;
}

.about-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.about-stat__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* About story */
.about-story {
  padding-block: 80px;
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-story__content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-story__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: sticky;
  top: 100px;
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.3;
}

/* Values section */
.about-values {
  background: var(--gold);
  padding-block: 80px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.about-value-card {
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.about-value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.about-value-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.about-value-card__body {
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.75;
  line-height: 1.6;
}

/* Certifications */
.about-certs {
  padding-block: 64px;
  background: var(--off-white);
}

.about-certs__inner {
  text-align: center;
}

.about-certs__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.cert-badge {
  background: var(--white);
  border: 2px solid rgba(27,45,62,0.1);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cert-badge::before {
  content: '✓';
  display: inline-flex;
  width: 24px;
  height: 24px;
  background: var(--green);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--navy);
  font-weight: 900;
}


/* ────────────────────────────────────────────
   33. CONTACT PAGE
──────────────────────────────────────────── */
.contact-hero {
  background: var(--green);
  padding-block: 72px;
  text-align: center;
}

.contact-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-hero__sub {
  font-size: 1.1rem;
  color: var(--navy);
  opacity: 0.8;
  max-width: 540px;
  margin-inline: auto;
}

.contact-page {
  padding-block: 80px;
  background: var(--white);
}

.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: start;
}

.contact-info__title {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-info__sub {
  color: var(--text-mid);
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-detail__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
}

.contact-detail__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-detail__value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-detail__value a {
  color: inherit;
  transition: color var(--dur-fast) var(--ease);
}

.contact-detail__value a:hover {
  color: var(--green-dark);
}

.contact-detail__sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 2px;
}

.contact-hours {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.contact-hours__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-hours__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-hours__item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.contact-hours__item--today {
  font-weight: 700;
  color: var(--navy);
}

.contact-form-panel {
  background: var(--white);
  border: 2px solid rgba(27,45,62,0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.contact-form-panel .form-title {
  font-size: 1.35rem;
}


/* ────────────────────────────────────────────
   34. SERVICE AREAS PAGE
──────────────────────────────────────────── */
.areas-hero {
  background: var(--mint);
  padding-block: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.areas-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.areas-hero__sub {
  font-size: 1.1rem;
  color: var(--navy);
  opacity: 0.75;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.6;
}

.areas-map {
  background: var(--white);
  padding-block: 72px;
}

.areas-map__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.areas-map__embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.areas-map__embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.areas-map__placeholder {
  width: 100%;
  height: 100%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
}

.areas-map__placeholder svg {
  width: 56px;
  height: 56px;
  color: var(--navy);
  opacity: 0.3;
}

.areas-map__placeholder p {
  font-size: 0.875rem;
  color: var(--text-mid);
}

.areas-list__title {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.areas-list__sub {
  color: var(--text-mid);
  margin-bottom: 32px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.area-region {
  margin-bottom: 32px;
}

.area-region__name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--green-light);
}

.area-region__towns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Travel fee notice */
.areas-notice {
  background: var(--off-white);
  padding-block: 48px;
}

.areas-notice__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.areas-notice__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.areas-notice__title {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.areas-notice__body {
  color: var(--text-mid);
  line-height: 1.7;
  font-size: 0.95rem;
}


/* ────────────────────────────────────────────
   35. HOW IT WORKS — FULL PAGE
──────────────────────────────────────────── */
.hiw-hero {
  background: var(--blue-light);
  padding-block: 80px;
  text-align: center;
}

.hiw-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.hiw-hero__sub {
  font-size: 1.1rem;
  color: var(--navy);
  opacity: 0.75;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.6;
}

.hiw-steps-full {
  padding-block: 80px;
}

.hiw-step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-block: 64px;
  border-bottom: 1px solid rgba(27,45,62,0.08);
}

.hiw-step-row:last-child {
  border-bottom: none;
}

.hiw-step-row--reverse .hiw-step-row__content {
  order: 2;
}

.hiw-step-row--reverse .hiw-step-row__visual {
  order: 1;
}

.hiw-step-row__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hiw-step-row__number {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-step-row__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.hiw-step-row__title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.hiw-step-row__body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.hiw-step-row__detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.hiw-step-row__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.hiw-step-row__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hiw-step-row__visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.25;
}

.hiw-step-row:nth-child(odd)  .hiw-step-row__visual-placeholder { background: var(--green-light); }
.hiw-step-row:nth-child(even) .hiw-step-row__visual-placeholder { background: var(--blue-light); }

/* Guarantee strip */
.hiw-guarantee {
  background: var(--green);
  padding-block: 64px;
  text-align: center;
}

.hiw-guarantee__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.hiw-guarantee__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.hiw-guarantee__body {
  font-size: 1rem;
  color: var(--navy);
  opacity: 0.8;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.65;
  margin-bottom: 32px;
}


/* ────────────────────────────────────────────
   36. BEFORE & AFTER — FULL PAGE
──────────────────────────────────────────── */
.ba-page-hero {
  background: var(--navy);
  padding-block: 80px;
  text-align: center;
}

.ba-page-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
}

.ba-page-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.6;
}

.ba-filters {
  background: var(--off-white);
  padding-block: 24px;
  border-bottom: 1px solid rgba(27,45,62,0.08);
}

.ba-filters__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ba-filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(27,45,62,0.15);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.ba-filter-btn:hover,
.ba-filter-btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.ba-gallery {
  padding-block: 64px;
  background: var(--white);
}

.ba-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ba-gallery__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding-block: 80px;
}

.ba-gallery__empty-icon {
  font-size: 4rem;
  opacity: 0.2;
  margin-bottom: 16px;
}

.ba-gallery__empty-text {
  font-size: 1.1rem;
  color: var(--text-light);
}


/* ────────────────────────────────────────────
   37. MINI BOOKING CTA STRIP (interior pages)
──────────────────────────────────────────── */
.cta-strip {
  background: var(--green);
  padding-block: 48px;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip__text .display-sm {
  color: var(--navy);
  margin-bottom: 4px;
}

.cta-strip__sub {
  font-size: 1rem;
  color: var(--navy);
  opacity: 0.75;
}

.cta-strip__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}


/* ────────────────────────────────────────────
   38. RESPONSIVE ADDITIONS — TABLET
──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-full-grid {
    grid-template-columns: 1fr;
  }

  .service-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
  }
  .service-hero {
    min-height: unset;
    padding-block: 48px 0;
  }

  .service-hero__image {
    height: 620px;
    min-height: 620px;
    aspect-ratio: unset;
  }

  .service-detail__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail__inner--reverse .service-detail__content,
  .service-detail__inner--reverse .service-detail__visual {
    order: unset;
  }

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

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

  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero__image {
    aspect-ratio: 16/9;
  }

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

  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story__image {
    position: relative;
    top: auto;
    aspect-ratio: 16/9;
  }

  .about-values__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-page__inner {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    position: relative;
    top: auto;
  }

  .areas-map__inner {
    grid-template-columns: 1fr;
  }

  .hiw-step-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hiw-step-row--reverse .hiw-step-row__content,
  .hiw-step-row--reverse .hiw-step-row__visual {
    order: unset;
  }

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

  .cta-strip__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip__actions {
    justify-content: center;
  }
}


/* ────────────────────────────────────────────
   39. RESPONSIVE ADDITIONS — MOBILE
──────────────────────────────────────────── */
@media (max-width: 768px) {
  .service-steps {
    grid-template-columns: 1fr;
  }

  .service-pricing__card {
    padding: 28px 20px;
  }

  .service-pricing__amount {
    font-size: 3rem;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-stats__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .contact-form-panel {
    padding: 24px;
  }

  .ba-gallery__grid {
    grid-template-columns: 1fr;
  }

  .ba-filters__inner {
    justify-content: center;
  }

  .faq-cta {
    padding: 28px;
  }

  .hiw-step-row {
    padding-block: 40px;
  }
}

/* ────────────────────────────────────────────
   HOMEPAGE HERO + SERVICES DROPDOWN FIXES
   Added 2026-05-20
──────────────────────────────────────────── */

/* Keep the two-line homepage H1 tight even when the Customizer text contains line breaks. */
.hero__headline {
  gap: 0 !important;
  line-height: 0.86 !important;
}

.hero__headline .hero__line {
  display: block;
  line-height: 0.86 !important;
  margin: 0;
}

.hero__headline .hero__line + .hero__line {
  margin-top: -0.03em;
}

/* Ensure the Services dropdown arrow appears on both the theme fallback menu
   and WordPress menus that are enhanced by main.js. */
.primary-nav__item.has-dropdown > a,
.primary-nav > .menu-item.has-dropdown > a,
.primary-nav .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.primary-nav > .menu-item.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--dur-fast) var(--ease);
  flex: 0 0 auto;
}

.primary-nav > .menu-item.has-dropdown:hover > a::after,
.primary-nav > .menu-item.has-dropdown:focus-within > a::after {
  transform: rotate(225deg) translateY(-2px);
}


/* ────────────────────────────────────────────
   MOBILE POLISH — HERO + NAV DRAWER
   Added 2026-05-20
──────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    padding-block-start: 48px;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 44px;
  }

  .hero__headline {
    align-items: center !important;
    text-align: center;
    font-size: clamp(3rem, 14vw, 4.35rem);
    line-height: 0.9 !important;
    letter-spacing: -0.045em;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero__headline .hero__line {
    line-height: 0.9 !important;
    max-width: 100%;
  }

  .hero__headline .hero__line + .hero__line {
    margin-top: -0.015em;
  }

  .hero__eyebrow {
    margin-bottom: 18px;
  }

  .hero__actions {
    width: 100%;
    max-width: 360px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__phone-cta {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .mobile-nav__list {
    gap: 6px;
  }

  .mobile-nav__list li {
    list-style: none;
  }

  .mobile-nav__list .menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .mobile-nav__list .menu-item-has-children > a::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    flex: 0 0 auto;
  }

  .mobile-nav__list .sub-menu,
  .mobile-nav__list .primary-nav__dropdown {
    display: block;
    position: static;
    min-width: 0;
    margin: 2px 0 8px 0;
    padding: 6px 0 6px 14px;
    border: 0;
    border-left: 2px solid rgba(27,45,62,0.1);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .mobile-nav__list .sub-menu a,
  .mobile-nav__list .primary-nav__dropdown a {
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-mid);
    border-radius: var(--radius-sm);
  }
}

@media (max-width: 600px) {
  .site-header__inner {
    gap: 12px;
  }

  .site-logo__text {
    font-size: 1.15rem;
  }

  .site-header__cta > .btn {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero__headline {
    font-size: clamp(2.75rem, 13.5vw, 3.25rem);
  }

  .mobile-nav__list a {
    font-size: 1.35rem;
    padding-inline: 14px;
  }
}

/* ────────────────────────────────────────────
   MOBILE RESPONSIVE SAFETY PASS
   Added 2026-05-20
──────────────────────────────────────────── */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .container--sm {
    width: 100%;
    max-width: 100%;
  }

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

  .section,
  .section--lg,
  .contact-page,
  .service-detail,
  .service-process,
  .service-pricing,
  .about-story,
  .about-values,
  .areas-map,
  .hiw-steps-full,
  .ba-gallery {
    padding-block: 48px;
  }

  .page-hero,
  .contact-hero,
  .services-page-hero,
  .ba-page-hero,
  .service-hero,
  .about-hero {
    padding-block: 56px;
  }

  .page-hero__title,
  .contact-hero__title,
  .services-page-hero__title,
  .ba-page-hero__title,
  .service-hero__title,
  .about-hero__title {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
    line-height: 0.95;
    overflow-wrap: anywhere;
  }

  .display-lg,
  .display-md,
  .display-sm,
  .section-header__title {
    overflow-wrap: anywhere;
  }

  .btn,
  .button,
  button,
  input,
  textarea,
  select {
    max-width: 100%;
  }

  .hero__actions,
  .booking-cta__actions,
  .cta-strip__actions,
  .faq-cta__actions,
  .service-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .booking-cta__actions .btn,
  .cta-strip__actions .btn,
  .faq-cta__actions .btn,
  .service-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .alignleft,
  .alignright {
    float: none;
    margin: 0 0 20px;
    width: 100%;
  }

  .wp-caption,
  iframe,
  table {
    max-width: 100%;
  }

  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .about-stats__inner {
    grid-template-columns: 1fr;
  }

  .ba-card__images {
    grid-template-columns: 1fr;
  }

  .mobile-nav {
    width: 100%;
  }

  .mobile-nav__footer {
    padding-bottom: 24px;
  }
}

@media (max-width: 420px) {
  .service-card,
  .service-full-card,
  .testimonial-card,
  .about-value-card,
  .contact-form-panel,
  .booking-form,
  .faq-item__trigger,
  .faq-item__answer {
    padding-inline: 18px;
  }

  .hero__headline {
    font-size: clamp(2.65rem, 13vw, 3.5rem);
  }

  .mobile-nav__list a {
    font-size: 1.25rem;
  }
}

/* ────────────────────────────────────────────
   MOULD INSPECTION LANDING PAGE
   Added 2026-06-05
──────────────────────────────────────────── */
.mould-inspection-lp {
  background: var(--white);
}

.milp-hero {
  background: var(--green);
  padding-block: 88px 72px;
  position: relative;
  overflow: hidden;
}

.milp-hero::after {
  content: '';
  position: absolute;
  right: -12%;
  bottom: -35%;
  width: 52%;
  height: 95%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.58) 0%, transparent 70%);
  pointer-events: none;
}

.milp-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.milp-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.milp-hero .milp-eyebrow {
  color: var(--navy);
  opacity: 0.62;
}

.milp-hero__title {
  font-size: clamp(2.75rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--navy);
  max-width: 960px;
  margin-bottom: 24px;
}

.milp-hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
  color: var(--navy);
  opacity: 0.82;
  max-width: 760px;
  margin-bottom: 32px;
}

.milp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.milp-hero__card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 14px;
  box-shadow: var(--shadow-lg);
}

.milp-hero__card-inner {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: calc(var(--radius-xl) - 12px);
  padding: 32px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(150deg, rgba(207,255,246,0.08), rgba(140,230,140,0.18));
}

.milp-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 84px;
}

.milp-card-kicker {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.milp-hero__card p:not(.milp-card-kicker) {
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

.milp-section {
  padding-block: 76px;
}

.milp-section__header {
  max-width: 760px;
  margin-bottom: 40px;
}

.milp-section__header--center {
  text-align: center;
  margin-inline: auto;
}

.milp-problem {
  background: var(--off-white);
}

.milp-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.milp-problem-card {
  background: var(--white);
  border: 1px solid rgba(27,45,62,0.08);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.milp-problem-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  margin-bottom: 22px;
}

.milp-problem-card h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.milp-problem-card p {
  color: var(--text-mid);
  line-height: 1.65;
}

.milp-steps-section {
  background: var(--navy);
  color: var(--white);
}

.milp-steps-section .milp-eyebrow,
.milp-steps-section .display-md {
  color: var(--white);
}

.milp-steps-section .milp-eyebrow {
  opacity: 0.62;
}

.milp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.milp-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-xl);
  padding: 30px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.milp-step__number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 36px;
}

.milp-step p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.milp-included {
  background: var(--mint);
}

.milp-included-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.milp-included-card__sub {
  margin-top: 18px;
  color: var(--text-mid);
  line-height: 1.65;
}

.milp-included-list {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.milp-included-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 700;
  color: var(--navy);
}

.milp-included-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%231B2D3E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex: 0 0 auto;
  margin-top: 2px;
}

.milp-booking {
  background: var(--white);
}

.milp-booking__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: start;
}

.milp-booking__content {
  position: sticky;
  top: 110px;
}

.milp-booking__content p:not(.milp-eyebrow) {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-top: 14px;
}

.milp-calendar-placeholder {
  min-height: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(207,255,246,0.72), rgba(245,250,245,0.92));
  color: var(--navy);
  border: 2px dashed rgba(27,45,62,0.22);
  border-radius: var(--radius-xl);
}

.milp-calendar-placeholder p:last-child {
  color: var(--text-mid);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .milp-hero__inner,
  .milp-booking__inner,
  .milp-included-card {
    grid-template-columns: 1fr;
  }

  .milp-booking__content {
    position: relative;
    top: auto;
  }

  .milp-problem-grid,
  .milp-steps {
    grid-template-columns: 1fr;
  }

  .milp-step {
    min-height: unset;
  }
}

@media (max-width: 768px) {
  .milp-hero,
  .milp-section {
    padding-block: 52px;
  }

  .milp-hero__inner {
    gap: 32px;
  }

  .milp-hero__title {
    font-size: clamp(2.35rem, 12vw, 3.75rem);
    line-height: 0.98;
  }

  .milp-hero__actions,
  .milp-hero__actions .btn {
    width: 100%;
  }

  .milp-hero__actions .btn {
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }

  .milp-hero__card-inner,
  .milp-problem-card,
  .milp-step,
  .milp-included-card {
    padding: 24px;
  }

  .milp-card-icon {
    margin-bottom: 48px;
  }

  .milp-section__header {
    margin-bottom: 28px;
  }

  .milp-calendar-placeholder {
    min-height: 560px;
    border-radius: var(--radius-lg);
  }
}


/* ────────────────────────────────────────────
   29. MOBILE HAMBURGER OVERRIDE — v2.4.1
   Keeps desktop navigation hidden on mobile even after later dropdown rules.
──────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-header {
    z-index: 300;
  }

  .site-header__inner {
    height: 64px;
    padding-block: 10px;
    gap: 12px;
  }

  .site-logo {
    min-width: 0;
    max-width: calc(100vw - 92px);
  }

  .site-logo img,
  .custom-logo {
    max-height: 42px;
    width: auto;
  }

  .primary-nav-wrap,
  .primary-nav,
  .site-header__phone,
  .site-header__cta > .btn {
    display: none !important;
  }

  .site-header__cta {
    margin-left: auto;
    display: flex;
  }

  .nav-toggle {
    display: inline-flex !important;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(27,45,62,0.12);
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    padding: 0;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    z-index: 310;
  }

  .mobile-nav {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    background: var(--white);
    z-index: 400;
    padding: 76px 18px 28px;
    transform: translateX(100%);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, visibility 0.28s ease;
  }

  .mobile-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  body.mobile-nav-open {
    overflow: hidden;
    touch-action: none;
  }

  .mobile-nav__close {
    top: 18px;
    right: 18px;
    border: 1px solid rgba(27,45,62,0.1);
    cursor: pointer;
  }

  .mobile-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 2px;
  }

  .mobile-nav__list li {
    list-style: none;
  }

  .mobile-nav__list a {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    line-height: 1.08;
    padding: 14px 12px;
  }

  .mobile-nav__list .sub-menu,
  .mobile-nav__list .primary-nav__dropdown {
    position: static !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    margin: 0 0 10px 10px !important;
    padding: 0 0 0 12px !important;
    min-width: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    border-left: 2px solid rgba(27,45,62,0.12) !important;
    border-radius: 0 !important;
    list-style: none;
  }

  .mobile-nav__list .sub-menu a,
  .mobile-nav__list .primary-nav__dropdown a {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-mid);
    padding: 10px 12px;
  }

  .mobile-nav__footer {
    padding-top: 28px;
    gap: 12px;
  }

  .mobile-nav__footer .btn {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .mobile-nav,
  .nav-toggle {
    display: none !important;
  }
}


/* Thanks page */
.thanks-hero {
  background: linear-gradient(135deg, rgba(139, 228, 139, 0.18), rgba(255,255,255,0.92));
}

.thanks-hero__card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 48px rgba(27,45,62,0.12);
  padding: clamp(28px, 6vw, 64px);
}

.thanks-hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 720px;
  margin-top: 18px;
}

.thanks-next-steps {
  display: grid;
  gap: 16px;
  margin: 34px 0;
}

.thanks-next-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(27,45,62,0.1);
  border-radius: var(--radius-lg);
  background: rgba(27,45,62,0.03);
}

.thanks-next-step__number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--navy);
  font-weight: 800;
}

.thanks-next-step h2 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.thanks-next-step p {
  color: var(--text-mid);
  line-height: 1.55;
  font-size: 0.95rem;
}

.thanks-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* ────────────────────────────────────────────
   FORMINATOR FORM POLISH — v31
   Makes the inserted Forminator enquiry form match the theme and fixes
   homepage desktop clipping caused by the old calendar panel sizing.
──────────────────────────────────────────── */
.hero--form {
  min-height: auto;
  overflow: visible;
  padding-block: clamp(56px, 7vw, 86px);
}

.hero--form .hero__inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.88fr);
  align-items: center;
}

.hero--form .hero__content {
  padding-bottom: 0;
}

.hero__image--form {
  display: flex;
  align-items: center;
  min-width: 0;
}

/* hero__form-panel and .form-card-wrap are outer wrappers Forminator
   cannot target — they provide the reliable white card on any bg */
.hero__form-panel,
.form-card-wrap {
  width: 100%;
  background: #ffffff !important;
  border-radius: clamp(28px, 3vw, 46px) !important;
  box-shadow: 0 8px 48px rgba(27,45,62,.13) !important;
  overflow: visible !important;
}

/* mouldpro-form-card inside a wrapper: transparent, just provides padding */
.hero__form-panel .mouldpro-form-card,
.form-card-wrap .mouldpro-form-card {
  padding: clamp(28px, 3.5vw, 46px) !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* mouldpro-form-card standalone (e.g. contact page white bg) */
.mouldpro-form-card {
  padding: clamp(28px, 3.5vw, 46px) !important;
  background: #ffffff !important;
  border-radius: clamp(28px, 3vw, 46px) !important;
  box-shadow: 0 8px 48px rgba(27,45,62,.13) !important;
  overflow: visible !important;
}

.mouldpro-form-card__intro {
  margin-bottom: 18px;
}

.mouldpro-form-card__eyebrow {
  margin: 0 0 6px;
  font-size: 0.74rem;
  line-height: 1.2;
}

.mouldpro-form-card__title {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.08;
}

.mouldpro-form-card__text {
  margin: 0;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.55;
}

.mouldpro-form-card .forminator-ui,
.mouldpro-form-card .forminator-custom-form {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mouldpro-form-card .forminator-row {
  margin-bottom: 14px !important;
}

.mouldpro-form-card .forminator-row:last-child {
  margin-bottom: 0 !important;
}

.mouldpro-form-card .forminator-label,
.mouldpro-form-card label.forminator-label {
  color: var(--navy) !important;
  font-weight: 800 !important;
  font-size: 0.86rem !important;
  line-height: 1.25 !important;
  margin-bottom: 7px !important;
}

.mouldpro-form-card .forminator-required {
  color: #e4573d !important;
}

.mouldpro-form-card input.forminator-input,
.mouldpro-form-card textarea.forminator-textarea,
.mouldpro-form-card select.forminator-select2 + .select2 .select2-selection,
.mouldpro-form-card .forminator-select .forminator-select-dropdown-container--open + .forminator-select-dropdown {
  width: 100% !important;
  border: 1px solid rgba(27,45,62,0.16) !important;
  border-radius: 14px !important;
  background: #f8fbf8 !important;
  color: var(--navy) !important;
  box-shadow: none !important;
}

.mouldpro-form-card input.forminator-input,
.mouldpro-form-card select.forminator-select2 + .select2 .select2-selection {
  min-height: 50px !important;
  padding: 12px 15px !important;
}

.mouldpro-form-card textarea.forminator-textarea {
  min-height: 98px !important;
  padding: 13px 15px !important;
  resize: vertical;
}

.mouldpro-form-card input.forminator-input:focus,
.mouldpro-form-card textarea.forminator-textarea:focus,
.mouldpro-form-card select.forminator-select2 + .select2.select2-container--focus .select2-selection {
  border-color: var(--green-dark) !important;
  background: var(--white) !important;
  box-shadow: 0 0 0 4px rgba(139,228,139,0.22) !important;
  outline: none !important;
}

.mouldpro-form-card .forminator-button-submit {
  width: 100% !important;
  min-height: 56px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 900 !important;
  font-size: 1rem !important;
  letter-spacing: -0.01em !important;
  box-shadow: 0 10px 24px rgba(27,45,62,0.18) !important;
}

.mouldpro-form-card .forminator-button-submit:hover,
.mouldpro-form-card .forminator-button-submit:focus {
  background: var(--green-dark) !important;
  color: var(--navy) !important;
}

.mouldpro-form-card .forminator-error-message {
  margin-top: 6px !important;
  border-radius: 10px !important;
  font-size: 0.82rem !important;
}

.mouldpro-form-card .forminator-response-message {
  border-radius: 16px !important;
  padding: 14px 16px !important;
}

@media (max-width: 1120px) {
  .hero--form .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero--form .hero__content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero--form {
    padding-block: 48px 54px;
  }

  .mouldpro-form-card input.forminator-input,
  .mouldpro-form-card select.forminator-select2 + .select2 .select2-selection {
    min-height: 48px !important;
  }
}

/* ─────────────────────────────────────────────
   FORM LAYOUT — responsive helpers
──────────────────────────────────────────── */


@media (max-width: 1120px) {
  /* Show form panel stacked below hero content on tablet/mobile —
     must override the generic .hero__image { display:none } mobile rule */
  .hero--form .hero__image--form {
    display: flex !important;
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .hero__form-panel,
  .form-card-wrap,
  .mouldpro-form-card {
    border-radius: 26px !important;
  }
  .hero__form-panel .mouldpro-form-card,
  .form-card-wrap .mouldpro-form-card,
  .mouldpro-form-card {
    padding: 24px !important;
  }
}

/* Services video section */
.services-video-section {
  background: var(--off-white);
  overflow: hidden;
}

.services-video-section__intro {
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 660px;
  margin: 16px auto 0;
}

.services-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin: clamp(28px, 4vw, 44px) auto 0;
  max-width: 860px;
  align-items: start;
}

.services-video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(10px, 1.4vw, 14px);
  box-shadow: 0 14px 40px rgba(27, 45, 62, 0.08);
  min-width: 0;
}

.services-video-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  background: var(--navy);
}

.services-video-card__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-video-card__title {
  margin: 16px 4px 2px;
  color: var(--navy);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 700;
  line-height: 1.25;
}

@media (max-width: 900px) {
  .services-video-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    max-width: none;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 8px;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
  }

  .services-video-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .services-video-grid {
    grid-template-columns: repeat(3, minmax(245px, 78vw));
  }
}
