/* =========================================================================
   Concrete Washout Recyclers — tokens, base, header, footer.
   Component and page styles live in pages.css.
   Brand green #1D792F and grey #686868 are sampled from the logo artwork.
   ========================================================================= */

:root {
  --green:        #1d792f;
  --green-dark:   #145c23;
  --green-light:  #e8f2ea;
  --ink:          #16191a;
  --ink-2:        #3a4042;
  /* Muted text. Darkened with --paper-2: at #6a7275 it measured 4.05:1 on the
     new band, under the 4.5:1 minimum. This clears it on both band and white. */
  --ink-3:        #626a6d;
  --line:         #d2d7d4;
  --paper:        #ffffff;
  /* The pale band. It has to be clearly darker than white or the alternating
     sections read as one continuous block. #f6f7f6 was too close to call. */
  --paper-2:      #e7eae8;
  --warn:         #8a5a00;
  --warn-bg:      #fff6e0;

  --wrap:         76rem;
  --gap:          clamp(1.25rem, 3vw, 2.5rem);
  --band-y:       clamp(3rem, 7vw, 5.5rem);
  --radius:       4px;

  --font-head:    'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --shadow:       0 1px 2px rgba(22,25,26,.06), 0 8px 24px rgba(22,25,26,.06);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: .005em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 700; text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 700; text-transform: uppercase; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }
p  { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--green-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--ink); }

:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 2px; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem;
}
.skip:focus { left: 0; }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .875rem;
  font-weight: 600;
  color: var(--green);
  margin: 0 0 .75rem;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-2); max-width: 46ch; }
.tight { margin-top: .75rem; }
.narrow { max-width: 62ch; }

/* ---- buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600; font-size: 1.0625rem;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .7rem 1.35rem;
  background: var(--green); color: #fff;
  border: 2px solid var(--green); border-radius: var(--radius);
  text-decoration: none; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.btn-lg { font-size: 1.1875rem; padding: .85rem 1.75rem; }
.btn-sm { font-size: .9375rem; padding: .5rem 1rem; }
.btn-ghost { background: transparent; color: var(--ink); border-color: currentColor; }
.btn-ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

.link-arrow {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; text-decoration: none; color: var(--green-dark);
  border-bottom: 2px solid var(--green-light); padding-bottom: 2px;
}
.link-arrow::after { content: ' \2192'; }
.link-arrow:hover { border-bottom-color: var(--green); color: var(--green-dark); }

/* ---- top bar ---------------------------------------------------------- */
.topbar { background: var(--ink); color: #cdd3d2; font-size: .875rem; }
.topbar-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 2.5rem; padding-block: .35rem;
}
.topbar-claim { text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; }
.topbar-tel { color: #fff; font-weight: 600; text-decoration: none; white-space: nowrap; }
.topbar-tel:hover { color: #fff; text-decoration: underline; }
.topbar-tel-label { color: #9aa3a2; font-weight: 400; }
@media (max-width: 40rem) { .topbar-claim { display: none; } .topbar-in { justify-content: flex-end; } }

/* ---- header + nav ----------------------------------------------------- */
.site-head { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.head-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .75rem; }
.brand { display: block; flex: none; }
.brand img { height: 4.25rem; width: auto; }
@media (max-width: 60rem) { .brand img { height: 3.5rem; } }

.nav-toggle {
  display: none; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  background: none; border: 2px solid var(--line); border-radius: var(--radius);
  padding: .5rem .85rem; color: var(--ink); cursor: pointer;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 18px; height: 2px; background: var(--ink); content: '';
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before { position: absolute; top: -6px; }
.nav-toggle-bars::after  { position: absolute; top: 6px; }

.nav-list { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-item > a, .nav-sub-toggle {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--font-head); font-size: 1.0625rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink); text-decoration: none;
  padding: .55rem .7rem; background: none; border: 0; cursor: pointer;
  border-bottom: 3px solid transparent;
}
.nav-item > a:hover, .nav-sub-toggle:hover { color: var(--green-dark); }
.nav-item > a[aria-current="page"], .nav-sub-toggle[data-within="1"] { border-bottom-color: var(--green); color: var(--green-dark); }
.caret { width: 0; height: 0; border: 4px solid transparent; border-top-color: currentColor; margin-top: 4px; }

.nav-sub {
  position: absolute; top: 100%; left: 0; min-width: 15rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); list-style: none; margin: 0; padding: .35rem;
  display: none; z-index: 60;
}
.nav-item.open > .nav-sub { display: block; }
.nav-sub a {
  display: block; padding: .5rem .7rem; text-decoration: none;
  color: var(--ink-2); font-size: .9375rem; border-radius: 3px;
}
.nav-sub a:hover { background: var(--green-light); color: var(--green-dark); }
.nav-sub a[aria-current="page"] { color: var(--green-dark); font-weight: 600; }
.nav-cta { margin-left: .5rem; }

@media (max-width: 60rem) {
  .nav-toggle { display: inline-flex; }
  .nav { display: none; width: 100%; order: 3; }
  .nav.open { display: block; }
  .head-in { flex-wrap: wrap; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding-bottom: .75rem; }
  .nav-item > a, .nav-sub-toggle { width: 100%; justify-content: space-between; padding: .8rem .25rem; border-bottom: 1px solid var(--line); }
  .nav-sub { position: static; display: none; border: 0; box-shadow: none; padding: .25rem 0 .5rem .75rem; }
  .nav-item.open > .nav-sub { display: block; }
  .nav-cta { margin: .75rem 0 0; }
  .nav-cta .btn { width: 100%; }
}

/* ---- footer ----------------------------------------------------------- */
/* No margin-top. Every section above already carries its own padding, and a
   margin here put a white stripe between the green CTA and this dark footer on
   every page. Sections butt together; the colour change is the separation. */
.site-foot { background: var(--ink); color: #b9c0bf; padding-top: clamp(2.5rem, 5vw, 4rem); }
.foot-grid { display: grid; gap: var(--gap); grid-template-columns: 1.4fr 1fr 1fr 1fr; }
@media (max-width: 60rem) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 34rem) { .foot-grid { grid-template-columns: 1fr; } }
.foot-logo { height: 4.5rem; width: auto; background: #fff; padding: .5rem .75rem; border-radius: var(--radius); }
.foot-claim { margin-top: 1rem; max-width: 32ch; color: #9aa3a2; }
.foot-h { font-size: 1.05rem; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .9rem; }
.foot-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.foot-list a { color: #dfe4e3; text-decoration: none; }
.foot-list a:hover { color: #fff; text-decoration: underline; }
.foot-addr { color: #9aa3a2; }
.foot-list-cols { grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); }

.hours { border-collapse: collapse; font-size: .9375rem; }
.hours th { text-align: left; font-weight: 500; color: #9aa3a2; padding: .2rem 1rem .2rem 0; }
.hours td { color: #dfe4e3; padding: .2rem 0; white-space: nowrap; }

.foot-legal { border-top: 1px solid #2b3132; margin-top: clamp(2rem, 4vw, 3rem); padding-block: 1.25rem; }
.foot-legal p { margin: 0; font-size: .875rem; color: #808988; }
