:root {
  --bg: oklch(97.2% 0.012 290);
  --surface: oklch(99.4% 0.004 290);
  --fg: oklch(22% 0.028 290);
  --muted: oklch(48% 0.022 290);
  --border: oklch(90% 0.016 290);
  --accent: oklch(42% 0.09 305);
  --accent-soft: oklch(94% 0.03 305);
  --success: oklch(48% 0.1 155);
  --warn: oklch(62% 0.12 75);
  --danger: oklch(52% 0.16 25);
  --shadow: 0 12px 40px oklch(22% 0.03 290 / 0.08);
  --radius: 14px;
  --font-display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --header-h: 72px;
  --max: 1120px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
p { margin: 0 0 1em; max-width: 65ch; }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: color-mix(in oklch, var(--surface) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}
.logo span { color: var(--accent); font-style: italic; font-weight: 500; }
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
.nav-desktop a, .nav-desktop button.nav-link {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}
.nav-desktop a:hover, .nav-desktop button.nav-link:hover,
.nav-desktop a.is-active, .nav-desktop button.nav-link.is-active {
  color: var(--fg);
  background: var(--accent-soft);
}
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--fg);
  border: 1px solid transparent;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.icon-btn:hover { background: var(--surface); border-color: var(--border); }
.icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cart-count {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: oklch(98% 0.01 290);
  font-size: 11px;
  font-weight: 600;
  display: none;
  place-items: center;
  letter-spacing: 0.02em;
}
.cart-count.show { display: grid; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.12s, box-shadow 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: oklch(98% 0.01 290);
  box-shadow: 0 8px 24px oklch(42% 0.09 305 / 0.28);
}
.btn-primary:hover { box-shadow: 0 10px 28px oklch(42% 0.09 305 / 0.36); }
.btn-secondary {
  background: var(--surface);
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: color-mix(in oklch, var(--accent) 35%, var(--border)); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid transparent;
}
.btn-ghost:hover { background: var(--accent-soft); }
.btn-block { width: 100%; }
.btn-sm { min-height: 40px; padding: 0.5rem 1rem; font-size: 0.88rem; }
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 35;
  background: var(--bg);
  padding: 1.25rem 1rem 2rem;
  overflow: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a, .mobile-nav button.nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
}
.view { display: none; min-height: calc(100vh - var(--header-h) - 220px); }
.view.active { display: block; animation: fadeIn 0.28s cubic-bezier(0.23, 1, 0.32, 1); }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-copy .lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-panel {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
  background: oklch(88% 0.03 290);
}
.hero-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-panel-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 45%, oklch(22% 0.03 290 / 0.28) 100%);
  z-index: 1;
}
.hero-card {
  background: color-mix(in oklch, var(--surface) 92%, transparent);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in oklch, var(--border) 80%, white);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  max-width: 260px;
  box-shadow: var(--shadow);
}
.hero-card strong { display: block; font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 0.2rem; }
.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 0 0 2.5rem;
}
.trust-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}
.trust-item h3 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 0.35rem;
}
.trust-item p { margin: 0; font-size: 0.92rem; color: var(--muted); max-width: none; }
.section { padding: 2.25rem 0 3rem; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-head p { margin: 0; color: var(--muted); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
}
.product-card:hover {
  box-shadow: var(--shadow);
  border-color: color-mix(in oklch, var(--accent) 20%, var(--border));
  transform: translateY(-2px);
}
.ph-img {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(80% 70% at 70% 25%, var(--spot, oklch(78% 0.06 305 / 0.5)), transparent 60%),
    linear-gradient(145deg, var(--g1, oklch(90% 0.03 290)), var(--g2, oklch(84% 0.05 310)));
  position: relative;
  overflow: hidden;
}
.ph-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ph-img.has-photo {
  background: oklch(92% 0.02 290);
}
.ph-img.has-photo::after {
  content: attr(data-label);
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: color-mix(in oklch, var(--surface) 92%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid color-mix(in oklch, var(--border) 70%, white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 1;
}
.ph-img:not(.has-photo)::after {
  content: attr(data-label);
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: color-mix(in oklch, var(--surface) 90%, transparent);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-card-body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; flex: 1; gap: 0.35rem; }
.product-card-body h3 { font-size: 1.35rem; margin: 0; }
.product-meta { font-size: 0.9rem; color: var(--muted); margin: 0; }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
}
.price {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.guide-banner {
  margin: 0.5rem 0 2.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background:
    linear-gradient(120deg, var(--surface), color-mix(in oklch, var(--accent-soft) 55%, var(--surface)));
  padding: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  gap: 1rem;
  align-items: center;
}
.guide-banner h2 { margin-bottom: 0.35rem; }
.guide-banner p { margin: 0; color: var(--muted); }
.page-hero {
  padding: 2rem 0 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
}
.page-hero p { margin: 0; color: var(--muted); }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}
.chip {
  min-height: 40px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.chip.is-active, .chip:hover {
  color: var(--fg);
  border-color: color-mix(in oklch, var(--accent) 30%, var(--border));
  background: var(--accent-soft);
}
.pdp {
  display: grid;
  gap: 1.75rem;
  padding-bottom: 3rem;
}
.pdp-gallery {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 300px;
}
.pdp-gallery .ph-img { aspect-ratio: 1 / 1; min-height: 300px; }
.pdp-info .price { font-size: 1.45rem; margin: 0.4rem 0 1rem; }
.pdp-info .desc { color: var(--muted); margin-bottom: 1.25rem; }
.option-group { margin-bottom: 1.15rem; }
.option-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.option-row { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.option-btn {
  min-height: 42px;
  padding: 0.45rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-weight: 500;
}
.option-btn.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}
.pdp-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin: 1.25rem 0; }
.bullets { list-style: none; padding: 0; margin: 1rem 0 0; }
.bullets li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.reviews-list { display: grid; gap: 1rem; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem;
}
.review-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}
.review-name { font-weight: 600; }
.stars {
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}
.review-card p { margin: 0; color: var(--muted); max-width: none; }
.review-meta { margin-top: 0.75rem; font-size: 0.82rem; color: var(--muted); letter-spacing: 0.02em; }
.cart-layout, .checkout-layout {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 3rem;
}
.cart-lines { display: grid; gap: 0.85rem; }
.cart-line {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem;
  align-items: center;
}
.cart-line .ph-img { aspect-ratio: 1; border-radius: 10px; overflow: hidden; }
.cart-line .ph-img::after,
.cart-line .ph-img.has-photo::after { display: none; }
.cart-line h3 { font-size: 1.15rem; margin: 0 0 0.2rem; }
.qty-row { display: flex; align-items: center; gap: 0.45rem; margin-top: 0.55rem; }
.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-weight: 600;
}
.qty-val {
  min-width: 1.5rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.line-remove {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.25rem;
  height: fit-content;
  box-shadow: var(--shadow);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}
.summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 0.55rem;
  padding-top: 0.85rem;
  color: var(--fg);
  font-weight: 600;
  font-size: 1.1rem;
}
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.form-grid {
  display: grid;
  gap: 0.9rem;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: color-mix(in oklch, var(--accent) 45%, var(--border));
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field-row { display: grid; gap: 0.9rem; }
.np-box {
  margin-top: 0.5rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--accent-soft);
  border: 1px solid color-mix(in oklch, var(--accent) 18%, var(--border));
}
.np-box strong { display: block; margin-bottom: 0.25rem; }
.np-box p { margin: 0; font-size: 0.92rem; color: var(--muted); max-width: none; }
.legal-content {
  max-width: 72ch;
  padding-bottom: 3rem;
}
.legal-content h2 { margin-top: 1.75rem; font-size: 1.45rem; }
.legal-content h3 { margin-top: 1.25rem; font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; letter-spacing: 0; }
.legal-content ul { padding-left: 1.2rem; color: var(--muted); }
.legal-content li { margin-bottom: 0.4rem; }
.contact-grid {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 3rem;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.contact-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; letter-spacing: 0.01em; }
.contact-card p, .contact-card a { color: var(--muted); margin: 0.25rem 0; max-width: none; }
.contact-card a:hover { color: var(--accent); }
.guide-layout {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 3rem;
}
.guide-cover {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  min-height: 280px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    radial-gradient(90% 70% at 85% 15%, oklch(78% 0.07 305 / 0.45), transparent 55%),
    linear-gradient(165deg, oklch(93% 0.02 290), oklch(86% 0.05 310));
  box-shadow: var(--shadow);
}
.guide-cover h2 { max-width: 14ch; }
.guide-points {
  display: grid;
  gap: 0.75rem;
}
.guide-points article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.guide-points h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.guide-points p { margin: 0; color: var(--muted); font-size: 0.95rem; max-width: none; }
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 2.5rem 0 1.5rem;
  margin-top: 1rem;
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.footer-brand .logo { margin-bottom: 0.5rem; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.footer-col a, .footer-col button {
  display: block;
  padding: 0.3rem 0;
  color: var(--fg);
  font-size: 0.95rem;
  text-align: left;
}
.footer-col a:hover, .footer-col button:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.35rem 1rem; }
.footer-legal a, .footer-legal button {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.88rem;
}
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  max-width: 420px;
  margin-left: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.15rem;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: none;
}
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 5.5rem;
  transform: translateX(-50%) translateY(12px);
  background: var(--fg);
  color: var(--bg);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 60;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
@media (min-width: 720px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .hero { grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; }
  .trust-row { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp { grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
  .cart-layout, .checkout-layout { grid-template-columns: 1.4fr 0.85fr; align-items: start; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .guide-layout { grid-template-columns: 0.95fr 1.05fr; align-items: start; }
  .guide-banner { grid-template-columns: 1.4fr auto; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-panel { min-height: 420px; }
}
