@font-face {
  font-family: "eurostile";
  src: url("/assets/fonts/eurostile-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "eurostile";
  src: url("/assets/fonts/eurostile-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "eurostile";
  src: url("/assets/fonts/eurostile-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "eurostile";
  src: url("/assets/fonts/eurostile-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Regular";
  src: url("/assets/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Regular";
  src: url("/assets/fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Regular";
  src: url("/assets/fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #007f5f;
  --green-soft: #8ccdb8;
  --green-gray: #779284;
  --charcoal: #3d3d3d;
  --black: #050505;
  --ink: #232323;
  --light: #f2f2f2;
  --line: rgba(0, 0, 0, 0.16);
  --wide: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #fff;
  color: var(--ink);
  font-family: "Roboto Regular", Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

img,
iframe,
video {
  max-width: 100%;
}

iframe,
video {
  height: auto;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 210px 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 90px));
  margin: 0 auto;
  padding: 22px 0;
  color: #fff;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.mark {
  position: relative;
  width: 46px;
  height: 46px;
}

.mark i {
  position: absolute;
  top: 18px;
  left: 19px;
  width: 8px;
  height: 18px;
  border-radius: 12px;
  background: var(--green);
  transform: rotate(calc(var(--i) * 30deg)) translateY(-15px);
  transform-origin: 4px 22px;
  opacity: 0.92;
}

.mark i:nth-child(n + 7) {
  background: #bfc5c4;
}

.brand-logo strong {
  display: block;
  font-family: "eurostile", sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 0.78;
}

.brand-logo em {
  display: block;
  margin-top: 5px;
  font-family: "eurostile", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 38px;
  font-family: "eurostile", sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav > a,
.nav-group > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fff;
}

.nav-group {
  position: relative;
}

.nav-group > a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-group div {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  min-width: 220px;
  padding: 10px 0;
  color: #fff;
  background: rgba(3, 3, 3, 0.95);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-group:hover div,
.nav-group:focus-within div {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-group div a {
  padding: 13px 20px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.header-cta,
.btn,
.contact-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 44px;
  padding: 13px 25px;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 0;
  font-family: "eurostile", sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.btn:hover,
.header-cta:hover,
.contact-card button:hover {
  background: #00976f;
  transform: translateY(-1px);
}

.btn--ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

/* Drawer-only controls: hidden on desktop, revealed inside the mobile drawer. */
.nav-close,
.nav-drawer-cta,
.nav-drawer-phone {
  display: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 38;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
}

body.menu-open .nav-overlay {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: var(--black);
  color: #fff;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.76) 31%, rgba(0, 0, 0, 0.42) 64%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(circle at 76% 28%, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.68) 58%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--wide), calc(100% - 92px));
  margin: 0 auto;
  padding-top: 240px;
}

.hero-copy p,
.center-copy p,
.solution-panel p:first-child,
.video-box p,
.article-strip p,
.detail article > p:first-child,
.angle-copy p,
.faq-block p {
  margin: 0;
  color: var(--green-soft);
  font-family: "eurostile", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 4px 0 12px;
  color: #fff;
  font-family: "eurostile", sans-serif;
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-copy span {
  display: block;
  max-width: 540px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.hero-copy div {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.cta-strip {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  min-height: 84px;
  padding: 18px;
  background: #fff;
  color: #000;
  font-family: "eurostile", sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.cta-strip .btn {
  min-height: 36px;
  min-width: 160px;
  padding: 11px 22px;
  font-size: 12px;
}

.angle-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  align-items: center;
  min-height: 500px;
  overflow: hidden;
  background: #fff;
}

.angle-section::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  background: var(--green-gray);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.angle-copy {
  position: relative;
  z-index: 2;
  width: min(540px, calc(100% - 80px));
  margin-left: max(48px, calc((100vw - var(--wide)) / 2));
}

.angle-copy h2 {
  max-width: 420px;
  margin: 112px 0 28px;
  color: transparent;
  font-family: "eurostile", sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  -webkit-text-stroke: 1.25px #050505;
}

.angle-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 440px;
  margin-bottom: 34px;
}

.angle-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  color: #050505;
  background: #fff;
  border: 1px solid #050505;
  font-family: "eurostile", sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.angle-links a:hover {
  color: #fff;
  background: #050505;
}

.angle-copy .angle-primary {
  color: var(--green-soft);
  font-family: "eurostile", sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.angle-art {
  position: relative;
  z-index: 2;
  width: min(440px, 80%);
  justify-self: center;
}

.angle-art img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.center-copy {
  width: min(820px, calc(100% - 60px));
  margin: 82px auto;
  text-align: center;
}

.center-copy h2,
.solution-panel h2,
.video-box h2,
.article-strip h2,
.detail h2,
.faq-block h2,
.contact-section h2,
.shop-grid h2,
.listing h2 {
  margin: 0;
  color: #000;
  font-family: "eurostile", sans-serif;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
}

.center-copy span {
  display: block;
  max-width: 650px;
  margin: 18px auto 0;
  font-size: 15px;
}

.center-copy .btn {
  margin-top: 26px;
  color: #000;
  border-color: #000;
}

.solution-panel {
  position: relative;
  min-height: 640px;
  padding: 110px 0;
  background: var(--light);
  background-image: linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.78)), url("/images/hero/hero-commercial-roofing-stockton-ca-06.webp");
  background-size: cover;
  background-position: center;
}

.solution-panel > div {
  width: min(860px, calc(100% - 88px));
  margin: 0 auto;
  padding: 54px 52px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  box-shadow: 0 4px 26px rgba(0, 0, 0, 0.12);
  border-bottom: 9px solid var(--green);
}

.solution-panel h2 {
  margin: 6px 0 18px;
}

.solution-panel p:not(:first-child) {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
}

.mini-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.mini-links a {
  color: var(--green);
  font-family: "eurostile", sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 54px;
  width: min(1120px, calc(100% - 80px));
  margin: 96px auto;
  align-items: start;
}

.partner-panel > div:first-child {
  position: sticky;
  top: 34px;
}

.partner-panel p,
.locations-heading p,
.about-story p {
  margin: 0 0 10px;
  color: var(--green);
  font-family: "eurostile", sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-panel h2,
.locations-heading h2,
.about-story h2 {
  margin: 0;
  color: #050505;
  font-family: "eurostile", sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.partner-panel span,
.about-story span {
  display: block;
  margin-top: 18px;
  color: #383838;
  font-size: 16px;
  line-height: 1.65;
}

.partner-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.partner-links a {
  min-height: 190px;
  padding: 28px;
  color: #fff;
  background: #111;
  border-left: 7px solid var(--green);
  transition: transform 160ms ease, background 160ms ease;
}

.partner-links a:hover {
  background: var(--charcoal);
  transform: translateY(-3px);
}

.partner-links strong {
  display: block;
  font-family: "eurostile", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.partner-links span {
  color: #e6e6e6;
  font-size: 14px;
}

.locations-showcase {
  width: min(1160px, calc(100% - 70px));
  margin: 0 auto 92px;
}

.locations-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.locations-heading p {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.locations-heading h2 {
  max-width: 780px;
}

.locations-heading a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  color: #fff;
  background: var(--green);
  font-family: "eurostile", sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.location-tile {
  position: relative;
  min-height: 225px;
  overflow: hidden;
  background: #111;
}

.location-tile img {
  width: 100%;
  height: 100%;
  min-height: 225px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 260ms ease;
}

.location-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.7));
  content: "";
}

.location-tile span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-family: "eurostile", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.location-tile:hover img {
  transform: scale(1.05);
}

.video-band {
  padding: 68px 0;
  background: var(--green-gray);
}

.video-box {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(230px, 270px) minmax(0, 1fr);
  width: min(990px, calc(100% - 90px));
  margin: 0 auto;
  background: #fff;
}

.video-box > div:first-child {
  padding: 38px 34px;
}

.video-box h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 0.92;
  overflow-wrap: normal;
}

.video-box span {
  display: block;
  margin-top: 14px;
  font-size: 14px;
}

.playlist {
  padding: 26px 0;
  background: #f0f0f0;
}

.playlist strong {
  display: block;
  padding: 0 16px 12px;
  color: #111;
  font-family: "eurostile", sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.playlist a {
  display: block;
  padding: 12px 18px;
  color: #333;
  background: #d8dddd;
  border-top: 3px solid #f0f0f0;
  font-size: 13px;
}

.video-window {
  min-height: 330px;
  background:
    linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)),
    url("/images/locations/port-of-stockton.jpg") center/cover;
}

.faq-block {
  display: flex;
  justify-content: flex-end;
  width: min(1020px, calc(100% - 90px));
  margin: 96px auto;
}

.faq-block > div {
  width: min(560px, 100%);
  padding: 54px 42px;
  background: var(--charcoal);
}

.faq-block h2 {
  color: #fff;
  font-size: 42px;
}

.faq-block p {
  margin: 8px 0 22px;
  font-size: 15px;
}

.faq-block details {
  margin-top: 12px;
  background: #fff;
}

.faq-block summary {
  position: relative;
  cursor: pointer;
  padding: 17px 46px 17px 18px;
  color: #1b1b1b;
  font-family: "eurostile", sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: none;
}

.faq-block summary::after {
  position: absolute;
  right: 16px;
  top: 13px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  content: "+";
}

.faq-block details[open] summary::after {
  content: "-";
}

.faq-block details span {
  display: block;
  padding: 0 18px 18px;
  font-size: 14px;
}

.article-strip {
  display: grid;
  grid-template-columns: 270px repeat(3, 1fr);
  gap: 26px;
  width: min(1160px, calc(100% - 70px));
  margin: 0 auto 88px;
  padding: 50px 42px;
  background: #efefef;
}

.article-strip > div:first-child {
  padding: 24px;
  background: var(--charcoal);
}

.article-strip h2 {
  color: #fff;
  font-size: 36px;
}

.article-strip p {
  color: #fff;
  font-size: 24px;
}

.article-strip span,
.article-strip a span {
  display: block;
  margin-top: 11px;
  color: #777;
  font-size: 13px;
}

.article-strip a strong {
  display: block;
  min-height: 46px;
  color: #111;
  font-family: "eurostile", sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.article-strip em {
  display: block;
  margin-top: 14px;
  color: var(--green);
  font-family: "eurostile", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.listing {
  width: min(1160px, calc(100% - 70px));
  margin: 78px auto 100px;
}

.listing h2 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(34px, 4.4vw, 58px);
}

.listing > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tax-card {
  display: grid;
  min-height: 360px;
  background: #f0f0f0;
  border-bottom: 6px solid var(--green);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.tax-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.tax-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(0.9);
}

.tax-card strong {
  padding: 22px 22px 0;
  color: #111;
  font-family: "eurostile", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.tax-card span {
  padding: 12px 22px 0;
  color: #444;
  font-size: 14px;
}

.tax-card em {
  align-self: end;
  padding: 18px 22px 22px;
  color: var(--green);
  font-family: "eurostile", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 70px;
  width: min(1120px, calc(100% - 90px));
  margin: 86px auto;
}

.detail-page .hero-copy div {
  margin-bottom: 32px;
}

.detail--polished {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 360px);
}

.detail--polished article {
  padding: 14px 0 10px;
}

.detail--polished article h2 {
  max-width: 760px;
}

.detail--polished aside {
  position: sticky;
  top: 22px;
  max-height: calc(100vh - 44px);
  overflow: auto;
}

.detail.single {
  display: block;
  max-width: 860px;
}

.detail article h2 {
  margin: 10px 0 24px;
  font-size: clamp(38px, 5vw, 66px);
}

.detail article p {
  margin: 0 0 21px;
  font-size: 17px;
  line-height: 1.65;
}

.detail aside {
  align-self: start;
  padding: 42px 36px;
  background: var(--charcoal);
  color: #fff;
  border-top: 8px solid var(--green);
}

.detail aside h2 {
  color: #fff;
  font-size: 36px;
}

.detail aside p {
  color: #fff;
  font-size: 16px;
}

.side-phone {
  display: block;
  margin: 26px 0;
  color: var(--green-soft);
  font-family: "eurostile", sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.detail aside div {
  display: grid;
  gap: 0;
}

.detail aside div a {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "eurostile", sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: min(1120px, calc(100% - 80px));
  margin: 78px auto;
}

.about-story {
  width: min(980px, calc(100% - 80px));
  margin: 92px auto 46px;
  text-align: center;
}

.about-story span {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.shop-grid article {
  min-height: 280px;
  padding: 34px 30px;
  background: #f1f1f1;
  border-bottom: 7px solid var(--green);
}

.shop-grid h2 {
  font-size: 34px;
}

.contact-section {
  min-height: 920px;
  padding: 80px 0;
  text-align: center;
}

.contact-section h2 {
  color: var(--green-soft);
  font-size: 48px;
}

.contact-section > p {
  margin: 16px auto 46px;
  font-size: 20px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  width: min(1100px, calc(100% - 90px));
  margin: 0 auto;
  text-align: left;
}

.contact-intro {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 34px 30px;
  min-height: 100%;
  color: #fff;
  background: var(--charcoal);
  color: var(--green);
  font-family: "eurostile", sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.contact-intro strong,
.contact-intro a {
  color: #fff;
}

.contact-intro a {
  line-height: 1.15;
}

.contact-intro a[href^="mailto:"] {
  font-size: clamp(15px, 2.2vw, 18px);
  overflow-wrap: anywhere;
}

.contact-map {
  margin-top: 12px;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.16);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.contact-card a {
  overflow-wrap: anywhere;
}

.contact-card form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 34px 30px;
  background: #f3f3f3;
  border-top: 7px solid var(--green);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-card .field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-card .field > span {
  color: #1b1b1b;
  font-family: "eurostile", sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-card .field--full {
  grid-column: 1 / -1;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 0;
  color: var(--ink);
}

.contact-card select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #555 50%), linear-gradient(135deg, #555 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
  cursor: pointer;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: -1px;
  border-color: var(--green);
}

.contact-card textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-card button {
  grid-column: 1 / -1;
  width: fit-content;
  min-width: 138px;
}

.site-footer {
  padding: 0 0 42px;
  background: #0b0b0b;
  color: #fff;
}

.footer-line {
  height: 36px;
  margin-bottom: 0;
  background: var(--charcoal);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(0, 1fr));
  gap: 34px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 58px 0 36px;
}

.footer-brand {
  display: grid;
  gap: 20px;
  align-content: start;
}

.site-footer .brand-logo {
  color: #fff;
}

.site-footer .brand-logo strong,
.site-footer .brand-logo em {
  color: #fff;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: #d7d7d7;
  font-size: 14px;
  line-height: 1.6;
}

.footer-brand p a {
  color: var(--green-soft);
  font-family: "eurostile", sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.footer-map {
  width: min(360px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 170px;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

.footer-rule {
  width: min(1180px, calc(100% - 80px));
  height: 1px;
  margin: 0 auto 26px;
  background: rgba(255, 255, 255, 0.18);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: #fff;
  font-family: "eurostile", sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links a,
.footer-bottom a {
  color: #c9d6d2;
  font-family: "eurostile", sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--green-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 26px);
    padding: 14px 0;
  }

  .brand-logo strong {
    font-size: 24px;
  }

  .brand-logo em {
    display: none;
  }

  .mark {
    width: 26px;
    height: 26px;
  }

  .mark i {
    top: 9px;
    left: 11px;
    width: 4px;
    height: 10px;
    transform-origin: 2px 13px;
    transform: rotate(calc(var(--i) * 30deg)) translateY(-8px);
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* Slide-in drawer: full-height card from the right, above all content. */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: min(320px, 86vw);
    height: 100%;
    padding: 78px 24px 32px;
    background: #0a0a0a;
    box-shadow: -14px 0 40px rgba(0, 0, 0, 0.45);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(105%);
    transition: transform 260ms ease;
    font-size: 15px;
  }

  body.menu-open .main-nav {
    transform: translateX(0);
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    font-family: "eurostile", sans-serif;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
  }

  .main-nav > a,
  .nav-group > a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 4px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-group > a {
    border-bottom: 0;
  }

  .nav-group > a::after {
    margin-left: auto;
  }

  .nav-group div {
    position: static;
    display: grid;
    visibility: visible;
    opacity: 1;
    transform: none;
    min-width: auto;
    padding: 0 0 10px 14px;
    background: transparent;
  }

  .nav-group div a {
    min-height: 42px;
    padding: 9px 0;
    border-bottom: 0;
    font-weight: 700;
    opacity: 0.85;
  }

  .nav-drawer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 22px;
    color: #fff;
    background: var(--green);
    border-bottom: 0;
    font-family: "eurostile", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
  }

  .nav-drawer-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 12px;
    color: var(--green-soft);
    border-bottom: 0;
    font-family: "eurostile", sans-serif;
    font-size: 18px;
    font-weight: 900;
  }

  .hero {
    min-height: 390px;
  }

  .hero-copy {
    width: calc(100% - 28px);
    padding-top: 128px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero h1 {
    font-size: clamp(34px, 12vw, 54px);
  }

  .hero-copy span {
    font-size: 12px;
  }

  .hero-copy div {
    display: grid;
    width: fit-content;
    gap: 8px;
  }

  .btn {
    min-width: 122px;
    min-height: 36px;
    padding: 11px 16px;
    font-size: 11px;
  }

  .cta-strip {
    display: grid;
    gap: 12px;
    font-size: 17px;
    text-align: center;
  }

  .angle-section,
  .detail,
  .video-box,
  .article-strip,
  .shop-grid,
  .partner-panel,
  .partner-links,
  .locations-heading,
  .contact-card,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .angle-section {
    min-height: 520px;
    background: #111;
  }

  .angle-section::after {
    width: 100%;
    opacity: 0.24;
    clip-path: none;
  }

  .angle-copy {
    width: calc(100% - 42px);
    margin: 0 auto;
    color: #fff;
  }

  .angle-copy h2 {
    margin: 24px 0 64px;
    color: #fff;
    -webkit-text-stroke: 0;
    font-size: 31px;
  }

  .angle-art {
    width: calc(100% - 42px);
    margin-bottom: 34px;
  }

  .center-copy,
  .solution-panel > div,
  .video-box,
  .faq-block,
  .article-strip,
  .listing,
  .detail,
  .shop-grid,
  .partner-panel,
  .locations-showcase,
  .contact-card,
  .footer-shell,
  .footer-rule,
  .footer-bottom {
    width: calc(100% - 32px);
  }

  .solution-panel {
    min-height: auto;
    padding: 46px 0;
  }

  .solution-panel > div {
    padding: 34px 22px;
  }

  .mini-links,
  .listing > div,
  .locations-grid,
  .contact-card form,
  .contact-intro {
    grid-template-columns: 1fr;
  }

  .partner-panel {
    margin: 58px auto;
  }

  .partner-panel > div:first-child,
  .detail--polished aside {
    position: static;
    max-height: none;
  }

  .locations-heading {
    gap: 18px;
  }

  .locations-heading p {
    margin-bottom: 0;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-box {
    display: grid;
  }

  .video-window {
    min-height: 210px;
  }

  .faq-block {
    justify-content: center;
    margin: 58px auto;
  }

  .faq-block > div {
    padding: 34px 24px;
  }

  .article-strip {
    padding: 34px 24px;
    margin-bottom: 58px;
  }

  .detail {
    gap: 34px;
    margin: 58px auto;
  }

  .detail aside {
    padding: 32px 24px;
  }

  .contact-section {
    min-height: auto;
    padding: 58px 0;
  }

  .footer-contact {
    display: grid;
    gap: 18px;
  }

  .footer-shell {
    padding-top: 42px;
  }
}

/* Phone breakpoint: tighten layout, guarantee single-column stacking,
   readable body text, and comfortable tap targets at <=768px. */
@media (max-width: 768px) {
  .angle-section,
  .detail,
  .video-box,
  .article-strip,
  .shop-grid,
  .partner-panel,
  .partner-links,
  .mini-links,
  .listing > div,
  .locations-grid,
  .contact-card,
  .contact-card form,
  .contact-intro,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .contact-card form {
    gap: 18px;
  }

  body {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero h1 {
    font-size: clamp(30px, 11vw, 48px);
  }

  .center-copy span,
  .solution-panel p:not(:first-child),
  .detail article p,
  .tax-card span,
  .faq-block details span {
    font-size: 16px;
  }

  .detail article p {
    line-height: 1.7;
  }

  .main-nav > a,
  .nav-group > a,
  .footer-mini a,
  .site-footer nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .cta-strip {
    font-size: 16px;
  }

  .video-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-copy,
  .center-copy,
  .solution-panel > div,
  .contact-card,
  .faq-block > div,
  .article-strip,
  .detail,
  .listing,
  .shop-grid,
  .partner-panel,
  .locations-showcase,
  .about-story,
  .footer-shell,
  .footer-rule,
  .footer-bottom {
    width: calc(100% - 24px);
  }

  .contact-section h2 {
    font-size: 36px;
  }

  .footer-contact {
    gap: 14px;
  }

  .partner-links a,
  .contact-card form,
  .contact-intro {
    padding: 24px 20px;
  }

  .location-tile,
  .location-tile img {
    min-height: 190px;
  }
}

/* brand-img-logo */
.brand{display:flex;align-items:center}
.footer-brand{display:flex;flex-direction:column;align-items:flex-start}
.brand-img{height:46px;width:auto;display:block;max-width:320px}
.footer-brand .brand-img{height:50px;margin-bottom:14px}
@media (max-width:600px){.brand-img{height:38px;max-width:64vw}}
