:root {
  --ink: #f5f5ee;
  --paper: #07100c;
  --surface: #0c1812;
  --surface-2: #101f17;
  --muted: #aebbb3;
  --line: rgba(255, 255, 255, .12);
  --accent: #d7b45e;
  --accent-2: #3b8a61;
  --accent-rgb: 215, 180, 94;
  --dark-ink: #07100c;
  --shadow: 0 30px 90px rgba(0, 0, 0, .34);
  --radius: 30px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

body[data-theme="lemon"] { --accent: #b9e452; --accent-2: #43a366; --accent-rgb: 185, 228, 82; }
body[data-theme="water"] { --accent: #74d7ed; --accent-2: #2f72a7; --accent-rgb: 116, 215, 237; }
body[data-theme="juice"] { --accent: #ffb84d; --accent-2: #d9475b; --accent-rgb: 255, 184, 77; }
body[data-theme="business"] { --accent: #e0bc6e; --accent-2: #4d705f; --accent-rgb: 224, 188, 110; }
body[data-theme="portfolio"] { --accent: #d8bd77; --accent-2: #316f51; --accent-rgb: 216, 189, 119; }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; transform: translateY(-150%); padding: 10px 14px; color: #07100c; background: #fff; border-radius: 8px; }
.skip-link:focus { transform: none; }

/* Header */
.discover-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.discover-header.scrolled { background: rgba(5, 13, 9, .88); border-color: var(--line); backdrop-filter: blur(18px); }
.header-inner { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-lockup img { width: 48px; height: 48px; object-fit: contain; }
.brand-name { font-weight: 900; letter-spacing: .12em; font-size: .96rem; }
.brand-context { display: block; color: var(--muted); font-size: .69rem; letter-spacing: .13em; text-transform: uppercase; line-height: 1.3; }
.desktop-nav { display: flex; align-items: center; gap: 5px; margin-left: auto; }
.desktop-nav > a { padding: 9px 12px; border-radius: 999px; color: #dde6e0; font-size: .9rem; font-weight: 650; }
.desktop-nav > a:hover, .desktop-nav > a[aria-current="page"] { background: rgba(255, 255, 255, .09); }
.language { position: relative; }
.language-toggle, .menu-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}
.language-toggle { padding: 8px 13px; font-size: .82rem; font-weight: 800; letter-spacing: .08em; }
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 174px;
  padding: 7px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #102018;
  box-shadow: var(--shadow);
  transition: .18s ease;
}
.language.open .language-menu { opacity: 1; visibility: visible; transform: none; }
.language-menu button { width: 100%; padding: 9px 11px; border: 0; border-radius: 11px; background: transparent; text-align: left; cursor: pointer; }
.language-menu button:hover, .language-menu button.active { color: var(--dark-ink); background: var(--accent); }
.menu-toggle { display: none; width: 44px; padding: 0; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; width: 17px; height: 2px; position: absolute; background: currentColor; transition: .2s ease; }
.menu-toggle::before { transform: translateY(-6px); }
.menu-toggle::after { transform: translateY(6px); }
.menu-toggle.open span { opacity: 0; }
.menu-toggle.open::before { transform: rotate(45deg); }
.menu-toggle.open::after { transform: rotate(-45deg); }
.mobile-panel { display: none; }

/* Shared hero */
.page-hero, .hub-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 720px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 26%, rgba(var(--accent-rgb), .22), transparent 32%),
    radial-gradient(circle at 12% 88%, color-mix(in srgb, var(--accent-2) 24%, transparent), transparent 35%),
    linear-gradient(135deg, #06110c 0%, #0a1710 58%, #06100c 100%);
}
.page-hero::before, .hub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .42;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.hero-inner { min-height: inherit; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr); gap: clamp(40px, 7vw, 92px); align-items: center; padding: 132px 0 80px; }
.hero-copy { position: relative; z-index: 2; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: #91a198; font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs .slash { color: var(--accent); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); font-size: .74rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 880px;
  margin: 20px 0 25px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.4vw, 7.2rem);
  line-height: .91;
  letter-spacing: -.055em;
}
.page-hero h1 { font-size: clamp(3rem, 6.4vw, 6.3rem); }
.hero-lead { max-width: 720px; margin: 0 0 32px; color: #c6d1ca; font-size: clamp(1.04rem, 1.5vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 18px; border: 1px solid transparent; border-radius: 14px; font-size: .92rem; font-weight: 850; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--dark-ink); background: var(--accent); box-shadow: 0 14px 42px rgba(var(--accent-rgb), .18); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.055); }
.button svg { width: 17px; height: 17px; }

.hero-stage { position: relative; min-height: 540px; display: grid; place-items: center; }
.hero-stage::before { content: ""; position: absolute; width: min(84vw, 470px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: inset 0 0 0 42px rgba(255,255,255,.018), inset 0 0 0 43px rgba(255,255,255,.07); }
.hero-stage::after { content: ""; position: absolute; width: 330px; height: 70px; bottom: 42px; border-radius: 50%; background: rgba(0,0,0,.5); filter: blur(22px); }
.hero-product { position: relative; z-index: 2; width: min(100%, 470px); max-height: 520px; object-fit: contain; filter: drop-shadow(0 34px 30px rgba(0,0,0,.48)); animation: product-float 6s ease-in-out infinite; }
.hero-product.is-wide { width: min(100%, 590px); }
.hero-note { position: absolute; z-index: 4; right: 2%; bottom: 11%; max-width: 190px; padding: 13px 16px; color: var(--dark-ink); background: #f5f1e7; border-radius: 15px; box-shadow: var(--shadow); font-size: .79rem; font-weight: 850; transform: rotate(-3deg); }
@keyframes product-float { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }

/* Hub */
.hub-hero { min-height: 780px; }
.hub-hero .hero-inner { grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); }
.hub-title-line { display: block; color: var(--accent); }
.hub-controls { display: grid; gap: 16px; margin-top: 36px; }
.search-box { position: relative; width: min(100%, 620px); }
.search-box svg { position: absolute; top: 50%; left: 17px; width: 20px; transform: translateY(-50%); color: var(--muted); }
.search-box input { width: 100%; min-height: 56px; padding: 12px 18px 12px 50px; color: var(--ink); border: 1px solid var(--line); border-radius: 16px; outline: 0; background: rgba(255,255,255,.075); }
.search-box input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .12); }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip { min-height: 38px; padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-size: .78rem; font-weight: 800; white-space: nowrap; }
.filter-chip:hover, .filter-chip.active { color: var(--dark-ink); border-color: var(--accent); background: var(--accent); }
.hub-collage { position: relative; min-height: 520px; }
.collage-card { position: absolute; overflow: hidden; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.03)); box-shadow: var(--shadow); }
.collage-card img { width: 100%; height: 100%; padding: 18px; object-fit: contain; filter: drop-shadow(0 24px 24px rgba(0,0,0,.35)); }
.collage-card:nth-child(1) { inset: 3% 21% 22% 0; transform: rotate(-5deg); }
.collage-card:nth-child(2) { inset: 18% 0 2% 38%; transform: rotate(5deg); }
.collage-card:nth-child(3) { width: 42%; height: 39%; right: 2%; top: 0; transform: rotate(9deg); }
.hub-section { padding: 90px 0 110px; }
.section-heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(300px, .6fr); gap: 32px; align-items: end; margin-bottom: 38px; }
.section-index { display: block; margin-bottom: 12px; color: var(--accent); font-size: .73rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.section-heading h2, .chapter h2, .contact-band h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2.35rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.04em; }
.section-heading p { margin: 0; color: var(--muted); }
.hub-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.discover-card {
  --card-bg: #173222;
  position: relative;
  grid-column: span 4;
  min-height: 390px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 26px;
  background: radial-gradient(circle at 76% 16%, rgba(var(--accent-rgb), .25), transparent 37%), var(--card-bg);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  transition: transform .25s ease, border-color .25s ease;
}
.discover-card:nth-child(1), .discover-card:nth-child(8) { grid-column: span 8; }
.discover-card:hover { transform: translateY(-6px); border-color: rgba(var(--accent-rgb), .6); }
.discover-card img { position: absolute; inset: 7% 3% 33% 40%; width: 58%; height: 60%; object-fit: contain; filter: drop-shadow(0 24px 22px rgba(0,0,0,.35)); transition: transform .35s ease; }
.discover-card:nth-child(1) img, .discover-card:nth-child(8) img { inset: 4% 1% 25% 45%; width: 55%; height: 70%; }
.discover-card:hover img { transform: translateY(-5px) scale(1.025); }
.discover-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(to bottom, transparent, rgba(4,10,7,.94) 65%); }
.card-copy { position: relative; z-index: 2; max-width: 520px; }
.card-category { color: var(--accent); font-size: .7rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.discover-card h3 { margin: 8px 0 7px; font-family: var(--font-display); font-size: clamp(1.55rem, 2.6vw, 2.45rem); line-height: 1.02; }
.discover-card p { margin: 0 0 15px; color: #bdc8c1; font-size: .88rem; line-height: 1.5; }
.card-link { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 850; }
.empty-state { display: none; grid-column: 1 / -1; padding: 48px 20px; border: 1px dashed var(--line); border-radius: 24px; color: var(--muted); text-align: center; }
.empty-state.show { display: block; }

/* Editorial content */
.content-section { padding: 100px 0; }
.content-section.alt { background: #0a1610; border-block: 1px solid rgba(255,255,255,.055); }
.chapter { display: grid; grid-template-columns: minmax(160px, .34fr) minmax(0, 1fr); gap: clamp(34px, 8vw, 110px); }
.chapter-label { color: var(--accent); font-size: .74rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.chapter-label strong { display: block; margin-bottom: 9px; color: rgba(var(--accent-rgb), .42); font-family: var(--font-display); font-size: 3.6rem; line-height: 1; }
.chapter-body > p { max-width: 840px; margin: 22px 0 0; color: var(--muted); font-size: 1.05rem; }
.media-story { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(28px, 6vw, 76px); align-items: center; }
.media-story.reverse .story-media { order: 2; }
.story-media { position: relative; min-height: 470px; overflow: hidden; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(circle at 50% 40%, rgba(var(--accent-rgb),.19), transparent 44%), #0d1c14; }
.story-media img { width: 90%; height: 430px; padding: 20px; object-fit: contain; filter: drop-shadow(0 28px 26px rgba(0,0,0,.36)); }
.story-copy .section-index { margin-bottom: 16px; }
.story-copy h2 { margin: 0 0 20px; font-family: var(--font-display); font-size: clamp(2.35rem, 4.4vw, 4.5rem); line-height: 1; letter-spacing: -.04em; }
.story-copy p { margin: 0; color: var(--muted); font-size: 1.03rem; }
.fact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.fact { padding-top: 15px; border-top: 1px solid var(--line); }
.fact strong { display: block; color: var(--ink); font-size: .96rem; }
.fact span { color: var(--muted); font-size: .8rem; }

.product-ribbon { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; }
.product-ribbon.six { grid-template-columns: repeat(3, 1fr); }
.product-tile { position: relative; min-height: 390px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(160deg, rgba(var(--accent-rgb),.18), rgba(255,255,255,.025)); }
.product-tile img { position: absolute; inset: 3% 5% 30%; width: 90%; height: 67%; object-fit: contain; filter: drop-shadow(0 22px 18px rgba(0,0,0,.38)); transition: transform .28s ease; }
.product-tile:hover img { transform: translateY(-6px) scale(1.02); }
.product-tile::after { content: ""; position: absolute; inset: 48% 0 0; background: linear-gradient(transparent, rgba(6,14,9,.95) 63%); }
.product-tile > div { position: relative; z-index: 2; }
.product-tile h3 { margin: 0 0 4px; font-size: 1.08rem; }
.product-tile p { margin: 0; color: var(--muted); font-size: .82rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.feature-card { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025)); }
.feature-card .number { color: var(--accent); font-size: .72rem; font-weight: 900; letter-spacing: .16em; }
.feature-card h3 { margin: 15px 0 9px; font-size: 1.15rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.brand-split { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; margin-top: 38px; border: 1px solid var(--line); border-radius: 28px; background: var(--line); }
.brand-panel { min-height: 460px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; background: #0d1b14; }
.brand-panel img { position: absolute; inset: 4% 5% 34%; width: 90%; height: 62%; object-fit: contain; filter: drop-shadow(0 20px 20px rgba(0,0,0,.36)); }
.brand-panel::after { content: ""; position: absolute; inset: 43% 0 0; background: linear-gradient(transparent, #0d1b14 60%); }
.brand-panel > div { position: relative; z-index: 2; }
.brand-panel h3 { margin: 0 0 7px; font-family: var(--font-display); font-size: 2rem; }
.brand-panel p { margin: 0 0 14px; color: var(--muted); font-size: .88rem; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; counter-reset: flow; }
.process-step { position: relative; min-height: 230px; padding: 26px; border: 1px solid var(--line); border-radius: 24px; background: #0d1a13; counter-increment: flow; }
.process-step::before { content: "0" counter(flow); display: block; margin-bottom: 48px; color: var(--accent); font-size: .75rem; font-weight: 900; letter-spacing: .14em; }
.process-step h3 { margin: 0 0 8px; font-size: 1.15rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .9rem; }

.faq-list { max-width: 920px; margin-top: 34px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; border: 0; background: transparent; text-align: left; cursor: pointer; font-weight: 800; }
.faq-question span:last-child { flex: 0 0 28px; display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; transition: transform .2s ease; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer p { margin: 0; padding: 0 48px 22px 0; color: var(--muted); }

.contact-band { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px; align-items: center; padding: clamp(30px, 6vw, 68px); border: 1px solid rgba(255,255,255,.15); border-radius: 34px; background: radial-gradient(circle at 90% 0, rgba(var(--accent-rgb),.28), transparent 36%), linear-gradient(135deg, #173323, #0d1c15); }
.contact-band p { max-width: 690px; margin: 18px 0 0; color: #c2cec6; }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.related-card { min-height: 174px; position: relative; overflow: hidden; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.035); transition: background .2s ease, transform .2s ease; }
.related-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.075); }
.related-card span { color: var(--accent); font-size: .7rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.related-card h3 { margin: 28px 0 0; font-family: var(--font-display); font-size: 1.6rem; line-height: 1.05; }

/* Page-specific silhouettes */
.layout-water .story-media { border-radius: 50% 50% 28px 28px; background: radial-gradient(circle at 50% 32%, rgba(116,215,237,.28), transparent 45%), #071a22; }
.layout-juice .product-tile:nth-child(3n+1) { background-color: #251317; }
.layout-juice .product-tile:nth-child(3n+2) { background-color: #21190d; }
.layout-business .hero-stage { min-height: 460px; }
.layout-business .hero-stage::before { border-radius: 28px; transform: rotate(5deg); }
.layout-business .hero-product { max-height: 390px; }
.layout-portfolio .brand-split { border-radius: 42px 42px 18px 18px; }

/* Footer */
.discover-footer { padding: 42px 0; border-top: 1px solid var(--line); color: #8e9b93; font-size: .84rem; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 22px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 17px; }
.footer-links a:hover { color: var(--ink); }

.reveal { opacity: 1; transform: none; }
.reveal.will-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.will-reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .menu-toggle { position: relative; display: inline-flex; }
  .language { margin-left: auto; }
  .mobile-panel { position: fixed; inset: 80px 16px auto; z-index: 95; display: grid; gap: 5px; padding: 14px; opacity: 0; visibility: hidden; transform: translateY(-10px); border: 1px solid var(--line); border-radius: 22px; background: rgba(10, 24, 16, .97); box-shadow: var(--shadow); transition: .2s ease; }
  .mobile-panel.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-panel a { padding: 12px 14px; border-radius: 12px; font-weight: 750; }
  .mobile-panel a:hover { background: rgba(255,255,255,.07); }
  .hero-inner, .hub-hero .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 24px; }
  .hero-stage, .hub-collage { min-height: 460px; }
  .discover-card, .discover-card:nth-child(1), .discover-card:nth-child(8) { grid-column: span 6; }
  .product-ribbon { grid-template-columns: repeat(2, 1fr); }
  .media-story { grid-template-columns: 1fr; }
  .media-story.reverse .story-media { order: 0; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, 1240px); }
  .header-inner { min-height: 70px; }
  .brand-lockup img { width: 42px; height: 42px; }
  .brand-context { display: none; }
  .mobile-panel { inset-block-start: 70px; }
  .language-toggle { width: 43px; padding-inline: 0; }
  .language-toggle .language-word, .language-toggle svg:first-child { display: none; }
  .page-hero, .hub-hero { min-height: auto; }
  .hero-inner { padding: 112px 0 64px; gap: 24px; }
  .hub-hero .hero-inner { padding-bottom: 42px; }
  h1, .page-hero h1 { font-size: clamp(2.75rem, 14vw, 4.6rem); }
  .hero-stage { min-height: 350px; }
  .hero-stage::before { width: 330px; max-width: 88vw; }
  .hero-stage::after { width: 220px; bottom: 28px; }
  .hero-product { max-height: 350px; }
  .hero-note { right: 0; bottom: 5%; }
  .hub-collage { min-height: 410px; }
  .hub-controls { margin-top: 28px; }
  .filter-row { flex-wrap: nowrap; overflow-x: auto; margin-right: -14px; padding: 1px 14px 7px 1px; scrollbar-width: none; }
  .filter-row::-webkit-scrollbar { display: none; }
  .hub-section, .content-section { padding: 72px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .hub-grid { gap: 13px; }
  .discover-card, .discover-card:nth-child(1), .discover-card:nth-child(8) { grid-column: 1 / -1; min-height: 345px; }
  .chapter { grid-template-columns: 1fr; gap: 18px; }
  .chapter-label strong { display: inline; margin-right: 10px; font-size: 2rem; }
  .story-media { min-height: 350px; }
  .story-media img { height: 330px; }
  .fact-row, .feature-grid, .process-grid, .related-grid { grid-template-columns: 1fr; }
  .fact-row { gap: 20px; }
  .product-ribbon, .product-ribbon.six { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-tile { min-height: 330px; padding: 16px; }
  .brand-split { grid-template-columns: 1fr; }
  .brand-panel { min-height: 390px; }
  .contact-band { grid-template-columns: 1fr; border-radius: 26px; }
  .contact-actions { justify-content: flex-start; }
}

@media (max-width: 430px) {
  .wrap { width: min(100% - 22px, 1240px); }
  .brand-name { font-size: .82rem; }
  .hero-inner { padding-top: 100px; }
  .breadcrumbs { margin-bottom: 18px; font-size: .7rem; }
  h1, .page-hero h1 { font-size: clamp(2.55rem, 13.7vw, 3.8rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions .button { width: 100%; }
  .hero-stage { min-height: 310px; }
  .hub-collage { min-height: 350px; }
  .hub-section, .content-section { padding: 60px 0; }
  .product-ribbon, .product-ribbon.six { grid-template-columns: 1fr; }
  .product-tile { min-height: 360px; }
  .discover-card p { font-size: .84rem; }
  .faq-answer p { padding-right: 0; }
  .footer-inner { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
