/* ===========================================================================
   Arpegus — arpegus.com
   Premium ecommerce stylesheet. Mobile-first. Brand palette per BRAND_README.
   =========================================================================== */

:root {
  --copper: #d09950;
  --copper-soft: #f0c480;
  --copper-dark: #966432;
  --charcoal: #1c1c20;
  --navy: #14203a;
  --paper: #f5f6f8;
  --ink: #1a1e26;

  --bg: #0d1320;
  --bg-alt: #111a2b;
  --surface: #182234;
  --surface-2: #1e2a3f;
  --border: #2c3a52;
  --border-soft: rgba(240, 196, 128, 0.18);

  --text: #f3f6fb;
  --muted: #b4c0d1;

  --ok: #8dd3a3;
  --danger: #ff9e9e;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.18);
  --header-h: 60px;

  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, "SF Pro Text", "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, iframe { max-width: 100%; }
img { height: auto; display: block; }

a { color: var(--text); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--copper-soft); }

:focus-visible {
  outline: 2px solid var(--copper-soft);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 { margin: 0 0 0.6rem; line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(1.75rem, 4.8vw, 2.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1rem, 2vw, 1.15rem); }
p { margin: 0 0 0.85rem; }

.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--copper); color: #12151b;
  padding: 0.5rem 1rem; z-index: 200; font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 0.5rem; }


/* ================================================================ HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13, 19, 32, 0.95);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(44, 58, 82, 0.5);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; padding: 0.3rem 0; }
.brand-logo {
  width: auto;
  height: clamp(36px, 7vw, 52px);
  max-width: 60vw;
  object-fit: contain;
}

.nav-tail { display: flex; align-items: center; gap: 0.5rem; }

.nav { display: none; gap: 0.1rem; }
.nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav a[aria-current="page"] { color: var(--copper-soft); }

.nav-cta { display: none; }
.nav-cta-mobile { margin-top: 0.5rem; align-self: flex-start; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 44px; height: 44px; padding: 0 11px;
  border: 1px solid var(--border); border-radius: 8px;
  background: transparent; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform 0.2s ease, opacity 0.15s ease;
}
.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); }

.nav.is-open {
  display: flex; flex-direction: column; gap: 0.1rem;
  position: absolute; left: 0; right: 0; top: 100%;
  padding: 0.8rem 1rem calc(1rem + env(safe-area-inset-bottom));
  background: var(--bg); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav.is-open a { padding: 0.75rem 0.6rem; font-size: 1rem; }

/* ================================================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 44px; padding: 0.65rem 1.2rem;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  background: var(--copper); color: #14161b;
  font: inherit; font-weight: 700; font-size: 0.9rem;
  text-align: center; cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}
.btn:hover { background: var(--copper-soft); color: #14161b; box-shadow: 0 4px 16px rgba(208, 153, 80, 0.25); }
.btn:active { transform: translateY(1px); box-shadow: none; }
.btn-small { min-height: 38px; padding: 0.45rem 0.8rem; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { background: rgba(240, 196, 128, 0.06); border-color: var(--copper); color: var(--copper-soft); box-shadow: none; }
.btn-lg { padding: 0.8rem 1.6rem; font-size: 0.95rem; min-height: 48px; }

/* ================================================================ SECTIONS */
.hero { padding: clamp(2rem, 5vw, 4rem) 0 clamp(1.5rem, 3.5vw, 2.5rem); }
.hero-grid { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: center; }

.eyebrow {
  color: var(--copper-soft); text-transform: uppercase;
  letter-spacing: 0.14em; font-weight: 700; font-size: 0.72rem;
  margin-bottom: 0.5rem;
}

.lead { color: var(--muted); font-size: clamp(0.95rem, 2vw, 1.05rem); max-width: 58ch; line-height: 1.65; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.2rem 0 1.3rem; }
.hero-actions .btn { flex: 1 1 180px; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; list-style: none; }
.trust-strip li {
  border: 1px solid var(--border); border-radius: 999px;
  padding: 0.35rem 0.7rem; font-size: 0.78rem; color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.hero-visual { margin: 0; }
.hero-visual-main {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero { padding: clamp(1.8rem, 4.5vw, 3rem) 0 clamp(0.5rem, 1.5vw, 1rem); }
.page-hero .lead { margin-bottom: 0.8rem; }

.pill-note {
  display: inline-block; border: 1px solid var(--border-soft);
  background: rgba(240, 196, 128, 0.06); color: var(--copper-soft);
  border-radius: 999px; padding: 0.4rem 0.8rem; font-size: 0.82rem;
}

.section { padding: clamp(2rem, 4.5vw, 3.5rem) 0; }
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head { margin-bottom: 1.3rem; max-width: 65ch; }
.section-head p { margin: 0; color: var(--muted); }
.section-head-row {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  align-items: end; justify-content: space-between; max-width: none;
}

/* ================================================================ GRIDS */
.card-grid {
  display: grid; gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.card-grid.two-up { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }

.product-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.split-grid { display: grid; gap: 1.4rem; align-items: start; }

.card, .panel, .product-card, .contact-form {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
}
.card, .panel { padding: 1.1rem; }
.card p, .panel p, .value-list, .journey-list { color: var(--muted); }
.card h3, .panel h3 { color: var(--text); }

.card-link { color: var(--copper-soft); font-weight: 600; font-size: 0.88rem; }
.card-link::after { content: " →"; }

.stage-grid .card { border-left: 3px solid var(--copper); }

.journey-list, .value-list { margin: 0; padding-left: 1.1rem; }
.journey-list li, .value-list li { margin-bottom: 0.4rem; }
.compact { margin-bottom: 0.8rem; }

.prose p { color: var(--muted); max-width: 65ch; }

/* ================================================================ PRODUCT CARDS */
.product-card {
  display: flex; flex-direction: column; overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.18s ease, border-color 0.2s ease;
}
.product-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
  border-color: rgba(240, 196, 128, 0.25);
}

.product-img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  background: var(--surface-2);
  transition: transform 0.35s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }

.product-img-wrap { overflow: hidden; position: relative; }

.product-placeholder {
  aspect-ratio: 1 / 1; display: grid; place-items: center;
  color: var(--copper-soft); letter-spacing: 0.12em; text-transform: uppercase;
  font-size: 0.78rem;
  background: repeating-linear-gradient(135deg, rgba(240,196,128,0.04) 0 12px, transparent 12px 24px), var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.product-body {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 0.9rem 1rem 1.1rem; flex: 1;
}
.product-tagline { margin: 0; color: var(--copper-soft); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.product-desc { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

.product-features {
  margin: 0.2rem 0 0; padding-left: 1rem;
  color: var(--muted); font-size: 0.84rem; line-height: 1.5;
}
.product-features li { margin-bottom: 0.2rem; }
.product-care { margin-top: 0.1rem; }

.swatches { display: flex; gap: 0.4rem; padding: 0.3rem 0; }
.swatch {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  padding: 0; appearance: none;
}
.swatch:hover { box-shadow: 0 0 0 2px var(--copper-soft); }
.swatch.active { border-color: var(--copper); box-shadow: 0 0 0 2px var(--copper-soft); }

.btn-add-cart { background: var(--copper); color: #14161b; font-weight: 700; width: 100%; }
.btn-add-cart:hover { background: var(--copper-soft); }

.price { color: var(--copper-soft); font-weight: 700; font-size: 1.05rem; }

.meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.5rem; flex-wrap: wrap; margin-top: auto; padding-top: 0.6rem;
}

.range-block + .range-block { margin-top: clamp(1.8rem, 3.5vw, 2.8rem); }
.catalogue-note { margin-top: 1rem; }

/* ================================================================ CART */
.cart-count {
  display: none; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--copper); color: #14161b;
  font-size: 0.68rem; font-weight: 700;
  position: absolute; top: -3px; right: -5px;
}
.cart-count.has-items { display: flex; }

.cart-trigger {
  position: relative; display: inline-flex; align-items: center;
  width: 44px; height: 44px; justify-content: center;
  border: none; background: none; color: var(--text); cursor: pointer;
  transition: color 0.15s ease;
}
.cart-trigger:hover { color: var(--copper-soft); }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(380px, 90vw); z-index: 50;
  background: var(--bg-alt); border-left: 1px solid var(--border);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
  transform: translateX(100%); transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.1rem; border-bottom: 1px solid var(--border);
}
.cart-drawer-header h2 { margin: 0; font-size: 1.05rem; }
.cart-close {
  width: 36px; height: 36px; border: 1px solid var(--border);
  border-radius: 6px; background: none; color: var(--text);
  font-size: 1.1rem; cursor: pointer; display: grid; place-items: center;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.cart-close:hover { border-color: var(--copper); color: var(--copper-soft); }

.cart-items { flex: 1; overflow-y: auto; padding: 0.8rem 1.1rem; }
.cart-empty { color: var(--muted); text-align: center; padding: 2rem 0; font-size: 0.9rem; }

.cart-item {
  display: flex; gap: 0.7rem; align-items: center;
  padding: 0.7rem 0; border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 56px; height: 56px; object-fit: cover;
  border-radius: 6px; flex: 0 0 auto; background: var(--surface);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.88rem; }
.cart-item-variant { color: var(--muted); font-size: 0.78rem; }
.cart-item-price { color: var(--copper-soft); font-weight: 700; font-size: 0.88rem; }
.cart-item-remove {
  background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 0.78rem; padding: 0.3rem;
  transition: color 0.15s ease;
}
.cart-item-remove:hover { color: var(--danger); }

.cart-drawer-footer {
  padding: 0.9rem 1.1rem calc(0.9rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.7rem; font-size: 1rem; font-weight: 700;
}
.cart-total-price { color: var(--copper-soft); }
.cart-checkout-note { color: var(--muted); font-size: 0.78rem; margin: 0.5rem 0 0; text-align: center; line-height: 1.4; }
.cart-checkout-note a { color: var(--copper-soft); }

.cart-overlay {
  position: fixed; inset: 0; z-index: 49;
  background: rgba(0, 0, 0, 0.6); opacity: 0;
  pointer-events: none; transition: opacity 0.25s ease;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ================================================================ TABLES */
.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
.spec-table { width: 100%; border-collapse: collapse; min-width: 600px; font-size: 0.88rem; }
.spec-table th, .spec-table td { padding: 0.6rem 0.8rem; text-align: left; border-bottom: 1px solid var(--border); }
.spec-table thead th { background: var(--navy); color: var(--paper); font-weight: 700; white-space: nowrap; }
.spec-table tbody th { color: var(--text); font-weight: 600; }
.spec-table td { color: var(--muted); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

/* ================================================================ MARKET LINKS */
.market-links { display: grid; gap: 0.6rem; margin-top: 0.8rem; }
.market-link {
  display: block; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem; background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.market-link:hover { border-color: var(--copper); background: rgba(240, 196, 128, 0.05); }
.market-link-label { display: block; font-weight: 700; font-size: 0.92rem; }
.market-link .micro { display: block; margin: 0; }

.cta-band {
  display: grid; gap: 1rem; align-items: center;
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  border: 1px solid var(--border-soft); border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(240, 196, 128, 0.06), rgba(20, 32, 58, 0.4));
}
.cta-band h2 { margin-bottom: 0.3rem; }
.cta-band .lead { margin: 0; }

/* ================================================================ FAQ */
.faq { display: grid; gap: 0.5rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 0.85rem 2.4rem 0.85rem 1rem;
  font-weight: 600; font-size: 0.92rem;
  position: relative; min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%); color: var(--copper-soft);
  font-size: 1.2rem; line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-answer { padding: 0.8rem 1rem; color: var(--muted); font-size: 0.9rem; }
.faq-answer p { margin: 0; }

/* ================================================================ FORMS */
.contact-wrap { display: grid; gap: 1.3rem; align-items: start; }
.contact-form { padding: 1.1rem; }
.field { margin-bottom: 0.8rem; }

.contact-form label {
  display: block; margin-bottom: 0.3rem;
  color: var(--muted); font-size: 0.85rem; font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; min-height: 46px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: rgba(13, 19, 32, 0.8); color: var(--text);
  padding: 0.65rem 0.75rem; font: inherit; font-size: 16px;
  transition: border-color 0.15s ease;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--copper-soft) 50%),
                    linear-gradient(135deg, var(--copper-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
  background-size: 6px 6px; background-repeat: no-repeat;
  padding-right: 2.2rem;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--copper); }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.micro { color: var(--muted); font-size: 0.82rem; }
.status-ok { color: var(--ok); }
.status-error { color: var(--danger); }
#formStatus { margin: 0.6rem 0 0; min-height: 1.2em; }

/* ================================================================ FACEBOOK EMBED */
.fb-embed {
  width: 100%; max-width: 500px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); overflow: hidden;
}
.fb-facade {
  display: grid; gap: 0.4rem; place-items: start;
  padding: 1.1rem; min-height: 200px; align-content: center;
}
.fb-facade-title { font-weight: 700; margin: 0; }
.fb-facade p { margin: 0; }
.fb-embed iframe { display: block; width: 100%; height: 540px; border: 0; overflow: hidden; }

/* ================================================================ FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  background: #080d17;
  padding: clamp(2rem, 4.5vw, 3rem) 0 0;
  margin-top: 0;
}

.footer-top {
  display: grid; gap: 2rem;
  padding-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.brand-lockup { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem; }
.lockup-emblem { width: 36px; height: 36px; object-fit: contain; flex: 0 0 auto; }
.lockup-name { font-weight: 700; letter-spacing: 0.24em; font-size: 0.95rem; color: var(--paper); }

.footer-blurb { max-width: 36ch; line-height: 1.5; }


.footer-nav {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}
.footer-col-title {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text); font-weight: 700;
  margin: 0 0 0.5rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.1rem; }
.footer-col a {
  display: inline-block; color: var(--muted); font-size: 0.86rem;
  padding: 0.3rem 0; transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--text); }

/* Footer bottom */
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  align-items: center; justify-content: space-between;
  padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
}
.footer-bottom-left { display: flex; flex-direction: column; gap: 0.15rem; }
.footer-bottom-left p { margin: 0; }

.footer-social-row { display: flex; align-items: center; gap: 0.3rem; }

.social-icon {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--muted);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.social-icon:hover { color: var(--copper-soft); border-color: var(--copper); background: rgba(240, 196, 128, 0.06); }
.social-icon svg { display: block; }

/* ================================================================ BACK TO TOP */
.back-to-top {
  position: fixed; bottom: calc(1.2rem + env(safe-area-inset-bottom)); right: 1rem;
  z-index: 30; display: none;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--border); border-radius: 50%;
  background: rgba(13, 19, 32, 0.92); backdrop-filter: blur(8px);
  color: var(--text); font-size: 0.9rem; text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.back-to-top.is-visible { display: flex; }
.back-to-top:hover { border-color: var(--copper); color: var(--copper-soft); transform: translateY(-2px); }

/* ================================================================ BREAKPOINTS */
@media (min-width: 600px) {
  .market-links { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .hero-actions .btn { flex: 0 0 auto; }
  .product-grid { gap: 1rem; }
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-cta-mobile, .nav-toggle { display: none; }
  .nav.is-open { position: static; flex-direction: row; padding: 0; background: none; border: 0; box-shadow: none; }

  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual-main { aspect-ratio: 1 / 1; }
  .split-grid { grid-template-columns: 1.1fr 0.9fr; gap: 1.8rem; }
  .contact-wrap { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1.8fr; gap: 2.5rem; }
  .cta-band { grid-template-columns: 1fr auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

@media print {
  .site-header, .site-footer, .fb-embed, .hero-actions, .cart-drawer, .cart-overlay, .back-to-top { display: none; }
  body { background: #fff; color: #000; }
}

