:root {
  --bg: #10100E;
  --bg-rgb: 16, 16, 14;
  --surface: #191815;
  --surface-2: #201F1B;
  --accent: #B3D747;
  --accent-hover: #C6F35C;
  --gold: #B3D747;
  --text: #FFF6E8;
  --muted: #B9AA94;
  --green: #B3D747;
  --border: rgba(255, 246, 232, 0.14);
  --border-hover: rgba(255, 246, 232, 0.28);
  --shadow-sm: 0 2px 14px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 16px 44px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.48);
  --display: 'Bebas Neue', Impact, sans-serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --mono: 'Space Mono', monospace;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 9999;
  transform: translateY(-140%);
  background: var(--accent);
  color: var(--bg);
  padding: 0.65rem 1rem;
  border-radius: var(--r-pill);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 4.8rem 0;
  position: relative;
}

.section-dark {
  background: var(--bg);
}

.section-soft {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.section-head {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
  max-width: 760px;
}

.section-head h2,
.final-card h2,
.cta-strip h2 {
  font-family: var(--display);
  font-size: clamp(2.35rem, 9vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-head p,
.final-card p,
.cta-strip p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 650px;
}

.eyebrow,
.label,
.card-number {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 0.55rem;
  border-radius: var(--r-pill);
  padding: 0.9rem 1.22rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--bg);
  box-shadow: 0 12px 34px rgba(179, 215, 71, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(179, 215, 71, 0.38);
}

.btn-ghost {
  background: rgba(255, 246, 232, 0.05);
  color: var(--text);
  border-color: var(--border-hover);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--bg);
  color: var(--text);
  border-color: rgba(16, 16, 14, 0.18);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(16, 16, 14, 0.24);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(var(--bg-rgb), 0.74);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.site-header.scrolled {
  background: rgba(var(--bg-rgb), 0.94);
  border-bottom-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.header-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.nav-desktop,
.header-cta {
  display: none;
}

.nav-desktop {
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-desktop a {
  transition: color 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  background: rgba(255, 246, 232, 0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(16, 16, 14, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-panel {
  min-height: 100%;
  width: min(86vw, 390px);
  margin-left: auto;
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 1rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-close {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 246, 232, 0.06);
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

.mobile-panel nav {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 0;
}

.mobile-panel nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed var(--border);
  font-size: 1.2rem;
  font-weight: 800;
}

.hero {
  min-height: 100svh;
  padding: 6.4rem 0 4rem;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -20% -20% auto auto;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(179, 215, 71, 0.24), rgba(179, 215, 71, 0) 64%);
  pointer-events: none;
}

.hero-stitch {
  position: absolute;
  top: 8.2rem;
  left: 50%;
  width: min(86vw, 620px);
  height: 180px;
  transform: translateX(-50%) rotate(-3deg);
  border-bottom: 2px dashed rgba(179, 215, 71, 0.5);
  border-radius: 0 0 50% 50%;
  opacity: 0.62;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  gap: 1.1rem;
  text-align: center;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3.25rem, 18vw, 7.6rem);
  line-height: 0.86;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  max-width: 820px;
  margin-inline: auto;
  text-wrap: balance;
}

.hero p {
  color: var(--muted);
  font-size: clamp(1rem, 3.8vw, 1.16rem);
  max-width: 620px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: min(100%, 360px);
  margin-inline: auto;
}

.hero-status,
.hours-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  box-shadow: 0 0 0 6px rgba(185, 170, 148, 0.12);
}

.status-dot.open {
  background: #3bd37a;
  box-shadow: 0 0 0 6px rgba(59, 211, 122, 0.13);
}

.status-dot.closed {
  background: #E06A3A;
  box-shadow: 0 0 0 6px rgba(224, 106, 58, 0.14);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.hero-card,
.hero-mini {
  overflow: hidden;
  border: 1px solid var(--border-hover);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.hero-main-img {
  width: min(100%, 450px);
  border-radius: 34px;
  transform: rotate(-1.5deg);
}

.hero-main-img img {
  width: 100%;
  aspect-ratio: 4 / 4.65;
  object-fit: cover;
}

.hero-mini {
  position: absolute;
  width: 35%;
  max-width: 160px;
  border-radius: 22px;
}

.hero-mini img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mini-one {
  top: 0;
  left: 0.1rem;
  transform: rotate(-8deg);
}

.mini-two {
  right: 0;
  top: 2rem;
  transform: rotate(6deg);
}

.mini-three {
  left: 1rem;
  bottom: 0;
  transform: rotate(7deg);
}

.hero-proof {
  position: absolute;
  background: rgba(25, 24, 21, 0.88);
  border: 1px solid var(--border-hover);
  border-radius: 18px;
  padding: 0.72rem 0.9rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.hero-proof strong {
  display: block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 1rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.proof-one {
  bottom: 5.2rem;
  right: 0.3rem;
}

.proof-two {
  top: 42%;
  left: 0;
}

.stitch-band {
  position: relative;
  background: linear-gradient(135deg, var(--surface), #12110F);
  border-block: 1px solid var(--border);
}

.stitch-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(179, 215, 71, 0.22) 0 8px, transparent 8px 22px);
  opacity: 0.22;
  pointer-events: none;
}

.authority {
  padding: 1.4rem 0;
}

.authority-grid {
  position: relative;
  display: grid;
  gap: 1rem;
}

.authority-grid > div,
.authority-grid article {
  background: rgba(255, 246, 232, 0.045);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem;
}

.authority-grid p {
  color: var(--muted);
  margin-top: 0.35rem;
}

.authority-grid article strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 0.9;
}

.authority-grid article span {
  color: var(--muted);
  font-weight: 800;
}

.models-grid {
  display: grid;
  gap: 1rem;
}

.model-card {
  display: grid;
  gap: 1rem;
  background: linear-gradient(180deg, var(--surface), #12110F);
  border: 1px dashed var(--border-hover);
  border-radius: var(--r-xl);
  padding: 0.7rem;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.model-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(179, 215, 71, 0.32);
  border-radius: 24px;
  pointer-events: none;
}

.model-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.model-card img {
  width: 100%;
  aspect-ratio: 1 / 0.84;
  object-fit: cover;
  border-radius: 24px;
}

.model-card div {
  display: grid;
  gap: 0.55rem;
  padding: 0.3rem 0.45rem 0.65rem;
  position: relative;
  z-index: 1;
}

.model-card h3,
.timeline-item h3 {
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.model-card p,
.timeline-item p {
  color: var(--muted);
}

.model-card a {
  color: var(--accent);
  font-weight: 900;
  font-size: 0.92rem;
  width: fit-content;
}

.audience-grid {
  display: grid;
  gap: 1.5rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-content: start;
}

.chips span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.75rem 1rem;
  background: rgba(255, 246, 232, 0.045);
  color: var(--text);
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 1rem;
  position: relative;
}

.timeline-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.timeline-item::after {
  content: '';
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 160px;
  height: 110px;
  border-top: 2px dashed rgba(179, 215, 71, 0.42);
  border-radius: 50% 50% 0 0;
  transform: rotate(-14deg);
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: rgba(179, 215, 71, 0.12);
  color: var(--gold);
  font-family: var(--mono);
  font-weight: 700;
}

.portfolio {
  overflow: hidden;
}

.portfolio::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 10%, rgba(179, 215, 71, 0.14), transparent 34%), radial-gradient(circle at 90% 30%, rgba(179, 215, 71, 0.12), transparent 30%);
  pointer-events: none;
}

.portfolio .container {
  position: relative;
  z-index: 1;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 210px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.gallery-item figcaption {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  background: rgba(16, 16, 14, 0.74);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--r-pill);
  padding: 0.35rem 0.7rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
}

.cta-strip {
  background: linear-gradient(135deg, var(--accent), #91B82F);
  color: var(--bg);
  padding: 3rem 0;
}

.cta-strip-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cta-strip .label {
  color: rgba(16, 16, 14, 0.76);
}

.cta-strip p {
  color: rgba(16, 16, 14, 0.82);
}

.hours-grid {
  display: grid;
  gap: 1.5rem;
}

.hours-status {
  justify-content: flex-start;
  margin-top: 0.55rem;
}

.hours-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 0.7rem;
  box-shadow: var(--shadow-md);
}

.hours-row {
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem;
  border-bottom: 1px dashed var(--border);
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-row span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.hours-row strong {
  font-size: 0.98rem;
}

.hours-row.closed strong {
  color: var(--gold);
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button span {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-content p {
  color: var(--muted);
  padding: 0 1rem 1rem;
}

.faq-item.active {
  border-color: var(--border-hover);
}

.faq-item.active button span {
  transform: rotate(45deg);
}

.final-cta {
  padding: 4.5rem 0;
}

.final-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 5vw, 3.2rem);
  border: 1px solid var(--border-hover);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 246, 232, 0.06), rgba(179, 215, 71, 0.08));
  position: relative;
  overflow: hidden;
  text-align: center;
  place-items: center;
}

.final-card::after {
  content: '';
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: -55px;
  height: 110px;
  border-top: 2px dashed rgba(179, 215, 71, 0.45);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.site-footer {
  padding: 3rem 0 7rem;
  background: #0B0B0A;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin-top: 0.35rem;
  width: fit-content;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--text);
}

.footer-grid h2 {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand {
  margin-bottom: 0.8rem;
}

.wpp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.wpp-bubble {
  display: none;
  background: rgba(25, 24, 21, 0.9);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.55rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.wpp-btn {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  animation: wppPulse 2.4s ease-in-out infinite;
}

.wpp-btn svg {
  width: 31px;
  height: 31px;
  fill: #fff;
}

.back-top {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(25, 24, 21, 0.9);
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes wppPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.38); }
  50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.58), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

@media (min-width: 520px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }

  .gallery-item {
    min-height: 280px;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 6.5rem 0;
  }

  .hero {
    padding: 8rem 0 5.5rem;
  }

  .hero-grid,
  .audience-grid,
  .hours-grid,
  .faq-grid,
  .cta-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    text-align: left;
    align-content: center;
  }

  .hero h1,
  .hero p,
  .hero-actions {
    margin-inline: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-status {
    justify-content: flex-start;
  }

  .hero-visual {
    min-height: 610px;
  }

  .authority-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    align-items: stretch;
  }

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

  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .timeline::before {
    content: '';
    position: absolute;
    top: 23px;
    left: 5%;
    right: 5%;
    border-top: 2px dashed rgba(179, 215, 71, 0.35);
  }

  .timeline-item {
    padding-top: 1.5rem;
  }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
  }

  .gallery-item {
    min-height: auto;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .hours-row {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  }

  .wpp-bubble {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .nav-desktop,
  .header-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 0.98fr 1.02fr;
    align-items: center;
  }

  .hero h1 {
    max-width: 720px;
  }

  .models-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .model-card {
    grid-template-rows: auto 1fr;
  }

  .model-card img {
    aspect-ratio: 1 / 1;
  }
}

@media (min-width: 1280px) {
  .hero-main-img {
    width: 500px;
  }

  .hero-mini {
    max-width: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
