:root {
  --rice: #fff8f0;
  --paper: #f4e8d3;
  --ink: #241715;
  --wok: #2d2d2d;
  --gold: #d4a844;
  --chili: #d4380d;
  --orange: #ee5a1b;
  --green: #4caf50;
  --wood: #8b6914;
  --line: rgba(36, 23, 21, 0.16);
  --shadow: 0 22px 70px rgba(48, 25, 12, 0.18);
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(139, 105, 20, 0.055) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(180deg, var(--rice), #fff3df 48%, #f7dfbc);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image: radial-gradient(rgba(36, 23, 21, 0.2) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  min-height: var(--header-height);
  color: var(--ink);
  background: rgba(255, 248, 240, 0.96);
  box-shadow: 0 10px 34px rgba(45, 45, 45, 0.1);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 248, 240, 0.96);
  box-shadow: 0 10px 34px rgba(45, 45, 45, 0.1);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.pan-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 48px;
  padding: 10px 16px 8px;
  color: var(--rice);
  background: var(--orange);
  border: 2px solid currentColor;
  border-radius: 0 0 22px 22px;
  clip-path: polygon(2% 0, 98% 0, 88% 100%, 12% 100%);
  font-size: 22px;
  font-weight: 950;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.16);
}

.pan-logo.big {
  width: min(100%, 420px);
  min-height: 178px;
  font-size: clamp(54px, 7vw, 104px);
  border-width: 4px;
  border-radius: 0 0 56px 56px;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 2.6vw, 34px);
  font-size: 14px;
  font-weight: 800;
}

.header-cta,
.primary-btn,
.secondary-btn,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.header-cta,
.primary-btn,
.lead-form button {
  color: var(--rice);
  background: var(--chili);
  box-shadow: 0 12px 26px rgba(212, 56, 13, 0.28);
}

.secondary-btn {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  min-height: calc(96svh - var(--header-height));
  margin-top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(420px, 42%) 1fr;
  overflow: hidden;
  color: white;
  background: var(--wok);
}

.hero picture {
  position: relative;
  min-height: calc(96svh - var(--header-height));
  order: 2;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
  animation: heroIn 1.2s ease both;
}

.hero-shade {
  position: absolute;
  inset: 0 0 0 42%;
  z-index: 1;
  width: auto;
  height: auto;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 36%, rgba(0, 0, 0, 0.34));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: calc(96svh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
  padding: clamp(118px, 13vh, 154px) clamp(26px, 5vw, 76px) clamp(154px, 17vh, 190px);
  background:
    linear-gradient(135deg, rgba(212, 56, 13, 0.18), transparent 36%),
    linear-gradient(180deg, #1f1411, #281816 55%, #130c0a);
  animation: liftIn 0.9s 0.15s ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--chili);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.roadmap .eyebrow,
.contact-section .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: white;
  margin-bottom: 20px;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 950;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 950;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-strip {
  position: absolute;
  left: clamp(18px, 6vw, 86px);
  right: clamp(18px, 6vw, 86px);
  bottom: 26px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(31, 20, 17, 0.92);
  backdrop-filter: blur(16px);
}

.hero-strip span {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.78);
}

.hero-strip span:last-child {
  border-right: 0;
}

.hero-strip strong {
  display: block;
  color: white;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
}

.steam {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-color: transparent transparent rgba(255, 255, 255, 0.36) transparent;
  border-radius: 50%;
  z-index: 2;
  animation: steamRise 5s ease-in-out infinite;
}

.steam-one {
  left: 46%;
  top: 24%;
}

.steam-two {
  left: 58%;
  top: 18%;
  animation-delay: 1.6s;
}

.section {
  padding: clamp(74px, 11vw, 150px) clamp(18px, 6vw, 86px);
}

.section-heading {
  max-width: min(100%, 1500px);
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: min(100%, 1320px);
}

.section-heading p:not(.eyebrow) {
  max-width: 800px;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(36, 23, 21, 0.72);
}

.section-heading h2,
.roadmap h2 {
  white-space: nowrap;
}

.tone-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--line);
}

.tone-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 240, 0.68);
}

.tone-number {
  display: block;
  margin-bottom: 52px;
  color: var(--chili);
  font-size: 13px;
  font-weight: 950;
}

.tone-grid p,
.product-lanes p,
.store-model,
.support-list p,
.timeline p {
  color: rgba(36, 23, 21, 0.72);
  line-height: 1.75;
}

.brand-assets {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  margin-top: 18px;
}

.asset-panel {
  min-height: 330px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--ink);
  color: white;
  overflow: hidden;
}

.logo-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.logo-panel p {
  margin: 28px 0 6px;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 950;
}

.logo-panel small {
  color: rgba(255, 255, 255, 0.62);
}

.colors-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background: #fff;
  color: var(--ink);
}

.colors-panel span {
  position: relative;
  min-height: 90px;
  display: flex;
  align-items: end;
  padding: 14px;
  color: white;
  background: var(--swatch);
  font-weight: 900;
  overflow: hidden;
}

.colors-panel span:nth-child(5) {
  color: var(--ink);
  border: 1px solid var(--line);
}

.colors-panel span::after {
  position: absolute;
  inset: auto -22px -26px auto;
  width: 78px;
  height: 78px;
  content: "";
  border: 14px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
}

.products-section {
  background: var(--ink);
  color: white;
}

.products-section .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.product-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-lanes article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
}

.product-lanes article:nth-child(2) {
  background-color: rgba(212, 168, 68, 0.16);
}

.product-lanes article:nth-child(3) {
  background-color: rgba(76, 175, 80, 0.14);
}

.product-lanes article:nth-child(4) {
  background-color: rgba(212, 56, 13, 0.15);
}

.lane-tag {
  margin-bottom: auto;
  color: var(--gold);
  font-weight: 950;
}

.product-lanes p {
  color: rgba(255, 255, 255, 0.72);
}

.image-band {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.66), transparent 58%), linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 42%);
}

.band-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 7vw, 86px) clamp(18px, 6vw, 86px);
}

.band-copy p:not(.eyebrow) {
  font-size: 22px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.store-grid {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.25fr;
  gap: 18px;
  align-items: stretch;
}

.store-model {
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.meter {
  height: 52px;
  margin-top: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 240, 0.82);
}

.meter span {
  min-width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 14px;
  color: white;
  background: var(--chili);
  font-size: 14px;
  font-weight: 900;
}

.meter.muted span {
  background: var(--wood);
}

.meter.accent span {
  background: var(--green);
}

.store-photo {
  min-height: 430px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.store-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-section {
  padding-top: 0;
}

.support-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.support-list article {
  min-height: 230px;
  padding: 28px;
  background: var(--rice);
}

.join-section {
  background: #efe0c9;
}

.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr 0.72fr;
  gap: 18px;
}

.calc-controls,
.calc-results,
.calc-note {
  padding: clamp(24px, 4vw, 42px);
  background: var(--rice);
  box-shadow: var(--shadow);
}

.calc-controls label {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 900;
}

.calc-controls label:last-child {
  margin-bottom: 0;
}

input[type="range"] {
  width: 100%;
  height: 34px;
  margin: 2px 0 0;
  appearance: none;
  cursor: grab;
  background: transparent;
  --fill: 50%;
}

input[type="range"]:active {
  cursor: grabbing;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 14px;
  border: 1px solid rgba(36, 23, 21, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--chili) 0 var(--fill), rgba(36, 23, 21, 0.12) var(--fill) 100%),
    var(--rice);
  box-shadow: inset 0 1px 3px rgba(36, 23, 21, 0.16);
}

input[type="range"]::-webkit-slider-thumb {
  width: 34px;
  height: 34px;
  margin-top: -11px;
  appearance: none;
  border: 5px solid var(--rice);
  border-radius: 50%;
  background: var(--chili);
  box-shadow: 0 5px 14px rgba(212, 56, 13, 0.38);
}

input[type="range"]:focus-visible {
  outline: 3px solid rgba(212, 56, 13, 0.24);
  outline-offset: 4px;
}

input[type="range"]::-moz-range-track {
  height: 14px;
  border: 1px solid rgba(36, 23, 21, 0.18);
  border-radius: 999px;
  background: rgba(36, 23, 21, 0.12);
  box-shadow: inset 0 1px 3px rgba(36, 23, 21, 0.16);
}

input[type="range"]::-moz-range-progress {
  height: 14px;
  border-radius: 999px;
  background: var(--chili);
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 5px solid var(--rice);
  border-radius: 50%;
  background: var(--chili);
  box-shadow: 0 5px 14px rgba(212, 56, 13, 0.38);
}

.calc-controls span {
  color: rgba(36, 23, 21, 0.66);
  font-size: 15px;
}

.calc-controls b {
  color: var(--chili);
  font-size: 28px;
}

.calc-results {
  display: grid;
  gap: 14px;
  background: var(--ink);
  color: white;
}

.calc-results div {
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.calc-results span {
  color: rgba(255, 255, 255, 0.58);
}

.calc-results strong {
  margin-top: 8px;
  color: var(--gold);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.calc-note {
  align-self: stretch;
  background: rgba(255, 248, 240, 0.74);
  box-shadow: none;
}

.calc-note h3 {
  margin-bottom: 18px;
  font-size: 18px;
}

.calc-note p {
  margin-bottom: 10px;
  color: rgba(36, 23, 21, 0.66);
  font-size: 13px;
  line-height: 1.65;
}

.calc-note p:last-child {
  margin-bottom: 0;
}

.roadmap {
  color: white;
  background:
    linear-gradient(rgba(36, 23, 21, 0.78), rgba(36, 23, 21, 0.9)),
    url("./assets/store-counter.jpg") center / cover;
}

.roadmap-inner {
  padding: clamp(74px, 11vw, 150px) clamp(18px, 6vw, 86px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.timeline article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.timeline span {
  color: var(--gold);
  font-weight: 950;
}

.timeline p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 720px;
  color: white;
  background: var(--ink);
}

.contact-section > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-form {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 6vw, 82px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  outline: none;
}

.lead-form textarea {
  min-height: 122px;
  padding-top: 16px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.lead-form select {
  color: rgba(255, 255, 255, 0.72);
}

.lead-form button {
  width: fit-content;
  margin-top: 6px;
}

.form-note,
.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.form-status:not(:empty) {
  color: rgba(255, 248, 240, 0.76);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 6vw, 86px);
  color: white;
  background: #130c0a;
}

@keyframes heroIn {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes steamRise {
  0%,
  100% {
    opacity: 0;
    transform: translateY(40px) scale(0.82) rotate(12deg);
  }
  35% {
    opacity: 0.65;
  }
  70% {
    opacity: 0;
    transform: translateY(-80px) scale(1.12) rotate(-12deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero picture {
    min-height: 46svh;
    order: 1;
  }

  .hero-shade {
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 54%, rgba(0, 0, 0, 0.35));
  }

  .hero-content {
    min-height: auto;
    order: 2;
    padding: 42px clamp(18px, 6vw, 58px) 34px;
  }

  .hero-content::after {
    display: none;
  }

  .tone-grid,
  .product-lanes,
  .support-list,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-strip {
    position: static;
    order: 3;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    border-right: 0;
    border-left: 0;
  }

  .brand-assets,
  .store-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .calculator {
    grid-template-columns: 1fr 1fr;
  }

  .calc-note {
    grid-column: 1 / -1;
  }

  .contact-section > img {
    height: 420px;
  }

  .section-heading h2,
  .roadmap h2 {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 58px;
  }

  .site-header {
    grid-template-columns: auto auto;
    padding: 8px 14px;
    min-height: var(--header-height);
  }

  .brand-mark > span:last-child,
  .nav-links {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .pan-logo {
    min-width: 70px;
    min-height: 38px;
    padding: 8px 13px 7px;
    border-radius: 0 0 18px 18px;
    font-size: 18px;
  }

  .hero {
    margin-top: var(--header-height);
    background: #201411;
  }

  .hero picture {
    min-height: 38svh;
  }

  .hero img {
    object-position: center top;
  }

  .hero-shade {
    display: none;
  }

  .hero-content {
    padding: 26px 18px 24px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(38px, 13vw, 52px);
    line-height: 0.96;
  }

  h2 {
    margin-bottom: 12px;
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.08;
  }

  h3 {
    font-size: 21px;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .primary-btn,
  .secondary-btn {
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-strip {
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-strip span {
    min-height: 68px;
    padding: 12px 14px;
    font-size: 12px;
  }

  .hero-strip span:nth-child(2n) {
    border-right: 0;
  }

  .hero-strip strong {
    font-size: 25px;
  }

  .section {
    padding: 54px 18px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.75;
  }

  .tone-grid,
  .support-list,
  .timeline,
  .calculator,
  .form-row {
    grid-template-columns: 1fr;
  }

  .product-lanes {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .tone-grid article,
  .product-lanes article {
    min-height: auto;
    padding: 22px;
  }

  .tone-grid {
    border-top-width: 1px;
  }

  .tone-number {
    margin-bottom: 22px;
  }

  .brand-assets {
    gap: 10px;
  }

  .asset-panel {
    min-height: auto;
    padding: 24px 18px;
  }

  .pan-logo.big {
    min-height: 110px;
    font-size: 52px;
    border-radius: 0 0 34px 34px;
  }

  .logo-panel p {
    margin-top: 18px;
    font-size: 24px;
  }

  .colors-panel {
    grid-template-columns: 1fr;
  }

  .colors-panel span {
    min-height: 58px;
  }

  .products-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .product-lanes article {
    min-height: 184px;
    padding: 18px;
  }

  .lane-tag {
    margin-bottom: 34px;
    font-size: 12px;
  }

  .product-lanes h3 {
    font-size: 20px;
  }

  .product-lanes p {
    font-size: 13px;
    line-height: 1.65;
  }

  .image-band {
    min-height: 56svh;
  }

  .band-copy {
    width: calc(100% - 36px);
    margin: 0 18px 34px;
  }

  .band-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .store-grid {
    gap: 10px;
  }

  .store-model {
    padding: 20px;
  }

  .meter {
    height: 44px;
    margin-top: 12px;
  }

  .store-photo {
    min-height: 230px;
  }

  .support-section {
    padding-top: 24px;
  }

  .support-list article {
    min-height: auto;
    padding: 22px;
  }

  .calc-controls,
  .calc-results,
  .calc-note {
    padding: 22px 18px;
  }

  .calc-controls label {
    gap: 10px;
    margin-bottom: 22px;
    font-size: 16px;
  }

  .calc-controls b {
    font-size: 25px;
  }

  .calc-results {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .calc-results div {
    min-height: 94px;
    padding: 16px;
  }

  .calc-results strong {
    font-size: 38px;
  }

  .calc-note {
    grid-column: auto;
  }

  .calc-note p {
    font-size: 12px;
  }

  .roadmap-inner {
    padding: 56px 18px;
  }

  .timeline {
    gap: 10px;
    margin-top: 26px;
  }

  .timeline article {
    min-height: auto;
    padding: 22px;
  }

  .contact-section {
    min-height: auto;
  }

  .contact-section > img {
    height: 34svh;
    min-height: 240px;
    object-position: center top;
  }

  .lead-form {
    padding: 34px 18px 42px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    min-height: 50px;
  }

  .lead-form button {
    width: 100%;
  }

  .site-footer {
    display: grid;
    gap: 8px;
    padding: 22px 18px;
    font-size: 13px;
  }
}
