/* سوق الأصالة — bold neon desert futurism */
:root {
  --void: #07060f;
  --void-2: #12101f;
  --violet: #5b21b6;
  --magenta: #ff2d6a;
  --cyan: #00f5d4;
  --gold: #ffc300;
  --coral: #ff6b35;
  --cream: #fff8f0;
  --text: #f0ebe3;
  --muted: #a89bb8;
  --radius: 1.25rem;
  --radius-xl: 2.5rem;
  --font: "Cairo", system-ui, sans-serif;
  --display: "El Messiri", "Cairo", serif;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --glow-m: 0 0 40px rgba(255, 45, 106, 0.45);
  --glow-c: 0 0 35px rgba(0, 245, 212, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font);
  background: var(--void);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Animated mesh background */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(91, 33, 182, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 5% 85%, rgba(255, 45, 106, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(0, 245, 212, 0.12) 0%, transparent 60%),
    linear-gradient(165deg, #07060f 0%, #1a0a2e 40%, #0d1f2d 100%);
  animation: meshShift 18s ease-in-out infinite alternate;
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

@keyframes meshShift {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(25deg); }
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--gold);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Cookie */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(90deg, var(--void-2), #2a1040);
  border-top: 2px solid var(--magenta);
  font-size: 0.88rem;
  transform: translateY(110%);
  transition: transform 0.45s var(--ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}

/* Header — brutal diagonal cut */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 900;
  padding: 0.75rem 1rem;
}

.header-bar {
  max-width: 78rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1.25rem;
  background: rgba(7, 6, 15, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 245, 212, 0.2);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
  box-shadow: var(--glow-c);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream);
  font-weight: 800;
  font-size: 1.15rem;
}

.logo-orb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  box-shadow: 0 0 12px var(--magenta);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  50% { transform: scale(1.3); opacity: 0.7; }
}

.logo strong {
  font-family: var(--display);
  color: var(--cyan);
  font-weight: 800;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}

.main-nav a {
  padding: 0.4rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  border-radius: 4px;
  transition: all 0.2s;
}

.main-nav a:hover {
  color: var(--void);
  background: var(--cyan);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cyan);
  transition: transform 0.3s, opacity 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-3px) skewX(-2deg);
}

.btn--neon {
  background: linear-gradient(135deg, var(--magenta), var(--coral));
  color: var(--cream);
  box-shadow: var(--glow-m);
}

.btn--neon:hover {
  color: var(--cream);
}

.btn--outline {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 90% 100%, 0 100%);
}

.btn--outline:hover {
  background: rgba(0, 245, 212, 0.15);
  color: var(--cyan);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
  clip-path: none;
  border-radius: var(--radius);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.eyebrow--hot {
  color: var(--gold);
}

/* ===== HERO — split diagonal ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 10% -5% 5% 40%;
  background: linear-gradient(135deg, rgba(255, 45, 106, 0.08), rgba(0, 245, 212, 0.06));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 195, 0, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero-line {
  display: block;
}

.hero-line--glow {
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 245, 212, 0.3));
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 28rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags li {
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--void-2);
  border-right: 3px solid var(--magenta);
  color: var(--cream);
}

/* Hero collage grid */
.hero-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, minmax(50px, 1fr));
  gap: 0.65rem;
  min-height: 480px;
  position: relative;
}

.collage-cell {
  margin: 0;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(0, 245, 212, 0.35);
  background: var(--void-2);
  min-height: 80px;
}

.collage-cell img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.collage-cell:hover img {
  transform: scale(1.08);
}

.collage-cell--xl {
  grid-column: 1 / 5;
  grid-row: 1 / 5;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
  border-color: var(--magenta);
}

.collage-cell--md {
  grid-column: 5 / 7;
  grid-row: 1 / 4;
  transform: rotate(2deg);
  border-color: var(--gold);
}

.collage-cell--sm {
  grid-column: 5 / 7;
  grid-row: 4 / 6;
}

.collage-cell--accent {
  border-color: var(--cyan);
  box-shadow: var(--glow-c);
}

.collage-stat {
  grid-column: 1 / 3;
  grid-row: 5 / 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--magenta), var(--violet));
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
  z-index: 3;
}

.collage-stat-num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
}

.collage-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

/* ===== PRODUCTS — mosaic + hot stripe ===== */
.products {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  margin: 2rem 0;
}

.products::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(255, 195, 0, 0.03) 12px,
    rgba(255, 195, 0, 0.03) 24px
  );
  pointer-events: none;
}

.products-head {
  max-width: 78rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.products h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.products h2 em {
  font-style: normal;
  color: var(--magenta);
  text-shadow: var(--glow-m);
}

.section-note {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 36rem;
  margin: 0 auto;
}

.category-orbit {
  max-width: 78rem;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.cat-pill {
  font-family: var(--font);
  padding: 0.55rem 1.4rem;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  background: var(--void-2);
  color: var(--muted);
  border: 2px solid transparent;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  transition: all 0.25s var(--ease);
}

.cat-pill:hover,
.cat-pill.is-active {
  background: var(--cyan);
  color: var(--void);
  border-color: var(--cyan);
  box-shadow: var(--glow-c);
}

/* Masonry mosaic */
.product-mosaic {
  max-width: 78rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 1rem;
}

.product-card {
  background: rgba(18, 16, 31, 0.9);
  border: 1px solid rgba(255, 45, 106, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: opacity 0.35s, transform 0.35s, border-color 0.3s;
  grid-column: span 4;
}

.product-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: var(--glow-c);
}

.product-card.is-hidden {
  display: none;
}

.product-card--tall {
  grid-column: span 4;
  grid-row: span 2;
}

.product-card--wide {
  grid-column: span 8;
  flex-direction: row;
}

.product-card--wide .product-img {
  flex: 1.2;
  min-height: 200px;
}

.product-card--wide .product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1030, #0a2830);
  min-height: 180px;
}

.product-card--wide .product-img {
  aspect-ratio: auto;
  min-height: 100%;
}

.product-img img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.product-body {
  padding: 1.15rem;
}

.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--void);
  background: var(--gold);
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.5rem;
}

.product-body h3 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 0.35rem;
}

.price small {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.product-desc {
  font-size: 0.82rem;
  color: var(--muted);
}

.disclaimer {
  max-width: 78rem;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ===== FEATURES — zigzag ===== */
.features {
  padding: 4rem 1.5rem;
  max-width: 78rem;
  margin: 0 auto;
}

.features-zigzag {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feat-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 2px solid rgba(0, 245, 212, 0.3);
  min-height: 220px;
}

.feat-card--flip {
  direction: ltr;
}

.feat-card--flip .feat-card__text {
  direction: rtl;
}

.feat-card--img img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  background: var(--void-2);
}

.feat-card__text {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--void-2);
}

.feat-card__text h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.feat-card__text p {
  color: var(--muted);
  font-size: 0.92rem;
}

.feat-card--solid {
  grid-template-columns: 1fr;
  padding: 3rem;
  text-align: center;
  background: linear-gradient(120deg, var(--violet), var(--magenta));
  border-color: var(--gold);
}

.feat-card--solid h3 {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.feat-card--solid p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(91, 33, 182, 0.2), transparent);
}

.about-grid {
  max-width: 78rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 400px;
}

.about-img {
  border: 3px solid var(--magenta);
  box-shadow: var(--glow-m);
}

.about-img--main {
  width: 88%;
  margin-right: auto;
  aspect-ratio: 4/3;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 92%);
}

.about-img--sub {
  position: absolute;
  bottom: -1rem;
  left: 10%;
  width: 50%;
  border-color: var(--cyan);
  transform: rotate(-4deg);
  box-shadow: var(--glow-c);
}

.about-content h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.about-facts {
  list-style: none;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(0, 245, 212, 0.06);
  border-right: 4px solid var(--cyan);
}

.about-facts li {
  padding: 0.45rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-facts li:last-child {
  border-bottom: none;
}

/* ===== CONTACT ===== */
.contact {
  padding: 5rem 1.5rem;
  position: relative;
}

.contact-blob {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle, rgba(255, 45, 106, 0.25), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.contact-grid {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  border: 2px solid var(--cyan);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 96% 100%, 0 100%);
}

.contact-info {
  padding: 2.5rem;
  background: linear-gradient(160deg, #2a1040, var(--void-2));
}

.contact-info h2 {
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-address {
  font-style: normal;
  margin: 1.5rem 0;
}

.contact-address p {
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
}

.contact-note {
  font-size: 0.82rem;
  color: var(--muted);
  padding-top: 1rem;
  border-top: 1px dashed rgba(0, 245, 212, 0.3);
}

.contact-form {
  padding: 2.5rem;
  background: var(--cream);
  color: var(--void);
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--void-2);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 0;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(255, 45, 106, 0.2);
}

.form-consent {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
  color: #555;
}

.form-consent a {
  color: var(--violet);
}

.form-status {
  margin-top: 1rem;
  font-weight: 700;
  min-height: 1.4em;
}

.form-status.is-success {
  color: #0d6b5c;
}

.form-status.is-error {
  color: var(--magenta);
}

/* ===== LEGAL ===== */
.legal {
  padding: 4rem 1.5rem;
}

.legal--stripe {
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 45, 106, 0.06) 0,
    rgba(255, 45, 106, 0.06) 4px,
    transparent 4px,
    transparent 40px
  );
}

.legal-panel {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(18, 16, 31, 0.85);
  border: 1px solid rgba(0, 245, 212, 0.2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.legal h2 {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.legal-updated {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal-block {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-block h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.legal-block p,
.legal-block li {
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-block ul {
  padding-right: 1.25rem;
}

/* Footer */
.site-footer {
  padding: 3rem 1.5rem;
  border-top: 3px solid var(--magenta);
  background: var(--void-2);
}

.footer-inner {
  max-width: 78rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-inner .logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--cream);
}

.footer-inner strong {
  color: var(--cyan);
  font-family: var(--display);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-copy {
  width: 100%;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.7;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-collage {
    min-height: 380px;
  }

  .product-mosaic {
    grid-template-columns: repeat(6, 1fr);
  }

  .product-card,
  .product-card--tall,
  .product-card--wide {
    grid-column: span 3;
    flex-direction: column;
  }

  .product-card--wide {
    grid-column: span 6;
  }

  .about-grid,
  .contact-grid,
  .feat-card {
    grid-template-columns: 1fr;
  }

  .feat-card--flip {
    direction: rtl;
  }

  .feat-card--img img {
    min-height: 200px;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--header-h) + 0.5rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    padding: 1rem;
    background: var(--void-2);
    border: 1px solid var(--cyan);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all 0.3s var(--ease);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .collage-cell--xl {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 220px;
  }

  .collage-cell--md,
  .collage-cell--sm {
    grid-column: span 1;
    grid-row: auto;
    min-height: 140px;
    transform: none;
  }

  .collage-stat {
    grid-column: 1 / -1;
    padding: 1rem;
    clip-path: none;
  }

  .product-mosaic {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card--tall,
  .product-card--wide {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-grid {
    clip-path: none;
  }

  .legal-panel {
    clip-path: none;
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .bg-mesh {
    animation: none;
  }

  .logo-orb {
    animation: none;
  }
}
