/*
Theme Name: Alleen Computadores
Author: Alleen
Description: Tema institucional e catálogo da Alleen Computadores.
Version: 2.0.0
*/

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue: #2663a2;
  --blue-bright: #1697dc;
  --ink: #202226;
  --muted: #5b5c60;
  --paper: #ffffff;
  --soft: #eeeeee;
  --line: #d9d9d9;
  --header-height: 132px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

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

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  clip: auto;
  background: #fff;
  color: #000;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: #f0f0f0;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  background: rgba(240, 240, 240, 0.97);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  width: min(100%, 1100px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 156px;
}

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

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 16px;
}

.main-nav > a,
.nav-products > button {
  position: relative;
  padding: 18px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.main-nav > a.is-active,
.nav-products > button:hover,
.nav-products > button:focus-visible {
  color: var(--blue);
}

.nav-products {
  position: relative;
}

.products-submenu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: calc(100% - 2px);
  left: 50%;
  width: 200px;
  padding: 7px 0;
  transform: translate(-50%, -8px);
  background: #f1f1f1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.products-submenu a {
  display: block;
  padding: 5px 18px;
  text-align: center;
  white-space: nowrap;
}

.products-submenu a:hover,
.products-submenu a:focus-visible {
  color: var(--blue);
}

.nav-products:hover .products-submenu,
.nav-products:focus-within .products-submenu,
.nav-products.is-open .products-submenu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.quote-button {
  justify-self: end;
  width: 218px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 2px solid var(--blue);
  border-radius: 32px;
  background: transparent;
  font-size: 17px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.quote-button:hover,
.quote-button:focus-visible {
  background: var(--blue);
  color: #fff;
}

.whatsapp-mark {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
}

.home-hero {
  position: relative;
  min-height: 723px;
  display: grid;
  place-items: start center;
  overflow: hidden;
  background: #050607;
  color: #fff;
}

.home-hero-media,
.performance-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-machines {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -18px;
  width: min(1126px, 82vw);
  aspect-ratio: 1126 / 420;
  transform: translateX(-50%);
  animation: hero-art-enter 0.85s 0.42s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  pointer-events: none;
  user-select: none;
}

@keyframes hero-art-enter {
  from { opacity: 0; transform: translate(-50%, 26px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.hero-machines-image {
  position: absolute;
  left: 50%;
  bottom: 0;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  animation: hero-machines-primary 12.2s linear infinite;
}

.hero-machines-image-primary {
  width: 79.31%;
}

.hero-machines-image-secondary {
  width: 100%;
  opacity: 0;
  animation-name: hero-machines-secondary;
}

@keyframes hero-machines-primary {
  0%, 44.3% { opacity: 1; }
  50%, 94.3% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes hero-machines-secondary {
  0%, 44.3% { opacity: 0; }
  50%, 94.3% { opacity: 1; }
  100% { opacity: 0; }
}

.home-hero-content {
  position: relative;
  z-index: 3;
  width: min(850px, calc(100% - 40px));
  padding-top: 77px;
  text-align: center;
}

.home-hero h1 {
  margin-bottom: 15px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}

.home-hero p {
  margin-bottom: 27px;
  font-size: 19px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 17px;
}

.blue-button {
  min-height: 50px;
  min-width: 249px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--blue);
  border-radius: 0;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.blue-button:hover,
.blue-button:focus-visible {
  border-color: #174d85;
  background: #174d85;
  transform: translateY(-2px);
}

.blue-button.compact {
  min-width: 120px;
  min-height: 42px;
  padding: 8px 20px;
  font-weight: 400;
}

.categories-band {
  padding: 48px 38px;
  background: #e7e7e7;
}

.categories-panel {
  width: min(1332px, 100%);
  margin: 0 auto;
  padding: 64px 80px 67px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 41px;
  background: #fff;
}

.category-tile {
  min-width: 0;
  overflow: hidden;
  background: var(--blue);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-tile:hover,
.category-tile:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.category-tile img {
  width: 100%;
  aspect-ratio: 264 / 305;
  object-fit: cover;
}

.category-tile span {
  min-height: 80px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

.performance-story {
  position: relative;
  height: 615px;
  overflow: hidden;
  background: #061017;
}

.performance-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 15, 24, 0.24);
}

.performance-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 80px));
  height: 100%;
  margin: 0 auto;
}

.performance-photo {
  position: absolute;
  left: 0;
  top: 58px;
  width: 790px;
  height: 363px;
  object-fit: cover;
}

.performance-copy {
  position: absolute;
  right: 0;
  top: 167px;
  width: 790px;
  min-height: 345px;
  padding: 72px 105px 50px;
  background: #efefef;
}

.performance-copy h2 {
  margin-bottom: 61px;
  color: var(--blue);
  font-size: 32px;
  line-height: 1.35;
}

.performance-copy p {
  margin-bottom: 0;
  color: #4d4e52;
  font-size: 16px;
  line-height: 1.8;
}

.about-alleen {
  min-height: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ededed;
}

.about-visual {
  position: relative;
  min-height: 1000px;
  overflow: hidden;
}

.about-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-stack {
  position: absolute;
  inset: 105px auto auto 110px;
  width: min(395px, calc(100% - 150px));
  display: grid;
  gap: 42px;
}

.value-box {
  min-height: 176px;
  padding: 30px 42px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.value-box h3 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 21px;
}

.value-box p {
  margin-bottom: 0;
  color: #55575a;
  font-size: 14px;
  line-height: 1.55;
}

.about-copy {
  min-width: 0;
  padding: 72px 80px;
  background: #efefef;
}

.about-copy h2 {
  margin-bottom: 17px;
  color: var(--blue);
  font-size: 52px;
  line-height: 1.15;
}

.blue-rule {
  width: 405px;
  max-width: 100%;
  height: 4px;
  margin-bottom: 42px;
  background: var(--blue-bright);
}

.about-copy h3 {
  margin-bottom: 38px;
  color: var(--blue);
  font-size: 22px;
}

.about-copy p {
  max-width: 530px;
  margin-bottom: 31px;
  color: #4e5054;
  font-size: 16px;
  line-height: 1.85;
}

.trusted-section {
  padding: 66px 20px 82px;
  background: #fff;
  text-align: center;
}

.trusted-section h2 {
  margin-bottom: 43px;
  color: var(--blue);
  font-size: 40px;
  line-height: 1.2;
}

.trusted-logos {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 46px 26px;
}

.trusted-logos img {
  width: 100%;
  height: 148px;
  object-fit: contain;
}

.trusted-logos a {
  display: grid;
  place-items: center;
}

.site-footer {
  padding: 93px 0 70px;
  background: #eeeeee;
  color: #3d3e41;
}

.footer-grid {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.75fr;
  gap: 90px;
}

.footer-brand img {
  width: 234px;
  height: auto;
  margin-bottom: 0;
}

.footer-brand > span {
  display: block;
  margin: -9px 0 54px 30px;
  color: #888;
  font-size: 8px;
}

.footer-brand p {
  margin-bottom: 7px;
  font-size: 18px;
}

.footer-newsletter h2,
.footer-social h2 {
  margin-bottom: 31px;
  font-size: 18px;
  font-weight: 400;
}

.footer-newsletter label {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-newsletter input {
  width: 100%;
  height: 55px;
  margin-bottom: 18px;
  padding: 10px 12px;
  border: 1px solid #555;
  border-radius: 4px;
  background: transparent;
}

.footer-newsletter button {
  min-width: 115px;
  height: 55px;
  border: 1px solid #555;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.footer-newsletter button:hover,
.footer-newsletter button:focus-visible {
  background: #222;
  color: #fff;
}

.instagram-link {
  display: inline-block;
  margin-bottom: 62px;
}

.instagram-link img {
  width: 25px;
  height: 25px;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 76px;
  font-size: 14px;
}

.copyright {
  font-size: 14px;
}

.form-success {
  color: #14723a;
  font-weight: 600;
}

.hero-enter {
  animation: hero-enter 0.82s 0.52s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 1.05s ease, transform 1.05s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-up { transform: translateY(45px); }
.reveal-left { transform: translateX(-55px); }
.reveal-right { transform: translateX(55px); }

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Category pages */
.catalog-hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #111 var(--catalog-hero) center / cover no-repeat;
  color: #fff;
}

.catalog-hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.54);
}

.catalog-hero-content {
  position: relative;
  z-index: 1;
  width: min(907px, calc(100% - 50px));
  margin: 0 auto;
  padding: 92px 0 60px;
}

.catalog-kicker {
  margin-bottom: 0;
  font-size: 31px;
  font-weight: 700;
}

.catalog-hero h1 {
  margin-bottom: 20px;
  font-size: 76px;
  line-height: 1.08;
  font-weight: 400;
}

.catalog-rule {
  width: 565px;
  max-width: 100%;
  height: 4px;
  margin-bottom: 53px;
  background: #159fe7;
}

.catalog-hero h2 {
  max-width: 720px;
  margin-bottom: 44px;
  font-size: 31px;
  line-height: 1.45;
}

.catalog-hero-content > p:not(.catalog-kicker) {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.45;
}

.catalog-products {
  padding: 115px 30px 110px;
  background: #fff;
}

.product-grid {
  width: min(940px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 68px 20px;
}

.catalog-card {
  min-width: 0;
  min-height: 435px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #f0f0f0;
}

.catalog-card h2 {
  margin: 0;
  padding: 28px 0 0;
  font-size: 16px;
  line-height: 1.25;
}

.catalog-image {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 8px 12px;
}

.catalog-image img {
  width: 100%;
  height: 285px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.catalog-card:hover .catalog-image img {
  transform: scale(1.04);
}

.catalog-card-footer {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 8px 0 0;
  background: #fff;
}

.catalog-card-footer p {
  margin: 0;
  font-size: 14px;
  white-space: nowrap;
}

/* Product pages */
.product-intro {
  min-height: 555px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 26px max(7vw, 30px) 32px;
  background: #fff;
}

.product-primary {
  display: grid;
  place-items: center;
  height: 500px;
}

.product-primary img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-intro-copy {
  max-width: 520px;
}

.product-intro-copy h1 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 42px;
  line-height: 1.2;
}

.product-intro-copy h2 {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 26px;
  line-height: 1.35;
  font-weight: 400;
}

.product-intro-copy p {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.7;
}

.product-intro-copy .blue-button {
  width: 254px;
  margin: 0 12px 10px 0;
}

.product-specs {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: center;
  padding: 52px max(8vw, 35px);
  overflow: hidden;
  background: #040507 var(--spec-background) center / cover no-repeat;
  color: #fff;
}

.product-specs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.product-specs > * {
  position: relative;
  z-index: 1;
}

.product-specs-copy h2 {
  margin-bottom: 35px;
  color: #1e8eee;
  font-size: 32px;
  text-transform: uppercase;
}

.spec-list {
  display: grid;
  gap: 17px;
  margin-bottom: 25px;
}

.spec-item {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 17px;
}

.spec-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.product-price {
  margin: 24px 0 20px;
  font-size: 22px;
  font-weight: 700;
}

.product-specs-copy small {
  display: block;
  max-width: 480px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.product-spec-image {
  width: 100%;
  height: 560px;
  object-fit: contain;
}

.product-story {
  background: #fff;
}

.story-heading {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 44px;
  color: var(--blue);
  text-align: center;
}

.story-heading h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.3;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: #f0f0f0;
}

.story-lifestyle {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  padding: 70px max(7vw, 45px);
}

.story-copy p {
  margin-bottom: 20px;
  color: #4a4b4e;
  line-height: 1.75;
}

.product-quote {
  position: relative;
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 65px max(8vw, 40px);
  background: #0a0c0f;
  color: #fff;
}

.product-quote img {
  width: 100%;
  height: 390px;
  object-fit: contain;
}

.product-quote blockquote {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.45;
  font-weight: 600;
}

.related-products {
  padding: 80px 30px 100px;
  text-align: center;
}

.related-products > h2 {
  margin-bottom: 48px;
  color: var(--blue);
  font-size: 31px;
}

.related-grid {
  width: min(1050px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.related-card {
  min-width: 0;
  display: grid;
  gap: 15px;
  color: var(--blue);
  font-weight: 600;
}

.related-card img {
  width: 100%;
  height: 235px;
  object-fit: contain;
  background: #f1f1f1;
}

/* Contact and generic pages */
.contact-layout {
  width: min(1300px, calc(100% - 70px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #fff;
}

.contact-photo {
  background: #eee var(--contact-photo) center / cover no-repeat;
}

.contact-panel {
  padding: 125px 74px 80px;
}

.contact-panel h1 {
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 32px;
}

.contact-form {
  display: grid;
  gap: 25px;
}

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

.contact-form label {
  display: grid;
  gap: 4px;
  color: #436680;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 9px 0;
  border: 0;
  border-bottom: 2px solid #b9e6df;
  border-radius: 0;
  outline: none;
  background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-submit {
  min-width: 150px;
  width: 150px;
  border-radius: 28px;
}

.page-shell {
  width: min(960px, calc(100% - 40px));
  min-height: 60vh;
  margin: 0 auto;
  padding: 78px 0 100px;
}

.page-shell h1 {
  color: var(--blue);
  font-size: 48px;
}

.entry-content {
  color: #454649;
  line-height: 1.8;
}

@media (max-width: 1180px) {
  .nav-wrap {
    width: calc(100% - 40px);
    grid-template-columns: 170px 1fr 190px;
  }

  .main-nav {
    gap: 18px;
    font-size: 14px;
  }

  .quote-button {
    width: 190px;
  }

  .categories-panel {
    padding: 55px 44px;
    gap: 24px;
  }

  .performance-photo {
    width: 64%;
  }

  .performance-copy {
    width: 63%;
    padding-left: 70px;
    padding-right: 70px;
  }

  .value-stack {
    left: 55px;
    width: calc(100% - 90px);
  }

  .about-copy {
    padding-left: 55px;
    padding-right: 55px;
  }
}

@media (max-width: 900px) {
  :root { --header-height: 88px; }

  .reveal-left,
  .reveal-right {
    transform: translateY(40px);
  }

  .admin-bar .site-header { top: 46px; }

  .nav-wrap {
    width: calc(100% - 32px);
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .brand,
  .brand img {
    width: 132px;
  }

  .brand img {
    height: auto;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span:not(.screen-reader-text) {
    width: 26px;
    height: 2px;
    display: block;
    background: var(--blue);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 28px 28px 60px;
    overflow-y: auto;
    transform: translateX(100%);
    background: #f0f0f0;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav > a,
  .nav-products > button {
    width: 100%;
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #d5d5d5;
    text-align: left;
  }

  .products-submenu {
    position: static;
    display: none;
    visibility: visible;
    opacity: 1;
    width: 100%;
    padding: 4px 0 10px 18px;
    transform: none;
    box-shadow: none;
  }

  .products-submenu a {
    padding: 9px 0;
    text-align: left;
  }

  .nav-products:hover .products-submenu {
    display: none;
  }

  .nav-products.is-open .products-submenu,
  .nav-products:focus-within .products-submenu {
    display: block;
    transform: none;
  }

  .quote-button {
    display: none;
  }

  .home-hero {
    min-height: 680px;
  }

  .home-hero-content {
    padding-top: 68px;
  }

  .home-hero h1 {
    font-size: 34px;
  }

  .home-hero h1 br,
  .home-hero p br {
    display: none;
  }

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

  .performance-story {
    height: auto;
    min-height: 760px;
    padding: 58px 0;
  }

  .performance-inner {
    width: calc(100% - 40px);
    display: grid;
    align-content: center;
  }

  .performance-photo,
  .performance-copy {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .performance-photo {
    height: 330px;
  }

  .performance-copy {
    min-height: 0;
    padding: 48px;
  }

  .performance-copy h2 {
    margin-bottom: 28px;
  }

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

  .about-visual,
  .about-alleen {
    min-height: 920px;
  }

  .about-copy {
    padding: 65px 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .trusted-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-hero {
    min-height: 720px;
  }

  .catalog-hero h1 {
    font-size: 58px;
  }

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

  .product-intro,
  .product-specs,
  .story-grid,
  .product-quote,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .product-intro {
    gap: 20px;
    padding-top: 50px;
    padding-bottom: 65px;
  }

  .product-primary {
    height: 430px;
  }

  .product-intro-copy {
    max-width: 640px;
    margin: 0 auto;
  }

  .product-specs {
    padding-top: 70px;
  }

  .product-spec-image {
    height: 470px;
  }

  .story-lifestyle {
    height: 520px;
  }

  .product-quote {
    gap: 20px;
  }

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

  .contact-layout {
    width: 100%;
  }

  .contact-photo {
    min-height: 480px;
  }
}

@media (max-width: 620px) {
  .home-hero {
    min-height: 650px;
  }

  .home-hero-media {
    object-position: 58% center;
  }

  .hero-machines {
    bottom: -25px;
    width: 660px;
  }

  .home-hero-content {
    width: calc(100% - 28px);
    padding-top: 55px;
  }

  .home-hero h1 {
    font-size: 30px;
    line-height: 1.22;
  }

  .home-hero p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .blue-button {
    min-width: 0;
    width: 100%;
    max-width: 310px;
  }

  .categories-band {
    padding: 28px 16px;
  }

  .categories-panel {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px 24px;
  }

  .category-tile span {
    min-height: 68px;
  }

  .performance-story {
    min-height: 0;
  }

  .performance-inner {
    width: calc(100% - 28px);
  }

  .performance-photo {
    height: 235px;
  }

  .performance-copy {
    padding: 34px 26px;
  }

  .performance-copy h2 {
    font-size: 25px;
  }

  .about-visual {
    min-height: 940px;
  }

  .value-stack {
    inset: 55px 20px auto;
    width: auto;
    gap: 26px;
  }

  .value-box {
    min-height: 0;
    padding: 25px 28px;
    border-radius: 8px;
  }

  .about-copy {
    padding: 50px 24px;
  }

  .about-copy h2 {
    font-size: 38px;
  }

  .about-copy p {
    line-height: 1.7;
  }

  .trusted-section h2 {
    font-size: 30px;
  }

  .trusted-logos {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
  }

  .trusted-logos img {
    height: 105px;
  }

  .site-footer {
    padding-top: 65px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .instagram-link,
  .policy-links {
    margin-bottom: 35px;
  }

  .catalog-hero {
    min-height: 760px;
    background-position: 64% center;
  }

  .catalog-hero-content {
    width: calc(100% - 34px);
    padding-top: 65px;
  }

  .catalog-kicker {
    font-size: 23px;
  }

  .catalog-hero h1 {
    font-size: 46px;
  }

  .catalog-rule {
    margin-bottom: 34px;
  }

  .catalog-hero h2 {
    margin-bottom: 30px;
    font-size: 25px;
  }

  .catalog-products {
    padding: 70px 20px;
  }

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

  .catalog-card h2 {
    padding-left: 16px;
  }

  .catalog-card-footer {
    grid-template-columns: 1fr;
    padding: 14px 16px 18px;
  }

  .catalog-card-footer p {
    white-space: normal;
  }

  .blue-button.compact {
    width: 100%;
    max-width: none;
  }

  .product-intro {
    padding: 35px 20px 55px;
  }

  .product-primary {
    height: 330px;
  }

  .product-intro-copy h1 {
    font-size: 34px;
  }

  .product-intro-copy h2 {
    font-size: 23px;
  }

  .product-intro-copy p {
    font-size: 16px;
  }

  .product-intro-copy .blue-button {
    width: 100%;
    max-width: none;
  }

  .product-specs {
    padding: 60px 22px;
  }

  .product-specs-copy h2 {
    font-size: 27px;
  }

  .product-spec-image {
    height: 330px;
  }

  .story-heading {
    padding-top: 58px;
  }

  .story-heading h2 {
    font-size: 28px;
  }

  .story-lifestyle {
    height: 340px;
  }

  .story-copy {
    padding: 48px 24px;
  }

  .product-quote {
    padding: 50px 24px;
  }

  .product-quote img {
    height: 300px;
  }

  .product-quote blockquote {
    font-size: 24px;
  }

  .related-products {
    padding-left: 20px;
    padding-right: 20px;
  }

  .related-products > h2 {
    font-size: 27px;
  }

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

  .contact-photo {
    min-height: 320px;
  }

  .contact-panel {
    padding: 55px 22px 70px;
  }

  .contact-panel h1 {
    font-size: 28px;
  }

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

  .page-shell h1 {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-delay: 0s !important; transition-duration: 0.01ms !important; }
  .hero-machines-image-primary { opacity: 1; }
  .hero-machines-image-secondary { opacity: 0; }
}
