/* ==========================================================================
   5 Fold Junker Removal - site stylesheet
   Palette and type are taken from the company logo: forest green, orange
   accent, slate outline, cream ground.
   ========================================================================== */

:root {
  /* Brand */
  --forest:        #2e4a38;
  --forest-dark:   #223829;
  --forest-deep:   #16261c;
  --forest-tint:   #eaf0ea;
  --sage:          #5d7a63;

  --orange:        #e07b26;
  --orange-dark:   #c4661a;
  --orange-tint:   #fdf1e4;
  --sand:          #ebc49b;

  --slate:         #22333f;
  --slate-light:   #35505f;

  /* Neutrals */
  --ink:           #1b241f;
  --muted:         #5f6b63;
  --line:          #e2e4dd;
  --cream:         #f7f4ee;
  --paper:         #ffffff;

  /* Scale */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(27, 36, 31, .06), 0 2px 6px rgba(27, 36, 31, .05);
  --shadow-md: 0 2px 4px rgba(27, 36, 31, .05), 0 8px 24px rgba(27, 36, 31, .08);
  --shadow-lg: 0 4px 10px rgba(27, 36, 31, .06), 0 20px 45px rgba(27, 36, 31, .12);

  --ease: 200ms cubic-bezier(.2, .6, .3, 1);

  --nav-h: 76px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: "Archivo", "Poppins", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.18;
  color: var(--slate);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--forest); }
a:hover { color: var(--orange-dark); }

::selection { background: var(--forest); color: #fff; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1100;
  background: var(--slate);
  color: #fff;
  padding: .65rem 1.1rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.bg-cream  { background-color: var(--cream) !important; }
.bg-paper  { background-color: var(--paper) !important; }
.bg-forest { background-color: var(--forest) !important; }
.bg-slate  { background-color: var(--slate) !important; }

.text-ink     { color: var(--ink) !important; }
.text-slate   { color: var(--slate) !important; }
.text-forest  { color: var(--forest) !important; }
.text-orange  { color: var(--orange) !important; }
.text-sage    { color: var(--sage) !important; }
.text-soft    { color: var(--muted) !important; }
.text-on-dark { color: rgba(255, 255, 255, .78) !important; }

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
  opacity: 1;
}

/* Section headers ---------------------------------------------------------- */

.eyebrow {
  display: inline-block;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .65rem;
}
.eyebrow-light { color: var(--sand); }

.section-title {
  font-size: clamp(1.7rem, 1.15rem + 2.1vw, 2.6rem);
  font-weight: 800;
  margin-bottom: .85rem;
}

.section-intro {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 60ch;
}
.section-head-center .section-intro { margin-inline: auto; }

.title-rule {
  width: 56px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.section-head-center .title-rule { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn-brand,
.btn-brand-outline,
.btn-brand-ghost {
  --btn-py: .8rem;
  --btn-px: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: var(--btn-py) var(--btn-px);
  border-radius: var(--r-sm);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: .975rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--ease), border-color var(--ease),
              color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.btn-brand {
  background-color: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-brand-outline {
  background-color: transparent;
  border-color: var(--slate);
  color: var(--slate);
}
.btn-brand-outline:hover,
.btn-brand-outline:focus {
  background-color: var(--slate);
  color: #fff;
}
.btn-brand-outline.on-dark {
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}
.btn-brand-outline.on-dark:hover {
  background-color: #fff;
  border-color: #fff;
  color: var(--forest);
}

.btn-brand-ghost {
  background-color: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.btn-brand-ghost:hover,
.btn-brand-ghost:focus {
  background-color: var(--forest-dark);
  border-color: var(--forest-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-lg-brand { --btn-py: 1rem; --btn-px: 2rem; font-size: 1.05rem; }
.btn-block-sm { width: 100%; }
@media (min-width: 576px) { .btn-block-sm { width: auto; } }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.topbar {
  background-color: var(--forest);
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
}
.topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.topbar a:hover { color: var(--sand); }
.topbar .topbar-item { display: inline-flex; align-items: center; gap: .45rem; }

.site-nav {
  background-color: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  min-height: var(--nav-h);
  padding-block: .5rem;
  transition: box-shadow var(--ease);
}
.site-nav.is-stuck { box-shadow: var(--shadow-md); }

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.brand-lockup img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-name {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--forest);
}
.brand-sub {
  display: block;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 3px;
}

.site-nav .nav-link {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--slate);
  padding: .5rem .25rem;
  position: relative;
}
.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: .25rem;
  right: .25rem;
  bottom: .15rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: var(--forest); }
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after { transform: scaleX(1); }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--orange-dark); }

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: .45rem .6rem;
  color: var(--slate);
  background: #fff;
}
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    margin-top: .75rem;
    padding: .5rem 0 1rem;
    border-top: 1px solid var(--line);
  }
  .site-nav .nav-link { padding: .6rem 0; }
  .site-nav .nav-link::after { left: 0; right: auto; width: 22px; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background-color: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero::after {
  /* Quiet diagonal band instead of a blurred gradient blob. */
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 42%;
  background: linear-gradient(180deg, var(--forest-tint) 0%, rgba(234, 240, 234, 0) 100%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  opacity: .8;
  pointer-events: none;
}
@media (max-width: 991.98px) { .hero::after { display: none; } }

.hero-inner { position: relative; z-index: 1; }

.hero-title {
  font-size: clamp(1.95rem, 1.2rem + 3vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 1rem;
  max-width: 18ch;
}
.hero-page .hero-title { max-width: 22ch; }
.hero-title .accent {
  color: var(--orange);
  /* Underscore keeps emphasis without a gradient fill. */
  box-shadow: inset 0 -.14em 0 var(--orange-tint);
}

.hero-lede {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 1.75rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--slate);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 1.75rem;
}

.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate);
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-perks li { display: inline-flex; align-items: center; gap: .5rem; }
.hero-perks i { color: var(--forest); }

.hero-figure {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--forest-tint);
}
.hero-figure img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Small credential card overlapping the hero photo */
.hero-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, .96);
  border-radius: var(--r-md);
  padding: .85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  box-shadow: var(--shadow-md);
}
.hero-tag i { color: var(--forest); font-size: 1.35rem; }
.hero-tag strong { display: block; font-size: .95rem; color: var(--slate); }
.hero-tag span { font-size: .8rem; color: var(--muted); }

/* Compact hero used on inner pages */
.hero-page { padding: clamp(2.75rem, 5vw, 4.5rem) 0; }
.hero-page .hero-title { font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3rem); }

.breadcrumb-brand {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: .9rem;
}
.breadcrumb-brand a { color: var(--muted); text-decoration: none; }
.breadcrumb-brand a:hover { color: var(--forest); }

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */

.trust-strip {
  background: var(--slate);
  color: #fff;
  padding: 1.5rem 0;
}
.trust-item { text-align: center; padding: .35rem .5rem; }
.trust-num {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(1.35rem, 1rem + 1.6vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}
.trust-num .unit { color: var(--sand); }
.trust-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-top: .2rem;
}
@media (min-width: 768px) {
  .trust-grid > [class*="col"]:not(:last-child) .trust-item {
    border-right: 1px solid rgba(255, 255, 255, .14);
  }
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card-brand {
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.75rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.card-brand:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-brand h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.card-brand p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.15rem;
  background: var(--forest-tint);
  color: var(--forest);
  transition: background-color var(--ease), color var(--ease);
}
.card-brand:hover .card-icon { background: var(--forest); color: #fff; }
.card-icon.accent { background: var(--orange-tint); color: var(--orange-dark); }
.card-brand:hover .card-icon.accent { background: var(--orange); color: #fff; }

/* Numbered process steps */
.step {
  position: relative;
  height: 100%;
  padding: 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.step-num {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: var(--forest);
  color: #fff;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }

/* Feature list with icons */
.feature-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--forest-tint);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-row h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.feature-row p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }

/* Panel used for pull-out facts and lists */
.panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  height: 100%;
}
.panel-forest {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.panel-forest h2, .panel-forest h3, .panel-forest h4 { color: #fff; }
.panel-forest p { color: rgba(255, 255, 255, .8); }

.stat-figure {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(2.6rem, 2rem + 3vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--forest);
  display: block;
}
.panel-forest .stat-figure { color: var(--sand); }

/* Check / cross lists */
.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .7rem;
}
.list-check li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .975rem;
}
.list-check i { margin-top: .3rem; flex-shrink: 0; }
.list-check .fa-check { color: var(--forest); }
.list-check .fa-xmark { color: #b4442f; }

/* Pricing tiers */
.tier {
  height: 100%;
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.tier:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.tier i { font-size: 1.9rem; color: var(--sage); margin-bottom: .75rem; }
.tier h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.tier p { font-size: .9rem; color: var(--muted); margin-bottom: 0; }

/* Testimonial */
.quote-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--r-md);
  padding: 1.75rem;
  height: 100%;
}
.quote-block blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: var(--ink);
}
.quote-block .stars { color: var(--orange); font-size: .85rem; margin-bottom: .75rem; }
.quote-block cite {
  font-style: normal;
  font-weight: 700;
  font-size: .9rem;
  color: var(--slate);
}
.quote-block .cite-meta { font-size: .82rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
/* On very wide screens, cap how far 3-4 photo grids stretch so a small set
   of images doesn't blow up into oversized tiles. */
@media (min-width: 1400px) {
  .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 380px)); justify-content: center; }
}

.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--forest-tint);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(.2, .6, .3, 1);
}
.gallery-item:hover img { transform: scale(1.04); }

/* "Before" marker: these are genuine site photos taken prior to clearance. */
.gallery-tag {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 2;
  background: rgba(34, 51, 63, .9);
  color: #fff;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: var(--r-xs);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1.1rem .95rem;
  background: linear-gradient(to top, rgba(22, 38, 28, .88) 0%, rgba(22, 38, 28, 0) 100%);
  color: #fff;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 600;
  font-size: .95rem;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.form-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-lg);
}

.form-label {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: .4rem;
}

.form-control, .form-select {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background-color: var(--cream);
  color: var(--ink);
  padding: .75rem 1rem;
  font-size: 1rem;
  transition: border-color var(--ease), box-shadow var(--ease), background-color var(--ease);
}
.form-control::placeholder { color: #9aa39c; }
.form-control:focus, .form-select:focus {
  background-color: #fff;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(46, 74, 56, .14);
  color: var(--ink);
}
.form-control.is-invalid, .form-select.is-invalid,
.was-validated .form-control:invalid, .was-validated .form-select:invalid {
  border-color: #b4442f;
  box-shadow: 0 0 0 3px rgba(180, 68, 47, .12);
}

/* Icon-prefixed field */
.field-icon { position: relative; display: block; }
.field-icon > i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: .95rem;
  pointer-events: none;
  z-index: 3;
}
.field-icon .form-control,
.field-icon .form-select { padding-left: 2.65rem; }

.form-note { font-size: .85rem; color: var(--muted); }

/* Form result banner (success / error) ------------------------------------ */

.form-alert {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 3rem 1.15rem 1.25rem;
  border-radius: var(--r-md);
  border: 1px solid;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.75rem;
  animation: formAlertIn 420ms cubic-bezier(.2, .7, .3, 1);
}
.form-alert:focus { outline: none; }

.form-alert-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
}

.form-alert-body { flex: 1; min-width: 0; }

.form-alert-title {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -.01em;
  margin-bottom: .2rem;
}

.form-alert-text {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  opacity: .92;
}

.form-alert-close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .06);
  border: 0;
  border-radius: 50%;
  color: inherit;
  opacity: .6;
  cursor: pointer;
  font-size: .8rem;
  transition: opacity var(--ease), background-color var(--ease), transform var(--ease);
}
.form-alert-close:hover { opacity: 1; background: rgba(0, 0, 0, .1); transform: scale(1.06); }

.form-alert-success {
  background: var(--forest-tint);
  border-color: rgba(46, 74, 56, .2);
  color: var(--forest-dark);
}
.form-alert-success .form-alert-icon { background: var(--forest); color: #fff; }

.form-alert-error {
  background: #fdf1ee;
  border-color: rgba(180, 68, 47, .22);
  color: #7a2c1c;
}
.form-alert-error .form-alert-icon { background: #b4442f; color: #fff; }

.form-alert.is-leaving {
  animation: formAlertOut 260ms ease forwards;
}

@keyframes formAlertIn {
  from { opacity: 0; transform: translateY(-10px) scale(.99); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes formAlertOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .form-alert, .form-alert.is-leaving { animation: none; }
}

/* Quote band ------------------------------------------------------------- */

.quote-band {
  background-color: var(--forest);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Faint diagonal weave keeps the dark band from reading flat. */
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, .03) 0 2px,
    rgba(255, 255, 255, 0) 2px 14px
  );
  pointer-events: none;
}
.quote-band > .container { position: relative; z-index: 1; }
.quote-band h2 { color: #fff; }

.promise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.promise-list li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, .85);
}
.promise-list .promise-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-xs);
  background: rgba(255, 255, 255, .12);
  color: var(--sand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.promise-list strong { display: block; color: #fff; }

/* --------------------------------------------------------------------------
   Call-to-action band
   -------------------------------------------------------------------------- */

.cta-band {
  background: var(--slate);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(255, 255, 255, .75); margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Contact details
   -------------------------------------------------------------------------- */

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .feature-icon { background: var(--orange-tint); color: var(--orange-dark); }
.contact-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .15rem;
}
.contact-value {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate);
  text-decoration: none;
  word-break: break-word;
}
a.contact-value:hover { color: var(--orange-dark); }

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .6rem;
  font-size: .95rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}
.hours-list strong { color: var(--slate); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background-color: var(--forest-deep);
  color: rgba(255, 255, 255, .72);
  border-top: 4px solid var(--orange);
  padding-top: clamp(2.75rem, 5vw, 4rem);
}
.site-footer h2, .site-footer h3, .site-footer h4 { color: #fff; }

.footer-brand img { width: 54px; height: 54px; object-fit: contain; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--sand); }

.footer-title {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .55rem;
}
.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--sand); }
.footer-links i { color: var(--sage); width: 1rem; text-align: center; flex-shrink: 0; }

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color var(--ease), transform var(--ease);
}
.social-link:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1.5rem 0;
  font-size: .875rem;
}
.footer-bottom a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.footer-bottom a:hover { color: var(--sand); }

.link-plain {
  background: none;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .875rem;
  text-decoration: none;
  cursor: pointer;
}
.link-plain:hover { color: var(--sand); text-decoration: underline; }

/* --------------------------------------------------------------------------
   Cookie banner
   -------------------------------------------------------------------------- */

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 1.15rem 1.25rem;
  max-width: 720px;
  margin-inline: auto;
  transform: translateY(140%);
  transition: transform 320ms cubic-bezier(.2, .7, .3, 1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner h2 {
  font-size: 1rem;
  margin-bottom: .25rem;
}
.cookie-banner p {
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: 0;
}
.cookie-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--orange-tint);
  color: var(--orange-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-actions .btn-brand,
.cookie-actions .btn-brand-outline {
  --btn-py: .55rem;
  --btn-px: 1.1rem;
  font-size: .875rem;
}

/* --------------------------------------------------------------------------
   Legal modals
   -------------------------------------------------------------------------- */

.modal-legal .modal-content {
  border: 0;
  border-radius: var(--r-md);
  overflow: hidden;
}
.modal-legal .modal-header {
  background: var(--forest);
  border-bottom: 0;
  padding: 1.15rem 1.5rem;
}
.modal-legal .modal-title { color: #fff; font-size: 1.15rem; }
.modal-legal .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: .8;
}
.modal-legal .modal-body { padding: 1.75rem 1.5rem; color: var(--muted); }
.modal-legal .modal-body h3 {
  font-size: 1rem;
  color: var(--slate);
  margin: 1.5rem 0 .4rem;
}
.modal-legal .modal-body h3:first-of-type { margin-top: 0; }
.modal-legal .modal-body p { font-size: .95rem; }
.modal-legal .modal-footer {
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 1rem 1.5rem;
}
.legal-date {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   Responsive corrections
   -------------------------------------------------------------------------- */

/*
 * Bootstrap's wide gutters (g-4/g-5) give a .row negative margins of half the
 * gutter, but .container only ever pads 12px. Below lg that leaves the row
 * hanging past the viewport. Cap the horizontal gutter so rows line up with the
 * container; the vertical gutter is untouched, so stacked spacing stays.
 */
@media (max-width: 991.98px) {
  .row { --bs-gutter-x: 1.5rem; }
}

/* Keep the brand lockup from crowding out the menu button on narrow phones. */
@media (max-width: 400px) {
  .brand-lockup img { width: 38px; height: 38px; }
  .brand-name { font-size: .98rem; }
  .brand-sub { font-size: .58rem; letter-spacing: .12em; }
}

/* Stack the cookie notice buttons before they can squeeze the text. */
@media (max-width: 575.98px) {
  .cookie-banner { left: .75rem; right: .75rem; bottom: .75rem; padding: 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn-brand,
  .cookie-actions .btn-brand-outline { flex: 1 1 0; }
}

/* Full-width primary actions read better than half-width ones on a phone. */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-brand,
  .hero-actions .btn-brand-outline { width: 100%; }
}

/* Long addresses and phone numbers must never force a sideways scroll. */
.topbar, .footer-links, .contact-value { overflow-wrap: anywhere; }

/* Motion preferences
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* --------------------------------------------------------------------------
   Projects
   -------------------------------------------------------------------------- */

.projects-hero {
  position: relative;
  min-height: min(670px, 78vh);
  display: flex;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
  isolation: isolate;
}
.projects-hero__media { position: absolute; inset: 0; z-index: -2; }
.projects-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18, 33, 25, .94) 0%, rgba(18, 33, 25, .72) 43%, rgba(18, 33, 25, .28) 100%); }
.projects-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.projects-hero__inner { padding-top: 8rem; padding-bottom: clamp(3.5rem, 8vw, 6.5rem); }
.projects-hero h1 { color: #fff; font-size: clamp(2.6rem, 1.7rem + 4vw, 4.8rem); max-width: 12ch; margin: .4rem 0 1rem; }
.projects-hero h1 span { color: var(--sand); }
.projects-hero p { max-width: 52ch; font-size: 1.05rem; color: rgba(255, 255, 255, .84); margin-bottom: 1.8rem; }
.breadcrumb-brand--light, .breadcrumb-brand--light a { color: rgba(255, 255, 255, .76); }
.breadcrumb-brand--light a:hover { color: #fff; }

.project-intro, .project-gallery-head { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(1.75rem, 5vw, 5rem); align-items: end; }
.project-intro .section-intro, .project-gallery-head p { max-width: 55ch; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.project-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: clamp(2.5rem, 6vw, 4rem); background: var(--line); border: 1px solid var(--line); }
.project-facts > div { display: flex; gap: 1rem; align-items: flex-start; padding: 1.35rem; background: var(--cream); }
.project-facts i { color: var(--orange); font-size: 1.1rem; margin-top: .15rem; }
.project-facts span { display: grid; gap: .15rem; color: var(--muted); font-size: .92rem; }
.project-facts strong { font-family: "Archivo", system-ui, sans-serif; color: var(--slate); font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.project-comparisons { display: grid; gap: clamp(2.5rem, 5vw, 5rem); }
.project-comparison { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(220px, .72fr); gap: clamp(1rem, 2.2vw, 1.75rem); align-items: center; }
.project-comparison--reverse .project-photo:first-child { order: 2; }
.project-comparison--reverse .project-photo:nth-child(2) { order: 1; }
.project-comparison--reverse .project-comparison__copy { order: 3; }
.project-photo { position: relative; overflow: hidden; min-height: 320px; border-radius: var(--r-md); background: var(--forest-tint); box-shadow: var(--shadow-md); }
.project-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.project-photo span { position: absolute; top: .8rem; left: .8rem; padding: .35rem .65rem; border-radius: 999px; background: rgba(22, 39, 29, .9); color: #fff; font-family: "Archivo", system-ui, sans-serif; font-weight: 700; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.project-comparison__copy { padding: 1rem 0; }
.project-comparison__copy h3 { font-size: clamp(1.25rem, 1rem + .9vw, 1.7rem); margin: .55rem 0; }
.project-comparison__copy p { color: var(--muted); margin-bottom: 0; }
.project-step { color: var(--orange); font-family: "Archivo", system-ui, sans-serif; font-weight: 800; letter-spacing: .12em; font-size: .75rem; }

.project-gallery-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.project-gallery { columns: 3 260px; column-gap: 1.25rem; }
.project-gallery__item { position: relative; margin: 0 0 1.25rem; break-inside: avoid; overflow: hidden; border-radius: var(--r-md); background: var(--forest-tint); box-shadow: var(--shadow-sm); }
.project-gallery__item img { display: block; width: 100%; height: auto; transition: transform 450ms cubic-bezier(.2, .6, .3, 1); }
.project-gallery__item:hover img { transform: scale(1.035); }
.project-gallery__item figcaption { position: absolute; left: .75rem; bottom: .75rem; }
.project-gallery__item figcaption span { display: inline-block; padding: .32rem .6rem; border-radius: 999px; background: rgba(22, 39, 29, .9); color: #fff; font-family: "Archivo", system-ui, sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.past-projects-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.past-project { position: relative; margin: 0; overflow: hidden; min-height: 270px; border-radius: var(--r-md); background: var(--forest-tint); box-shadow: var(--shadow-sm); }
.past-project img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform 450ms cubic-bezier(.2, .6, .3, 1); }
.past-project:hover img { transform: scale(1.04); }
.past-project::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(15, 27, 20, .86)); pointer-events: none; }
.past-project figcaption { position: absolute; z-index: 1; bottom: 1rem; left: 1rem; right: 1rem; color: #fff; font-family: "Archivo", system-ui, sans-serif; font-size: .95rem; font-weight: 700; }

@media (max-width: 991.98px) {
  .projects-hero { min-height: 580px; }
  .projects-hero__media::after { background: linear-gradient(90deg, rgba(18, 33, 25, .91), rgba(18, 33, 25, .48)); }
  .project-comparison { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-comparison__copy { grid-column: 1 / -1; }
  .project-comparison--reverse .project-photo:first-child, .project-comparison--reverse .project-photo:nth-child(2), .project-comparison--reverse .project-comparison__copy { order: unset; }
}
@media (max-width: 767.98px) {
  .project-intro, .project-gallery-head { grid-template-columns: 1fr; }
  .project-facts { grid-template-columns: 1fr; }
  .project-comparison { grid-template-columns: 1fr; gap: 1rem; }
  .project-photo { min-height: 270px; }
  .project-comparison__copy { grid-column: auto; }
  .past-projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .past-project { min-height: 220px; }
}
@media (max-width: 480px) {
  .projects-hero { min-height: 540px; }
  .projects-hero__inner { padding-top: 7rem; }
  .project-gallery { columns: 1; }
  .past-projects-grid { grid-template-columns: 1fr; }
}
