/* ============================================================
   Tree Surgeons Sheffield - Arbor Rugged Design System
   ============================================================ */

/* ===========================
   CUSTOM PROPERTIES
   =========================== */
:root {
  /* Brand colours */
  --green-deep:    #012d1d;
  --green:         #1B4332;
  --green-mid:     #2D6A4F;
  --green-light:   #c1ecd4;
  --green-tint:    #e8f5ee;
  --orange:        #D9480F;
  --orange-dark:   #B33B0A;
  --orange-light:  #ffdbd0;
  --cream:         #FDFCF0;
  --surface:       #f5f6f1;
  --white:         #ffffff;
  --slate:         #334155;
  --slate-light:   #64748b;
  --slate-mid:     #94a3b8;
  --border:        rgba(51,65,85,.12);
  --text:          #0d1c2f;

  /* Typography */
  --font-head:  'Montserrat', system-ui, sans-serif;
  --font-body:  'Source Serif 4', Georgia, serif;

  /* Shadows - heavy-set, tactile */
  --shadow-sm:    0 1px 3px rgba(51,65,85,.1), 0 1px 2px rgba(51,65,85,.06);
  --shadow-md:    0 4px 12px rgba(51,65,85,.12), 0 2px 4px rgba(51,65,85,.08);
  --shadow-lg:    0 10px 30px rgba(51,65,85,.15), 0 4px 8px rgba(51,65,85,.1);
  --shadow-card:  0 1px 3px rgba(51,65,85,.1);

  /* Radius */
  --radius:    0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --max-width:  1200px;
  --transition: .2s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.7;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover { color: var(--orange); }

ul, ol { list-style: none; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; letter-spacing: 0; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; font-family: var(--font-head); }

/* ===========================
   LAYOUT UTILITIES
   =========================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section         { padding: 5rem 0; }
.section--sm     { padding: 3rem 0; }
.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }
.section--surface { background: var(--surface); }

.section--green {
  background: var(--green);
  color: var(--white);
}
.section--green h2,
.section--green h3,
.section--green h4 { color: var(--white); }

.section--forest {
  background: var(--green-mid);
  color: rgba(255,255,255,.9);
}
.section--forest h2,
.section--forest h3,
.section--forest h4 { color: var(--white); }
.section--forest .section-header p { color: rgba(255,255,255,.75); }
.section--forest .section-label { color: var(--green-light); }
.section--forest p { color: rgba(255,255,255,.88); }
.section--forest li { color: rgba(255,255,255,.88); }
.section--forest strong { color: var(--white); }
.section--forest a { color: var(--green-light); }
.section--forest a:hover { color: var(--white); }

.section--deep {
  background: var(--green-deep);
  color: var(--white);
}
.section--deep h2,
.section--deep h3 { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--slate-light);
  max-width: 600px;
  margin: .75rem auto 0;
}
.section--green .section-header p,
.section--deep .section-header p {
  color: rgba(255,255,255,.7);
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.section--green .section-label { color: var(--green-light); }

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

.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 0 var(--orange-dark);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--orange-dark);
}

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

.btn-white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
  box-shadow: 0 4px 0 rgba(0,0,0,.15);
}
.btn-white:hover {
  background: var(--cream);
  color: var(--green);
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0,0,0,.15);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-lg {
  padding: .95rem 2.25rem;
  font-size: .85rem;
}

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

/* ===========================
   TRUST BADGES
   =========================== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-full);
  padding: .4rem 1rem;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
}

.trust-badges--dark .trust-badge {
  background: var(--green-tint);
  border-color: var(--green-light);
  color: var(--green);
}

.trust-badges--cream .trust-badge {
  background: var(--cream);
  border-color: var(--border);
  color: var(--slate);
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--green-deep);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

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

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid var(--orange);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0;
}

.logo-sheffield {
  color: var(--green-light);
}

/* Nav */
.site-nav {
  display: none;
  align-items: center;
  gap: .1rem;
}

.nav-link {
  padding: .45rem .8rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(255,255,255,.8);
  transition: all var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown .fa-chevron-down {
  font-size: .6rem;
  transition: transform var(--transition);
  opacity: .6;
}
.nav-dropdown:hover .fa-chevron-down {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + .75rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 100;
  border: 1px solid var(--border);
}

.dropdown-menu.dropdown--wide {
  min-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 .5rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: .5rem .75rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  background: var(--surface);
  color: var(--green);
}
.dropdown-menu .dropdown-heading {
  padding: .5rem .75rem .25rem;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  color: var(--slate-mid);
  text-transform: uppercase;
  letter-spacing: .08em;
  grid-column: 1 / -1;
}
.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: .35rem .5rem;
  grid-column: 1 / -1;
}

/* Header phone */
.header-phone {
  display: none;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: var(--white);
  padding: .55rem 1.1rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background var(--transition);
  flex-shrink: 0;
  box-shadow: 0 3px 0 var(--orange-dark);
}
.header-phone:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(1px);
  box-shadow: 0 2px 0 var(--orange-dark);
}

/* Mobile toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.menu-toggle:hover { background: rgba(255,255,255,.2); }
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: .5rem 1.25rem 2rem;
}
.mobile-nav.is-open { display: block; }

.mobile-nav > a {
  display: block;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}
.mobile-nav > a:hover { color: var(--green); }

/* Mobile accordion */
.mobile-accordion { border-bottom: 1px solid var(--border); }

.mobile-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--green);
  cursor: pointer;
  text-align: left;
  letter-spacing: .02em;
}
.mobile-accordion-toggle .accordion-chevron {
  color: var(--slate-mid);
  font-size: .75rem;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.mobile-accordion.is-open .mobile-accordion-toggle .accordion-chevron {
  transform: rotate(180deg);
}
.mobile-accordion-body { display: none; padding-bottom: .5rem; }
.mobile-accordion.is-open .mobile-accordion-body { display: block; }
.mobile-accordion-body a {
  display: block;
  padding: .6rem .75rem;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mobile-accordion-body a:hover { background: var(--surface); color: var(--green); }
.mobile-accordion-body .accordion-hub-link {
  font-weight: 700;
  color: var(--green);
  margin-bottom: .25rem;
}
.mobile-accordion-body .accordion-divider {
  height: 1px;
  background: var(--border);
  margin: .35rem 0;
}
.mobile-nav .mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1.5rem;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: none;
  box-shadow: 0 4px 0 var(--orange-dark);
}
.mobile-nav .mobile-phone:hover {
  background: var(--orange-dark);
  color: var(--white);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  background: var(--green-deep);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(1,45,29,.97) 0%,
    rgba(1,45,29,.94) 35%,
    rgba(1,45,29,.70) 55%,
    rgba(1,45,29,.25) 75%,
    rgba(1,45,29,.10) 100%
  );
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Hero quote card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--orange);
}

.hero-form-card h3 {
  font-size: 1.1rem;
  color: var(--green-deep);
  margin-bottom: 1rem;
}

.hero-form-card .form-group {
  margin-bottom: .75rem;
}

.hero-form-card .form-group input,
.hero-form-card .form-group textarea {
  padding: .6rem .85rem;
  font-size: .9rem;
}

.hero-form-card textarea {
  min-height: 72px;
}

/* ===========================
   TRUST BAR (below hero)
   =========================== */
.trust-bar {
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}

.trust-bar-item i {
  font-size: 1.4rem;
  color: var(--green-light);
}

.trust-bar-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.trust-bar-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

/* ===========================
   STATS STRIP
   =========================== */
.stats-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: .3rem;
  letter-spacing: -0.03em;
}
.stat-item span {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ===========================
   INTRO / ABOUT SPLIT
   =========================== */
.intro-section { background: var(--cream); padding: 5rem 0; }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.intro-text h2 { margin-bottom: 1.25rem; }
.intro-text p { color: var(--slate); }

.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ===========================
   SERVICE CARDS
   =========================== */

/* On light backgrounds */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card-img {
  height: 190px;
  overflow: hidden;
  background: var(--surface);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--green-tint);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: .9rem;
  color: var(--green);
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.service-card p {
  color: var(--slate-light);
  font-size: .95rem;
  flex: 1;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-card .card-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.service-card .card-link:hover { color: var(--orange-dark); }

/* Emergency featured card (dark) */
.service-card--featured {
  background: var(--green);
  border-color: var(--green-mid);
}
.service-card--featured h3,
.service-card--featured p { color: var(--white); }
.service-card--featured p { opacity: .8; }
.service-card--featured .service-card-icon {
  background: rgba(255,255,255,.15);
  color: var(--green-light);
}
.service-card--featured .card-link {
  color: var(--orange);
}
.service-card--featured .card-link:hover {
  color: var(--orange-light);
}
.service-card--featured .service-card-img {
  background: var(--green-mid);
}

/* Hub tile (services index) */
.service-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.service-tile:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-tile .tile-icon { font-size: 1.6rem; color: var(--green); }
.service-tile h3 { font-size: 1.05rem; }
.service-tile p { color: var(--slate-light); font-size: .9rem; flex: 1; }

/* ===========================
   WHY CHOOSE US / TRUST POINTS
   =========================== */
.trust-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.trust-point-icon {
  width: 54px;
  height: 54px;
  background: var(--green);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--white);
}

.trust-point-body h4 {
  font-size: .95rem;
  margin-bottom: .35rem;
  color: var(--white);
}
.trust-point-body p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

/* ===========================
   BEFORE / AFTER GALLERY
   =========================== */
.before-after-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.before-after-item { position: relative; }
.before-after-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.before-after-label {
  position: absolute;
  bottom: .6rem;
  left: .6rem;
  font-family: var(--font-head);
  background: rgba(0,0,0,.6);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.before-after-label--before { background: rgba(186,26,26,.8); }
.before-after-label--after  { background: rgba(27,67,50,.85); }

/* ===========================
   LOCATION CARDS
   =========================== */
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}
.location-card:hover {
  border-color: var(--green-mid);
  background: var(--green-tint);
  color: var(--green);
  transform: translateX(3px);
}
.location-card:hover .location-card-arrow { color: var(--orange); }

.location-card-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--green);
}
.location-card-text span {
  font-size: .8rem;
  color: var(--slate-light);
}
.location-card-arrow { color: var(--slate-mid); font-size: .9rem; flex-shrink: 0; }

/* Town cards */
.town-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.town-card:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-3px);
}
.town-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: .4rem; }
.town-card p  { color: rgba(255,255,255,.65); font-size: .875rem; margin: 0; }

/* Sheffield "home" card - no hover, orange accent */
.town-card--current {
  cursor: default;
  border-color: var(--orange);
  background: rgba(217,72,15,.12);
}
.town-card--current:hover {
  transform: none;
  background: rgba(217,72,15,.12);
  border-color: var(--orange);
}
.town-card--current h3 { color: var(--orange); }
.town-card--current::after {
  content: 'Based here';
  display: block;
  margin-top: .5rem;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: .8;
}

/* ===========================
   REVIEW CARDS
   =========================== */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

/* Green accent bar left */
.review-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 4px;
  background: var(--green);
  border-radius: 0 4px 4px 0;
}

.review-stars {
  display: flex;
  gap: .2rem;
  color: #D97706;
  font-size: 1rem;
}

.review-text {
  font-style: italic;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.7;
  flex: 1;
  padding-left: .5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-left: .5rem;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}
.review-author-name strong {
  display: block;
  font-family: var(--font-head);
  font-size: .9rem;
  color: var(--green);
}
.review-author-name span {
  font-size: .8rem;
  color: var(--slate-light);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: var(--green-deep);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(27,67,50,.5), transparent 65%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); position: relative; }
.cta-section p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 1rem auto 2.5rem;
  position: relative;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
}

/* ===========================
   PROCESS STEPS
   =========================== */
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-number {
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 3px 0 var(--orange-dark);
}
.step-content h4 { font-size: .95rem; margin-bottom: .3rem; }
.step-content p  { font-size: .9rem; color: var(--slate-light); }

/* ===========================
   FAQ
   =========================== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--green);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
  letter-spacing: -.01em;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--orange);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--slate);
  font-size: .95rem;
  line-height: 1.75;
}
.faq-item.is-open .faq-answer { display: block; }

/* FAQ on dark green background */
.section--green .faq-item { border-bottom-color: rgba(255,255,255,.15); }
.section--green .faq-question { color: var(--white); }
.section--green .faq-question:hover { color: var(--green-light); }
.section--green .faq-icon { color: var(--green-light); }
.section--green .faq-answer { color: rgba(255,255,255,.85); }
.section--green .faq-answer a { color: var(--green-light); }
.section--green .faq-answer a:hover { color: var(--white); }

/* FAQ on medium green (forest) background */
.section--forest .faq-item { border-bottom-color: rgba(255,255,255,.15); }
.section--forest .faq-question { color: var(--white); }
.section--forest .faq-question:hover { color: var(--green-light); }
.section--forest .faq-icon { color: var(--green-light); }
.section--forest .faq-answer { color: rgba(255,255,255,.85); }
.section--forest .faq-answer a { color: var(--green-light); }
.section--forest .faq-answer a:hover { color: var(--white); }

/* ===========================
   FORMS
   =========================== */
.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid rgba(51,65,85,.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27,67,50,.1);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-family: var(--font-head);
  font-size: .75rem;
  color: var(--slate-mid);
  margin-top: .75rem;
  text-align: center;
  letter-spacing: .02em;
}

/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
  background: var(--surface);
  padding: .75rem 0;
  font-family: var(--font-head);
  font-size: .8rem;
  color: var(--slate-mid);
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
}
.breadcrumb li + li::before { content: '›'; margin-right: .4rem; }
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { color: var(--orange); }

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background: var(--green);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(1,45,29,.5), transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1     { color: var(--white); margin-bottom: .75rem; }
.page-hero p      { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 1.5rem; }

/* ===========================
   PROSE
   =========================== */
.prose h2 { margin-top: 2rem; margin-bottom: .75rem; }
.prose h3 { margin-top: 1.5rem; margin-bottom: .5rem; }
.prose ul, .prose ol { margin-bottom: 1rem; padding-left: 1.5rem; list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .4rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* ===========================
   PRICE TABLE
   =========================== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table th {
  background: var(--green);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.price-table td {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  background: var(--white);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--surface); }
.price-table .price-col { font-family: var(--font-head); font-weight: 700; color: var(--green); white-space: nowrap; }

/* ===========================
   MAPS
   =========================== */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.map-wrapper iframe { display: block; }

/* ===========================
   RELATED LINKS
   =========================== */
.related-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.related-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .4rem .9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  color: var(--slate);
  transition: all var(--transition);
  letter-spacing: .03em;
}
.related-link:hover {
  background: var(--green-tint);
  border-color: var(--green-light);
  color: var(--green);
}

/* ===========================
   NOTICE / ALERT BOXES
   =========================== */
.notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid;
  font-size: .9rem;
}
.notice--info    { background: #e8f4f8; border-color: #2196F3; color: #0d47a1; }
.notice--warning { background: #fff8e1; border-color: var(--orange); color: #7d5a00; }
.notice--success { background: var(--green-tint); border-color: var(--green); color: var(--green); }

/* ===========================
   IMAGE PLACEHOLDER
   =========================== */
.img-placeholder {
  background: #e9ede8;
  padding: 60px 20px;
  text-align: center;
  color: var(--slate-mid);
  border-radius: var(--radius-lg);
  border: 2px dashed #c8cfc4;
  font-family: var(--font-head);
  font-size: .8rem;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: #111827;
  color: rgba(255,255,255,.65);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.footer-brand p { font-size: .875rem; line-height: 1.6; margin-bottom: 1.25rem; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .875rem;
}
.footer-contact a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-contact a:hover { color: var(--orange); }
.footer-contact i { width: 16px; color: var(--green-light); }

.footer-heading {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .03em;
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.65); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ===========================
   THANK YOU PAGE
   =========================== */
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--green-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  color: var(--green);
}
.steps-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }

/* ===========================
   MEDIA QUERIES
   =========================== */
@media (min-width: 576px) {
  .grid-4    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .hero-layout { grid-template-columns: 1fr 380px; }
  .hero { min-height: 600px; }

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

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

  .before-after-item img { height: 260px; }

  .trust-bar-grid { gap: 2rem; }
}

@media (min-width: 992px) {
  .site-nav    { display: flex; }
  .header-phone { display: flex; }
  .menu-toggle { display: none; }

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

  .hero { min-height: 640px; }

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

@media (min-width: 1200px) {
  .container { padding: 0 2rem; }
}

@media print {
  .site-header, .mobile-nav, .cta-section, .site-footer { display: none; }
}
