:root {
  --green: #78be20;
  --green-dark: #4f8d17;
  --black: #0c1110;
  --ink: #17211f;
  --muted: #5f6b68;
  --line: #dfe6e2;
  --soft: #f4f7f2;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

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

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

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

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 220px;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-menu a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.site-menu a:hover,
.site-menu a.active {
  color: var(--black);
}

.site-menu .quote-link {
  margin-left: 8px;
  color: var(--black);
  background: var(--green);
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--black);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 98px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 20px 56px;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--black);
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p,
.page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
}

.button.primary {
  color: var(--black);
  background: var(--green);
}

.button.secondary {
  color: var(--black);
  border-color: var(--black);
  background: transparent;
}

.hero-media {
  position: relative;
  min-height: 520px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(120, 190, 32, 0.2), rgba(255, 255, 255, 0) 42%),
    var(--soft);
  border: 1px solid var(--line);
}

.photo-hero {
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  background: var(--black);
}

.photo-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 58% center;
}

.vehicle-scene {
  position: relative;
  display: grid;
  height: 100%;
  min-height: 460px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 17, 16, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(12, 17, 16, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.vehicle-body {
  position: relative;
  width: min(100%, 520px);
  height: 230px;
  margin: 0 auto;
}

.cab {
  position: absolute;
  right: 0;
  bottom: 52px;
  width: 178px;
  height: 130px;
  background: var(--white);
  border: 8px solid var(--black);
  clip-path: polygon(0 42%, 34% 0, 100% 0, 100% 100%, 0 100%);
}

.service-module {
  position: absolute;
  left: 0;
  bottom: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 330px;
  height: 150px;
  padding: 18px;
  background: var(--black);
  border: 8px solid var(--black);
}

.service-module span {
  background: linear-gradient(160deg, #d7ded8, #ffffff 48%, #aab5af);
  border: 3px solid #27312e;
}

.wheel {
  position: absolute;
  bottom: 0;
  width: 86px;
  height: 86px;
  background: var(--black);
  border: 16px solid #323c38;
  border-radius: 50%;
}

.wheel-one {
  left: 54px;
}

.wheel-two {
  right: 74px;
}

.toolbox-card {
  position: absolute;
  right: 20px;
  bottom: 24px;
  max-width: 260px;
  padding: 18px;
  color: var(--white);
  background: var(--black);
  border-left: 6px solid var(--green);
}

.toolbox-card strong,
.toolbox-card span {
  display: block;
}

.toolbox-card span {
  margin-top: 6px;
  color: #dce4df;
  font-size: 14px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 20px;
}

.intro-grid,
.split-section,
.finance-strip {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: 22px;
  line-height: 1.2;
}

.fitout-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 20px;
}

.feature-card,
.values-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.feature-card p,
.values-grid p,
.product-row p,
.copy-stack p,
.finance-strip p {
  color: var(--muted);
}

.card-number {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--green-dark);
  font-weight: 900;
}

.feature-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--black);
  font-weight: 800;
  border-bottom: 2px solid var(--green);
}

.process-band,
.dark-panel {
  max-width: none;
  color: var(--white);
  background: var(--black);
}

.process-band .section-heading,
.process-steps,
.dark-panel {
  max-width: var(--max);
  margin-inline: auto;
}

.process-band h2,
.process-band h3,
.dark-panel h2 {
  color: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.process-steps div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.process-steps span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--black);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.process-steps p,
.dark-panel p {
  color: #dce4df;
}

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

.industries {
  display: grid;
  gap: 30px;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-list span {
  padding: 12px 16px;
  background: var(--soft);
  border-left: 4px solid var(--green);
  font-weight: 800;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto 72px;
  padding: 34px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.7fr;
  gap: 38px;
  padding: 56px max(20px, calc((100vw - var(--max)) / 2));
  color: #dce4df;
  background: var(--black);
}

.site-footer img {
  width: 240px;
  margin-bottom: 18px;
  background: var(--white);
  border-radius: 4px;
  padding: 10px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 18px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 8px;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 20px 58px;
}

.page-hero.compact {
  padding-bottom: 36px;
}

.copy-stack p:first-child {
  margin-top: 0;
}

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

.dark-panel {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}

.product-list {
  display: grid;
  gap: 34px;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1fr;
  gap: 38px;
  align-items: center;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.product-row.reverse {
  grid-template-columns: 1fr minmax(280px, 0.85fr);
}

.product-row.reverse .product-visual {
  order: 2;
}

.product-row ul {
  padding-left: 20px;
}

.product-row li {
  margin-bottom: 8px;
}

.product-visual {
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(120, 190, 32, 0.28), rgba(255, 255, 255, 0) 46%),
    linear-gradient(160deg, #0c1110 0 48%, #ffffff 48% 100%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.product-visual.image-visual {
  display: grid;
  place-items: center;
  padding: 18px;
  background: var(--white);
}

.product-visual.image-visual img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: contain;
}

.product-visual.canopy-visual img {
  transform: scale(1.45);
  transform-origin: center;
}

.product-visual.image-visual::before,
.product-visual.image-visual::after {
  display: none;
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  background: var(--green);
}

.product-visual::before {
  width: 64%;
  height: 34%;
  left: 12%;
  bottom: 28%;
  border: 10px solid var(--black);
}

.product-visual::after {
  width: 44px;
  height: 44px;
  left: 20%;
  bottom: 14%;
  border: 14px solid var(--black);
  border-radius: 50%;
  box-shadow: 190px 0 0 -14px var(--green), 190px 0 0 0 var(--black);
}

.van-visual::before {
  width: 74%;
  height: 42%;
  border-radius: 2px 30px 2px 2px;
}

.truck-visual::before {
  width: 78%;
  height: 38%;
  left: 8%;
}

.finance-strip {
  background: var(--black);
  color: var(--white);
}

.finance-strip h2,
.finance-strip p {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
}

.contact-panel,
.enquiry-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-panel {
  background: var(--black);
  color: var(--white);
}

.contact-panel h2 {
  color: var(--white);
  font-size: 30px;
}

.contact-method {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-method span {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-method a,
.contact-method p {
  margin: 4px 0 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.enquiry-form h2 {
  font-size: 32px;
}

.enquiry-form p {
  color: var(--muted);
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--black);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd5cf;
  border-radius: 4px;
  font: inherit;
}

textarea {
  resize: vertical;
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-menu {
    display: none;
    width: 100%;
    padding-top: 16px;
  }

  .site-menu.open {
    display: grid;
  }

  .site-menu a,
  .site-menu .quote-link {
    margin: 0;
    padding: 12px 0;
    background: transparent;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .intro-grid,
  .split-section,
  .dark-panel,
  .finance-strip,
  .contact-grid,
  .product-row,
  .product-row.reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-media {
    min-height: 380px;
  }

  .photo-hero img {
    min-height: 380px;
  }

  .vehicle-scene {
    min-height: 330px;
  }

  .fitout-cards,
  .process-steps,
  .values-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .product-row.reverse .product-visual {
    order: 0;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 176px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-media {
    padding: 16px;
  }

  .photo-hero {
    padding: 0;
  }

  .vehicle-body {
    transform: scale(0.72);
    transform-origin: center;
  }

  .toolbox-card {
    left: 16px;
    right: 16px;
    max-width: none;
  }

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

/* Corporate polish pass */
:root {
  --black: #101615;
  --ink: #17211f;
  --muted: #64716d;
  --line: #e1e7e4;
  --soft: #f6f8f6;
  --panel: #ffffff;
  --shadow: 0 18px 45px rgba(16, 22, 21, 0.08);
}

body {
  background: #fbfcfb;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 18px rgba(16, 22, 21, 0.06);
}

.navbar {
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand img {
  width: 210px;
}

.site-menu {
  gap: 4px;
}

.site-menu a {
  border-radius: 4px;
  font-size: 14px;
  transition: background 160ms ease, color 160ms ease;
}

.site-menu a:hover,
.site-menu a.active {
  background: #f0f4f1;
}

.site-menu .quote-link {
  padding-inline: 18px;
  box-shadow: 0 10px 22px rgba(120, 190, 32, 0.22);
}

.site-menu .dealer-link {
  color: var(--black);
  border: 1px solid #c9d3ce;
  background: #ffffff;
}

.hero {
  min-height: auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 54px;
  max-width: none;
  padding: 78px max(20px, calc((100vw - var(--max)) / 2)) 42px;
  background: #2c2d2f;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(42px, 5.6vw, 68px);
  line-height: 1.02;
}

.hero-copy p,
.page-hero p {
  color: #596662;
  font-size: 17px;
}

.eyebrow {
  color: #3f7f12;
  font-size: 12px;
}

.button {
  min-height: 46px;
  border-radius: 4px;
  font-size: 14px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  box-shadow: 0 14px 24px rgba(120, 190, 32, 0.22);
}

.button.secondary {
  background: #ffffff;
  border-color: #c9d3ce;
}

.photo-hero {
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-hero img {
  min-height: 320px;
}

.hero-carousel {
  position: relative;
  min-height: 320px;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-carousel-track {
  display: flex;
  width: 500%;
  min-height: 320px;
  transition: transform 700ms ease;
}

.hero-slide {
  display: grid;
  width: 20%;
  min-height: 320px;
  place-items: center;
  padding: 18px 28px;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 284px;
  object-fit: contain;
}

.hero-slide-canopy img {
  transform: scale(1.18);
}

.toolbox-card {
  right: 22px;
  bottom: 22px;
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.hero-copy-panel {
  color: #ffffff;
}

.hero-copy-panel h1 {
  max-width: 560px;
  color: #ffffff;
  font-size: clamp(32px, 3.7vw, 46px);
  line-height: 1.08;
}

.hero-copy-panel p {
  color: #e4e9e6;
}

.hero-copy-panel .eyebrow {
  color: #a7d45b;
}

.hero-copy-panel .button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.section {
  padding-top: 66px;
  padding-bottom: 66px;
}

.intro-grid {
  border-top: 1px solid var(--line);
}

h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}

h3 {
  font-size: 20px;
}

.feature-card,
.values-grid article,
.contact-panel,
.enquiry-form {
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 22, 21, 0.055);
}

.feature-card {
  min-height: 245px;
  padding: 30px;
}

.feature-card:hover {
  border-color: #cbd8d0;
}

.card-number {
  margin-bottom: 26px;
  font-size: 13px;
}

.process-band {
  padding-top: 74px;
  padding-bottom: 74px;
  color: var(--ink);
  background: transparent;
}

.process-steps {
  gap: 16px;
}

.process-steps div {
  background: #ffffff;
  border-color: var(--line);
  border-radius: 8px;
}

.process-band h2,
.process-band h3 {
  color: var(--black);
}

.process-steps p {
  color: var(--muted);
}

.process-steps span {
  border-radius: 4px;
}

.process-image {
  width: 100%;
  height: 118px;
  margin-bottom: 20px;
  object-fit: contain;
}

.video-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) 1fr;
  gap: 42px;
  align-items: center;
  max-width: none;
  padding: 66px max(20px, calc((100vw - var(--max)) / 2));
  background: #2c2d2f;
}

.showcase-image {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #101615;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
  transform: scale(1.08);
  transform-origin: center 72%;
}

.video-copy p {
  color: #e4e7e6;
}

.video-copy p:last-child {
  margin-bottom: 0;
}

.video-copy h2 {
  color: #ffffff;
}

.video-copy .eyebrow {
  color: #a7d45b;
}

.industry-list span {
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 4px;
  background: #ffffff;
}

.cta-band {
  margin-bottom: 78px;
  padding: 36px;
  color: #ffffff;
  background: #2c2d2f;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: #ffffff;
}

.cta-band .eyebrow {
  color: #c5df92;
}

.page-hero {
  padding-top: 82px;
  padding-bottom: 50px;
  background: linear-gradient(#ffffff, #fbfcfb);
}

.product-list {
  gap: 24px;
  padding-top: 38px;
}

.product-row {
  gap: 42px;
  padding: 32px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(16, 22, 21, 0.065);
}

.product-visual {
  min-height: 315px;
  border-color: #e5ebe7;
  border-radius: 8px;
}

.product-visual.image-visual {
  padding: 22px;
}

.product-visual.image-visual img {
  max-height: 330px;
}

.product-visual.canopy-visual img {
  transform: scale(1.38);
}

.product-visual.truck-image-visual {
  padding: 0;
}

.product-visual.truck-image-visual img {
  max-height: none;
  object-fit: cover;
  object-position: center 48%;
}

.finance-strip {
  max-width: var(--max);
  margin-bottom: 72px;
  border-radius: 8px;
  background: #111715;
}

.dark-panel {
  border-radius: 8px;
  background: #111715;
}

.contact-panel {
  background: #111715;
}

input,
select,
textarea {
  border-color: #d5ddd9;
  background: #fbfcfb;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(120, 190, 32, 0.24);
  border-color: var(--green);
}

.site-footer {
  background: #2c2d2f;
}

.site-footer img {
  width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-brand img {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--black);
  font-weight: 800;
  border-bottom: 2px solid var(--green);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 20px 58px;
}

.product-detail-hero h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.04;
}

.product-detail-hero p {
  max-width: 640px;
  color: #596662;
  font-size: 17px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.detail-visual {
  box-shadow: var(--shadow);
}

.detail-section {
  padding-top: 34px;
}

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

.option-grid article {
  min-height: 190px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 22, 21, 0.055);
}

.option-grid p {
  color: var(--muted);
}

.canopy-range-section {
  padding-top: 18px;
}

.canopy-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.canopy-tile {
  display: grid;
  min-height: 310px;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 22, 21, 0.055);
  transition: border 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.canopy-tile:hover {
  border-color: #cbd8d0;
  box-shadow: 0 18px 42px rgba(16, 22, 21, 0.1);
  transform: translateY(-2px);
}

.canopy-tile img {
  width: 100%;
  height: 250px;
  padding: 20px;
  object-fit: contain;
  background: #ffffff;
}

.canopy-tile span {
  display: block;
  padding: 18px 20px;
  color: var(--black);
  background: #fbfcfb;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.spec-panel {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.spec-list {
  margin: 0;
  padding-left: 20px;
}

.spec-list li {
  margin-bottom: 10px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 48px;
  }

  .photo-hero,
  .photo-hero img,
  .hero-carousel,
  .hero-carousel-track,
  .hero-slide {
    min-height: 380px;
  }

  .hero-slide img {
    min-height: 344px;
  }

  .product-row,
  .product-row.reverse {
    gap: 26px;
    padding: 22px;
  }

  .product-visual.canopy-visual img {
    transform: scale(1.18);
  }

  .product-detail-hero,
  .spec-panel {
    grid-template-columns: 1fr;
  }

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

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

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

/* Nav dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-arrow {
  font-size: 10px;
  line-height: 1;
  pointer-events: none;
  transition: transform 160ms ease;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 172px;
  padding: 6px 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(16, 22, 21, 0.11);
  z-index: 30;
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  background: transparent;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: var(--black);
  background: #f0f4f1;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown.open .nav-arrow {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .nav-dropdown {
    display: grid;
    width: 100%;
  }

  .nav-dropdown > a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    background: transparent !important;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }

  .nav-dropdown-menu a {
    padding: 10px 0 10px 16px;
    border-bottom: 1px solid var(--line);
    background: transparent;
  }
}

@media (max-width: 560px) {
  .navbar {
    padding-inline: 16px;
  }

  .brand img {
    width: 168px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .hero-copy-panel {
    padding: 0;
  }

  .photo-hero,
  .photo-hero img,
  .hero-carousel,
  .hero-carousel-track,
  .hero-slide {
    min-height: 310px;
  }

  .hero-slide img {
    min-height: 274px;
  }

  .cta-band {
    padding: 24px;
  }

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