/* ==========================================================================
   Busy Beavers Moving and Cleaning Ltd — Global Stylesheet
   Brand colours, base styles, layout, components and animations.
   Responsive media queries live in responsive.css.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Brand variables
   -------------------------------------------------------------------------- */
:root {
  --green-950: #073d2f;
  --green-900: #084936;
  --green-800: #0c5a40;
  --green-700: #14704d;
  --lime-500: #78b82a;
  --lime-400: #91ca3b;
  --lime-100: #eaf5d9;
  --cream-50: #fbfaf5;
  --grey-100: #f3f4f1;
  --grey-300: #d8ddd7;
  --charcoal: #202823;
  --stone: #5c675f;
  --white: #ffffff;

  --font-heading: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-card: 0 2px 6px rgba(7, 61, 47, 0.06), 0 14px 34px rgba(7, 61, 47, 0.10);
  --shadow-card-hover: 0 6px 14px rgba(7, 61, 47, 0.10), 0 22px 48px rgba(7, 61, 47, 0.16);
  --shadow-header: 0 2px 18px rgba(7, 61, 47, 0.12);

  --container: 1180px;
  --topbar-height: 38px;
}

/* --------------------------------------------------------------------------
   2. Reset and base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream-50);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--green-950);
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { color: var(--stone); }

a {
  color: var(--green-700);
  text-decoration: none;
}

ul { list-style: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--lime-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--green-950);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-family: var(--font-heading);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--white);
}

.section--dark {
  background: linear-gradient(140deg, var(--green-950), var(--green-800));
  color: var(--cream-50);
}

.section--dark h2 { color: var(--white); }
.section--dark p { color: rgba(251, 250, 245, 0.85); }

.section-heading {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 10px;
}

.section--dark .eyebrow { color: var(--lime-400); }

.section-heading p {
  margin-top: 14px;
  font-size: 1.08rem;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn i { font-size: 1.05em; }

.btn--primary {
  background: var(--lime-500);
  color: var(--green-950);
}

.btn--primary:hover {
  background: var(--lime-400);
  box-shadow: 0 10px 24px rgba(120, 184, 42, 0.35);
}

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

.btn--dark:hover {
  background: var(--green-700);
}

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

.btn--outline:hover {
  background: var(--green-900);
  color: var(--white);
}

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

.btn--outline-light:hover {
  background: var(--white);
  color: var(--green-950);
}

/* --------------------------------------------------------------------------
   5. Top contact bar
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--green-950);
  color: var(--cream-50);
  font-size: 0.85rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--topbar-height);
  padding-top: 6px;
  padding-bottom: 6px;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream-50);
  transition: color 0.2s ease;
}

.topbar__item i { color: var(--lime-400); }

a.topbar__item:hover { color: var(--lime-400); }

.topbar__group {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* --------------------------------------------------------------------------
   6. Header and navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
  padding: 14px 0;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-header);
  padding: 8px 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Text wordmark (temporary until the official logo file is added) */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.wordmark__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
  color: var(--lime-400);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: width 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled .wordmark__badge {
  width: 40px;
  height: 40px;
}

.wordmark__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.wordmark__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green-950);
  letter-spacing: -0.01em;
}

.wordmark__sub {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-700);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 6px 2px;
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--lime-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--green-800);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--green-950);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.menu-toggle:hover { background: var(--grey-100); }

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 90;
  background: rgba(7, 61, 47, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: var(--white);
  padding: 92px 26px 26px;
  transform: translateX(100%);
  transition: transform 0.32s ease;
  overflow-y: auto;
  box-shadow: -14px 0 40px rgba(7, 61, 47, 0.2);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__panel ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__panel a:not(.btn) {
  display: block;
  padding: 13px 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--charcoal);
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu__panel a:not(.btn):hover,
.mobile-menu__panel a[aria-current="page"] {
  background: var(--lime-100);
  color: var(--green-900);
}

.mobile-menu__panel .btn {
  width: 100%;
  margin-top: 18px;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(120, 184, 42, 0.16), transparent 60%),
    linear-gradient(150deg, var(--cream-50) 0%, #f1f4ec 100%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding: 84px 0 120px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-800);
  margin-bottom: 22px;
}

.hero__eyebrow i { color: var(--lime-500); }

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--green-700);
  display: block;
}

.hero__text {
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  color: var(--green-800);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero__tagline i { color: var(--lime-500); }

.hero__media {
  position: relative;
}

.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
}

.hero__badge {
  position: absolute;
  left: -14px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-card);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-950);
}

.hero__badge i {
  color: var(--lime-500);
  font-size: 1.2rem;
}

/* Curved divider at the bottom of the hero */
.hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
}

.hero__curve svg {
  width: 100%;
  height: 70px;
  display: block;
}

/* Hero entrance animation */
.hero-enter {
  opacity: 0;
  transform: translateY(26px);
  animation: heroUp 0.8s ease forwards;
}

.hero-enter--1 { animation-delay: 0.1s; }
.hero-enter--2 { animation-delay: 0.22s; }
.hero-enter--3 { animation-delay: 0.34s; }
.hero-enter--4 { animation-delay: 0.46s; }

@keyframes heroUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   8. Cards and grids
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 24px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--lime-100);
  color: var(--green-800);
  font-size: 1.45rem;
  margin-bottom: 18px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.card:hover .card__icon {
  transform: scale(1.08) rotate(-5deg);
  background: var(--green-900);
  color: var(--lime-400);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 0.97rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--green-700);
}

.card__link i {
  transition: transform 0.25s ease;
}

.card__link:hover i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   9. Why choose split section
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.split__media img {
  width: 100%;
  transition: transform 0.5s ease;
}

.split__media:hover img {
  transform: scale(1.045);
}

.checklist {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--charcoal);
  font-weight: 500;
}

.checklist i {
  color: var(--lime-500);
  font-size: 1.1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. How it works steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 30px 24px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--lime-400);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.reveal.is-visible .step__num {
  animation: stepIn 0.5s ease both;
}

@keyframes stepIn {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.step::after {
  content: "";
  position: absolute;
  top: 52px;
  right: -14px;
  width: 28px;
  height: 2px;
  background: var(--grey-300);
}

.step:last-child::after { display: none; }

.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: 0.94rem; }

/* --------------------------------------------------------------------------
   11. Residential / commercial panels
   -------------------------------------------------------------------------- */
.audience {
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  color: var(--cream-50);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.audience--res {
  background: linear-gradient(150deg, var(--green-900), var(--green-700));
}

.audience--com {
  background: linear-gradient(150deg, #123b2f, var(--green-800));
}

.audience::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(120, 184, 42, 0.18);
}

.audience h3 {
  color: var(--white);
  font-size: 1.45rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.audience h3 i { color: var(--lime-400); }

.audience > p {
  color: rgba(251, 250, 245, 0.85);
  margin-bottom: 18px;
}

.audience ul {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.audience li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.audience li i {
  color: var(--lime-400);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   12. Service area band
   -------------------------------------------------------------------------- */
.area-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px 42px;
}

.area-band__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--lime-100);
  color: var(--green-800);
  font-size: 2.1rem;
  flex-shrink: 0;
}

.area-band h2 { margin-bottom: 10px; }

/* --------------------------------------------------------------------------
   13. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(120, 184, 42, 0.14);
}

.cta-band .container {
  position: relative;
  text-align: center;
  max-width: 760px;
}

.cta-band h2 { margin-bottom: 14px; }

.cta-band p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* --------------------------------------------------------------------------
   14. FAQ accordion
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--green-950);
  transition: background-color 0.2s ease;
}

.faq-item__btn:hover {
  background: var(--grey-100);
}

.faq-item__btn i {
  color: var(--green-700);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item__btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item__panel.is-open {
  grid-template-rows: 1fr;
}

.faq-item__panel > div {
  overflow: hidden;
}

.faq-item__panel p {
  padding: 0 24px 22px;
  font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   15. Contact page and forms
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px 28px;
}

.contact-card + .contact-card { margin-top: 22px; }

.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.contact-card h3 i {
  color: var(--green-700);
  background: var(--lime-100);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-card a.strong-link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--green-900);
}

.contact-card a.strong-link:hover { color: var(--green-700); }

.quote-form {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 36px 32px;
}

.quote-form h2 { margin-bottom: 6px; }

.quote-form > p { margin-bottom: 24px; }

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

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-950);
  margin-bottom: 7px;
}

.form-group .required {
  color: #b3261e;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-md);
  background: var(--cream-50);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(20, 112, 77, 0.14);
  outline: none;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #b3261e;
}

.field-error {
  display: none;
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b3261e;
}

.form-group.has-error .field-error {
  display: block;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.9rem;
}

/* Enquiry review / status box */
.form-status {
  display: none;
  margin-top: 22px;
  border: 1.5px solid var(--lime-500);
  background: var(--lime-100);
  border-radius: var(--radius-md);
  padding: 20px;
}

.form-status.is-visible { display: block; }

.form-status h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-status h3 i { color: var(--green-700); }

.form-status p {
  font-size: 0.93rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.form-status textarea {
  width: 100%;
  min-height: 170px;
  padding: 13px 15px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--charcoal);
  resize: vertical;
}

.form-status .form-actions { margin-top: 14px; }

/* --------------------------------------------------------------------------
   16. Page hero (internal pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(700px 360px at 90% -20%, rgba(120, 184, 42, 0.2), transparent 60%),
    linear-gradient(140deg, var(--green-950), var(--green-800));
  color: var(--cream-50);
  padding: 64px 0 78px;
  overflow: hidden;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(251, 250, 245, 0.88);
  max-width: 640px;
  font-size: 1.08rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--lime-400);
}

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

.breadcrumbs i {
  font-size: 0.65rem;
  color: rgba(251, 250, 245, 0.6);
}

.breadcrumbs [aria-current="page"] {
  color: rgba(251, 250, 245, 0.85);
}

/* --------------------------------------------------------------------------
   17. Service detail sections
   -------------------------------------------------------------------------- */
.service-detail {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 38px 36px;
}

.service-detail + .service-detail { margin-top: 28px; }

.service-detail__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.service-detail__head .card__icon {
  margin-bottom: 0;
}

.service-detail h2 { font-size: 1.5rem; }

.service-detail__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 22px 0;
}

.service-detail h3 {
  font-size: 1.02rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.service-detail h3 i { color: var(--lime-500); }

.service-detail .checklist { margin-top: 0; }

.service-detail .checklist li {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--stone);
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--lime-100);
  border: 1px solid rgba(120, 184, 42, 0.4);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 0.93rem;
  color: var(--charcoal);
}

.notice i {
  color: var(--green-700);
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   18. Prose (privacy policy, text pages)
   -------------------------------------------------------------------------- */
.prose {
  max-width: 780px;
}

.prose h2 {
  font-size: 1.35rem;
  margin: 34px 0 12px;
}

.prose p { margin-bottom: 14px; }

.prose ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
  color: var(--stone);
}

.prose li { margin-bottom: 6px; }

.prose a { font-weight: 600; }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--green-950);
  color: rgba(251, 250, 245, 0.85);
  padding: 64px 0 0;
}

.site-footer .wordmark__name { color: var(--white); }
.site-footer .wordmark__sub { color: var(--lime-400); }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.site-footer p { color: rgba(251, 250, 245, 0.75); font-size: 0.95rem; }

.site-footer__about p { margin: 16px 0 20px; }

.site-footer ul {
  display: grid;
  gap: 10px;
}

.site-footer ul a {
  color: rgba(251, 250, 245, 0.8);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-footer ul a:hover { color: var(--lime-400); }

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.site-footer__contact i {
  color: var(--lime-400);
  margin-top: 5px;
  flex-shrink: 0;
}

.site-footer__bottom {
  border-top: 1px solid rgba(251, 250, 245, 0.14);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.87rem;
}

.site-footer__bottom a { color: var(--lime-400); }

.site-footer__bottom a:hover { color: var(--white); }

/* --------------------------------------------------------------------------
   20. Mobile action bar
   -------------------------------------------------------------------------- */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  background: var(--white);
  border-top: 1px solid var(--grey-300);
  box-shadow: 0 -6px 22px rgba(7, 61, 47, 0.12);
}

.mobile-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 9px 4px 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.74rem;
  color: var(--green-900);
}

.mobile-bar a i { font-size: 1.15rem; }

.mobile-bar a.mobile-bar__quote {
  background: var(--lime-500);
  color: var(--green-950);
}

/* --------------------------------------------------------------------------
   21. 404 page
   -------------------------------------------------------------------------- */
.error-hero {
  text-align: center;
  padding: 96px 0;
}

.error-hero .error-code {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--green-900);
  line-height: 1;
}

.error-hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.error-hero p {
  max-width: 480px;
  margin: 0 auto 30px;
}

.error-hero .cta-band__actions { justify-content: center; }

/* --------------------------------------------------------------------------
   22. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }

/* --------------------------------------------------------------------------
   23. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .hero-enter {
    opacity: 1 !important;
    transform: none !important;
  }
}
