/* ==========================================================================
   S.K.M. Wire Industries — Green Light
   Shared stylesheet for every page.
   Brand colours sampled directly from the business-card logo artwork.
   ========================================================================== */

:root {
  /* Brand greens — sampled from the Green Light logo */
  --green:        #6A8B2C;   /* "GREEN LIGHT" wordmark olive green */
  --green-dark:   #4E6A1C;   /* buttons & links */
  --green-deep:   #33460E;   /* dark surfaces */
  --lime:         #9ACB43;   /* bright wire in the logo icon */
  --channel:      #49A35C;   /* Green Channel oval green */

  /* Card-derived neutrals */
  --sage:         #EDF5E8;
  --sage-2:       #DFEAD9;
  --mist:         #B8C1BC;
  --cream:        #FAFBF6;

  --ink:          #17200D;
  --body:         #444C3B;
  --muted:        #6E7767;
  --line:         #E3E8DC;
  --white:        #FFFFFF;

  --wrap:         1180px;
  --radius:       10px;
  --shadow:       0 1px 2px rgba(23,32,13,.05), 0 8px 24px rgba(23,32,13,.06);
  --shadow-lg:    0 2px 4px rgba(23,32,13,.06), 0 20px 46px rgba(23,32,13,.11);

  /* Times New Roman throughout, with sensible fallbacks on other machines */
  --serif: "Times New Roman", Times, "Liberation Serif", "Nimbus Roman", Georgia, serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .004em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: var(--body);
  background: var(--white);
}
img, svg { max-width: 100%; display: block; }
a { color: var(--green-dark); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .45em;
  font-weight: 700;
  letter-spacing: -.018em;
}
h1 { font-size: clamp(2.7rem, 5.6vw, 4.3rem); line-height: 1.04; }
h2 { font-size: clamp(2.1rem, 3.9vw, 3.1rem); line-height: 1.08; }
h3 { font-size: 1.5rem; letter-spacing: -.012em; }
h4 { font-size: 1.1rem; letter-spacing: -.008em; }
p  { margin: 0 0 .9em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section--sage  { background: var(--sage); }
.section--cream { background: var(--cream); }
.section--tight { padding: 56px 0; }

/* Small uppercase label above headings */
.eyebrow {
  display: inline-block;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin: 0 0 .85rem;
}
.section-head { max-width: 700px; margin-bottom: 36px; }
.section-head p { font-size: 1.14rem; margin: 0; color: var(--body); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.rule { width: 62px; height: 3px; background: var(--green); margin: 0 0 22px; border: 0; }
.rule--center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { box-shadow: 0 2px 10px rgba(51,70,14,.22); }
.btn--primary:hover { box-shadow: 0 6px 20px rgba(51,70,14,.32); transform: translateY(-1px); }
.btn--primary { background: var(--green-dark); color: #fff; }
.btn--primary:hover { background: var(--green-deep); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.btn--outline { background: #fff; color: var(--green-dark); border-color: var(--green); }
.btn--outline:hover { background: var(--sage); }
.btn--lg { padding: 15px 32px; font-size: 1.1rem; }
.btn svg { flex: none; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--green-deep);
  color: #DCE6CC;
  font-size: .92rem;
}
.topbar .wrap {
  display: flex; flex-wrap: wrap;
  gap: 4px 26px; align-items: center; justify-content: space-between;
  min-height: 42px; padding-top: 7px; padding-bottom: 7px;
}
.topbar a { color: #DCE6CC; text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar__contact { display: flex; flex-wrap: wrap; gap: 4px 22px; }
.topbar__names {
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .86rem;
  color: #EDF3E2;
}

/* ---------- Header + main navigation ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.header .wrap {
  display: flex; align-items: center; gap: 28px;
  min-height: 92px;
  transition: min-height .3s ease;
}
/* once the visitor scrolls, the bar tightens and lifts off the page */
.header.is-scrolled { box-shadow: 0 6px 24px rgba(23,32,13,.10); }
.header.is-scrolled .wrap { min-height: 74px; }
.header.is-scrolled .brand img { height: 54px; }

.brand { display: flex; align-items: center; gap: 18px; text-decoration: none; flex: none; }
.brand img { height: 66px; width: auto; transition: height .3s ease; }
.brand__firm {
  display: none;
  padding-left: 18px;
  border-left: 2px solid var(--sage-2);
  line-height: 1.15;
}
.brand__name {
  display: block;
  font-size: 1.28rem; font-weight: 700;
  letter-spacing: .015em;
  color: var(--ink);
  white-space: nowrap;
}
.brand__sub {
  display: block; margin-top: 4px;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-dark);
  white-space: nowrap;
}
@media (min-width: 1100px) { .brand__firm { display: block; } }

/* links sit together as one group, pushed to the right */
.nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav a:not(.btn) {
  position: relative;
  padding: 10px 14px;
  font-size: 1.14rem; font-weight: 600;
  letter-spacing: .005em;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s ease;
}
/* underline grows out from the centre on hover, and stays on the current page */
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--green);
  transform: scaleX(0); transform-origin: center;
  transition: transform .28s cubic-bezier(.22,.61,.36,1);
}
.nav a:not(.btn):hover { color: var(--green-dark); }
.nav a:not(.btn):hover::after,
.nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--green-dark); font-weight: 700; }
.header .btn { margin-left: 14px; padding: 13px 24px; font-size: 1.06rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; padding: 0; margin-left: auto;
  border: 1px solid var(--line); border-radius: 6px; background: #fff; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; position: relative; width: 20px; height: 2px; margin: 0 auto;
  border-radius: 2px; background: var(--ink); transition: transform .2s, opacity .2s;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* mid-size screens: scale the bar down rather than dropping page links */
@media (max-width: 1280px) and (min-width: 761px) {
  .nav { gap: 2px; }
  .nav a:not(.btn) { padding: 10px 11px; font-size: 1.06rem; }
  .nav a:not(.btn)::after { left: 11px; right: 11px; }
  .header .btn { margin-left: 8px; padding: 12px 18px; font-size: 1rem; }
}
@media (max-width: 960px) and (min-width: 761px) {
  .brand img { height: 52px; }
  .header .btn { display: none; }
  .nav a:not(.btn) { padding: 9px 9px; font-size: 1rem; }
  .nav a:not(.btn)::after { left: 9px; right: 9px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .header .wrap { min-height: 72px; }
  .brand img { height: 50px; }
  .header.is-scrolled .brand img { height: 44px; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 2px; margin-left: 0;
    padding: 12px 16px 20px; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; animation: menuDrop .22s ease both; }
  .nav a:not(.btn) { padding: 13px 14px; font-size: 1.16rem; }
  .nav a:not(.btn)::after { display: none; }
  .header .btn { margin: 10px 0 0; justify-content: center; }
}
@keyframes menuDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Home hero ---------- */
.hero {
  position: relative; overflow: hidden;
  color: #fff;
  background:
    radial-gradient(1200px 520px at 78% 28%, rgba(106,139,44,.30), transparent 62%),
    linear-gradient(150deg, #161E0B 0%, #24310E 48%, #33460E 100%);
}
/* cable runs drifting slowly behind the text */
.hero::before {
  content: "";
  position: absolute;
  inset: -6% -12% -6% -6%;
  background: url("../images/wire-pattern.svg") center / cover no-repeat;
  opacity: .85;
  animation: heroDrift 34s ease-in-out infinite alternate;
  pointer-events: none;
}
/* a soft vignette so the headline always stays readable */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14,20,7,.86) 0%, rgba(16,22,8,.55) 44%, rgba(16,22,8,.08) 74%);
  pointer-events: none;
}
@keyframes heroDrift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-2.2%, -1.4%, 0) scale(1.05); }
}
.hero .wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 44px; align-items: center;
  padding-top: 46px; padding-bottom: 50px;
}
/* the hero headline gets the widest column so it holds to two lines */
.hero h1 { font-size: clamp(2.6rem, 4.4vw, 3.75rem); max-width: 15ch; }
.hero__mark { height: 62px; width: auto; margin-bottom: 16px; }
.hero h1 { color: #fff; margin-bottom: .3em; }
.hero__tag {
  font-size: 1.16rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--lime); margin: 0 0 .7rem;
}
.hero__lead { font-size: 1.16rem; line-height: 1.5; color: #D6E0C6; max-width: 640px; margin-bottom: 1.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__note { margin: 18px 0 0; font-size: .98rem; color: #A9B79A; }
.hero__art { position: relative; }
.hero__art img {
  width: 100%; height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 60px rgba(0,0,0,.42);
}
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 34px; padding-top: 56px; padding-bottom: 56px; }
  .hero__art { display: none; }
}

/* ---------- Inner page header band ---------- */
.pagehead {
  position: relative; overflow: hidden;
  padding: 72px 0 64px;
  color: #fff;
  background:
    radial-gradient(900px 380px at 82% 20%, rgba(106,139,44,.34), transparent 60%),
    linear-gradient(140deg, #1B240F 0%, #2A370F 100%);
}
.pagehead::before {
  content: ""; position: absolute; inset: -10% -10% -10% 20%;
  background: url("../images/wire-pattern.svg") center / cover no-repeat;
  opacity: .55; pointer-events: none;
  animation: heroDrift 40s ease-in-out infinite alternate;
}
.pagehead .wrap { position: relative; z-index: 1; }
.pagehead h1 { color: #fff; margin-bottom: .25em; animation: riseIn .7s cubic-bezier(.22,.61,.36,1) .1s both; }
.pagehead p  { animation: riseIn .7s cubic-bezier(.22,.61,.36,1) .22s both; }
.pagehead .crumbs { animation: riseIn .6s cubic-bezier(.22,.61,.36,1) both; }
.pagehead p { max-width: 660px; margin: 0; color: #CFDABE; font-size: 1.14rem; }
.crumbs { margin: 0 0 14px; font-size: .95rem; color: #9FAE8D; }
.crumbs a { color: #C6D6AE; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }

/* ---------- Trust strip ---------- */
.trust { border-bottom: 1px solid var(--line); background: #fff; }
.trust__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--line);
  border-left: 1px solid var(--line); border-right: 1px solid var(--line);
}
.trust__item { background: #fff; padding: 28px 22px; transition: background .2s; }
.trust__item:hover { background: var(--sage); }
.trust__item strong {
  display: block; font-size: 1.75rem; font-weight: 700;
  line-height: 1.12; color: var(--green-dark);
}
.trust__item span { display: block; margin-top: 6px; font-size: .95rem; line-height: 1.5; color: var(--muted); }
@media (max-width: 1080px) { .trust__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .trust__grid { grid-template-columns: 1fr; } }

/* ---------- Card grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; overflow: hidden;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
a.card:hover { border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card__art {
  position: relative;
  background: var(--sage);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.card__art img {
  width: 100%; height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .35s ease;
}
a.card:hover .card__art img { transform: scale(1.04); }
/* Product shots on a white studio background — letterbox rather than crop */
.card__art--contain { background: #fff; }
.card__art--contain img { object-fit: contain; padding: 16px; }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 24px 24px 26px; }
.card h3 { margin-bottom: .35em; }
.card p { margin: 0; font-size: 1.02rem; line-height: 1.6; }
.card__use {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: .96rem; color: var(--muted);
}
.card__more { margin-top: auto; padding-top: 18px; font-weight: 700; color: var(--green-dark); }
.tag {
  display: inline-block; align-self: flex-start;
  margin-bottom: 12px; padding: 4px 11px; border-radius: 4px;
  background: var(--sage); font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green-dark);
}
.tag--new { background: var(--lime); color: var(--green-deep); }
.card__art .tag { position: absolute; top: 14px; right: 14px; margin: 0; }

/* ---------- Product detail rows ---------- */
.prow {
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center;
  padding: 56px 0; border-bottom: 1px solid var(--line);
}
.prow:last-child { border-bottom: 0; }
.prow__art {
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.prow__art img {
  width: 100%; height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.prow__art--contain { background: #fff; }
.prow__art--contain img { object-fit: contain; padding: 22px; }
.prow:nth-child(even) .prow__art { order: 2; }
.prow__index {
  font-size: .92rem; font-weight: 700; letter-spacing: .2em;
  color: var(--green); margin: 0 0 8px;
}
.prow h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: .3em; }
.prow__lead { font-size: 1.12rem; }
.speclist { list-style: none; margin: 18px 0 0; padding: 0; }
.speclist li { position: relative; padding-left: 26px; margin-bottom: 9px; font-size: 1.02rem; }
.speclist li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 9px; height: 9px; border-radius: 2px; background: var(--green);
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill {
  padding: 5px 13px; border: 1px solid var(--line); border-radius: 20px;
  background: #fff; font-size: .94rem; color: var(--body);
}
@media (max-width: 880px) {
  .prow { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .prow:nth-child(even) .prow__art { order: 0; }
}

/* ---------- Feature blocks (Why page / About) ---------- */
.feature {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px;
  padding: 30px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
}
.feature__icon {
  width: 64px; height: 64px; display: grid; place-items: center;
  border-radius: 9px; background: var(--sage);
  transition: background .2s, transform .2s;
}
.feature { transition: border-color .2s, box-shadow .2s, transform .2s; }
.feature:hover { border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.feature:hover .feature__icon { background: var(--lime); transform: scale(1.06); }
.feature h3 { margin-bottom: .3em; }
.feature p:last-child { margin-bottom: 0; }
@media (max-width: 520px) { .feature { grid-template-columns: 1fr; } }

/* ---------- Appliance list ---------- */
.applist {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
}
.applist__item {
  position: relative;
  padding: 15px 18px 15px 44px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1.04rem;
  color: var(--ink);
}
.applist__item:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.applist__item::before {
  content: "";
  position: absolute;
  left: 18px; top: 50%;
  width: 12px; height: 12px;
  margin-top: -6px;
  border-radius: 3px;
  background: var(--green);
}
@media (max-width: 520px) {
  .applist { grid-template-columns: 1fr; }
}

/* ---------- Roots / Green Channel ---------- */
.roots {
  display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center;
  padding: 42px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.roots__logo { display: grid; place-items: center; padding: 28px; background: var(--cream); border-radius: 8px; }
.roots__logo img { max-width: 230px; }
.roots h2 { font-size: 1.85rem; }
.roots p:last-child { margin-bottom: 0; }
@media (max-width: 820px) { .roots { grid-template-columns: 1fr; gap: 30px; padding: 30px; } }

/* ---------- Split content (About) ---------- */
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 52px; align-items: start; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 34px; } }
.factbox {
  padding: 30px; background: var(--sage);
  border-left: 4px solid var(--green); border-radius: 0 8px 8px 0;
}
.factbox h4 { margin-bottom: .6em; }
.factbox dl { margin: 0; }
.factbox dt {
  font-size: .82rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-dark); margin-top: 16px;
}
.factbox dt:first-child { margin-top: 0; }
.factbox dd { margin: 2px 0 0; color: var(--ink); }

/* People */
.people { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.person {
  padding: 28px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); text-align: center;
}
.person__initials {
  width: 68px; height: 68px; margin: 0 auto 16px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--green-deep); color: #fff; font-size: 1.5rem; font-weight: 700;
}
.person h3 { margin-bottom: .15em; }
.person__role {
  font-size: .86rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: .6em;
}
.person a { text-decoration: none; }
.person a:hover { text-decoration: underline; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.infolist { list-style: none; margin: 0; padding: 0; }
.infolist li {
  display: grid; grid-template-columns: 42px 1fr; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.infolist li:last-child { border-bottom: 0; }
.infolist .ico {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 8px; background: var(--sage);
}
.infolist h4 { margin: 0 0 .2em; font-size: .84rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green-dark); }
.infolist p { margin: 0; color: var(--ink); }
.infolist a { text-decoration: none; }
.infolist a:hover { text-decoration: underline; }

.formcard {
  padding: 34px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block; margin-bottom: 6px;
  font-size: .88rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green-dark);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  font-family: var(--serif); font-size: 1.04rem; color: var(--ink);
  background: #fff; border: 1px solid #CFD7C4; border-radius: 6px;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--green); outline-offset: 1px; border-color: var(--green);
}
.formnote { margin: 14px 0 0; font-size: .95rem; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.mapcard {
  margin-top: 26px; padding: 26px 28px;
  background: var(--sage); border-radius: var(--radius);
}
.mapcard h4 { margin-bottom: .4em; }
.mapcard p { margin-bottom: .6em; }

/* ---------- CTA band ---------- */
.cta {
  padding: 72px 0; text-align: center; color: #fff;
  background:
    linear-gradient(140deg, rgba(27,36,15,.94), rgba(51,70,14,.88)),
    url("../images/cable-yard.jpg") center / cover no-repeat;
}
.cta h2 { color: #fff; }
.cta p { max-width: 600px; margin: 0 auto 1.9rem; color: #D6E0C6; font-size: 1.12rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #A9B79A; font-size: 1.02rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1.1fr; gap: 46px; padding: 62px 0 48px; }
.footer__logos { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.footer__logos span { display: grid; place-items: center; padding: 10px 16px; background: #fff; border-radius: 8px; }
.footer__logos img { height: 42px; width: auto; }
.footer__logos img.gc { height: 36px; }
.footer h4 {
  margin: 0 0 16px; font-size: .84rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: #fff;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: #A9B79A; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__about { max-width: 400px; margin: 0; }
.footer__bar { padding: 17px 0; background: var(--mist); color: #2A3A0C; font-size: .95rem; }
.footer__bar .wrap { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; justify-content: space-between; }
.footer__bar a { color: #2A3A0C; font-weight: 700; }
.footer__credit { font-size: .82rem; opacity: .75; }
.footer__bar a:hover { color: var(--ink); }
@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brandcol { grid-column: 1 / -1; }
}
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; } }

/* ---------- Motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s cubic-bezier(.22,.61,.36,1), transform .55s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
/* stagger items inside a group */
.reveal[data-d="1"] { transition-delay: .06s; }
.reveal[data-d="2"] { transition-delay: .12s; }
.reveal[data-d="3"] { transition-delay: .18s; }
.reveal[data-d="4"] { transition-delay: .24s; }
.reveal[data-d="5"] { transition-delay: .30s; }

/* hero lines settle in one after another on load */
.rise { animation: riseIn .75s cubic-bezier(.22,.61,.36,1) both; animation-delay: calc(var(--i, 0) * 90ms + 80ms); }
.hero__art { animation: riseIn .9s cubic-bezier(.22,.61,.36,1) .35s both; }
.hero__art img { animation: gentleFloat 7s ease-in-out 1.3s infinite; }
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* the short green rule under each eyebrow draws itself in */
.section-head .rule, .roots .rule, .split .rule, .contact-grid .rule { transform-origin: left; }
.reveal .rule, .section-head.reveal .rule { transform: scaleX(0); transition: transform .7s cubic-bezier(.22,.61,.36,1) .15s; }
.reveal.is-visible .rule { transform: scaleX(1); }
.rule--center { transform-origin: center; }

/* a light sweep crosses the main buttons on hover */
.btn--primary { position: relative; overflow: hidden; isolation: isolate; }
.btn--primary::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg); z-index: -1;
  transition: left .6s ease;
}
.btn--primary:hover::before { left: 120%; }

/* product photos ease in slightly on hover */
.prow__art img { transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.prow__art:hover img { transform: scale(1.03); }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.center { text-align: center; }
.mt-lg { margin-top: 42px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
