/*@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Semibold.woff2") format("woff2");
  font-weight: 700;
}

* {
  box-sizing: border-box;
}
*/
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: #222;
  /*font-family: "MiSans", Arial, sans-serif;*/
  -webkit-font-smoothing: antialiased;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  width: 100%;
  height: 58px;
  padding: 0 3.75vw;
  color: #fff;
  transition: background 240ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(0, 0, 0, 0.88);
}

.brand img {
  width: 210px;
  height: auto;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 4.25vw;
  transform: translateX(-50%);
  font-size: 16px;
  letter-spacing: 0;
}

.desktop-nav a,
.desktop-nav button {
  text-decoration: none;
}

.global-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-size: 16px;
  text-decoration: none;
}

.global-link img {
  width: 18px;
  filter: invert(1);
}

.model-panel {
  position: fixed;
  top: 58px;
  left: 0;
  width: 100vw;
  padding: 30px 5vw 36px;
  background: rgba(255, 255, 255, 0.96);
  color: #222;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: 180ms ease;
}

.nav-models:hover .model-panel,
.nav-models:focus-within .model-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.model-tabs {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-bottom: 24px;
  color: #888;
  font-size: 14px;
}

.model-tabs .active {
  color: #222;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(90px, 1fr));
  gap: 20px;
  text-align: center;
}

.model-grid figure {
  margin: 0;
  opacity: 0.78;
}

.model-grid figure.current,
.model-grid figure:hover {
  opacity: 1;
}

.model-grid img {
  width: 100%;
  aspect-ratio: 2.55 / 1;
  object-fit: contain;
}

.model-grid figcaption {
  margin-top: 8px;
  font-size: 13px;
}

.menu-button {
  display: none;
  width: 34px;
  height: 34px;
  margin-left: auto;
  padding: 7px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  display: none;
  width: 100%;
  background: #030303;
  color: #fff;
  text-align: center;
  transform: translateY(-100%);
  transition: transform 240ms ease;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
  padding: 0 16px;
}

.mobile-menu-head img {
  width: 168px;
}

.mobile-menu-head button {
  position: relative;
  width: 28px;
  height: 28px;
}

.mobile-menu-head button::before,
.mobile-menu-head button::after {
  position: absolute;
  top: 13px;
  left: 5px;
  width: 18px;
  height: 1px;
  background: #fff;
  content: "";
}

.mobile-menu-head button::before {
  transform: rotate(45deg);
}

.mobile-menu-head button::after {
  transform: rotate(-45deg);
}

.mobile-menu a,
.mobile-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.mobile-row span {
  width: 8px;
  height: 8px;
  margin-left: 60px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg) translateY(-2px);
}

.mobile-row.active span {
  transform: rotate(225deg) translate(-2px, -1px);
}

.mobile-submenu {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 0 36px 20px;
  color: #aaa;
  font-size: 12px;
}

.mobile-submenu.open {
  display: grid;
}

.mobile-global {
  gap: 9px;
  padding-bottom: 12px;
}

.panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.dark-panel {
  background: #080c13;
  color: #fff;
}

.hero > picture,
.hero > picture img,
.spec-panel picture,
.spec-panel picture img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero::after,
.spec-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0,0,0,0) 38%, rgba(0, 0, 0, 0.35));
  content: "";
}

.hero-copy {
  position: absolute;
  left: 7.5vw;
  bottom: 7.2vh;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}

.hero-copy .hero-txt strong, .hero-txt span {
    display: block;
    color: #fff;
}

.j5-logo {
  width: clamp(220px, 18vw, 322px);
}

.j5-mark {
  display: block;
}

.hero-divider {
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-copy p {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 23px);
  line-height: 1.45;
}

.spec-grid {
  position: absolute;
  left: 50%;
    transform: translateX(-50%);
  bottom: 6vh;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 34px;
  width: auto;
  max-width: 1200px;
  color: #fff;
  text-align: center;
}

.spec-grid div {
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  padding-left: 20px;
  padding-right: 20px;
}

.spec-grid div:first-child {
  border-left: 0;
}

.spec-grid strong {
  font-size: clamp(34px, 3vw, 58px);
  line-height: 1;
}

.spec-grid span {
  margin-left: 6px;
  font-size: 18px;
}

.spec-grid p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.image-panel {
  display: flex;
  justify-content: center;
  background-image: var(--bg);
  background-position: center;
  background-size: cover;
}

.panel-title {
  position: relative;
  z-index: 2;
  margin-top: 11.5vh;
  max-width: 840px;
  padding: 0 28px;
  text-align: center;
}

.panel-title h1,
.panel-title h2 {
  margin: 0;
  font-family: misan, sans-serif;
  font-size: clamp(25px, 2.1vw, 42px);
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
}

.panel-title p {
  margin: 18px 0 0;
  color: #fff;
  font-family: misan, sans-serif;
  font-size: clamp(15px, 1.15vw, 22px);
}

.light-title {
  color: #fff;
}

.light-title p {
    font-family: misan, sans-serif;
  color: rgba(255, 255, 255, 0.72);
}

.tab-band {
  position: relative;
  z-index: 1;
  padding: 5.2vw 11vw 4.5vw;
  background: #fff;
  color: #222;
  text-align: center;
}

.media-tab {
  padding-top: 5.2vw;
}

.tab-visual {
  width: 77.8125vw;
  height: 36.4583vw;
  margin: 0 auto 1.56vw;
  object-fit: cover;
}

.tabs {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  border-bottom: 2px solid #d9d9d9;
}

.tabs button {
  flex: 1;
  min-height: 56px;
  padding: 0 18px 16px;
  color: #222;
  font-family: misan, sans-serif;
  font-size: clamp(16px, 1.25vw, 26px);
  line-height: 1.25;
  outline: none;
  position: relative;
}

.tabs button::after {
  display: block;
  width: 46%;
  height: 4px;
  position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  background: transparent;
  content: "";
  transition: background 180ms ease;
}

.tabs button.active::after {
  background: #3394a2;
}

.tab-band p {
  margin: 28px auto 0;
  max-width: 720px;
  color: #666;
  font-family: misan, sans-serif;
  font-size: clamp(14px, 1vw, 20px);
  line-height: 1.6;
}

.two-tabs .tabs button {
  max-width: 520px;
}

.color-panel {
  display: flex;
  justify-content: center;
  background: #fff;
  min-height: 100vh;
}
.color-panel h2 {
    font-family: misan, sans-serif;
    color: #222222;
}
.color-panel h2+p {
    font-family: misan, sans-serif;
    color: rgb(102, 102, 102);
}
.color-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
}

.color-car {
  /*position: absolute;*/
  /*top: 50%;*/
  /*left: 0;*/
  /*transform: translateY(-50%);*/
  position: relative;
  z-index: 1;
  object-fit: cover;
  width: 100%;
}
.color-car-mobile {
    display: none;
}
.color-dots {
  position: absolute;
  bottom: 7vh;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 28px;
  transform: translateX(-50%);
}

.color-dots button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  height: 44px;
  padding: 0 16px 0 8px;
  border-radius: 24px;
  color: #999999;
  transition: background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.color-dots button.active,
.color-dots button:hover {
  background: #fff;
  color: #000;
}

.color-dots img {
  width: 28px;
  height: 28px;
}
.color-panel .panel-title {
    position: absolute;
}

.passability {
  color: #fff;
}

.passability .panel-title p {
  color: rgba(255, 255, 255, 0.8);
}

.angle-grid {
  position: absolute;
  bottom: 8vh;
  left: 50%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 40px;
  width: min(760px, 86vw);
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}

.angle-grid strong {
  display: block;
  font-size: clamp(38px, 3.4vw, 64px);
  font-weight: 700;
}

.angle-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.35;
}

.charge-gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20.1vw;
  gap: 0.78vw;
  width: 89.6vw;
  height: 100vh;
  margin: 95px auto;
  background: #fff;
  color: #fff;
}

.gallery-section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.gallery-main {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 320ms ease;
}

.gallery-slide.active {
  opacity: 1;
  z-index: 1;
}

.gallery-slide::after,
.silent-slide::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  content: "";
}

.gallery-slide picture,
.gallery-slide img,
.silent-slide picture,
.silent-slide img {
  width: 100%;
  height: 100%;
}

.gallery-slide img,
.silent-slide img {
  object-fit: cover;
}

.gallery-copy {
  position: absolute;
  bottom: 5.4%;
  left: 6%;
  z-index: 2;
}

.gallery-copy p,
.silent-copy p {
  margin: 0 0 0.55vw;
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 700;
  font-family: misan, sans-serif;
  color: #fff;
}

.gallery-copy h2,
.silent-copy h3 {
  margin: 0;
  font-family: misan, sans-serif;
  font-size: clamp(25px, 1.82vw, 35px);
  font-weight: 400;
  line-height: 1.32;
  color: #fff;
}

.gallery-thumbs {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.99vw;
}

.gallery-thumbs button {
  position: relative;
  overflow: hidden;
  background: none;
}

.gallery-thumbs button::after {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  content: "";
  transition: border-color 180ms ease;
}

.gallery-thumbs button.active::after {
  border-color: #fff;
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.silent-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #06080b;
  color: #fff;
}

.silent-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 360ms ease;
}

.silent-slide.active {
  opacity: 1;
  z-index: 1;
}

.silent-slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 40%, rgba(0, 0, 0, 0.16));
  content: "";
}

.silent-slide::after {
  z-index: 1;
}

.silent-heading {
  position: absolute;
  top: 9.8vh;
  left: 50%;
  z-index: 2;
  width: min(680px, 82vw);
  transform: translateX(-50%);
  text-align: center;
}

.silent-heading h2 {
  margin: 0;
  font-size: clamp(34px, 2.28vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.silent-heading p {
  margin: 22px 0 0;
  font-size: clamp(18px, 1.15vw, 24px);
  color: #fff;
}

.silent-copy {
  position: absolute;
  bottom: 10.5vh;
  left: 4.9vw;
  z-index: 2;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 70px;
  transform: translateY(-50%);
}

.slider-arrow::before {
  position: absolute;
  top: 17px;
  width: 33px;
  height: 33px;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
  content: "";
}

.slider-arrow.prev {
  left: 5.2vw;
}

.slider-arrow.prev::before {
  left: 11px;
  transform: rotate(-45deg);
}

.slider-arrow.next {
  right: 5.2vw;
}

.slider-arrow.next::before {
  right: 11px;
  transform: rotate(135deg);
}

.slider-progress {
  position: absolute;
  bottom: 5.2vh;
  left: 4.9vw;
  z-index: 3;
  display: none;
  gap: 10px;
}

.slider-progress button {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
}

.slider-progress button.active {
  background: #fff;
}


.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 5vw 5.5vw;
  background: #fff;
}

.feature-strip div {
  min-height: 360px;
  background: #f5f7fa;
  text-align: center;
}

.feature-strip img {
  width: 100%;
  aspect-ratio: 387 / 284;
  object-fit: cover;
}

.feature-strip p {
  margin: 26px 18px 8px;
  color: #666;
  font-size: 18px;
}

.feature-strip strong {
  display: block;
  margin: 0 18px 26px;
  font-size: 24px;
  line-height: 1.35;
}

.site-footer {
  padding: 48px 3.2vw 0;
  background: #222;
  color: #fff;
}

.footer-columns {
  display: flex;
  gap: 7vw;
  padding-bottom: 48px;
}

.footer-columns section {
  min-width: 180px;
}

.footer-columns h3 {
  margin: 0 0 24px;
  font-size: 18px;
}

.footer-columns a {
  display: block;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #555;
  padding: 28px 0;
}

.footer-bottom img {
  width: 220px;
}

.footer-bottom p {
  display: flex;
  gap: 28px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 42px;
}

.socials img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.cookie-panel {
  position: fixed;
  right: 3vw;
  bottom: 5vh;
  left: 3vw;
  z-index: 90;
  padding: 28px 24px 24px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  color: #3d3d3d;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.cookie-panel.hidden {
  display: none;
}

.cookie-panel h2 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 400;
}

.cookie-panel p {
  max-width: 1180px;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.cookie-close {
  position: absolute;
  top: 23px;
  right: 24px;
  width: 28px;
  height: 28px;
}

.cookie-close::before,
.cookie-close::after {
  position: absolute;
  top: 13px;
  left: 3px;
  width: 22px;
  height: 1px;
  background: #222;
  content: "";
}

.cookie-close::before {
  transform: rotate(45deg);
}

.cookie-close::after {
  transform: rotate(-45deg);
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2vw;
  margin-top: 30px;
}

.cookie-actions button {
  min-height: 44px;
  border: 1px solid #222;
  color: #222;
  font-size: 14px;
}

.cookie-actions button:nth-child(n + 2) {
  background: #1a1a1a;
  color: #fff;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: none;
  width: 44px;
  height: 44px;
}

.back-top.visible {
  display: block;
}

@media (max-width: 1023px) {
  .site-header {
    height: 45px;
    padding: 0 16px;
    background: transparent;
  }

  .brand img {
    width: 168px;
  }

  .desktop-nav,
  .global-link {
    display: none;
  }

  .menu-button,
  .mobile-menu {
    display: block;
  }

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

  .hero-copy {
    top: 22.5vh;
    bottom: auto;
    left: 50%;
    display: block;
    width: 78vw;
    height: 80%;
    transform: translateX(-50%);
    text-align: center;
  }

    .hero-copy .hero-txt span {
        display: none;
    }
    
  .j5-logo {
    width: 49.7vw;
    margin: 0 auto 8px;
  }

  .hero-divider {
    display: none;
  }

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

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

  .hero-copy p::after {
    position: fixed;
    bottom: 14vh;
    left: 0;
    width: 100%;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 400;
    content: "Enjoy Each Moment Outdoors";
  }

  .hero-copy p {
    color: #fff;
  }

  .spec-grid {
    right: auto;
    bottom: 8vh;
    left: 50%;
    transform: translateX(-50%);
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 10px;
    width: 86vw;
    transform: translateX(-50%);
    font-family: misan, sans-serif;
  }

  .spec-grid div {
    border-left: 0;
  }

  .spec-grid strong {
    font-size: 36px;
  }

  .spec-grid span,
  .spec-grid p {
    font-size: 14.75px;
  }

  .panel-title {
    margin-top: 13.33vw;
  }

  .panel-title h1,
  .panel-title h2 {
    font-size: 5.14vw;
    line-height: 1.42;
  }

  .panel-title p {
    margin-top: 2.13vw;
    font-size: 3.2vw;
    line-height: 1.66;
  }

  .image-panel {
    min-height: 112vw;
    background-image: var(--mb, var(--bg));
    background-position: center;
  }

  .tab-band {
    padding: 13.33vw 0 18.66vw;
    background: #000;
  }

  .media-tab {
    padding-top: 0;
  }

  .tab-visual {
    width: 100vw;
    height: 100vw;
    margin-bottom: 14.93vw;
    object-fit: cover;
  }

  .tabs {
    display: block;
    width: 100%;
    border-bottom: 0;
  }
  .tabs::after {
    content: '';
    display: block;
    height: 15vh;
    width: 100%;
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: 0;
    background: linear-gradient(0deg, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
  }
  
  .tabs button {
    display: none;
    width: 100%;
    min-height: 8.53vw;
    padding: 0 16vw;
    font-family: misan, sans-serif;
    font-size: 4.26vw;
    font-weight: 700;
    line-height: 1.32;
    color: #fff;
    position: relative;
    z-index: 1;
  }

  .tabs button.active {
    display: block;
  }

  .tabs button::after {
    display: none;
  }

  .tab-band p {
    min-height: 12.8vw;
    padding: 0 5.33vw;
    color: #fff;
    font-size: 3.2vw;
    line-height: 1.34;
  }

  .tab-band::before,
  .tab-band::after {
    position: absolute;
    top: 50%;
    width: 8.53vw;
    height: 8.53vw;
    background: center / contain no-repeat;
    content: "";
  }

  .tab-band::before {
    left: 4.26vw;
    background-image: url("../images/j5/arrow_left.webp");
  }

  .tab-band::after {
    right: 4.26vw;
    background-image: url("../images/j5/arrow_right.webp");
  }

  .color-panel {
    min-height: 100vh;
  }

    .color-car {
        display: none;
    }
    
  .color-car-mobile {
      display: block;
      position: absolute;
    top: 46%;
    width: 100%;
    transform: none;
  }

  .color-dots {
    bottom: 10vh;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding: 0 10.84vw;
    gap: 7.1vw;
    scrollbar-width: none;
  }

  .color-dots::-webkit-scrollbar {
    display: none;
  }

  .color-dots button {
    flex-shrink: 0;
    height: 12.17vw;
    padding: 0;
    border-radius: 6vw;
  }

  .color-dots button.active {
    padding: 0 7.1vw 0 2.66vw;
  }

  .color-dots button span {
    display: none;
    font-size: 4.44vw;
  }

  .color-dots button.active span {
    display: inline;
  }

  .color-dots img {
    width: 7.73vw;
    height: 7.73vw;
  }

  .angle-grid {
    bottom: 10vw;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .angle-grid strong {
    font-size: 8vw;
  }

  .angle-grid span {
    font-size: 3.2vw;
  }
  .charge-gallery {
    display: block;
    width: 100%;
    height: 216.53vw;
    min-height: 100vh;
    margin: 0;
  }

    .gallery-section {
        padding: 0;
    }
    
  .gallery-main {
    width: 100%;
    height: 100%;
  }

  .gallery-copy {
    bottom: 14vw;
    left: 5.33vw;
    width: 86vw;
  }

  .gallery-copy p,
  .silent-copy p {
    margin-bottom: 2.13vw;
    font-size: 4vw;
  }

  .gallery-copy h2,
  .silent-copy h3 {
    font-size: 7.46vw;
    line-height: 1.28;
  }

  .gallery-thumbs {
    position: absolute;
    bottom: 7vw;
    left: 5.33vw;
    z-index: 4;
    display: flex;
    gap: 2.66vw;
  }

  .gallery-thumbs button {
    width: 10.66vw;
    height: 2px;
    overflow: visible;
    background: rgba(255, 255, 255, 0.35);
  }

  .gallery-thumbs button.active {
    background: #fff;
  }

  .gallery-thumbs button::after,
  .gallery-thumbs img {
    display: none;
  }
    
  .silent-slider {
    min-height: 216.53vw;
  }

  .silent-heading {
    top: 11.5vw;
    width: 90vw;
  }

  .silent-heading h2 {
    font-size: 7.46vw;
  }

  .silent-heading p {
    margin-top: 3.2vw;
    font-size: 4.26vw;
    line-height: 1.35;
    color: #fff;
  }

  .silent-copy {
    bottom: 10vw;
    left: 5.33vw;
    width: 88vw;
  }

  .slider-arrow {
    display: none;
  }

  .slider-progress {
    bottom: 4.26vw;
    left: 5.33vw;
    display: flex;
    gap: 2.66vw;
  }

  .slider-progress button {
    width: 10.66vw;
  }
  
  .feature-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 13.33vw 4.26vw;
  }

  .feature-strip div {
    min-height: 0;
  }

  .feature-strip p {
    font-size: 3.6vw;
  }

  .feature-strip strong {
    font-size: 5vw;
  }

  .site-footer {
    padding: 48px 32px;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .footer-columns h3 {
    font-size: 16px;
  }

  .footer-columns a {
    color: #666;
    font-size: 14px;
  }

  .footer-bottom {
    display: block;
    text-align: center;
  }

  .footer-bottom img {
    width: 190px;
    margin: 0 auto;
  }

  .footer-bottom p {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    font-size: 12px;
  }

  .socials {
    justify-content: center;
    margin-bottom: 20px;
    transform: translateY(-20px);
  }

  .cookie-panel {
    right: 0;
    bottom: 0;
    left: 0;
    padding: 48px 40px;
    border-radius: 0;
  }

  .cookie-panel h2 {
    text-align: center;
    font-size: 20px;
  }

  .cookie-panel p {
    font-size: 14px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-actions button {
    min-height: 46px;
  }
}

@media (max-width: 520px) {
  .hero picture img {
    object-position: 50% center;
  }

  .hero-copy {
    top: 23vh;
  }

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


  .image-panel {
    min-height: 100vh;
  }
  
  .tab-band {
    padding: 0;
  }
}
