:root {
  --ink: #17202a;
  --muted: #5d6875;
  --line: #d9e1e8;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --navy: #10243f;
  --blue: #1d5f99;
  --blue-dark: #174a78;
  --gold: #c99b3b;
  --green: #14725f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap,
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 0;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--blue);
}

.quote-nav,
.button {
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.quote-nav {
  color: #ffffff;
  background: var(--blue);
  padding: 10px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero {
  background:
    linear-gradient(90deg, rgba(16, 36, 63, 0.95), rgba(16, 36, 63, 0.82) 54%, rgba(16, 36, 63, 0.38)),
    url("van-transparent.png") right center / contain no-repeat,
    var(--navy);
  color: #ffffff;
}

.hero-inner {
  min-height: 530px;
  display: grid;
  align-items: center;
  padding: 72px 0;
}

.hero-copy {
  max-width: 760px;
}

.hero-mobile-van {
  display: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: #f2d38f;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 20px;
  font-size: 4.4rem;
}

h2 {
  font-size: 2.6rem;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

p {
  margin-top: 0;
}

.hero p,
.section-heading p,
.card p,
.faq-item p {
  color: var(--muted);
}

.hero p {
  color: #eef5fb;
  font-size: 1.15rem;
  max-width: 680px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  text-align: center;
  overflow-wrap: normal;
  line-height: 1.2;
  white-space: normal;
}

.button-primary {
  background: var(--gold);
  color: #101820;
}

.button-primary:hover {
  background: #e0b85a;
}

.button-secondary {
  color: var(--navy);
  border: 2px solid var(--navy);
}

.button-secondary:hover {
  background: rgba(16, 36, 63, 0.08);
}

.hero .button-secondary,
.quote-band .button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
}

.hero .button-secondary:hover,
.quote-band .button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.8fr);
  gap: 40px;
  align-items: center;
}

.image-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.card strong {
  display: block;
  color: var(--green);
  margin-bottom: 8px;
}

.quote-band {
  background: var(--navy);
  color: #ffffff;
}

.quote-band p {
  color: #e8f0f8;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
  background: #ffffff;
}

.dimension-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.dimension-table th,
.dimension-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.dimension-table th {
  background: var(--navy);
  color: #ffffff;
  font-size: 0.92rem;
}

.dimension-table tr:last-child td {
  border-bottom: 0;
}

.dimension-table strong {
  display: block;
  color: var(--ink);
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.mini-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.mini-link:hover {
  text-decoration: underline;
}

.dimension-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dimension-list li {
  border-left: 4px solid var(--gold);
  background: #ffffff;
  padding: 14px 16px;
  color: #304050;
  font-weight: 700;
}

.dimension-guide-intro {
  padding-bottom: 52px;
}

.size-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.size-link {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(16, 36, 63, 0.06);
}

.size-link:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}

.size-link span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.size-link strong {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.25;
}

.guide-photo {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.guide-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dimension-model {
  scroll-margin-top: 90px;
}

.model-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.model-heading .eyebrow {
  color: var(--blue);
}

.model-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  align-items: start;
}

.spec-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.spec-list {
  margin: 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.capacity-row {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 800;
}

.capacity-row span {
  display: block;
  border-left: 4px solid var(--gold);
  padding-left: 10px;
}

.diagram-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dimension-diagram {
  position: relative;
  min-height: 330px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #0d1724;
}

.dimension-diagram::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border-top: 2px solid rgba(242, 211, 143, 0.92);
  border-bottom: 2px solid rgba(242, 211, 143, 0.92);
  border-left: 2px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.dimension-diagram::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 23, 36, 0.06), rgba(13, 23, 36, 0.62));
  pointer-events: none;
}

.dimension-diagram img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.dimension-diagram figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #ffffff;
  font-weight: 900;
}

.diagram-label {
  position: absolute;
  z-index: 2;
  max-width: calc(100% - 36px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  background: rgba(16, 36, 63, 0.92);
  color: #ffffff;
  padding: 8px 10px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.label-top {
  top: 28px;
  left: 28px;
}

.label-bottom {
  right: 28px;
  bottom: 56px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.visual-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.visual-media {
  position: relative;
  min-height: 270px;
  background: var(--navy);
}

.visual-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 23, 36, 0.12), rgba(13, 23, 36, 0.5));
  pointer-events: none;
}

.visual-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.measure-pill {
  position: absolute;
  z-index: 1;
  max-width: calc(100% - 28px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  background: rgba(16, 36, 63, 0.9);
  color: #ffffff;
  padding: 8px 10px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.measure-top {
  top: 14px;
  left: 14px;
}

.measure-bottom {
  right: 14px;
  bottom: 14px;
}

.measure-side {
  left: 14px;
  bottom: 58px;
}

.visual-copy {
  padding: 20px;
}

.visual-copy h3 {
  margin-bottom: 8px;
}

.visual-copy p {
  color: var(--muted);
  margin-bottom: 0;
}

.form-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 36, 63, 0.08);
}

.tally-embed {
  width: 100%;
  min-height: 1280px;
  border: 0;
  display: block;
  background: #ffffff;
}

.footer {
  background: #0d1724;
  color: #ffffff;
  padding: 42px 0;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
}

.footer-links {
  display: grid;
  gap: 8px;
  text-align: right;
  max-width: 360px;
}

.nap {
  color: #cbd6e2;
  margin: 7px 0 0;
}

@media (max-width: 860px) {
  .nav-wrap,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    display: grid;
    justify-items: start;
    padding: 12px 0;
    gap: 12px;
  }

  nav {
    justify-content: flex-start;
    width: 100%;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero {
    background:
      linear-gradient(rgba(16, 36, 63, 0.92), rgba(16, 36, 63, 0.9)),
      url("van-transparent.png") center bottom / 88% auto no-repeat,
      var(--navy);
  }

  .hero-inner {
    min-height: 520px;
    align-items: start;
    padding-top: 52px;
    padding-bottom: 190px;
  }

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

  .size-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-layout,
  .diagram-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    text-align: left;
    max-width: none;
  }
}

@media (max-width: 700px) {
  .cta-row {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .dimension-table {
    min-width: 0;
  }

  .dimension-table thead {
    display: none;
  }

  .dimension-table,
  .dimension-table tbody,
  .dimension-table tr,
  .dimension-table td {
    display: block;
    width: 100%;
  }

  .dimension-table tr {
    border-bottom: 1px solid var(--line);
    padding: 6px 0;
  }

  .dimension-table tr:last-child {
    border-bottom: 0;
  }

  .dimension-table td {
    border-bottom: 0;
    padding: 11px 14px;
  }

  .dimension-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .dimension-table td:first-child {
    background: var(--soft);
  }
}

@media (max-width: 540px) {
  .nav-wrap,
  .container {
    width: min(100% - 20px, 1120px);
  }

  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 10px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand span {
    overflow-wrap: anywhere;
  }

  nav {
    width: auto;
    display: flex;
    justify-content: flex-end;
    font-size: 1rem;
  }

  nav a {
    display: none;
  }

  nav .quote-nav {
    display: inline-flex;
    min-height: 48px;
    min-width: 122px;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 6px;
    text-align: center;
    line-height: 1.15;
  }

  .quote-nav {
    font-size: 1rem;
    box-shadow: 0 8px 18px rgba(29, 95, 153, 0.22);
  }

  .section {
    padding: 48px 0;
  }

  .hero-inner {
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .hero-copy > p {
    display: none;
  }

  .hero {
    background: linear-gradient(rgba(16, 36, 63, 0.94), rgba(16, 36, 63, 0.9)), var(--navy);
  }

  .hero-mobile-van {
    display: block;
    margin-top: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  }

  .hero-mobile-van img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    object-position: center;
  }

  h1 {
    font-size: 1.78rem;
    line-height: 1.08;
    margin-bottom: 16px;
  }

  h2 {
    font-size: 1.62rem;
  }

  .card,
  .faq-item {
    padding: 20px;
  }

  .size-link-grid {
    grid-template-columns: 1fr;
  }

  .size-link {
    min-height: 96px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .dimension-diagram,
  .dimension-diagram img {
    min-height: 250px;
  }

  .diagram-label {
    font-size: 0.78rem;
  }

  .label-top {
    top: 26px;
    left: 26px;
  }

  .label-bottom {
    right: 26px;
    bottom: 54px;
  }

  .table-wrap {
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .dimension-table th,
  .dimension-table td {
    padding: 14px;
  }

  .image-panel img {
    aspect-ratio: 16 / 10;
  }

  .visual-media {
    min-height: 230px;
  }

  .visual-media img {
    aspect-ratio: 16 / 10;
  }

  .measure-pill {
    font-size: 0.78rem;
    padding: 7px 9px;
  }

  .measure-side {
    bottom: 54px;
  }

  .form-shell {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
    margin-left: -10px;
    margin-right: -10px;
  }

  .tally-embed {
    min-height: 1580px;
  }
}
