*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  background: var(--color-white);
  line-height: 1.5;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 10000;
}
.skip-link:focus {
  left: 8px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.site-header {
  background: #242424;
}
.header-inner {
  display: flex;
  align-items: center;
  min-height: 99px;
  gap: 12px;
}
.site-header nav {
  flex: 1;
  min-width: 0;
}
.logo img {
  width: 241px;
  height: 59px;
  object-fit: contain;
}
.nav-desktop {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
  width: 100%;
}
.nav-desktop a {
  display: inline-block;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 13px 10px;
  letter-spacing: 0;
  position: relative;
  isolation: isolate;
  z-index: 1;
  transition: color 0.3s cubic-bezier(0.58, 0.3, 0.005, 1);
}
.nav-desktop a::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: #ffcb22;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.58, 0.3, 0.005, 1);
}
.nav-desktop a:hover,
.nav-desktop a:focus {
  color: #000;
}
.nav-desktop a:hover::before,
.nav-desktop a:focus::before {
  opacity: 1;
}
.nav-desktop a[aria-current="page"] {
  color: #fff;
}
.nav-desktop a[aria-current="page"]::before {
  background: #242424;
  opacity: 1;
}
.nav-desktop a[aria-current="page"]:hover,
.nav-desktop a[aria-current="page"]:focus {
  color: #fff;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border: 0;
  background: #fff;
  color: #242424;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.mobile-panel {
  background: #272727;
  padding: 8px 0 16px;
}
.mobile-panel a {
  display: block;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  padding: 12px 20px;
}
.mobile-panel a:hover,
.mobile-panel a[aria-current="page"] {
  background: #ffcb22;
  color: #000;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--color-primary);
  color: #000;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  border-radius: 5px;
  padding: 12px 24px;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn:hover {
  background: #000;
  color: #fff;
}

/* Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 520px;
  background: #000;
}
.hero-slider.hero-mobile {
  display: none;
  height: 551px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.slide-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}
.slide.is-active .slide-bg {
  animation: kenburns 12s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 max(15px, calc((100% - 1140px) / 2 + 15px));
  display: flex;
  align-items: center;
}
.slide-contents {
  max-width: 43%;
  color: #fff;
}
.slide-heading {
  font-family: var(--font);
  font-size: 45px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}
.slide-desc {
  font-family: var(--font);
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 22px;
}
.slide-btn {
  display: inline-block;
  background: #ffda27;
  color: #000;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border: 2px solid #ffda27;
  text-transform: uppercase;
}
.slide-btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  line-height: 1;
}
.slider-nav.prev { left: 12px; }
.slider-nav.next { right: 12px; }
.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
}
.slider-dots button.is-active {
  background: #fff;
}

/* About */
.sec-about {
  padding: 60px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.about-photo {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}
.kicker {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.about-grid h1,
.about-copy h2 {
  font-size: 37px;
  font-weight: 700;
  color: #242424;
  line-height: 1.2;
  margin-bottom: 10px;
}
.about-copy h2 {
  font-size: 22px;
  font-weight: 600;
}
.about-copy p {
  color: var(--color-text);
  margin-bottom: 14px;
  font-size: 16px;
}
.about-copy .btn {
  margin-top: 4px;
}

/* Video band */
.sec-video {
  padding: 40px 0;
  background: linear-gradient(180deg, #f7f7f7 0%, #c9c9c9 100%);
}
.video-wrap {
  max-width: 672px;
  margin: 0 auto;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-frame iframe,
.yt-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-facade {
  padding: 0;
  cursor: pointer;
  background: #000;
}
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yt-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 48px;
  margin: -24px 0 0 -34px;
  background: #f00;
  border-radius: 10px;
  pointer-events: none;
}
.yt-play::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 14px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}

/* Promo boxes */
.sec-promos {
  margin: 60px 0 10px;
}
.sec-promos-head {
  text-align: center;
  margin-bottom: 20px;
}
.sec-promos-head h2 {
  color: #242424;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.sec-promos-head .gold {
  color: var(--color-primary);
  display: block;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.promo-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 343px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.promo-box-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
  z-index: 0;
}
.promo-box:hover .promo-box-bg {
  transform: scale(1.06);
}
.promo-box-overlay {
  position: absolute;
  inset: 0;
  background: #1f1c1196;
  transition: background 0.4s;
  z-index: 1;
}
.promo-box:hover .promo-box-overlay {
  background: #1313135e;
}
.promo-box-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 30px 40px;
  text-align: center;
  color: #fff;
}
.promo-box-content h3 {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.25;
}
.promo-box .btn-more {
  display: inline-block;
  background: var(--color-primary);
  color: #000;
  font-weight: 700;
  font-size: 17px;
  padding: 10px 30px 11px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.promo-box:hover .btn-more {
  background: #000;
  color: #fff;
}

/* CTA band */
.sec-cta {
  margin: 100px 0;
  min-height: 508px;
  padding: 100px 15px;
  background: url("/assets/img/banner-cta.webp") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 1025px) {
  .sec-cta { background-attachment: fixed; }
}
.sec-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.83);
}
.sec-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 732px;
  color: #fff;
}
.sec-cta h2 {
  color: #ffda27;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.sec-cta h3 {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 16px;
  line-height: 1.35;
}
.sec-cta p {
  color: #ececec;
  font-size: 18px;
  font-weight: 700;
}

/* Flip cards */
.sec-flips {
  margin: 0 0 100px;
}
.flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.flip {
  display: block;
  width: 100%;
  height: 254px;
  perspective: 1000px;
}
.flip-inner {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s;
  border-radius: 15px;
}
.flip:hover .flip-inner,
.flip:focus-within .flip-inner {
  transform: rotateY(180deg);
}
.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.flip-front {
  background: #242424 url("/assets/img/flip-bg.webp") center / cover no-repeat;
}
.flip-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2a2a2aed;
}
.flip-front > * {
  position: relative;
  z-index: 1;
}
.flip-front img {
  width: 76px;
  height: auto;
  margin: 0 auto 8px;
}
.flip-front h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.flip-front h3 span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 4px;
}
.flip-back {
  background: var(--color-primary);
  transform: rotateY(180deg);
  flex-direction: column;
}
.flip-back h3 {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.flip a.flip-inner {
  display: block;
  color: inherit;
}

/* Page title */
.page-title {
  background: #efefef;
  padding: 25px 0;
}
.page-title h1 {
  font-family: var(--font);
  font-weight: 700;
  color: #242424;
  font-size: 28px;
}

/* Interior split */
.sec-split {
  padding: 60px 0;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.split-copy p {
  color: var(--color-text);
  margin-bottom: 14px;
}
.split-copy ul {
  margin: 8px 0 16px;
}
.split-copy li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #242424;
  margin-bottom: 6px;
  font-size: 16px;
}
.split-copy li::before {
  content: "✓";
  color: #2ecc71;
  font-weight: 700;
  flex: 0 0 auto;
}
.split-photo,
.split-promo {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}
.split-promo {
  min-height: 440px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.split-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #1f1c1159;
}

/* Machine cards */
.sec-machines {
  padding: 40px 0 20px;
}
.machines-intro {
  text-align: center;
  max-width: 843px;
  margin: 0 auto 28px;
  font-weight: 600;
  color: #000;
  font-size: 18px;
}
.machine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 750px;
  margin: 0 auto 30px;
}
.machine-card {
  background: #242424;
  border-radius: 25px;
  padding: 25px;
  text-align: center;
  color: #fff;
}
.machine-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 15px;
}
.machine-card h3 {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.machine-card p {
  color: #fff;
  font-size: 15px;
}

/* Gallery */
.sec-gallery {
  padding: 10px 0 60px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.gallery-grid a {
  display: block;
  border: 2px solid #ffda27;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.gallery-grid a:hover img {
  transform: scale(1.08);
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 980px;
  margin: 30px auto 60px;
}
.gallery-thumbs a {
  display: block;
  background: #f3f3f3;
  padding: 6px;
  aspect-ratio: 1;
}
.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact cards */
.sec-contact {
  padding: 50px 0 70px;
}
.contact-intro {
  text-align: center;
  margin-bottom: 28px;
  font-weight: 600;
  color: #242424;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 980px;
  margin: 0 auto;
}
.contact-card {
  background: #242424 url("/assets/img/flip-bg.webp") center / cover no-repeat;
  border-radius: 25px;
  padding: 28px 22px;
  color: #fff;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2a2a2aed;
  border-radius: 25px;
}
.contact-card > * {
  position: relative;
  z-index: 1;
}
.contact-card .ico {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: var(--color-primary);
}
.contact-card p,
.contact-card a {
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
}
.contact-card a:hover {
  color: var(--color-primary);
}
.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.contact-lines a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 837px;
  margin: 40px auto 80px;
  align-items: start;
}
.duo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.duo-item .flip {
  width: 100%;
  height: 254px;
  margin-bottom: 18px;
}

/* Videos page */
.sec-videos {
  padding: 40px 0 80px;
}
.video-left {
  max-width: 480px;
}

/* Footer */
.site-footer {
  background: #242424;
  color: #fff;
  padding: 8% 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 38.8% 27.6% 1fr;
  gap: 20px;
  padding-bottom: 40px;
  align-items: start;
}
.footer-brand img {
  max-width: 70%;
  height: auto;
  margin-bottom: 14px;
}
.footer-brand p {
  font-weight: 600;
  color: #fff;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}
.footer-brand svg,
.footer-contact svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: var(--color-primary);
  margin-top: 4px;
}
.footer-col h3 {
  font-family: var(--font);
  font-weight: 600;
  color: #ffda27;
  margin-bottom: 12px;
  font-size: 22px;
}
.footer-col a {
  display: block;
  color: #fff;
  padding: 8px 5px;
  font-weight: 500;
}
.footer-col a:hover {
  color: var(--color-primary);
}
.footer-contact a,
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  padding: 4px 0;
}
.footer-contact svg {
  margin-top: 0;
}
.footer-bar {
  background: var(--color-primary);
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 16px;
}
.footer-bar a {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.wa-float {
  position: fixed;
  right: 25px;
  bottom: 67px;
  z-index: 9999;
}
.wa-float-btn {
  display: flex;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.wa-float-btn:hover {
  background: #036628;
}
.wa-float-btn svg {
  width: 45px;
  height: 45px;
}

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lb.is-open { display: flex; }
.lb img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
}
.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}
.lb-close { top: 16px; right: 22px; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .header-inner {
    flex-direction: column;
    min-height: auto;
    padding: 10px 0 0;
  }
  .logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .flip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
  .site-footer { padding: 50px 0 0; }
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 20px 40px;
  }
}

@media (max-width: 767px) {
  .hero-slider { display: none; }
  .hero-slider.hero-mobile {
    display: block;
    height: 277px;
  }
  .slide-contents { max-width: 100%; }
  .slide-heading { font-size: 25px; }
  .slide-desc { font-size: 18px; font-weight: 400; }
  .hero-mobile .slide-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
  }
  .sec-about,
  .sec-split {
    padding: 10px 0;
  }
  .about-grid,
  .split-grid,
  .machine-grid,
  .duo-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .about-grid h1 { font-size: 32px; }
  .promo-box { min-height: 300px; }
  .promo-box-content { padding: 40px 20px 30px; }
  .promo-box-content h3 { font-size: 23px; }
  .sec-promos { margin: 10px 0; }
  .sec-cta {
    margin: 10px 0;
    padding: 20px;
    min-height: 0;
    background-attachment: scroll;
  }
  .sec-cta h2 { font-size: 18px; }
  .sec-cta h3 { font-size: 20px; }
  .sec-cta p { font-size: 15px; }
  .sec-flips { margin-bottom: 40px; }
  .flip-grid { grid-template-columns: 1fr; }
  .gallery-grid,
  .gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-title h1 { font-size: 22px; }
  .footer-brand img { max-width: 100%; }
  .footer-col h3 {
    text-align: center;
    font-size: 23px;
  }
  .footer-bar a { font-size: 13px; }
  .site-footer { padding: 20px 0 0; }
}
