:root {
  color-scheme: light;

  --dark: #1a1f1c;
  --dark-lighter: #2a2f2c;
  --dark-card: #3a4038;
  --green-dark: #2a5a3a;
  --green-primary: #4a7a5a;
  --green-bright: #6a9a7a;
  --green-accent: #5f9970;
  --cream: #f5f3f0;
  --cream-light: #f9f8f6;
  --text-dark: #1a1f1c;
  --text-light: #5a6560;
  --white: #ffffff;
  --amber: #d4a574;
  --clay: #b96942;
  --sage-mist: #dbe7de;
  --forest-deep: #142219;
  --charcoal-soft: #24322a;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.2);
  --transition: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 20% -10%, rgba(185, 105, 66, 0.12), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(74, 122, 90, 0.14), transparent 40%),
    var(--cream);
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 0.93rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2a5a3a 0%, #356f4a 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(42, 90, 58, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #356f4a 0%, #3f8156 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(42, 90, 58, 0.32);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-outline {
  color: var(--green-primary);
  border-color: rgba(74, 122, 90, 0.45);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
}

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

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 0.93rem;
  font-weight: 600;
  border: 2px solid var(--green-dark);
  transition: all var(--transition);
}

.btn-dark:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}

.section-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.02rem;
}

.section-header--light h2 {
  color: var(--white);
}

.section-header--light p {
  color: rgba(255, 255, 255, 0.75);
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.22,.61,.36,1);
}

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

/* ── Header ── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(42, 90, 58, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  background: rgba(42, 90, 58, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.logo-text {
  line-height: 1.15;
}

.logo-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-ltd {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 165, 116, 0), rgba(212, 165, 116, 0.95), rgba(212, 165, 116, 0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms ease;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn-phone {
  background: var(--green-primary) !important;
  color: var(--white) !important;
  border-radius: 999px !important;
  padding: 8px 18px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  white-space: nowrap;
  transition: background var(--transition) !important;
  letter-spacing: 0 !important;
}

.btn-phone:hover {
  background: var(--green-bright) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  gap: 5px;
  flex-direction: column;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
  position: absolute;
}

.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(2) { transform: translateY(0); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* ── Hero (light) ── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg, #f9f6f1 0%, #f3efe7 52%, #e9efe9 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--text-dark);
  padding-top: 70px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(74, 122, 90, 0.18) 0%, rgba(74, 122, 90, 0) 68%);
  top: -180px;
  right: -120px;
}

.hero::after {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(185, 105, 66, 0.16) 0%, rgba(185, 105, 66, 0) 72%);
  bottom: -170px;
  left: -120px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-text h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 5.8vw, 4.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-text h1 span {
  display: block;
}

.hero-text h1 .accent {
  color: var(--green-dark);
}

.hero-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 92%;
  line-height: 1.65;
}

.hero-sub--support {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-top: -16px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(74, 122, 90, 0.26);
  color: var(--green-dark);
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-primary);
  flex-shrink: 0;
}

/* Hero headline accent — Fraunces italic */
.hero-text h1 .accent {
  color: var(--green-dark);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.08em;
}

/* Hero trust row */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 31, 28, 0.1);
}

.hero-trust-item {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(74, 122, 90, 0.14);
  border-radius: 999px;
  padding: 5px 10px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
}

.hero-trust-item svg {
  width: 13px;
  height: 13px;
  color: var(--green-primary);
  flex-shrink: 0;
}

/* Hero image wrap + floating card */
.hero-image-wrap {
  position: relative;
}

/* Single image (fallback) */
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(20, 34, 25, 0.22);
}

.hero-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Two-image stacked layout */
.hero-image--machine {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.hero-image--machine img {
  height: 100%;
  object-position: center;
}

.hero-image--brand {
  position: absolute;
  bottom: -28px;
  right: -24px;
  z-index: 3;
  width: 52%;
  aspect-ratio: 4 / 3;
  border: 3px solid var(--white);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  animation: heroFloat 6.5s ease-in-out infinite;
}

.hero-float-card {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: var(--white);
  border-radius: 14px;
  padding: 13px 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-float-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(74, 122, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  flex-shrink: 0;
}

.hero-float-icon svg {
  width: 17px;
  height: 17px;
}

.hero-float-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero-float-value {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  text-decoration: none;
}

.hero-float-value:hover {
  color: var(--green-dark);
}

/* ── Equipment Showcase ── */
.showcase {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(219, 231, 222, 0.5) 100%);
  position: relative;
  overflow: hidden;
}

.showcase::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.showcase-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.showcase-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.showcase-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.showcase-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(42, 90, 58, 0.15);
  aspect-ratio: 16 / 10;
  max-height: 600px;
}

.showcase-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: var(--dark);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.showcase-image-wrap:hover .showcase-image img {
  transform: scale(1.02);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-image-wrap:hover .showcase-overlay {
  opacity: 1;
}

.showcase-badge {
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-dark);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ── Benefits strip (dark green) ── */
.benefits {
  padding: 72px 0;
  background: linear-gradient(135deg, #1f3f2c 0%, #2d5a3d 55%, #295236 100%);
}

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

.benefit-card {
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
  stroke: var(--white);
}

.benefit-card h3 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
}

.benefit-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

/* ── About ── */
.about {
  padding: 96px 0;
  background: linear-gradient(180deg, #f7f4ee 0%, #f4f6f1 100%);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--green-dark);
  aspect-ratio: 4/3;
  border: 1px solid rgba(74, 122, 90, 0.18);
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-text .section-eyebrow {
  margin-bottom: 10px;
}

.about-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 14px;
  font-size: 0.97rem;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 24px 0;
  border-top: 1px solid #e8e4df;
  border-bottom: 1px solid #e8e4df;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 12px;
}

.about-stat {
  text-align: center;
  padding: 0 8px;
}

.about-stat + .about-stat {
  border-left: 1px solid #e8e4df;
}

.about-stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.1;
}

.about-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
}

/* ── Accreditations ── */
.accreditations {
  padding: 64px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
  border-top: 1px solid #e8e4df;
  border-bottom: 1px solid #e8e4df;
}

.accred-intro {
  text-align: center;
  margin-bottom: 36px;
}

.accred-intro p {
  color: var(--text-light);
  font-size: 0.93rem;
  max-width: 540px;
  margin: 8px auto 0;
}

.accred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  padding-top: 28px;
}

.accred-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1.5px solid #e8e4df;
  background: rgba(255, 255, 255, 0.82);
  transition: all var(--transition);
  box-shadow: 0 2px 6px rgba(18, 28, 21, 0.04);
}

.accred-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.accred-card--highlight {
  border-color: rgba(74, 122, 90, 0.28);
  background: rgba(74, 122, 90, 0.05);
}

.accred-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accred-card--highlight .accred-card-icon {
  background: rgba(74, 122, 90, 0.14);
  color: var(--green-dark);
}

.accred-card:not(.accred-card--highlight) .accred-card-icon {
  background: #edeae6;
  color: var(--text-light);
}

.accred-card-icon svg {
  width: 16px;
  height: 16px;
}

.accred-card-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

a.accred-card--link {
  text-decoration: none;
  color: inherit;
}

a.accred-card--link:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.accred-card strong {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.accred-card span {
  display: block;
  font-size: 0.73rem;
  color: var(--text-light);
  margin-top: 2px;
}

.accred-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--green-primary);
  color: var(--green-primary);
  background: transparent;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.accred-toggle:hover {
  background: var(--green-primary);
  color: var(--white);
}

.accred-toggle svg {
  width: 15px;
  height: 15px;
  transition: transform 300ms ease;
  flex-shrink: 0;
}

.accred-toggle.is-open svg {
  transform: rotate(180deg);
}

.accred-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms ease;
}

.accred-body.is-open {
  overflow: visible;
}

/* ── Why Choose Us ── */
.why-choose-us {
  padding: 96px 0;
  background: linear-gradient(180deg, #fcfcfb 0%, #f4f7f3 100%);
}

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

.why-card {
  position: relative;
  overflow: hidden;
  border: 1.5px solid #e8e4df;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 10px rgba(18, 28, 21, 0.04);
}

.why-card-num {
  position: absolute;
  top: -12px;
  right: 10px;
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(74, 122, 90, 0.07);
  pointer-events: none;
  user-select: none;
}

.why-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(74, 122, 90, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green-primary);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ── CTA compliance strip ── */
.cta-strip {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1d4028 100%);
  padding: 64px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  right: -180px;
  top: -190px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.16), rgba(212, 165, 116, 0));
  pointer-events: none;
}

.cta-strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-strip-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.cta-gear-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
}

.cta-gear-icon svg {
  width: 100%;
  height: 100%;
}

.cta-strip-left h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cta-strip-left p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 380px;
  line-height: 1.55;
}

.cta-strip-right {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-shrink: 0;
}

.cta-contact-list {
  display: grid;
  gap: 6px;
}

.cta-contact-list li a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.cta-contact-list li a:hover {
  color: var(--white);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
}

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

/* ── Services ── */
.services {
  padding: 96px 0;
  background: linear-gradient(180deg, #f7f2ea 0%, #eef3ec 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid #e8e4df;
  padding: 32px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #2a5a3a 0%, #4a7a5a 55%, #b96942 100%);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(27, 45, 32, 0.16);
  border-color: var(--green-primary);
}

.services-grid .service-card:nth-child(2n) {
  margin-top: 10px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(74, 122, 90, 0.12);
  color: var(--green-primary);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.service-features {
  display: grid;
  gap: 8px;
}

.service-features li {
  position: relative;
  padding-left: 20px;
  color: #5a6560;
  font-size: 0.88rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-primary);
  font-weight: 700;
}

/* ── Coverage ── */
.coverage-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9faf7 100%);
}

.map-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  border-radius: 999px;
  border: 1.5px solid #d5cfc8;
  background: var(--white);
  color: var(--text-dark);
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}

.filter-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e8e4df;
  box-shadow: var(--shadow);
  position: relative;
}

.map-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

#coverage-map {
  width: 100%;
  height: 540px;
  background: #eae7e3;
}

.map-legend {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 500;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d5cfc8;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
}

.map-legend h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.map-legend ul {
  display: grid;
  gap: 6px;
}

.map-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.map-note {
  margin-top: 16px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.92rem;
}

.map-note a {
  color: var(--green-primary);
  font-weight: 600;
}

/* ── Contact ── */
.contact {
  padding: 96px 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(212, 165, 116, 0.12), transparent 35%),
    linear-gradient(135deg, #17241c 0%, #223229 50%, #1a291f 100%);
  color: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 54px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--amber);
}

.contact-item h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
}

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

.contact-form {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(7px);
}

.contact-form button.btn-primary {
  border: 0;
}

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

.form-group {
  display: grid;
  gap: 6px;
}

.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.form-group input,
.form-group textarea {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 11px 13px;
  font-size: 0.94rem;
  font-family: inherit;
  transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--amber);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-group--terms {
  margin-top: 4px;
}

.form-group--terms .checkbox-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.form-group--terms a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note {
  text-align: center;
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Footer ── */
.site-footer {
  background: linear-gradient(180deg, #101812 0%, #0c120d 100%);
  padding: 56px 0 0;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand .logo {
  pointer-events: none;
}

.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 260px;
  line-height: 1.6;
}

.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35) !important;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: background var(--transition), color var(--transition);
}

.social-icon:hover {
  background: var(--green-primary);
  color: var(--white);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 14px;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-services a,
.footer-services li,
.footer-contact a,
.footer-contact li {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
  transition: color var(--transition);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.2);
}

.footer-cookie {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 0;
}

.footer-cookie p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
}

/* ── Legal pages ── */
.legal-page {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
  background: var(--cream);
}

.legal-inner {
  max-width: 760px;
}

.legal-inner h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 6px;
}

.legal-updated {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 36px;
}

.legal-inner h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-top: 36px;
  margin-bottom: 10px;
}

.legal-inner p,
.legal-inner li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-inner ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.legal-inner a {
  color: var(--green-primary);
  text-decoration: underline;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.55);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-header h2 {
    font-size: 36px;
  }

  .showcase-image-wrap {
    max-height: 500px;
  }
}

@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 0;
  }

  .hero-image {
    max-height: 380px;
  }

  .hero-image--brand {
    animation: none;
  }

  .services-grid .service-card:nth-child(2n) {
    margin-top: 0;
  }

  .hero-float-card {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .cta-strip-right {
    width: 100%;
    justify-content: space-between;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 23, 18, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .nav-links a {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 14px 32px;
    width: 100%;
    text-align: center;
    letter-spacing: 0.01em;
    border-radius: 12px;
    transition: background var(--transition), color var(--transition);
  }

  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .nav-links .btn-phone {
    margin-top: 16px;
    background: var(--green-primary) !important;
    color: var(--white) !important;
    border-radius: 999px !important;
    padding: 14px 36px !important;
    font-size: 1.1rem !important;
  }

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

  .nav-toggle {
    display: flex;
    z-index: 1000;
    cursor: pointer;
  }

  .site-header.nav-open {
    background: rgba(15, 23, 18, 0.97);
    backdrop-filter: none;
    box-shadow: none;
  }

  .hero-text h1 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-image {
    max-height: 300px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-strip-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cta-strip-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .services,
  .coverage-section,
  .about,
  .contact,
  .why-choose-us,
  .showcase {
    padding: 72px 0;
  }

  .showcase-container {
    padding: 0 18px;
  }

  .showcase-header h2 {
    font-size: 28px;
  }

  .showcase-header p {
    font-size: 16px;
  }

  .showcase-image-wrap {
    max-height: 400px;
  }

  #coverage-map {
    height: 420px;
  }

  .form-row,
  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-item {
    padding: 12px;
  }

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

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

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 404 page ── */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  color: var(--white);
  padding: 80px 0;
}

.error-page-inner {
  text-align: center;
}

.error-code {
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 800;
  line-height: 1;
  color: var(--green-primary);
  opacity: 0.6;
  margin-bottom: 16px;
}

.error-page h1 {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  margin-bottom: 12px;
}

.error-page p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  .section-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .site-header {
    position: relative !important;
    box-shadow: none !important;
  }
}

/* ── Service icon per-service colour overrides ── */
.service-icon--maintenance { background: rgba(59,130,246,.12);  color: #3b82f6; }
.service-icon--pssr        { background: rgba(34,197,94,.12);   color: #22c55e; }
.service-icon--repairs     { background: rgba(249,115,22,.12);  color: #f97316; }
.service-icon--sales       { background: rgba(205,138,16,.12);  color: #cd8a10; }

/* ── Filter dot colours ── */
.filter-dot--all         { background: var(--green-primary); }
.filter-dot--maintenance { background: #3b82f6; }
.filter-dot--pssr        { background: #22c55e; }
.filter-dot--repairs     { background: #f97316; }
.filter-dot--sales       { background: #cd8a10; }

/* ── Map legend dot ── */
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* ── Map popup ── */
.leaflet-popup-content-wrapper {
  border-radius: 10px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.15) !important;
  padding: 0 !important;
  overflow: hidden;
}
.leaflet-popup-content { margin: 0 !important; }
.map-popup { padding: 14px 18px; min-width: 170px; }
.map-popup h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.map-popup-services { display: flex; flex-direction: column; gap: 5px; }
.service-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600;
  padding: 3px 10px; border-radius: 100px;
}
.service-badge--maintenance { background: rgba(59,130,246,.12);  color: #1d4ed8; }
.service-badge--pssr        { background: rgba(34,197,94,.12);   color: #15803d; }
.service-badge--repairs     { background: rgba(249,115,22,.12);  color: #c2410c; }
.service-badge--sales       { background: rgba(205,138,16,.12);  color: #92590a; }

/* ── Section eyebrow on dark backgrounds ── */
.section-header--light .section-eyebrow { color: var(--amber); }
