/* ================================================================
   STONE ACQUISITIONS — Design System
   Palette: Forest Green + Ivory + Brass
   Type:    Cormorant Garamond (display) + Inter (body)
   Grid:    8px base, modular 1.25 type scale
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ----------------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* — Raw color palette — */
  --c-green-900: #0F2318;
  --c-green-800: #1D3D2F;
  --c-green-700: #2A5540;
  --c-green-600: #3A7055;
  --c-green-400: #6A9E87;
  --c-green-200: #B8D4C8;
  --c-green-100: #E6F0EB;

  --c-ivory-900: #2E2C28;
  --c-ivory-700: #6B6760;
  --c-ivory-500: #9C9890;
  --c-ivory-300: #C8C2B6;
  --c-ivory-200: #E0D9CC;
  --c-ivory-100: #EDE9E0;
  --c-ivory-50:  #F7F4EE;

  --c-brass-700: #8A6A1E;
  --c-brass-500: #C4993E;
  --c-brass-400: #D4AF5A;
  --c-brass-200: #EDD98E;
  --c-brass-100: #F7F0D4;

  --c-white: #FFFDF9;

  /* — Semantic aliases — */
  --color-bg:           var(--c-ivory-50);
  --color-bg-alt:       var(--c-ivory-100);
  --color-surface:      var(--c-white);
  --color-text:         #1A1816;
  --color-text-muted:   var(--c-ivory-700);
  --color-text-light:   var(--c-ivory-500);
  --color-primary:      var(--c-green-800);
  --color-primary-dark: var(--c-green-900);
  --color-primary-mid:  var(--c-green-700);
  --color-accent:       var(--c-brass-500);
  --color-accent-light: var(--c-brass-400);
  --color-border:       var(--c-ivory-200);
  --color-border-dark:  var(--c-ivory-300);

  /* — Typography — */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* — Type scale (1.25 ratio) — */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.375rem;
  --text-xl:   1.75rem;
  --text-2xl:  2.25rem;
  --text-3xl:  2.75rem;
  --text-4xl:  3.5rem;
  --text-5xl:  4.5rem;
  --text-6xl:  5.5rem;
  --text-7xl:  7rem;

  /* — Spacing (8px grid) — */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-28: 7rem;
  --sp-32: 8rem;

  /* — Layout — */
  --container:      1240px;
  --gutter:         clamp(1.5rem, 5vw, 3.5rem);
  --section-gap:    clamp(4rem, 10vw, 8rem);

  /* — Transitions — */
  --ease-out:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:    cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:       160ms;
  --dur-base:       260ms;
  --dur-slow:       420ms;
  --dur-slower:     640ms;

  /* — Shadows — */
  --shadow-sm: 0 1px 4px rgba(15, 35, 24, 0.06), 0 1px 2px rgba(15, 35, 24, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 35, 24, 0.08), 0 2px 6px rgba(15, 35, 24, 0.05);
  --shadow-lg: 0 8px 32px rgba(15, 35, 24, 0.12), 0 3px 10px rgba(15, 35, 24, 0.07);
  --shadow-xl: 0 16px 56px rgba(15, 35, 24, 0.16), 0 6px 18px rgba(15, 35, 24, 0.09);

  /* — Nav — */
  --nav-h: 76px;
}

/* ----------------------------------------------------------------
   2. RESET & 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: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
input, textarea, select { font: inherit; }

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

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

.section--dark {
  background: var(--color-primary);
  color: var(--c-ivory-100);
}

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

/* ----------------------------------------------------------------
   4. TYPOGRAPHY COMPONENTS
   ---------------------------------------------------------------- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-4);
}

.section-label--light {
  color: var(--c-brass-400);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-primary);
}

.section-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-green-600);
}

.section-heading--light {
  color: var(--c-ivory-50);
}

.section-heading--light em {
  color: var(--c-brass-400);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--sp-16);
}

.body-copy {
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 56ch;
}

.body-copy--light {
  color: var(--c-green-200);
}

/* ----------------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--c-white);
  border: 1.5px solid var(--color-accent);
}
.btn-primary:hover {
  background: var(--c-brass-700);
  border-color: var(--c-brass-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--c-white);
}

.btn-outline {
  background: transparent;
  color: var(--c-ivory-100);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  border: none;
  padding-inline: 0;
  letter-spacing: 0.05em;
}
.btn-ghost .arrow {
  display: inline-block;
  transition: transform var(--dur-base) var(--ease-out);
}
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ----------------------------------------------------------------
   6. IMAGE PLACEHOLDERS
   ---------------------------------------------------------------- */
.img-placeholder {
  background: linear-gradient(145deg, var(--c-green-900) 0%, var(--c-green-700) 100%);
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 28px,
    rgba(255,255,255,0.03) 28px,
    rgba(255,255,255,0.03) 29px
  );
}

.img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-5);
  color: rgba(255,255,255,0.2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   7. NAVIGATION
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--dur-slow) var(--ease-out),
              box-shadow var(--dur-slow) var(--ease-out);
}

.site-header.scrolled {
  background: var(--color-primary);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), var(--shadow-lg);
}

.nav-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  /* The logo is gold/white — renders well on the dark green nav */
}

/* Fallback text (shown only if image fails to load) */
.nav-logo-main {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--c-white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-brass-400);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-links a {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--dur-base) var(--ease-out);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--dur-base) var(--ease-out);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--color-accent) !important;
  color: var(--c-white) !important;
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-xs) !important;
  letter-spacing: 0.12em !important;
  transition: background var(--dur-base) var(--ease-out) !important;
}

.nav-cta:hover {
  background: var(--c-brass-700) !important;
}

.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-white);
  transition: all var(--dur-base) var(--ease-out);
}

/* ----------------------------------------------------------------
   8. HERO (HOME PAGE)
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(10, 25, 18, 0.88) 0%,
      rgba(18, 45, 32, 0.78) 50%,
      rgba(29, 61, 47, 0.65) 100%),
    url('img-hero.jpg') center 35% / cover no-repeat;
  z-index: 0;
}

/* Subtle vignette on edges */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 40%, rgba(10, 25, 18, 0.45) 100%);
}

/* Large decorative number in background */
.hero-bg::after {
  content: '25';
  position: absolute;
  right: -2%;
  bottom: -8%;
  font-family: var(--font-display);
  font-size: clamp(18rem, 35vw, 42rem);
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: var(--nav-h);
}

.hero-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-brass-400);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--c-brass-400);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 8vw, var(--text-7xl));
  font-weight: 300;
  line-height: 1.05;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-8);
  max-width: 14ch;
}

.hero-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-brass-400);
}

.hero-sub {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--c-green-200);
  line-height: 1.65;
  margin-bottom: var(--sp-10);
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: var(--sp-10);
  left: var(--gutter);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  color: rgba(255,255,255,0.35);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35));
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ----------------------------------------------------------------
   9. ABOUT / STATS SECTION
   ---------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-24);
  align-items: center;
}

.about-rule {
  width: 48px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: var(--sp-6);
}

.about-grid .section-heading {
  margin-bottom: var(--sp-6);
}

.about-grid .body-copy {
  margin-bottom: var(--sp-8);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-1);
}

.stat-card {
  padding: var(--sp-8) var(--sp-6);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.stat-card:first-child {
  grid-column: 1 / -1;
  background: var(--color-primary);
  border-color: transparent;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 7vw, var(--text-6xl));
  font-weight: 300;
  color: var(--c-white);
  line-height: 1;
}

.stat-number--dark {
  color: var(--color-primary);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--c-brass-400);
  vertical-align: super;
  margin-left: 2px;
}

.stat-suffix--dark {
  color: var(--color-accent);
}

.stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-green-200);
}

.stat-label--dark {
  color: var(--color-text-muted);
}

.stat-icon {
  font-size: var(--text-xl);
  color: var(--color-accent);
  margin-bottom: var(--sp-2);
}

.stat-icon--dark {
  color: var(--color-primary);
}

/* ----------------------------------------------------------------
   10. SERVICES SECTION
   ---------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.service-card {
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease-out),
              box-shadow var(--dur-slow) var(--ease-out);
  position: relative;
}

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

.service-card-image {
  height: 280px;
  /* fallback colour if image is slow to load */
  background-color: var(--c-green-800);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-slower) var(--ease-out);
}

.service-card:hover .service-card-image {
  transform: scale(1.04);
}

/* Dark gradient overlay — lightens slightly on hover to reveal the image more */
.service-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 25, 18, 0.22) 0%,
    rgba(10, 25, 18, 0.48) 100%
  );
  transition: opacity var(--dur-slow) var(--ease-out);
  z-index: 1;
}

.service-card:hover .service-card-image::before {
  opacity: 0.7;
}

.service-card-image-label {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-5);
  color: rgba(255,255,255,0.0);  /* hidden — images are real now */
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}

.service-card-body {
  padding: var(--sp-8) var(--sp-8) var(--sp-8);
}

.service-card-num {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-3);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: var(--sp-3);
}

.service-card-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: gap var(--dur-base) var(--ease-out);
}

.service-card:hover .service-card-link {
  gap: var(--sp-4);
}

/* Brass bottom border reveal on hover */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--dur-slow) var(--ease-out);
}

.service-card:hover::after {
  width: 100%;
}

/* ----------------------------------------------------------------
   11. TEAM PREVIEW
   ---------------------------------------------------------------- */
.team-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

.team-preview-copy .section-heading {
  margin-block: var(--sp-5) var(--sp-6);
}

.team-preview-copy .btn-outline {
  margin-top: var(--sp-8);
}

.team-faces {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.team-face-photo {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--c-green-700) 0%, var(--c-green-900) 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--sp-4);
}

.team-face-photo.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 28px,
    rgba(255,255,255,0.03) 28px,
    rgba(255,255,255,0.03) 29px
  );
}

.team-face:nth-child(2) .team-face-photo {
  background: linear-gradient(160deg, var(--c-green-600) 0%, var(--c-green-800) 100%);
}

.team-face:nth-child(2) {
  padding-top: var(--sp-12);
}

.team-face-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--c-ivory-100);
  letter-spacing: 0.02em;
}

.team-face-role {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-brass-400);
  margin-top: var(--sp-1);
}

/* ----------------------------------------------------------------
   12. CONTACT CTA
   ---------------------------------------------------------------- */
.contact-cta {
  text-align: center;
}

.contact-cta-inner {
  max-width: 600px;
  margin-inline: auto;
}

.contact-cta .section-heading {
  margin-block: var(--sp-4) var(--sp-6);
}

.contact-cta .body-copy {
  margin-inline: auto;
  margin-bottom: var(--sp-8);
}

/* ----------------------------------------------------------------
   13. PAGE HERO (INTERIOR PAGES)
   ---------------------------------------------------------------- */
.page-hero {
  background: var(--color-primary);
  padding-top: calc(var(--nav-h) + var(--sp-24));
  padding-bottom: var(--sp-24);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -60deg,
    transparent 0px,
    transparent 60px,
    rgba(255,255,255,0.015) 60px,
    rgba(255,255,255,0.015) 61px
  );
  pointer-events: none;
}

.page-hero-rule {
  width: 40px;
  height: 1px;
  background: var(--c-brass-400);
  margin-bottom: var(--sp-5);
}

.page-hero-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-brass-400);
  margin-bottom: var(--sp-4);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 7vw, var(--text-6xl));
  font-weight: 300;
  color: var(--c-white);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-6);
  max-width: 18ch;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--c-brass-400);
}

.page-hero-desc {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--c-green-200);
  line-height: 1.65;
  max-width: 52ch;
}

/* ----------------------------------------------------------------
   14. SERVICE PAGE CONTENT
   ---------------------------------------------------------------- */
.service-intro {
  padding-block: var(--section-gap);
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: var(--sp-24);
  align-items: start;
}

.service-intro-image {
  height: 480px;
  /* fallback colour */
  background-color: var(--c-green-800);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* Subtle colour cast to tie the image into the green palette */
.service-intro-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 25, 18, 0.08) 0%,
    rgba(10, 25, 18, 0.28) 100%
  );
  pointer-events: none;
}

.service-intro-copy .section-label {
  display: block;
  margin-bottom: var(--sp-3);
}

.service-intro-copy .section-heading {
  margin-bottom: var(--sp-6);
}

.service-intro-copy .body-copy {
  margin-bottom: var(--sp-6);
  max-width: 60ch;
}

/* ----------------------------------------------------------------
   15. NUMBERED FEATURE LIST
   ---------------------------------------------------------------- */
.feature-list {
  counter-reset: features;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-6);
  align-items: start;
  padding-block: var(--sp-8);
  border-bottom: 1px solid var(--color-border);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  min-width: 2.5rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}

.feature-body {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ----------------------------------------------------------------
   16. PULL QUOTE
   ---------------------------------------------------------------- */
.pull-quote {
  padding: var(--sp-16) var(--sp-12);
  background: var(--color-primary);
  position: relative;
  margin-block: var(--sp-16);
}

.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-8);
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}

.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  font-weight: 300;
  font-style: italic;
  color: var(--c-ivory-100);
  line-height: 1.4;
  max-width: 36ch;
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------
   17. SERVICE-TO-SERVICE NAVIGATION (bottom of service pages)
   ---------------------------------------------------------------- */
.service-nav {
  border-top: 1px solid var(--color-border);
  padding-block: var(--sp-12);
}

.service-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-4);
}

.service-nav-card {
  display: block;
  padding: var(--sp-8);
  border: 1px solid var(--color-border);
  transition: border-color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
  text-decoration: none;
}

.service-nav-card:hover {
  border-color: var(--color-accent);
  background: var(--c-brass-100);
  transform: translateY(-2px);
}

.service-nav-card-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-2);
}

.service-nav-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: var(--sp-3);
}

.service-nav-card-hint {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* ----------------------------------------------------------------
   18. TEAM PAGE
   ---------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.team-member-photo {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--c-green-700) 0%, var(--c-green-900) 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--sp-8);
}

.team-member-photo.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 28px,
    rgba(255,255,255,0.03) 28px,
    rgba(255,255,255,0.03) 29px
  );
}

.team-member-name {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  margin-bottom: var(--sp-1);
}

.team-member-role {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--color-border);
}

.team-member-bio {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.team-member-bio p + p {
  margin-top: var(--sp-4);
}

/* ----------------------------------------------------------------
   19. CONTACT PAGE
   ---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: var(--sp-24);
  align-items: start;
}

.contact-copy .section-heading {
  margin-block: var(--sp-4) var(--sp-6);
}

.contact-copy .body-copy {
  margin-bottom: var(--sp-10);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.contact-detail-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.contact-detail-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: var(--text-sm);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--sp-1);
}

.contact-detail-value {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-white);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: var(--text-base);
  font-weight: 300;
  outline: none;
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--c-brass-100);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--c-ivory-300);
}

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

.form-submit {
  align-self: flex-start;
}

/* ----------------------------------------------------------------
   20. FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--color-primary-dark);
  color: var(--c-green-200);
  padding-block: var(--sp-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-16);
  margin-bottom: var(--sp-16);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--c-white);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-1);
}

.footer-brand-tag {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-brass-400);
  margin-bottom: var(--sp-5);
}

.footer-brand-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--c-green-400);
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: var(--sp-8);
}

.footer-social {
  display: flex;
  gap: var(--sp-4);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-green-200);
  font-size: var(--text-sm);
  transition: all var(--dur-base) var(--ease-out);
  text-decoration: none;
}

.footer-social-link:hover {
  border-color: var(--c-brass-400);
  color: var(--c-brass-400);
}

.footer-col-heading {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: var(--sp-6);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-nav a {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--c-green-400);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}

.footer-nav a:hover {
  color: var(--c-brass-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--c-ivory-700);
  font-weight: 300;
}

.footer-edit-hint {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.1);
  cursor: pointer;
  font-weight: 300;
  transition: color var(--dur-base);
  user-select: none;
}

.footer-edit-hint:hover {
  color: var(--c-brass-400);
}

/* ----------------------------------------------------------------
   21. SCROLL REVEAL ANIMATIONS
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity var(--dur-slower) var(--ease-out),
    transform var(--dur-slower) var(--ease-out);
}

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

.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }
.reveal[data-delay="5"] { transition-delay: 400ms; }

/* ----------------------------------------------------------------
   22. INLINE EDITOR
   ---------------------------------------------------------------- */
#sa-editor-bar {
  position: fixed;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  background: var(--c-green-900);
  border: 1px solid var(--c-brass-500);
  box-shadow: var(--shadow-xl);
  transition: transform var(--dur-slow) var(--ease-out);
  white-space: nowrap;
}

#sa-editor-bar.active {
  transform: translateX(-50%) translateY(0);
}

.editor-bar-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-brass-400);
  margin-right: var(--sp-2);
}

.editor-bar-btn {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--c-ivory-100);
  background: transparent;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  font-family: var(--font-body);
}

.editor-bar-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}

.editor-bar-btn--save {
  background: var(--c-brass-500);
  border-color: var(--c-brass-500);
  color: var(--c-white);
}

.editor-bar-btn--save:hover {
  background: var(--c-brass-700);
  border-color: var(--c-brass-700);
}

.editor-toast {
  position: fixed;
  bottom: var(--sp-20);
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: var(--c-green-700);
  color: var(--c-white);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--sp-3) var(--sp-6);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}

.editor-toast.show {
  opacity: 1;
}

body.editor-active [data-editable] {
  outline: 1px dashed var(--c-brass-400);
  outline-offset: 4px;
  cursor: text;
  transition: outline-color var(--dur-base);
}

body.editor-active [data-editable]:hover {
  outline-color: var(--c-brass-500);
  background: rgba(196, 153, 62, 0.04);
}

body.editor-active [data-editable]:focus {
  outline: 2px solid var(--c-brass-500);
  outline-offset: 4px;
}

/* ----------------------------------------------------------------
   23. MOBILE NAVIGATION
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-8);
    background: var(--c-green-900);
    transform: translateX(100%);
    transition: transform var(--dur-slow) var(--ease-out);
    z-index: 99;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: var(--text-base);
    letter-spacing: 0.18em;
    color: var(--c-ivory-100);
  }

  .nav-cta {
    display: none !important;
  }

  .nav-links li:last-child a {
    background: var(--color-accent);
    padding: var(--sp-3) var(--sp-8);
    color: var(--c-white) !important;
  }

  .nav-toggle {
    display: flex;
    z-index: 100;
  }

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

/* ----------------------------------------------------------------
   24. RESPONSIVE LAYOUT
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-inline: auto;
  }

  .about-grid,
  .team-preview-grid,
  .service-intro-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }

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

  .about-stats .stat-card:first-child {
    grid-column: auto;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

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

  .service-card:nth-child(3) {
    max-width: 100%;
    grid-column: auto;
  }

  .hero-heading {
    font-size: clamp(var(--text-3xl), 12vw, var(--text-5xl));
  }

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

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

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

  .team-preview-grid {
    gap: var(--sp-10);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

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

  .pull-quote {
    padding: var(--sp-10) var(--sp-8);
  }
}

@media (max-width: 480px) {
  .hero-content .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-faces {
    grid-template-columns: 1fr;
  }

  .team-face:nth-child(2) {
    padding-top: 0;
  }

  .service-intro-image {
    height: 300px;
  }

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

  .about-stats .stat-card:first-child {
    grid-column: auto;
  }
}
