@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-latin-400-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlow-condensed-latin-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlow-condensed-latin-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlow-condensed-latin-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlow-condensed-latin-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --night: #07111f;
  --deep: #0c2037;
  --cobalt: #3567c8;
  --cyan: #35b8e6;
  --ice: #eaf7ff;
  --steel: #9fb4c6;
  --white: #ffffff;
  --ink: #101b27;
  --muted: #586978;
  --line: rgba(10, 34, 57, 0.16);
  --dark-line: rgba(255, 255, 255, 0.14);
  --alert: #ff6b4a;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", sans-serif;
  --shell: min(90vw, 1320px);
  --section: clamp(84px, 10vw, 150px);
  --clip: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--night); background: var(--cyan); }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 200;
  padding: 12px 18px;
  color: var(--night);
  background: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { top: 18px; }

.thermal-line {
  position: fixed;
  inset: 0 0 auto;
  z-index: 150;
  height: 3px;
  background: rgba(255,255,255,.12);
}
.thermal-line span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cobalt), var(--cyan), var(--white));
  box-shadow: 0 0 16px rgba(53,184,230,.8);
}

.utility-bar {
  color: rgba(255,255,255,.68);
  background: #030913;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.utility-inner p { margin: 0; }
.utility-inner a { color: var(--white); text-decoration: none; }
.utility-inner strong { color: var(--cyan); margin-left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(7,17,31,.94);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(3,9,19,.98); box-shadow: 0 12px 40px rgba(0,0,0,.22); }
.header-inner { position: relative; min-height: 84px; display: flex; align-items: center; gap: clamp(18px, 2.6vw, 44px); }
.brand { width: clamp(210px, 18vw, 260px); flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-self: stretch; align-items: center; gap: clamp(16px, 1.7vw, 28px); margin-left: auto; }
.nav-item { align-self: stretch; display: flex; align-items: center; }
.nav-trigger, .nav-direct {
  position: relative;
  color: rgba(255,255,255,.76);
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease;
}
.nav-trigger span { width: 16px; height: 18px; display: inline-grid; place-items: center; margin-left: 6px; color: var(--cyan); background: rgba(53,184,230,.12); clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%); font-size: 12px; line-height: 1; transition: color .2s ease, background .2s ease, transform .2s ease; }
.nav-trigger:hover span, .nav-trigger:focus-visible span, .nav-item.is-open .nav-trigger span { color: var(--night); background: var(--cyan); }
.nav-item:hover .nav-trigger span, .nav-item.is-open .nav-trigger span { transform: rotate(180deg); }
.nav-trigger::after, .nav-direct::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--cyan);
  transition: right .2s ease;
}
.nav-trigger:hover, .nav-trigger:focus-visible, .nav-direct:hover, .nav-direct:focus-visible, .nav-item.is-open .nav-trigger { color: var(--white); }
.nav-trigger:hover::after, .nav-trigger:focus-visible::after, .nav-direct:hover::after, .nav-direct:focus-visible::after, .nav-item.is-open .nav-trigger::after { right: 0; }
.mega { position: absolute; top: calc(100% - 1px); left: 50%; z-index: 110; width: min(960px, 94vw); padding: 16px; color: var(--white); background-color: #06101d; background-image: linear-gradient(rgba(6,16,29,.92), rgba(6,16,29,.92)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='58' height='50' viewBox='0 0 58 50'%3E%3Cpath d='M15 1h28l14 24-14 24H15L1 25Z' fill='none' stroke='%2335b8e6' stroke-opacity='.18'/%3E%3C/svg%3E"); border: 1px solid rgba(53,184,230,.25); border-top: 4px solid var(--cyan); box-shadow: 0 32px 80px rgba(0,0,0,.48); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, 14px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.mega::before { content: ''; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.nav-item:hover .mega, .nav-item.is-open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.mega-col { position: relative; min-width: 0; padding: 20px; overflow: hidden; background: rgba(4,12,23,.9); border: 1px solid rgba(255,255,255,.1); clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); }
.mega-col::after { content: ''; position: absolute; top: 12px; right: 12px; width: 14px; height: 16px; background: rgba(53,184,230,.16); clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%); }
.mega-col > p { margin: 0 0 12px; color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.mega-link { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 11px; align-items: start; padding: 14px 0; color: rgba(255,255,255,.82); border-top: 1px solid rgba(255,255,255,.09); text-decoration: none; }
.mega-link:first-of-type { border-top: 0; }
.mega-link-mark { position: relative; width: 26px; height: 30px; display: grid; place-items: center; margin-top: -1px; color: var(--cyan); background: rgba(53,184,230,.48); clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%); font-family: var(--display); font-size: 11px; line-height: 1; }
.mega-link-mark::before { content: ''; position: absolute; inset: 1px; background: #071522; clip-path: inherit; }
.mega-link-mark i { position: relative; z-index: 1; display: block; font-style: normal; }
.mega-link:hover .mega-link-mark, .mega-link:focus-visible .mega-link-mark { color: var(--night); background: var(--cyan); }
.mega-link:hover .mega-link-mark::before, .mega-link:focus-visible .mega-link-mark::before { background: var(--cyan); }
.mega-link strong { display: block; font-family: var(--display); font-size: 21px; font-weight: 600; line-height: 1; text-transform: uppercase; transition: color .2s; }
.mega-link small { display: block; margin-top: 6px; color: rgba(255,255,255,.42); font-size: 9px; line-height: 1.45; letter-spacing: .03em; }
.mega-link:hover strong, .mega-link:focus-visible strong { color: var(--cyan); }
.mega-all { display: flex; justify-content: space-between; gap: 20px; margin-top: 12px; padding: 13px 18px; color: var(--night); background: var(--cyan); font-family: var(--display); font-size: 18px; font-weight: 700; line-height: 1; text-decoration: none; text-transform: uppercase; }
.mega-all span { font-family: var(--body); }
.mega-industries { width: min(900px, 94vw); }
.mega-start h3 { margin: 30px 0; font-family: var(--display); font-size: 30px; line-height: .95; text-transform: uppercase; }
.mega-start > a { display: block; padding: 11px 0; color: rgba(255,255,255,.72); border-top: 1px solid rgba(255,255,255,.09); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.mega-start > a:hover { color: var(--cyan); }
.mega-areas { width: min(1020px, 94vw); }
.header-call {
  min-width: 130px;
  padding: 12px 18px;
  color: var(--night);
  background: var(--cyan);
  clip-path: var(--clip);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .03em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.header-call span { display: block; margin-bottom: 5px; font-family: var(--body); font-size: 8px; letter-spacing: .13em; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--dark-line); color: white; background: transparent; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 6px auto; background: currentColor; transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: min(850px, calc(100vh - 118px));
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}
.hero-media, .hero-wash, .hero-grid { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.65) contrast(1.1); transform: scale(1.035); }
.hero-wash { background: linear-gradient(90deg, rgba(3,9,19,.98) 0%, rgba(7,17,31,.91) 42%, rgba(7,17,31,.42) 72%, rgba(7,17,31,.2) 100%), linear-gradient(0deg, rgba(7,17,31,.72), transparent 48%); }
.hero-grid {
  opacity: .18;
  background-image: linear-gradient(rgba(53,184,230,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(53,184,230,.17) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 34%;
  height: 1px;
  opacity: .5;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 28px var(--cyan);
  animation: thermal-scan 8s ease-in-out infinite;
}
@keyframes thermal-scan { 0%,100% { transform: translateY(-180px); opacity: 0; } 15%,75% { opacity: .45; } 50% { transform: translateY(280px); } }
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(min(850px, 100vh - 118px) - 70px);
  padding-block: clamp(80px, 10vh, 130px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: clamp(60px, 8vw, 140px);
}
.hero-copy { max-width: 800px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 1px; background: currentColor; box-shadow: 0 0 8px currentColor; }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(70px, 8.2vw, 132px);
  font-weight: 700;
  line-height: .83;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.hero h1 em { display: block; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.78); font-style: normal; }
.hero-lead { max-width: 720px; margin: 34px 0 0; color: rgba(255,255,255,.72); font-size: clamp(16px, 1.4vw, 19px); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: stretch; gap: 14px; margin-top: 38px; }
.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 24px;
  border: 0;
  clip-path: var(--clip);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--night); background: var(--cyan); }
.button-primary:hover { background: var(--ice); }
.button-primary strong { font-family: var(--display); font-size: 18px; letter-spacing: .03em; }
.button-ghost { color: var(--white); background: rgba(255,255,255,.07); outline: 1px solid rgba(255,255,255,.26); outline-offset: -1px; }
.button-ghost:hover { background: rgba(255,255,255,.14); }
.system-panel {
  align-self: end;
  margin-bottom: 24px;
  padding: 26px;
  background: rgba(7,17,31,.78);
  border: 1px solid rgba(53,184,230,.36);
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  backdrop-filter: blur(14px);
}
.panel-status { padding-bottom: 18px; color: var(--cyan); border-bottom: 1px solid var(--dark-line); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.panel-status span, .status-dot { width: 7px; height: 7px; display: inline-block; margin-right: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.system-panel dl { margin: 0; }
.system-panel dl div { display: flex; justify-content: space-between; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--dark-line); }
.system-panel dt { color: rgba(255,255,255,.46); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.system-panel dd { margin: 0; font-family: var(--display); font-size: 17px; font-weight: 700; text-align: right; text-transform: uppercase; }
.system-panel > a { display: flex; justify-content: space-between; margin-top: 20px; color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.system-panel > a span { color: var(--cyan); }
.hero-counties { position: relative; z-index: 3; min-height: 70px; display: flex; align-items: center; background: rgba(3,9,19,.88); border-top: 1px solid var(--dark-line); }
.county-ticker { display: flex; align-items: center; justify-content: space-between; gap: 22px; color: rgba(255,255,255,.74); font-family: var(--display); font-size: clamp(14px, 1.5vw, 19px); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.county-ticker i { width: 5px; height: 5px; transform: rotate(45deg); background: var(--cyan); }

.section-light { background: #f8fbfd; }
.section-dark { color: var(--white); background: var(--night); }
.section-ice { background: var(--ice); }
.section-marker {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-marker span { display: grid; width: 32px; height: 32px; place-items: center; color: var(--deep); border: 1px solid var(--line); font-family: var(--display); font-size: 15px; }
.section-marker-light { color: rgba(255,255,255,.5); }
.section-marker-light span { color: var(--cyan); border-color: var(--dark-line); }
.kicker { margin: 0 0 14px; color: var(--cobalt); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.kicker-blue { color: var(--cyan); }
h2 { margin: 0; font-family: var(--display); font-size: clamp(52px, 6vw, 92px); font-weight: 700; line-height: .94; letter-spacing: -.025em; text-transform: uppercase; }

.stakes { padding-block: var(--section); }
.stakes-grid { display: grid; grid-template-columns: 180px minmax(0, 1.2fr) minmax(280px, .7fr); gap: clamp(36px, 6vw, 90px); align-items: start; }
.stakes-copy h2 { max-width: 760px; }
.stakes-detail { padding-top: 32px; border-top: 1px solid var(--line); }
.stakes-detail p { margin: 0 0 30px; color: var(--muted); font-size: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 22px; color: var(--deep); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.text-link span { color: var(--cobalt); font-size: 18px; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-3px); }

.services { padding-block: var(--section); background-image: radial-gradient(circle at 85% 20%, rgba(53,103,200,.16), transparent 28%); }
.section-heading { display: grid; grid-template-columns: 250px minmax(0, 860px); gap: 30px; align-items: start; margin-bottom: clamp(54px, 7vw, 90px); }
.service-stage { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(380px, .8fr); gap: clamp(40px, 7vw, 100px); align-items: start; }
.service-index { border-top: 1px solid var(--dark-line); }
.service-item {
  display: grid;
  grid-template-columns: 58px minmax(180px, 1fr) minmax(190px, .7fr) 32px;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 18px 10px 18px 0;
  color: rgba(255,255,255,.5);
  border-bottom: 1px solid var(--dark-line);
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease, background .2s ease;
}
.service-item:hover, .service-item:focus-visible, .service-item.is-active { padding-left: 14px; color: var(--white); background: linear-gradient(90deg, rgba(53,184,230,.1), transparent); }
.service-number { color: var(--cyan); font-family: var(--display); font-size: 15px; }
.service-name { font-family: var(--display); font-size: clamp(28px, 3vw, 46px); font-weight: 600; line-height: .95; text-transform: uppercase; }
.service-note { color: inherit; font-size: 11px; font-weight: 700; letter-spacing: .05em; line-height: 1.4; text-transform: uppercase; }
.service-arrow { color: var(--cyan); font-size: 20px; }
.service-visual { position: sticky; top: 124px; margin: 0; overflow: hidden; background: var(--deep); clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px); }
.service-visual::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 55%, rgba(3,9,19,.92)); }
.service-visual img { width: 100%; aspect-ratio: .88; object-fit: cover; filter: saturate(.7) contrast(1.05); transition: opacity .2s ease, transform .5s ease; }
.service-visual img.is-switching { opacity: .2; transform: scale(1.035); }
.service-visual figcaption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; display: flex; align-items: center; color: white; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.wine-country { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 820px; color: var(--white); background: var(--deep); }
.wine-image { position: relative; min-height: 620px; overflow: hidden; }
.wine-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(12,32,55,.75)); }
.wine-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.04); }
.image-coordinate { position: absolute; z-index: 2; left: clamp(24px, 5vw, 70px); bottom: 40px; padding-left: 16px; color: rgba(255,255,255,.8); border-left: 2px solid var(--cyan); font-family: var(--display); font-size: 14px; letter-spacing: .08em; line-height: 1.4; }
.wine-copy { padding: clamp(70px, 8vw, 130px); display: flex; flex-direction: column; justify-content: center; }
.wine-copy .section-marker { margin-bottom: 74px; }
.wine-copy h2 { max-width: 650px; margin-bottom: 30px; }
.wine-copy > p:not(.kicker) { max-width: 660px; margin: 0; color: rgba(255,255,255,.68); font-size: 17px; }
.technical-list { margin: 40px 0; padding: 0; border-top: 1px solid var(--dark-line); list-style: none; }
.technical-list li { display: flex; align-items: center; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--dark-line); font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.technical-list li span { color: var(--cyan); font-size: 12px; }
.wine-copy .button { align-self: flex-start; }

.maintenance { padding-block: var(--section); }
.maintenance-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(460px, 1.15fr); gap: clamp(70px, 10vw, 160px); align-items: center; }
.maintenance-title .section-marker { margin-bottom: 70px; }
.maintenance-title h2 { margin-bottom: 28px; }
.maintenance-title > p:last-child { max-width: 590px; margin: 0; color: var(--muted); font-size: 17px; }
.maintenance-board { padding: clamp(28px, 4vw, 52px); background: var(--white); border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(12,32,55,.08); clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px); }
.board-head { display: flex; justify-content: space-between; padding-bottom: 17px; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.maintenance-board ul { margin: 0 0 30px; padding: 0; list-style: none; }
.maintenance-board li { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 14px; min-height: 72px; border-bottom: 1px solid var(--line); }
.maintenance-board strong { font-family: var(--display); font-size: 21px; text-transform: uppercase; }
.maintenance-board small { color: var(--muted); font-size: 11px; }
.check { position: relative; width: 20px; height: 20px; border: 1px solid var(--cyan); }
.check::after { content: ""; position: absolute; left: 5px; top: 2px; width: 6px; height: 11px; border: solid var(--cobalt); border-width: 0 2px 2px 0; transform: rotate(45deg); }

.service-area { padding-block: var(--section); overflow: hidden; }
.area-intro { display: grid; grid-template-columns: 190px minmax(0, 1.2fr) minmax(260px, .55fr); gap: clamp(30px, 5vw, 80px); align-items: start; }
.area-intro > p { margin: 24px 0 0; color: var(--muted); }
.route-line { display: grid; grid-template-columns: 10px 1fr 10px 1fr 10px 1fr 10px; align-items: center; margin: 90px 0 24px; }
.route-line span { width: 10px; height: 10px; transform: rotate(45deg); background: var(--cobalt); box-shadow: 0 0 0 7px rgba(53,103,200,.1); }
.route-line i { height: 1px; background: linear-gradient(90deg, var(--cobalt), var(--cyan)); }
.area-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.area-item { min-height: 190px; padding: 32px; border-right: 1px solid var(--line); text-decoration: none; transition: color .2s, background .2s; }
.area-item:hover { color: var(--white); background: var(--deep); }
.area-item:last-child { border-right: 0; }
.area-item > span { color: var(--cobalt); font-family: var(--display); font-size: 13px; }
.area-item h3 { margin: 48px 0 4px; font-family: var(--display); font-size: 27px; line-height: 1; text-transform: uppercase; }
.area-item p { margin: 0; color: var(--muted); font-size: 12px; }

.about { padding-block: var(--section); background-image: radial-gradient(circle at 15% 50%, rgba(53,184,230,.13), transparent 30%); }
.about { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr); gap: clamp(55px, 8vw, 120px); align-items: center; }
.about-badge { position: relative; width: 100%; max-width: 560px; aspect-ratio: 19 / 20; align-self: center; }
.about-badge::before { content: ""; position: absolute; inset: 9%; border: 1px solid rgba(53,184,230,.2); transform: rotate(30deg); }
.about-badge img { position: relative; width: 100%; height: 100%; aspect-ratio: 19 / 20; object-fit: contain; filter: drop-shadow(0 28px 55px rgba(0,0,0,.32)); }
.about-badge span { position: absolute; right: -14px; bottom: 12%; padding: 10px 18px; color: var(--night); background: var(--cyan); clip-path: var(--clip); font-family: var(--display); font-size: 24px; font-weight: 800; text-transform: uppercase; }
.about-copy .section-marker { margin-bottom: 70px; }
.about-copy h2 { max-width: 850px; margin-bottom: 32px; }
.about-copy > p:not(.kicker) { max-width: 760px; margin: 0 0 18px; color: rgba(255,255,255,.67); font-size: 17px; }
.text-link-light { margin-top: 22px; color: var(--white); }
.text-link-light span { color: var(--cyan); }

.faq { padding-block: var(--section); }
.faq-grid { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: clamp(70px, 10vw, 160px); align-items: start; }
.faq-title .section-marker { margin-bottom: 70px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 30px; cursor: pointer; font-family: var(--display); font-size: clamp(23px, 2.3vw, 34px); font-weight: 600; line-height: 1; list-style: none; text-transform: uppercase; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--cobalt); font-family: var(--body); font-size: 25px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 730px; margin: -8px 0 28px; color: var(--muted); }

.contact { padding-block: var(--section); color: var(--white); background: var(--deep); border-top: 1px solid var(--dark-line); }
.contact-grid { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(520px, 1.25fr); gap: clamp(70px, 10vw, 150px); align-items: start; }
.contact-copy .section-marker { margin-bottom: 70px; }
.contact-copy h2 { margin-bottom: 28px; }
.contact-copy > p:not(.kicker) { color: rgba(255,255,255,.67); }
.contact-phone { display: block; margin-top: 44px; color: var(--cyan); font-family: var(--display); font-size: clamp(36px, 4vw, 60px); font-weight: 700; line-height: 1; text-decoration: none; }
.contact-phone small { display: block; margin-bottom: 10px; color: rgba(255,255,255,.48); font-family: var(--body); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.service-form { padding: clamp(28px, 4vw, 52px); background: rgba(3,9,19,.45); border: 1px solid var(--dark-line); clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px); }
.honeypot { position: absolute; left: -9999px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.service-form label { display: block; margin-bottom: 24px; }
.service-form label > span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.54); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-form input, .service-form select, .service-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.26); border-radius: 0; color: var(--white); background: transparent; outline: none; }
.service-form input, .service-form select { height: 48px; }
.service-form textarea { padding-block: 14px; resize: vertical; }
.service-form select { color-scheme: dark; }
.service-form input:focus, .service-form select:focus, .service-form textarea:focus { border-color: var(--cyan); box-shadow: 0 1px 0 var(--cyan); }
.service-form textarea::placeholder { color: rgba(255,255,255,.3); }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 28px; }
.form-foot p { max-width: 350px; margin: 0; color: rgba(255,255,255,.44); font-size: 10px; }
.form-foot p a { color: var(--cyan); }

.site-footer { padding: 54px 0 28px; color: var(--white); background: #030913; }
.footer-main { display: grid; grid-template-columns: 300px 1fr 1fr auto; gap: 50px; align-items: center; padding-bottom: 40px; border-bottom: 1px solid var(--dark-line); }
.footer-main img { width: 270px; }
.footer-main div { display: flex; flex-direction: column; }
.footer-main div span { color: rgba(255,255,255,.4); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.footer-main div strong, .footer-main div a { margin-top: 5px; font-family: var(--display); font-size: 19px; font-weight: 600; text-decoration: none; text-transform: uppercase; }
.footer-top { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; color: rgba(255,255,255,.68); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom .footer-credit { text-transform: none; }
.footer-credit a { color: var(--cyan); font-weight: 700; text-decoration: none; }
.footer-credit a:hover { color: var(--white); }
.mobile-call-bar { display: none; }

.confirmation-page {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) 4.5vw;
  color: var(--white);
  background: var(--night);
}
.confirmation-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(53,184,230,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(53,184,230,.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}
.confirmation-card {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  padding: clamp(34px, 7vw, 84px);
  background: rgba(12,32,55,.94);
  border: 1px solid rgba(53,184,230,.35);
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
}
.confirmation-card > a img { width: min(100%, 320px); margin-bottom: 60px; }
.confirmation-card h1 { margin: 0; font-family: var(--display); font-size: clamp(56px, 9vw, 102px); font-weight: 700; line-height: .86; letter-spacing: -.03em; text-transform: uppercase; }
.confirmation-card > p:not(.eyebrow) { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.68); font-size: 17px; }

/* Service, area and FAQ pages */
.inner-hero { position: relative; min-height: 720px; overflow: hidden; display: flex; align-items: flex-end; padding: 110px 0 88px; color: var(--white); background: var(--night); }
.inner-hero-media, .inner-hero-wash { position: absolute; inset: 0; width: 100%; height: 100%; }
.inner-hero-media { object-fit: cover; filter: saturate(.58) contrast(1.12); }
.inner-hero-wash { background: linear-gradient(90deg, rgba(3,9,19,.98) 0%, rgba(7,17,31,.9) 48%, rgba(7,17,31,.34) 100%), linear-gradient(0deg, rgba(7,17,31,.84), transparent 55%); }
.inner-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(60px, 9vw, 140px); align-items: end; }
.inner-hero h1 { max-width: 950px; margin: 0; font-family: var(--display); font-size: clamp(64px, 7.7vw, 118px); font-weight: 700; line-height: .86; letter-spacing: -.035em; text-transform: uppercase; }
.inner-lead { max-width: 760px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: clamp(16px, 1.4vw, 19px); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 44px; color: rgba(255,255,255,.48); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs b { color: var(--cyan); font-weight: 800; }
.inner-spec { padding: 28px; background: rgba(3,9,19,.78); border: 1px solid rgba(53,184,230,.28); backdrop-filter: blur(16px); clip-path: var(--clip); }
.inner-spec > span { color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.inner-spec > strong { display: block; margin: 18px 0 30px; font-family: var(--display); font-size: 34px; line-height: .94; text-transform: uppercase; }
.inner-spec dl { margin: 0; }
.inner-spec dl div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-top: 1px solid var(--dark-line); }
.inner-spec dt { color: rgba(255,255,255,.38); font-size: 9px; text-transform: uppercase; }
.inner-spec dd { margin: 0; font-family: var(--display); font-size: 18px; text-transform: uppercase; }
.inner-section { padding-block: var(--section); }
.content-split { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(420px, 1.2fr); gap: clamp(60px, 10vw, 160px); align-items: start; }
.content-split h2, .inner-heading h2 { max-width: 820px; }
.page-summary { margin: 28px 0 0; padding-top: 28px; color: var(--muted); border-top: 1px solid var(--line); font-size: clamp(18px, 2vw, 24px); line-height: 1.7; }
.section-dark .page-summary, .inner-copy { color: rgba(255,255,255,.68); }
.inner-copy { max-width: 680px; font-size: 17px; }
.inner-scope, .place-list { margin: 0; padding: 0; border-top: 1px solid var(--dark-line); list-style: none; }
.inner-scope li, .place-list li { display: flex; align-items: center; gap: 22px; min-height: 72px; border-bottom: 1px solid var(--dark-line); font-family: var(--display); font-size: clamp(22px, 2.5vw, 34px); font-weight: 600; line-height: 1; text-transform: uppercase; }
.inner-scope li span, .place-list li span { color: var(--cyan); font-size: 12px; }
.local-market-section { overflow: hidden; }
.market-map-heading { display: grid; grid-template-columns: minmax(340px, .9fr) minmax(440px, 1.1fr); gap: clamp(60px, 10vw, 150px); align-items: end; margin-bottom: 78px; }
.market-map-heading h2 { max-width: 820px; }
.market-map-intro { max-width: 720px; margin: 0 0 8px; padding-top: 26px; color: var(--muted); border-top: 1px solid var(--line); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.7; }
.market-map { position: relative; border-top: 1px solid var(--line); }
.market-map::before { content: ''; position: absolute; top: 0; bottom: 0; left: 39px; width: 1px; background: linear-gradient(var(--cobalt), var(--cyan) 50%, rgba(53,103,200,.14)); }
.market-stop { position: relative; display: grid; grid-template-columns: 80px minmax(0, 1fr); gap: clamp(26px, 4vw, 62px); min-height: 210px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.market-stop-number { position: relative; z-index: 1; width: 52px; height: 52px; display: grid; place-items: center; margin: 2px 0 0 14px; color: var(--white); background: var(--deep); border: 1px solid var(--cobalt); box-shadow: 0 0 0 9px var(--ice); font-family: var(--display); font-size: 15px; transform: rotate(45deg); }
.market-stop-number { line-height: 1; }
.market-stop-number span { display: block; transform: rotate(-45deg); }
.market-stop > div:last-child { display: grid; grid-template-columns: minmax(230px, .72fr) minmax(360px, 1.28fr); column-gap: clamp(44px, 8vw, 130px); align-items: start; }
.market-stop p { grid-column: 1 / -1; margin: 0 0 12px; color: var(--cobalt); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.market-stop h3 { margin: 0; font-family: var(--display); font-size: clamp(34px, 4vw, 58px); line-height: .92; letter-spacing: -.02em; text-transform: uppercase; }
.market-stop-detail { max-width: 720px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.inner-heading { display: grid; grid-template-columns: 190px minmax(0, 800px); gap: 50px; align-items: start; margin-bottom: 70px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid article { min-height: 240px; padding: 30px; border-right: 1px solid var(--line); }
.process-grid article:last-child { border-right: 0; }
.process-grid article span { color: var(--cobalt); font-family: var(--display); }
.process-grid article h3 { margin: 80px 0 0; font-family: var(--display); font-size: clamp(23px, 2.4vw, 34px); line-height: .98; text-transform: uppercase; }
.link-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.link-grid a { min-height: 160px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; transition: color .2s, background .2s; }
.link-grid a:hover { color: var(--white); background: var(--deep); }
.link-grid a span { font-family: var(--display); font-size: 28px; line-height: .95; text-transform: uppercase; }
.link-grid a small { color: var(--cobalt); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-link-grid { grid-template-columns: repeat(4, 1fr); }
.industry-home-grid a { color: var(--white); border-color: var(--dark-line); }
.industry-home-grid { border-color: var(--dark-line); }
.industry-home-grid a:hover { color: var(--night); background: var(--cyan); }
.industry-home-grid a small { color: var(--cyan); }
.industry-home-grid a:hover small { color: var(--night); }
.inner-cta { padding-block: var(--section); color: var(--white); background: var(--deep); }
.inner-cta h2 { max-width: 950px; }
.inner-cta > .shell > p:not(.kicker) { max-width: 750px; color: rgba(255,255,255,.68); font-size: 17px; }
.hub-hero { min-height: 610px; }
.hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.hub-card { min-height: 340px; display: flex; flex-direction: column; padding: clamp(28px, 4vw, 52px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; transition: color .2s, background .2s; }
.hub-card:hover { color: var(--white); background: var(--deep); }
.hub-card > span { color: var(--cobalt); font-family: var(--display); }
.hub-card h2 { margin-top: 55px; font-size: clamp(38px, 4vw, 62px); }
.hub-card p { max-width: 620px; color: var(--muted); }
.hub-card strong { margin-top: auto; color: var(--cobalt); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

/* Hot-tub installation cornerstone */
.hot-tub-service-hero .inner-hero-media { object-position: center; }
.hot-tub-service-hero .inner-spec > strong { font-size: 31px; }
.service-proof-strip { color: #fff; background: #0b1b2e; border-block: 1px solid rgba(255,255,255,.1); }
.service-proof-strip .shell { display: grid; grid-template-columns: .8fr 1.25fr 1fr; }
.service-proof-strip .shell > div { min-height: 112px; display: flex; flex-direction: column; justify-content: center; padding: 24px 30px; border-right: 1px solid rgba(255,255,255,.1); }
.service-proof-strip .shell > div:last-child { border-right: 0; }
.service-proof-strip small { margin-bottom: 10px; color: var(--cyan); font-size: 8px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.service-proof-strip strong { font-family: var(--display); font-size: 22px; line-height: 1.05; text-transform: uppercase; }
.hot-tub-scope li { font-size: clamp(20px, 2.2vw, 31px); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fit-grid article { min-height: 460px; display: flex; flex-direction: column; padding: clamp(30px, 4vw, 52px); border: 1px solid var(--line); }
.fit-grid article > span { color: var(--cobalt); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.fit-grid h3 { max-width: 600px; margin: 90px 0 34px; font-family: var(--display); font-size: clamp(36px, 4vw, 58px); line-height: .92; text-transform: uppercase; }
.fit-grid ul { margin: auto 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.fit-grid li { padding: 14px 0 14px 24px; color: var(--muted); border-bottom: 1px solid var(--line); line-height: 1.55; }
.fit-grid li::before { content: '＋'; float: left; margin-left: -24px; color: var(--cobalt); }
.fit-review { background: #fff; }
.fit-positive { color: #fff; background: var(--deep); border-color: var(--dark-line) !important; }
.fit-positive article { border-color: var(--dark-line); }
.fit-positive > span, .fit-positive li::before { color: var(--cyan); }
.fit-positive ul, .fit-positive li { border-color: var(--dark-line); }
.fit-positive li { color: rgba(255,255,255,.68); }
.decision-section { border-top: 1px solid var(--line); }
.decision-table-wrap { margin-top: 64px; overflow-x: auto; border: 1px solid var(--line); }
.decision-table { width: 100%; min-width: 760px; border-collapse: collapse; background: #fff; }
.decision-table th, .decision-table td { padding: 24px; border-bottom: 1px solid var(--line); vertical-align: top; text-align: left; }
.decision-table thead th { color: var(--muted); background: #f7fafc; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.decision-table tbody th { width: 24%; color: var(--deep); font-family: var(--display); font-size: 24px; line-height: 1; text-transform: uppercase; }
.decision-table tbody td { color: var(--muted); font-size: 14px; line-height: 1.7; }
.decision-table tbody tr:last-child > * { border-bottom: 0; }
.service-process { border-top: 1px solid var(--line); }
.quote-brief { color: #fff; background: radial-gradient(circle at 78% 20%, rgba(53,184,230,.16), transparent 27%), var(--night); }
.quote-brief-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.quote-brief-grid > div p:not(.kicker) { max-width: 580px; color: rgba(255,255,255,.62); line-height: 1.75; }
.quote-brief ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--dark-line); }
.quote-brief li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 19px 0; border-bottom: 1px solid var(--dark-line); font-family: var(--display); font-size: clamp(20px, 2vw, 28px); line-height: 1; text-transform: uppercase; }
.quote-brief li span { color: var(--cyan); font: 800 10px/1 var(--body); letter-spacing: .12em; }
.hot-tub-service-cta { background: radial-gradient(circle at 86% 48%, rgba(53,184,230,.14), transparent 28%), var(--deep); }

/* Arctic product system */
.product-page { background: var(--night); }
.product-hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 78% 35%, rgba(0,187,255,.18), transparent 26%), linear-gradient(135deg, #06111f 0%, #0c2037 62%, #07111f 100%); }
.product-hero::before { position: absolute; z-index: 1; inset: 0; content: ''; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(90deg, #000, transparent 70%); }
.product-hero-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.product-hero-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,10,19,.96) 0%, rgba(4,13,24,.78) 42%, rgba(4,13,24,.16) 72%, rgba(4,13,24,.32) 100%), linear-gradient(0deg, rgba(5,14,25,.82), transparent 48%); }
.product-hero-grid { position: relative; z-index: 2; min-height: 760px; display: grid; grid-template-columns: 1.08fr .62fr; gap: clamp(48px, 7vw, 110px); align-items: center; padding-block: 92px 70px; }
.product-hero-copy h1 { max-width: 690px; margin: 22px 0 0; font-family: var(--display); font-size: clamp(76px, 8.2vw, 132px); font-weight: 700; line-height: .82; letter-spacing: -.045em; text-transform: uppercase; }
.product-lead { max-width: 670px; margin: 34px 0 0; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.75; }
.product-hero-visual { position: relative; align-self: end; margin: 0 0 30px; padding: 12px; background: rgba(7,17,31,.76); border: 1px solid rgba(255,255,255,.2); box-shadow: 0 42px 90px rgba(0,0,0,.42); backdrop-filter: blur(14px); }
.product-hero-visual img { display: block; width: 100%; height: auto; aspect-ratio: 4/3; object-fit: contain; background: #f4f6f8; }
.product-proof-label { display: block; padding: 9px 4px 13px; color: rgba(255,255,255,.62); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.product-hero-visual figcaption { display: flex; justify-content: space-between; gap: 20px; padding: 18px 4px 2px; font-family: var(--display); text-transform: uppercase; }
.product-hero-visual figcaption strong { color: #ff9f2f; font-size: 24px; }
.product-hero-visual figcaption span { align-self: center; color: rgba(255,255,255,.55); font-size: 14px; letter-spacing: .08em; }
.temperature-rail { position: absolute; z-index: 2; top: 50%; right: -26px; display: grid; gap: 8px; justify-items: center; transform: translateY(-50%); font-family: var(--body); font-size: 8px; font-weight: 700; letter-spacing: .16em; writing-mode: vertical-rl; }
.temperature-rail i { width: 3px; height: 150px; background: linear-gradient(#ff9f2f 0 48%, #00bbff 52% 100%); box-shadow: 0 0 20px rgba(0,187,255,.5); }
.product-facts { color: #fff; background: #0b1b2e; border-block: 1px solid rgba(255,255,255,.1); }
.product-facts .shell { display: grid; grid-template-columns: repeat(4, 1fr); }
.product-facts .shell > div { min-height: 118px; display: flex; flex-direction: column; justify-content: center; padding: 24px 30px; border-right: 1px solid rgba(255,255,255,.1); }
.product-facts .shell > div:last-child { border-right: 0; }
.product-facts small { margin-bottom: 10px; color: var(--cyan); font-size: 8px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.product-facts strong { font-family: var(--display); font-size: 22px; line-height: 1.05; text-transform: uppercase; }
.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 70px; background: var(--line); border: 1px solid var(--line); }
.mode-card { position: relative; min-height: 330px; padding: 48px; overflow: hidden; background: #fff; }
.mode-card::after { position: absolute; right: -50px; bottom: -90px; width: 260px; height: 260px; content: ''; border-radius: 50%; filter: blur(4px); opacity: .22; }
.mode-heat::after { background: #ff8f2b; }
.mode-cool::after { background: #00bbff; }
.mode-card > span { color: var(--cobalt); font: 700 10px/1 var(--body); letter-spacing: .15em; }
.mode-card h3 { max-width: 430px; margin: 110px 0 16px; font-family: var(--display); font-size: clamp(42px, 5vw, 72px); line-height: .9; text-transform: uppercase; }
.mode-card p { max-width: 480px; color: var(--muted); line-height: 1.7; }
.product-showcase { position: relative; padding-block: var(--section); overflow: hidden; color: #fff; background: radial-gradient(circle at 14% 16%, rgba(53,103,200,.26), transparent 26%), #07111f; }
.product-showcase::before { position: absolute; inset: 0; content: ''; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 70px 70px; }
.product-showcase-heading, .product-showcase-grid { position: relative; z-index: 1; }
.product-showcase-heading { display: grid; grid-template-columns: 1fr 440px; gap: 70px; align-items: end; }
.product-showcase-heading > p { margin: 0; color: rgba(255,255,255,.64); line-height: 1.75; }
.product-showcase-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; margin-top: 70px; }
.product-showcase figure { position: relative; margin: 0; padding: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); }
.product-showcase figure img { width: 100%; height: 100%; min-height: 430px; object-fit: contain; background: #fff; }
.product-showcase figcaption { position: absolute; left: 28px; right: 28px; bottom: 28px; padding: 18px 20px; color: #fff; background: rgba(7,17,31,.86); backdrop-filter: blur(10px); }
.product-showcase figcaption span { display: block; margin-bottom: 6px; color: var(--cyan); font-size: 8px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.product-showcase figcaption strong { font-family: var(--display); font-size: 25px; text-transform: uppercase; }
.product-feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 68px; border: 1px solid var(--dark-line); }
.product-feature-grid article { min-height: 420px; padding: 0 22px 30px; overflow: hidden; border-right: 1px solid var(--dark-line); }
.product-feature-grid article:last-child { border-right: 0; }
.product-feature-grid img { width: calc(100% + 44px); max-width: none; height: 180px; margin: 0 -22px 28px; object-fit: contain; background: #fff; }
.product-feature-grid span { display: block; color: var(--cyan); font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.product-feature-grid h3 { margin: 42px 0 18px; color: #fff; font-family: var(--display); font-size: 31px; line-height: .92; text-transform: uppercase; }
.product-feature-grid p { color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.65; }
.model-heading { display: grid; grid-template-columns: 1fr 430px; gap: 70px; align-items: end; }
.model-heading > p { color: var(--muted); line-height: 1.75; }
.model-table-wrap { margin-top: 66px; overflow-x: auto; border: 1px solid var(--line); background: #fff; }
.model-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.model-table th, .model-table td { padding: 22px 24px; border-bottom: 1px solid var(--line); text-align: left; }
.model-table thead th { color: var(--muted); background: #f7fafc; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.model-table tbody th { color: var(--deep); font-family: var(--display); font-size: 22px; text-transform: uppercase; }
.model-table tbody td { color: #44536a; font-size: 14px; }
.model-table tbody tr:last-child > * { border-bottom: 0; }
.source-note { margin-top: 20px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.source-note a { color: var(--cobalt); }
.rating-section { border-top: 1px solid var(--line); }
.rating-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 140px); align-items: start; }
.rating-grid > div:first-child > p:not(.kicker) { max-width: 600px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.rating-panel { color: #fff; background: var(--deep); border: 1px solid var(--dark-line); box-shadow: 0 30px 70px rgba(7,17,31,.13); }
.rating-panel-head { display: flex; justify-content: space-between; gap: 24px; padding: 24px 28px; border-bottom: 1px solid var(--dark-line); }
.rating-panel-head span { color: var(--cyan); font: 800 10px/1 var(--body); letter-spacing: .14em; }
.rating-panel-head strong { font-family: var(--display); font-size: 19px; text-transform: uppercase; }
.rating-panel table { width: 100%; border-collapse: collapse; }
.rating-panel th, .rating-panel td { padding: 18px 20px; border-bottom: 1px solid var(--dark-line); text-align: left; }
.rating-panel th { color: rgba(255,255,255,.46); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.rating-panel td { font-family: var(--display); font-size: 20px; }
.rating-panel > p { margin: 0; padding: 20px 28px; color: rgba(255,255,255,.52); font-size: 11px; line-height: 1.65; }
.installation-section { position: relative; overflow: hidden; color: #fff; background: var(--night); }
.installation-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.installation-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,12,22,.78), rgba(4,12,22,.52) 48%, rgba(4,12,22,.08) 78%), linear-gradient(0deg, rgba(4,12,22,.52), transparent 48%); }
.install-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.installation-section .install-grid { position: relative; z-index: 1; grid-template-columns: minmax(0, 720px); justify-content: start; }
.install-visual { position: relative; padding: 26px; background: rgba(234,247,255,.94); border: 1px solid rgba(255,255,255,.34); box-shadow: 0 40px 90px rgba(0,0,0,.34); backdrop-filter: blur(12px); }
.install-visual img { width: 100%; height: auto; mix-blend-mode: multiply; }
.install-visual > span { position: absolute; left: 24px; bottom: 20px; color: var(--cobalt); font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.installation-copy { padding: clamp(30px, 4vw, 58px); background: rgba(7,17,31,.78); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 40px 90px rgba(0,0,0,.3); backdrop-filter: blur(16px); }
.install-steps { margin: 54px 0 34px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.install-steps li { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.install-steps li > span { color: var(--cobalt); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.install-steps strong { display: block; color: var(--deep); font-family: var(--display); font-size: 24px; text-transform: uppercase; }
.install-steps p { margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.installation-section .install-steps { border-color: rgba(255,255,255,.18); }
.installation-section .install-steps li { border-color: rgba(255,255,255,.16); }
.installation-section .install-steps li > span { color: var(--cyan); }
.installation-section .install-steps strong { color: #fff; }
.installation-section .install-steps p { color: rgba(255,255,255,.62); }
.installation-section .text-link { color: var(--cyan); }
.product-faq { border-top: 1px solid var(--line); }
.product-cta { background: radial-gradient(circle at 85% 50%, rgba(255,159,47,.16), transparent 28%), var(--night); }
.product-hub-card { grid-column: span 2; background: linear-gradient(145deg, #fff 65%, #eefaff); }
.product-hub-hero .inner-hero-media { object-position: center; }

.legal-hero { min-height: 560px; }
.legal-hero .inner-hero-grid { grid-template-columns: 1fr; }
.legal-hero h1 { max-width: 1100px; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 820px); gap: clamp(60px, 10vw, 150px); align-items: start; }
.legal-nav { position: sticky; top: 120px; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.legal-nav a { padding: 13px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 18px; line-height: 1.05; text-decoration: none; text-transform: uppercase; }
.legal-nav a:hover { color: var(--cobalt); }
.legal-copy > section { padding: 0 0 58px; margin-bottom: 58px; border-bottom: 1px solid var(--line); scroll-margin-top: 120px; }
.legal-copy > section:last-child { margin-bottom: 0; border-bottom: 0; }
.legal-copy h2 { margin-bottom: 24px; font-size: clamp(38px, 4vw, 58px); }
.legal-copy h3 { margin: 34px 0 12px; font-family: var(--display); font-size: 26px; text-transform: uppercase; }
.legal-copy p, .legal-copy li { color: #435269; font-size: 16px; line-height: 1.8; }
.legal-copy ul { padding-left: 22px; }
.legal-copy li + li { margin-top: 10px; }
.legal-callout { padding: 24px 28px; color: var(--deep); background: var(--ice); border-left: 3px solid var(--cobalt); }
.legal-table { width: 100%; border-collapse: collapse; margin-top: 28px; }
.legal-table th, .legal-table td { padding: 18px 16px; vertical-align: top; border: 1px solid var(--line); text-align: left; }
.legal-table th { color: var(--deep); background: var(--ice); font-family: var(--display); font-size: 17px; text-transform: uppercase; }
.legal-table td { color: #435269; font-size: 14px; line-height: 1.65; }
.site-map-footer { padding-top: 72px; }
.footer-map { display: grid; grid-template-columns: 1.15fr .95fr .9fr .72fr 1.55fr; gap: clamp(24px, 3vw, 52px); padding-bottom: 52px; border-bottom: 1px solid var(--dark-line); }
.footer-map > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-area-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 24px; }
.footer-map h2 { margin: 0 0 12px; color: rgba(255,255,255,.68); font-family: var(--body); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.footer-map a { color: rgba(255,255,255,.72); font-family: var(--display); font-size: 18px; line-height: 1.15; text-decoration: none; text-transform: uppercase; }
.footer-map a:hover { color: var(--cyan); }
.footer-brand img { width: min(100%, 280px); height: auto; }
.footer-brand p { max-width: 290px; color: rgba(255,255,255,.7); font-size: 12px; }
.footer-brand .footer-phone { display: block; width: fit-content; margin-top: 18px; color: var(--cyan); font-size: 23px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 18px; }
.footer-map .footer-legal a { color: rgba(255,255,255,.46); font-family: var(--body); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-map .footer-legal a:hover { color: var(--cyan); }
.footer-brand > a { color: var(--cyan); font-size: 26px; }

/* Case balance: keep bold all-caps heroes and compact interface labels,
   while letting the site's reading surfaces use natural capitalization. */
main h2,
main .service-name,
main .technical-list li,
main .maintenance-board strong,
main .area-item h3,
main .faq-list summary,
main .inner-spec > strong,
main .inner-spec dd,
main .inner-scope li,
main .place-list li,
main .market-stop h3,
main .process-grid article h3,
main .link-grid a span,
main .service-proof-strip strong,
main .fit-grid h3,
main .decision-table tbody th,
main .quote-brief li,
main .mode-card h3,
main .product-showcase figcaption strong,
main .product-feature-grid h3,
main .rating-panel-head strong,
main .install-steps strong,
main .legal-nav a,
main .legal-copy h3,
.footer-main div strong,
.footer-main div a,
.footer-map a {
  text-transform: none;
}
.footer-map .footer-legal a { text-transform: uppercase; }

/* Keep hero headlines authoritative while making body-section headings calmer. */
main h2,
main h3,
main .faq-list summary {
  font-weight: 500;
}

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1160px) {
  .desktop-nav { display: none; }
  .header-call { margin-left: auto; }
  .menu-toggle { display: block; }
  .mobile-nav { display: block; max-height: 0; overflow: hidden; background: var(--night); transition: max-height .3s ease; }
  .mobile-nav.is-open { max-height: calc(100vh - 120px); overflow-y: auto; border-top: 1px solid var(--dark-line); }
  .mobile-nav > a, .mobile-nav > details { width: var(--shell); margin: 0 auto; border-bottom: 1px solid var(--dark-line); }
  .mobile-nav > a, .mobile-nav summary { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; color: rgba(255,255,255,.82); font-family: var(--display); font-size: 23px; font-weight: 600; line-height: 1; text-decoration: none; text-transform: uppercase; cursor: pointer; list-style: none; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav summary span { color: var(--cyan); transition: transform .2s; }
  .mobile-nav details[open] summary span { transform: rotate(45deg); }
  .mobile-subnav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 4px 0 18px; }
  .mobile-subnav a { padding: 10px 14px 10px 0; color: rgba(255,255,255,.56); border-top: 1px solid rgba(255,255,255,.07); font-family: var(--display); font-size: 17px; line-height: 1.1; text-decoration: none; text-transform: uppercase; }
  .mobile-subnav a:hover { color: var(--cyan); }
  .mobile-nav .mobile-nav-call { color: var(--cyan); border-bottom: 0; }
  .hero-inner { grid-template-columns: 1fr 290px; gap: 40px; }
  .system-panel { padding: 22px; }
  .service-stage { grid-template-columns: 1fr 360px; gap: 42px; }
  .service-item { grid-template-columns: 45px 1fr 32px; }
  .service-note { display: none; }
  .wine-copy { padding: 70px 60px; }
  .contact-grid { grid-template-columns: .8fr 1.2fr; gap: 60px; }
  .product-hero-grid { grid-template-columns: .9fr 1.1fr; gap: 42px; }
  .product-feature-grid { grid-template-columns: repeat(3, 1fr); }
  .product-feature-grid article { border-bottom: 1px solid var(--dark-line); }
  .product-showcase-heading { grid-template-columns: 1fr 380px; }
  .rating-grid { grid-template-columns: .72fr 1.28fr; gap: 58px; }
}

@media (max-width: 900px) {
  :root { --shell: min(91vw, 760px); --section: 90px; }
  .utility-inner p { display: none; }
  .utility-inner { justify-content: center; }
  .header-inner { min-height: 76px; }
  .brand { width: 220px; }
  .header-call { display: none; }
  .hero { min-height: auto; }
  .hero-wash { background: linear-gradient(90deg, rgba(3,9,19,.98), rgba(7,17,31,.72)), linear-gradient(0deg, rgba(7,17,31,.75), transparent 50%); }
  .hero-inner { min-height: auto; grid-template-columns: 1fr; padding-block: 100px 70px; }
  .hero h1 { font-size: clamp(66px, 13vw, 100px); }
  .system-panel { width: min(100%, 500px); margin: 0; align-self: auto; }
  .county-ticker { display: grid; grid-template-columns: 1fr 1fr; padding-block: 18px; text-align: center; }
  .county-ticker i { display: none; }
  .stakes-grid, .section-heading, .area-intro { grid-template-columns: 1fr; }
  .stakes-grid, .section-heading { gap: 36px; }
  .service-stage { grid-template-columns: 1fr; }
  .service-visual { position: relative; top: 0; order: -1; }
  .service-visual img { aspect-ratio: 16/10; }
  .wine-country { grid-template-columns: 1fr; }
  .wine-image { min-height: 560px; }
  .wine-image::after { background: linear-gradient(0deg, rgba(12,32,55,.75), transparent 42%); }
  .wine-copy { padding: var(--section) max(4.5vw, calc((100vw - 760px)/2)); }
  .maintenance-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-badge { max-width: 460px; margin-inline: auto; }
  .area-list { grid-template-columns: 1fr 1fr; }
  .area-item:nth-child(2) { border-right: 0; }
  .area-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main img { grid-column: 1 / -1; }
  .footer-top { justify-self: end; }
  .inner-hero { min-height: auto; padding-block: 90px 70px; }
  .inner-hero-grid, .content-split, .market-map-heading, .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: grid; grid-template-columns: repeat(2, 1fr); }
  .market-map-heading { gap: 34px; }
  .inner-spec { max-width: 500px; }
  .process-grid, .link-grid, .service-link-grid { grid-template-columns: 1fr 1fr; }
  .process-grid article:nth-child(2) { border-right: 0; }
  .process-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .inner-heading { grid-template-columns: 1fr; gap: 18px; }
  .footer-map { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-areas { grid-column: 1 / -1; }
  .service-proof-strip .shell { grid-template-columns: 1fr 1fr; }
  .service-proof-strip .shell > div:nth-child(2) { border-right: 0; }
  .service-proof-strip .shell > div:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); }
  .fit-grid, .quote-brief-grid, .rating-grid { grid-template-columns: 1fr; }
  .rating-grid { gap: 44px; }
  .product-hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 76px; }
  .product-hero-copy h1 { max-width: 720px; }
  .product-hero-visual { width: min(100%, 720px); }
  .product-facts .shell { grid-template-columns: 1fr 1fr; }
  .product-facts .shell > div:nth-child(2) { border-right: 0; }
  .product-facts .shell > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .mode-grid, .model-heading, .install-grid { grid-template-columns: 1fr; }
  .product-showcase-heading, .product-showcase-grid { grid-template-columns: 1fr; }
  .product-showcase-heading { gap: 28px; }
  .product-showcase figure img { min-height: 390px; }
  .model-heading { gap: 28px; }
  .install-visual { width: min(100%, 560px); margin-inline: auto; }
}

@media (max-width: 620px) {
  body { padding-bottom: 62px; }
  .hero::after { animation: none; opacity: .25; }
  .brand { width: 185px; }
  .menu-toggle { width: 42px; height: 42px; }
  .mobile-subnav { grid-template-columns: 1fr; }
  .hero-inner { padding-block: 78px 56px; }
  .eyebrow { align-items: flex-start; line-height: 1.4; }
  .hero-copy { min-width: 0; }
  .hero h1 { font-size: clamp(50px, 15.8vw, 64px); letter-spacing: -.045em; }
  .hero-lead { margin-top: 26px; font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-actions .button-primary { flex-direction: column; gap: 4px; }
  .county-ticker { grid-template-columns: 1fr; }
  .system-panel { display: none; }
  h2 { font-size: clamp(48px, 15vw, 72px); }
  .service-item { grid-template-columns: 36px 1fr 24px; min-height: 88px; gap: 10px; padding-right: 0; }
  .service-name { font-size: 29px; }
  .service-visual img { aspect-ratio: 4/3; }
  .wine-image { min-height: 430px; }
  .wine-copy { padding: 76px 4.5vw; }
  .wine-copy .section-marker, .maintenance-title .section-marker, .about-copy .section-marker, .faq-title .section-marker, .contact-copy .section-marker { margin-bottom: 46px; }
  .maintenance-grid { gap: 55px; }
  .maintenance-board { padding: 26px 20px; }
  .maintenance-board li { grid-template-columns: 28px 1fr; }
  .maintenance-board small { grid-column: 2; margin-top: -20px; padding-bottom: 12px; }
  .route-line { display: none; }
  .area-list { grid-template-columns: 1fr; margin-top: 55px; }
  .area-item, .area-item:nth-child(2) { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--line); }
  .area-item:last-child { border-bottom: 0; }
  .area-item h3 { margin-top: 32px; }
  .about-badge { max-width: 320px; }
  .faq-list summary { min-height: 86px; font-size: 25px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .service-form { padding: 30px 20px; }
  .form-foot { align-items: stretch; flex-direction: column; }
  .form-foot .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-main img { grid-column: auto; width: 240px; }
  .footer-top { justify-self: start; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .mobile-call-bar { position: fixed; z-index: 120; left: 0; right: 0; bottom: 0; min-height: 62px; display: flex; align-items: center; justify-content: center; padding: 10px 4.5vw; color: var(--night); background: var(--cyan); text-decoration: none; }
  .mobile-call-bar span { display: none; }
  .mobile-call-bar strong { font-family: var(--display); font-size: 19px; white-space: nowrap; text-transform: uppercase; }
  .inner-hero { padding-block: 70px 58px; }
  .inner-hero h1 { font-size: clamp(48px, 14vw, 62px); }
  .inner-hero-grid { gap: 45px; }
  .inner-spec { display: none; }
  .breadcrumbs { margin-bottom: 34px; }
  .content-split { gap: 38px; }
  .market-map-heading { margin-bottom: 52px; }
  .market-map::before { left: 25px; }
  .market-stop { grid-template-columns: 52px minmax(0, 1fr); gap: 22px; padding-block: 32px; }
  .market-stop-number { width: 38px; height: 38px; margin-left: 6px; box-shadow: 0 0 0 7px var(--ice); font-size: 12px; }
  .market-stop > div:last-child { grid-template-columns: 1fr; gap: 18px; }
  .market-stop p { grid-column: auto; margin-bottom: -5px; }
  .process-grid, .link-grid, .service-link-grid, .hub-grid, .footer-map { grid-template-columns: 1fr; }
  .process-grid article { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid article:last-child { border-bottom: 0; }
  .process-grid article h3 { margin-top: 50px; }
  .hub-card { min-height: 280px; }
  .hub-card h2 { margin-top: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-areas { grid-column: auto; }
  .legal-nav { grid-template-columns: 1fr; }
  .legal-table { display: block; overflow-x: auto; }
  .product-hero-grid { padding-block: 56px; }
  .product-hero-copy h1 { font-size: clamp(58px, 18vw, 82px); }
  .product-lead { font-size: 15px; }
  .product-hero-visual { padding: 10px; }
  .product-hero-visual figcaption { display: grid; gap: 4px; }
  .temperature-rail { display: none; }
  .product-facts .shell { grid-template-columns: 1fr; }
  .product-facts .shell > div { min-height: 94px; padding-inline: 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .mode-grid { grid-template-columns: 1fr; }
  .mode-card { min-height: 270px; padding: 30px 24px; }
  .mode-card h3 { margin-top: 78px; }
  .product-feature-grid { grid-template-columns: 1fr; }
  .product-feature-grid article { min-height: 220px; border-right: 0; }
  .product-feature-grid img { height: 230px; }
  .product-feature-grid h3 { margin-top: 40px; }
  .product-showcase-grid { margin-top: 48px; }
  .product-showcase figure { padding: 8px; }
  .product-showcase figure img { min-height: 280px; }
  .product-showcase figcaption { left: 16px; right: 16px; bottom: 16px; padding: 14px; }
  .model-table th, .model-table td { padding: 18px 16px; }
  .service-proof-strip .shell { grid-template-columns: 1fr; }
  .service-proof-strip .shell > div, .service-proof-strip .shell > div:nth-child(2) { min-height: 90px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .service-proof-strip .shell > div:last-child { grid-column: auto; border-top: 0; border-bottom: 0; }
  .fit-grid article { min-height: 390px; padding: 30px 24px; }
  .fit-grid h3 { margin-top: 62px; }
  .quote-brief li { grid-template-columns: 38px 1fr; }
  .decision-table th, .decision-table td { padding: 18px 16px; }
  .rating-panel { overflow-x: auto; }
  .rating-panel-head { min-width: 610px; }
  .rating-panel table { min-width: 610px; }
  .rating-panel > p { min-width: 610px; }
  .install-grid { gap: 52px; }
  .product-hub-card { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
