:root {
  --font-heading: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --orange: #ff5a00;
  --orange-neon: #ff7a18;
  --orange-soft: #fff1e8;
  --yellow: #ffcc33;
  --black: #070707;
  --ink: #15100d;
  --muted: #6f625b;
  --line: rgba(19, 14, 10, 0.12);
  --white: #ffffff;
  --cream: #fff9f2;
  --panel: #ffffff;
  --dark-panel: #0a0908;
  --shadow: 0 24px 80px rgba(20, 10, 0, 0.14);
  --shadow-soft: 0 16px 40px rgba(20, 10, 0, 0.08);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-xl: 48px;
  --transition: 220ms ease;
  --container-xl: min(100% - 48px, 1520px);
  --container-md: min(100% - 48px, 980px);
  --header-offset: 112px;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
}
body.menu-open, body.age-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--orange); color: var(--white); }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 9999; background: var(--black); color: var(--white); padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { left: 8px; }
.sr-only { position: absolute; inline-size: 1px; block-size: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.container-xl { width: var(--container-xl); margin-inline: auto; }
.container-md { width: var(--container-md); margin-inline: auto; }
.full-bleed { width: 100%; }
.section { padding: 112px 0; position: relative; }
.section-heading { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.section-heading.left { margin-left: 0; text-align: left; }
.section-heading h2, .page-hero h1, .hero h1, .cta-inner h2 { font-family: var(--font-heading); line-height: .88; letter-spacing: -0.06em; margin: 0; }
.section-heading h2 { font-size: clamp(2.2rem, 4.5vw, 5.4rem); }
.hero h1 { font-size: clamp(4.2rem, 11vw, 11.5rem); text-transform: uppercase; }
.hero h1 span { color: var(--orange); display: block; text-shadow: 0 0 32px rgba(255,90,0,.28); }
.page-hero h1 { font-size: clamp(3.4rem, 8vw, 8.8rem); text-transform: uppercase; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 1.35vw, 1.35rem); color: var(--muted); max-width: 660px; }
.kicker { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; color: var(--orange); text-transform: uppercase; font-weight: 800; letter-spacing: .14em; font-size: .78rem; }
.kicker::before { content: ""; width: 9px; height: 9px; border-radius: 999px; background: var(--orange); box-shadow: 0 0 0 7px rgba(255, 90, 0, .12); }

.top-warning {
  position: fixed; z-index: 1001; inset: 0 0 auto 0; height: 34px; display: grid; place-items: center;
  background: var(--black); color: var(--white); font-size: .76rem; letter-spacing: .08em; text-align: center; padding: 0 12px;
}
.site-header {
  position: fixed; z-index: 1000; top: 34px; left: 0; right: 0; transition: var(--transition);
  background: transparent; color: var(--white);
}
.site-header.is-scrolled, body:not([data-page="home"]) .site-header {
  background: rgba(255,255,255,.88); color: var(--ink); box-shadow: 0 14px 40px rgba(21, 16, 13, .08); backdrop-filter: blur(20px);
}
.nav-shell { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; width: 118px; min-width: 118px; }
.brand img { max-height: 62px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(0,0,0,.15)); }
.primary-menu { display: flex; align-items: center; justify-content: center; gap: 8px; list-style: none; padding: 6px; margin: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.12); backdrop-filter: blur(20px); }
.site-header.is-scrolled .primary-menu, body:not([data-page="home"]) .primary-menu { border-color: var(--line); background: rgba(255,255,255,.72); }
.nav-link { display: inline-flex; align-items: center; min-height: 42px; padding: 0 18px; border-radius: 999px; font-size: .95rem; font-weight: 800; transition: var(--transition); }
.nav-link:hover, .nav-link.is-active { background: var(--orange); color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 999px; background: var(--orange); color: var(--white); padding: 12px; }
.nav-toggle span { display: block; height: 2px; background: currentColor; border-radius: 999px; margin: 5px 0; transition: var(--transition); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent; font-weight: 900; letter-spacing: -.01em; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition); }
.btn:hover { transform: translateY(-3px); }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: .92rem; }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--orange), var(--orange-neon)); box-shadow: 0 14px 30px rgba(255, 90, 0, .28); }
.btn-primary:hover { box-shadow: 0 18px 45px rgba(255, 90, 0, .35); }
.btn-light { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.btn-ghost-light { border-color: rgba(255,255,255,.45); color: var(--white); }

.hero { min-height: 100vh; padding-top: var(--header-offset); background: radial-gradient(circle at 78% 22%, rgba(255,122,24,.28), transparent 28%), linear-gradient(135deg, #12100e 0%, #070707 52%, #2b1206 100%); color: var(--white); overflow: hidden; }
.hero-grid { min-height: calc(100vh - var(--header-offset)); display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, .8fr); gap: 48px; align-items: center; padding: 72px 0 88px; }
.hero .lead { color: rgba(255,255,255,.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 28px 0 0; }
.hero-badges li { border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); border-radius: 999px; padding: 8px 13px; font-size: .9rem; font-weight: 700; }
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero-product { width: min(100%, 780px); filter: drop-shadow(0 40px 90px rgba(255,90,0,.25)); transform: rotate(-4deg); animation: floatY 5s ease-in-out infinite; }
.hero-glow { position: absolute; width: 440px; height: 440px; border-radius: 999px; filter: blur(12px); opacity: .45; pointer-events: none; }
.glow-one { right: 10%; top: 20%; background: radial-gradient(circle, rgba(255,90,0,.45), transparent 68%); }
.glow-two { left: -8%; bottom: 10%; background: radial-gradient(circle, rgba(255,204,51,.22), transparent 70%); }
.product-orbit-card { position: absolute; z-index: 2; padding: 13px 18px; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--black); font-weight: 900; box-shadow: var(--shadow); }
.card-a { top: 18%; left: 6%; transform: rotate(-8deg); }
.card-b { right: 6%; top: 30%; transform: rotate(8deg); }
.card-c { bottom: 20%; left: 16%; transform: rotate(6deg); }
.marquee { overflow: hidden; border-block: 1px solid rgba(255,255,255,.12); background: var(--orange); color: var(--white); font-weight: 900; font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -.04em; white-space: nowrap; }
.marquee div { display: flex; gap: 36px; width: max-content; animation: marquee 18s linear infinite; padding: 14px 0; }
.marquee span { padding-inline: 20px; }

.product-families { background: var(--cream); }
.family-grid { display: grid; grid-template-columns: 1.2fr repeat(2, .9fr); gap: 22px; align-items: stretch; }
.family-card { position: relative; min-height: 300px; border-radius: var(--radius-lg); overflow: hidden; padding: 28px; display: flex; align-items: end; background: var(--panel); box-shadow: var(--shadow-soft); border: 1px solid var(--line); isolation: isolate; transition: var(--transition); }
.family-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow); }
.family-card.large { grid-row: span 2; background: linear-gradient(rgba(255,90,0,.08),rgba(0,0,0,.25)), var(--bg) center/cover; color: var(--white); min-height: 622px; }
.family-card img { position: absolute; inset: 6% 8% auto auto; width: 72%; max-height: 250px; object-fit: contain; z-index: -1; transition: var(--transition); }
.family-card:hover img { transform: scale(1.06) rotate(2deg); }
.family-card h3 { font-family: var(--font-heading); font-size: clamp(2rem, 3vw, 4rem); line-height: .92; margin: 5px 0; letter-spacing: -.05em; }
.family-card span { display: inline-flex; background: var(--orange); color: var(--white); border-radius: 999px; padding: 6px 12px; font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.family-card p { margin: 0; font-weight: 800; color: var(--muted); }
.family-card.large p { color: rgba(255,255,255,.78); }

.dark-panel { background: var(--dark-panel); color: var(--white); }
.dark-panel .section-heading p, .dark-panel .lead { color: rgba(255,255,255,.72); }
.split-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(32px, 5vw, 88px); align-items: center; }
.split-grid.compact { grid-template-columns: .85fr 1fr; }
.slider-shell { position: relative; min-width: 0; }
.slider-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(290px, 380px); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 20px; scrollbar-width: none; }
.slider-track::-webkit-scrollbar { display: none; }
.slider-track .product-card { scroll-snap-align: start; }
.slider-btn { position: absolute; top: 42%; z-index: 4; width: 48px; height: 48px; border-radius: 999px; border: 0; background: var(--white); color: var(--black); box-shadow: var(--shadow-soft); font-size: 2rem; }
.slider-btn.prev { left: -18px; }
.slider-btn.next { right: -18px; }

.product-card { background: var(--panel); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; min-height: 100%; transition: var(--transition); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-media { min-height: 260px; display: grid; place-items: center; background: radial-gradient(circle, rgba(255,90,0,.22), transparent 58%), linear-gradient(160deg, #fff6ee, #fff); padding: 22px; }
.product-media img { width: 100%; height: 260px; object-fit: contain; filter: drop-shadow(0 25px 28px rgba(0,0,0,.16)); transition: var(--transition); }
.product-card:hover .product-media img { transform: scale(1.07) rotate(-2deg); }
.product-content { padding: 24px; }
.product-type { display: inline-flex; margin: 0 0 10px; color: var(--orange); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.product-card h3 { margin: 0 0 6px; font-family: var(--font-heading); font-size: 1.55rem; line-height: 1; letter-spacing: -.04em; }
.product-card p { color: var(--muted); }
.spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 16px; }
.spec-grid span { display: grid; gap: 0; padding: 10px 12px; border-radius: 14px; background: var(--orange-soft); font-size: .84rem; color: var(--muted); }
.spec-grid strong { color: var(--ink); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; }

.experience-section { background: var(--white); }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.experience-card, .value-card, .stat-card, .adult-card, .contact-hero-card, .legal-card, .compare-box { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.experience-card { padding: 34px; }
.experience-card span { font-size: 4.6rem; line-height: .8; font-family: var(--font-heading); color: var(--orange); font-weight: 900; letter-spacing: -.08em; }
.experience-card h3, .value-card h3, .contact-hero-card h2, .compare-box strong { font-family: var(--font-heading); letter-spacing: -.04em; line-height: .95; }
.experience-card h3 { font-size: 2rem; margin: 24px 0 12px; }
.about-strip { background: linear-gradient(180deg, var(--cream), var(--orange-soft)); }
.about-strip-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius-xl); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.about-image img { width: 100%; aspect-ratio: 1.14/1; object-fit: cover; }
.mini-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.mini-points span { background: var(--black); color: var(--white); padding: 10px 14px; border-radius: 999px; font-weight: 900; }
.gallery-section { background: var(--white); }
.filter-controls { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-btn { border: 1px solid var(--line); border-radius: 999px; background: var(--panel); color: var(--ink); min-height: 46px; padding: 0 18px; font-weight: 900; transition: var(--transition); }
.filter-btn:hover, .filter-btn.is-active { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-2px); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item { margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.gallery-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption { padding: 16px; font-weight: 900; }
.filter-item.is-hidden { display: none !important; }
.accordion { display: grid; gap: 12px; }
.accordion-item { border: 1px solid var(--line); border-radius: 24px; background: var(--panel); box-shadow: var(--shadow-soft); overflow: hidden; }
.accordion-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; text-align: left; background: transparent; border: 0; color: var(--ink); font-weight: 900; font-size: 1.05rem; }
.accordion-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 999px; background: var(--orange); color: var(--white); flex: none; }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--transition); }
.accordion-panel > p { overflow: hidden; padding: 0 24px; margin: 0; color: var(--muted); }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-panel > p { padding-bottom: 24px; }
.accordion-item.is-open .accordion-icon { transform: rotate(45deg); }
.cta-band { background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.28), transparent 28%), linear-gradient(135deg, var(--orange), #ff8a00); color: var(--white); }
.cta-inner { min-height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.cta-inner h2 { font-size: clamp(2.8rem, 6vw, 7.6rem); max-width: 1120px; }
.cta-inner p { max-width: 680px; color: rgba(255,255,255,.83); font-size: 1.15rem; }
.cta-inner div { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 18px; }

.page-hero { padding: calc(var(--header-offset) + 80px) 0 96px; background: radial-gradient(circle at 84% 18%, rgba(255,122,24,.26), transparent 24%), linear-gradient(135deg, #11100e 0%, #0a0908 55%, #321507 100%); color: var(--white); overflow: hidden; }
.page-hero .lead { color: rgba(255,255,255,.78); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 48px; align-items: center; }
.page-hero-img { min-height: 350px; display: grid; place-items: center; border-radius: var(--radius-xl); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); overflow: hidden; }
.page-hero-img img { width: 100%; height: 100%; max-height: 430px; object-fit: contain; }
.product-stack img { transform: rotate(-3deg); filter: drop-shadow(0 30px 60px rgba(255,90,0,.25)); }
.story-section { background: var(--cream); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card { padding: 34px; text-align: center; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.stat-card span { display: block; font-family: var(--font-heading); font-size: clamp(3rem, 5vw, 6rem); line-height: .9; color: var(--orange); letter-spacing: -.08em; }
.stat-card p { color: rgba(255,255,255,.72); margin: 8px 0 0; font-weight: 900; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 34px; }
.value-card img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 28px; }
.value-card h3 { font-size: 2.1rem; margin: 0 0 12px; }
.adult-section { background: var(--orange-soft); }
.adult-card { padding: clamp(28px, 4vw, 56px); display: grid; grid-template-columns: .65fr 1fr; gap: 32px; align-items: center; }
.adult-card h2 { font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 4.6rem); line-height: .92; letter-spacing: -.06em; margin: 0; }
.check-list { display: grid; gap: 14px; padding: 0; margin: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; font-weight: 800; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 999px; background: var(--orange); color: var(--white); font-size: .85rem; }
.product-page { background: var(--cream); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; align-items: stretch; }
.compare-box { display: grid; gap: 12px; padding: 26px; background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }
.compare-box div { display: flex; justify-content: space-between; gap: 16px; padding: 18px; border-radius: 18px; background: rgba(255,255,255,.08); }
.compare-box span { color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.compare-box strong { font-size: 1.35rem; }
.big-accordion .accordion-toggle { font-size: 1.2rem; padding: 28px 30px; }
.contact-hero-card { padding: 34px; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.16); color: var(--white); box-shadow: none; }
.contact-hero-card h2 { font-size: 3rem; margin: 0 0 10px; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.contact-list.large { margin-top: 24px; font-size: 1.1rem; font-weight: 900; }
.contact-list a:hover, .footer-links a:hover, .legal-card a:hover { color: var(--orange); }
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: stretch; }
.contact-form, .contact-map { border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--panel); box-shadow: var(--shadow-soft); overflow: hidden; }
.contact-form { padding: clamp(28px, 4vw, 46px); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 28px 0 22px; }
.form-grid label { display: grid; gap: 8px; font-weight: 900; }
.form-grid label.full { grid-column: 1/-1; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 14px 15px; background: var(--cream); color: var(--ink); outline: 0; transition: var(--transition); }
input:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,90,0,.12); }
textarea { resize: vertical; }
.form-note { margin: 12px 0 0; font-weight: 800; color: var(--orange); }
.contact-map { position: relative; min-height: 520px; }
.contact-map img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.map-card { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 24px; border-radius: 24px; background: rgba(255,255,255,.88); backdrop-filter: blur(16px); box-shadow: var(--shadow-soft); }
.legal-section { background: var(--cream); }
.legal-card { padding: clamp(28px, 5vw, 60px); }
.legal-card h2 { margin: 28px 0 8px; font-family: var(--font-heading); font-size: 2rem; letter-spacing: -.04em; }
.legal-card h2:first-child { margin-top: 0; }

.site-footer { background: var(--black); color: var(--white); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1fr .8fr; gap: 40px; }
.footer-logo { width: 140px; background: var(--white); border-radius: 20px; padding: 8px; margin-bottom: 18px; }
.site-footer p, .footer-links a, .contact-list li { color: rgba(255,255,255,.68); }
.site-footer h3 { font-family: var(--font-heading); letter-spacing: -.03em; font-size: 1.35rem; margin: 0 0 16px; }
.footer-warning { color: var(--orange) !important; font-weight: 900; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.subscribe-form { display: flex; gap: 8px; margin-top: 14px; }
.subscribe-form input { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.16); }
.subscribe-form .btn { min-height: 48px; padding-inline: 16px; white-space: nowrap; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; }


/* 18+ access gate */
.age-check-required.age-locked > *:not(.age-modal):not(.age-noscript) { pointer-events: none; }
.age-modal[hidden] { display: none; }
.age-modal { position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center; background: radial-gradient(circle at 50% 25%, rgba(255, 90, 0, .24), transparent 32%), rgba(0,0,0,.86); backdrop-filter: blur(18px); padding: 24px; }
.age-card { width: min(100%, 540px); border-radius: 34px; background: var(--white); color: var(--ink); padding: 38px; text-align: center; box-shadow: 0 40px 120px rgba(0,0,0,.46); border: 1px solid rgba(255,90,0,.18); }
.age-card p:not(.kicker):not(.age-message) { color: var(--muted); margin: 0; }
.age-actions .btn { min-width: 190px; }
.age-noscript { position: fixed; inset: 0; z-index: 6000; display: grid; place-items: center; padding: 24px; text-align: center; background: #090706; color: #fff; font: 700 20px/1.4 Arial, sans-serif; }



.reveal { opacity: 0; transform: translateY(28px); transition: opacity 680ms ease, transform 680ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes floatY { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-18px) rotate(-2deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (min-width: 1600px) {
  :root { --container-xl: min(100% - 72px, 1580px); }
  .product-grid { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .hero-grid { gap: 72px; }
}
@media (max-width: 1199px) {
  .hero-grid, .page-hero-grid, .split-grid, .split-grid.compact, .about-strip-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 70px; }
  .hero-visual { min-height: 460px; }
  .family-grid { grid-template-columns: repeat(2, 1fr); }
  .family-card.large { grid-row: span 1; min-height: 360px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  :root { --container-xl: min(100% - 32px, 1520px); --container-md: min(100% - 32px, 980px); }
  .nav-toggle { display: block; order: 3; }
  .nav-actions .btn { display: none; }
  .primary-menu { position: fixed; top: 112px; left: 16px; right: 16px; display: grid; gap: 8px; align-content: start; justify-items: stretch; padding: 18px; border-radius: 28px; background: rgba(255,255,255,.96) !important; color: var(--ink); transform: translateY(-20px); opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: var(--shadow); }
  body.menu-open .primary-menu { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { min-height: 52px; justify-content: center; }
  .hero h1 { font-size: clamp(3.6rem, 15vw, 7rem); }
  .experience-grid, .value-grid, .stats-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .adult-card { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --header-offset: 104px; }
  .top-warning { height: 38px; font-size: .65rem; line-height: 1.2; }
  .site-header { top: 38px; }
  .nav-shell { height: 66px; }
  .brand { width: 96px; min-width: 96px; }
  .brand img { max-height: 52px; }
  .section { padding: 76px 0; }
  .hero-grid { min-height: auto; padding: 52px 0 72px; }
  .hero-visual { min-height: 340px; }
  .product-orbit-card { font-size: .8rem; padding: 8px 12px; }
  .family-grid, .experience-grid, .value-grid, .stats-grid, .gallery-grid, .product-grid, .footer-grid { grid-template-columns: 1fr; }
  .family-card, .family-card.large { min-height: 300px; }
  .page-hero { padding: calc(var(--header-offset) + 48px) 0 70px; }
  .page-hero-img { min-height: 260px; }
  .slider-track { grid-auto-columns: minmax(260px, 86vw); }
  .slider-btn { display: none; }
  .subscribe-form { flex-direction: column; }
  .footer-bottom { display: grid; }
  .contact-map { min-height: 400px; }
  .age-card { padding: 28px 22px; }
  .cta-inner { min-height: 300px; }
}
@media (max-width: 360px) {
  :root { --container-xl: min(100% - 24px, 1520px); --container-md: min(100% - 24px, 980px); }
  .btn { width: 100%; }
  .hero-actions, .cta-inner div, .age-actions { width: 100%; }
  .section-heading h2 { font-size: 2rem; }
  .hero h1 { font-size: 3.2rem; }
  .page-hero h1 { font-size: 2.8rem; }
  .product-content { padding: 20px; }
  .spec-grid { grid-template-columns: 1fr; }
}


/* Update patch: image fixes, cleaner font spacing, and slide-in mobile menu */
body {
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.005em;
  text-rendering: geometricPrecision;
}
p,
.lead,
.product-card p,
.accordion-panel,
.site-footer p,
.legal-card,
.form-grid label,
.contact-list li {
  letter-spacing: 0;
  line-height: 1.68;
}
.section-heading h2,
.page-hero h1,
.hero h1,
.cta-inner h2,
.family-card h3,
.experience-card h3,
.value-card h3,
.contact-hero-card h2,
.adult-card h2,
.stat-card span,
.age-card h2 {
  letter-spacing: -0.032em;
  line-height: 1.01;
  text-wrap: balance;
}
.hero h1 {
  letter-spacing: -0.04em;
  line-height: .96;
}
.page-hero h1,
.cta-inner h2 {
  line-height: .98;
}
.section-heading h2 {
  line-height: 1.04;
}
.product-card h3,
.drop-card h3,
.site-footer h3,
.legal-card h2 {
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.kicker,
.product-type,
.compare-box span,
.spec-grid strong,
.family-card span,
.nav-link,
.btn {
  letter-spacing: .02em;
}
.product-type,
.spec-grid strong,
.family-card span,
.kicker {
  letter-spacing: .09em;
}
.nav-link,
.btn,
.filter-btn,
.accordion-toggle {
  font-weight: 800;
}
.product-content {
  gap: 4px;
}
.product-media img,
.family-card img,
.drop-card img,
.hero-product,
.page-hero-img img {
  -webkit-user-select: none;
  user-select: none;
}

.image-drops {
  background:
    radial-gradient(circle at 15% 10%, rgba(255,90,0,.14), transparent 30%),
    linear-gradient(180deg, var(--cream), var(--orange-soft));
  overflow: hidden;
}
.drop-track {
  grid-auto-columns: minmax(230px, 320px);
  align-items: stretch;
  padding-block: 12px 24px;
}
.drop-card {
  scroll-snap-align: start;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.drop-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(255,90,0,.18), transparent 62%);
  pointer-events: none;
}
.drop-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow);
}
.drop-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 230px;
  object-fit: contain;
  margin-bottom: auto;
  filter: drop-shadow(0 22px 28px rgba(20,10,0,.16));
  transition: var(--transition);
}
.drop-card:hover img {
  transform: scale(1.06) rotate(-2deg);
}
.drop-card span {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.drop-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.65rem;
}
.mobile-menu-cta { display: none; }

@media (max-width: 920px) {
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(8px);
  }
  .site-header { z-index: 1002; }
  .nav-shell { position: relative; }
  .nav-toggle,
  .nav-actions {
    position: relative;
    z-index: 1005;
  }
  .primary-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 390px);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    padding: 132px 22px 28px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 34px 0 0 34px;
    background: rgba(255,255,255,.98) !important;
    color: var(--ink);
    box-shadow: -30px 0 80px rgba(0,0,0,.22);
    transform: translateX(112%);
    opacity: 1;
    visibility: visible;
    transition: transform 320ms cubic-bezier(.22,.8,.22,1);
    overflow-y: auto;
    z-index: 1004;
  }
  .primary-menu::before {
    content: "Menu";
    display: block;
    margin: 0 0 12px;
    color: var(--orange);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
  }
  body.menu-open .primary-menu {
    transform: translateX(0);
  }
  .primary-menu li { width: 100%; }
  .nav-link {
    width: 100%;
    min-height: 56px;
    justify-content: flex-start;
    padding: 0 18px;
    border-radius: 18px;
    background: rgba(255,90,0,.06);
  }
  .mobile-menu-cta {
    display: block;
    margin-top: 8px;
  }
  .mobile-menu-cta .btn {
    width: 100%;
  }
  .hero h1,
  .section-heading h2,
  .page-hero h1 {
    letter-spacing: -0.025em;
  }
}
@media (max-width: 640px) {
  .primary-menu {
    width: min(90vw, 360px);
    padding-top: 116px;
    border-radius: 28px 0 0 28px;
  }
  .drop-track { grid-auto-columns: minmax(250px, 84vw); }
  .drop-card { min-height: 330px; padding: 20px; }
  .drop-card img { height: 210px; }
}
@media (max-width: 360px) {
  .hero h1,
  .page-hero h1,
  .section-heading h2,
  .cta-inner h2 {
    letter-spacing: -0.018em;
    line-height: 1.04;
  }
}


/* Final content/layout polish: prevents text-image overlap while preserving the same design language */
.family-card { align-items: flex-end; }
.family-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 52%;
  background: linear-gradient(180deg, transparent, rgba(255,249,242,.94));
  pointer-events: none;
  z-index: 1;
}
.family-card.large::after { background: linear-gradient(180deg, transparent, rgba(0,0,0,.70)); }
.family-card > div {
  position: relative;
  z-index: 2;
  max-width: 78%;
}
.family-card img {
  inset: 7% 6% auto auto;
  width: 62%;
  max-height: 225px;
}
.family-card.large > div { max-width: 82%; }
.product-content { position: relative; z-index: 2; background: var(--panel); }
.product-card p { min-height: 3.2em; }
.product-card h3 { overflow-wrap: anywhere; }
.product-notice {
  max-width: 980px;
  margin: -12px auto 36px;
  padding: 18px 22px;
  border: 1px solid rgba(255,90,0,.26);
  border-radius: 22px;
  background: var(--orange-soft);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.product-notice strong { color: var(--orange); }
.responsible-home, .brand-standard-section { background: var(--cream); }
.contact-map .map-card { max-width: min(88%, 430px); }
@media (max-width: 920px) {
  .family-card > div, .family-card.large > div { max-width: 86%; }
  .family-card img { width: 58%; max-height: 210px; }
}
@media (max-width: 640px) {
  .family-card::after { height: 60%; }
  .family-card > div, .family-card.large > div { max-width: 100%; }
  .family-card img { width: 54%; max-height: 190px; opacity: .92; }
  .product-card p { min-height: auto; }
  .product-notice { text-align: left; margin-top: -8px; }
}


/* User-requested visual fixes: collection background, animated icon panel, and Why Ozzy motion visual */
.family-card.large.has-product-art {
  background:
    linear-gradient(180deg, rgba(255, 90, 0, .08) 0%, rgba(0, 0, 0, .22) 45%, rgba(0, 0, 0, .72) 100%),
    var(--bg) center/cover no-repeat;
  color: var(--white);
}
.family-card.large.has-product-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.24), transparent 20%),
    radial-gradient(circle at 78% 34%, rgba(255,90,0,.22), transparent 28%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: cardGlowMove 8s ease-in-out infinite alternate;
}
.family-card.large.has-product-art > div { z-index: 2; }

.brand-power-card {
  position: relative;
  min-height: 360px;
  grid-template-columns: minmax(420px, .9fr) 1fr;
  overflow: hidden;
  padding: clamp(24px, 3vw, 56px);
  background:
    radial-gradient(circle at 78% 50%, rgba(255,90,0,.10), transparent 32%),
    var(--panel);
}
.brand-power-media {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--orange);
  box-shadow: 0 24px 70px rgba(255,90,0,.13);
}
.brand-power-media img {
  display: block;
  width: 100%;
  height: clamp(210px, 22vw, 285px);
  object-fit: cover;
}
.animated-icon-stage {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.animated-icon-stage::before,
.animated-icon-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.animated-icon-stage::before {
  width: min(36vw, 420px);
  height: min(36vw, 420px);
  background:
    conic-gradient(from 0deg, rgba(255,90,0,.34), rgba(255,184,0,.13), rgba(0,0,0,.08), rgba(255,90,0,.34));
  filter: blur(2px);
  animation: spin360 12s linear infinite;
}
.animated-icon-stage::after {
  width: min(26vw, 280px);
  height: min(26vw, 280px);
  background: radial-gradient(circle, rgba(255,90,0,.25), rgba(255,90,0,.05) 58%, transparent 62%);
  animation: softPulse 3.4s ease-in-out infinite;
}
.motion-icon {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(70px, 7vw, 112px);
  height: clamp(70px, 7vw, 112px);
  border-radius: 28px;
  background: var(--black);
  box-shadow: 0 22px 46px rgba(0,0,0,.18);
}
.motion-icon img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  filter: invert(1);
}
.motion-icon.flower { top: 16%; left: 18%; animation: floatIconOne 4.6s ease-in-out infinite; }
.motion-icon.lips { right: 14%; top: 26%; background: var(--orange); animation: floatIconTwo 5.2s ease-in-out infinite; }
.motion-icon.lips img { filter: none; opacity: .95; }
.motion-icon.dots { left: 38%; bottom: 10%; background: var(--white); border: 1px solid var(--line); animation: floatIconThree 5.8s ease-in-out infinite; }
.motion-icon.dots img { filter: none; opacity: .88; }
.pulse-core {
  position: relative;
  z-index: 3;
  width: clamp(106px, 10vw, 154px);
  height: clamp(106px, 10vw, 154px);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 16px rgba(255,90,0,.08), 0 24px 60px rgba(255,90,0,.28);
  animation: coreBounce 3.2s ease-in-out infinite;
}
.pulse-core span {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.04em;
}

.about-strip {
  overflow: hidden;
}
.about-strip-grid {
  grid-template-columns: minmax(520px, .92fr) 1fr;
}
.about-image.why-visual {
  min-height: clamp(560px, 45vw, 760px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 32%, rgba(96, 120, 255, .34), transparent 28%),
    radial-gradient(circle at 70% 72%, rgba(255,90,0,.32), transparent 30%),
    linear-gradient(135deg, #0e0d18 0%, #21113b 45%, #ffefe3 100%);
  border: 0;
}
.about-image.why-visual::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: conic-gradient(from 0deg, rgba(255,90,0,.46), rgba(92,111,255,.34), rgba(255,255,255,.18), rgba(255,90,0,.46));
  filter: blur(18px);
  animation: spin360 16s linear infinite;
}
.about-image.why-visual::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 42px;
  background-image: radial-gradient(rgba(255,255,255,.22) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  opacity: .42;
  animation: driftDots 9s linear infinite;
}
.about-image.why-visual img {
  position: relative;
  z-index: 2;
  width: min(116%, 850px);
  max-width: none;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 55px rgba(0,0,0,.38));
  animation: whyFloat 5.8s ease-in-out infinite;
}

@keyframes cardGlowMove {
  0% { transform: translate3d(-2%, -2%, 0) scale(1); opacity: .72; }
  100% { transform: translate3d(2%, 2%, 0) scale(1.05); opacity: 1; }
}
@keyframes spin360 { to { transform: rotate(360deg); } }
@keyframes softPulse { 0%,100% { transform: scale(.94); opacity: .54; } 50% { transform: scale(1.08); opacity: .95; } }
@keyframes floatIconOne { 0%,100% { transform: translateY(0) rotate(-7deg); } 50% { transform: translateY(-18px) rotate(8deg); } }
@keyframes floatIconTwo { 0%,100% { transform: translateY(0) rotate(9deg); } 50% { transform: translateY(16px) rotate(-6deg); } }
@keyframes floatIconThree { 0%,100% { transform: translateX(0) rotate(0deg); } 50% { transform: translateX(22px) rotate(10deg); } }
@keyframes coreBounce { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.04); } }
@keyframes driftDots { to { background-position: 44px 44px; } }
@keyframes whyFloat { 0%,100% { transform: translateY(0) rotate(-1.5deg) scale(1); } 50% { transform: translateY(-18px) rotate(1.4deg) scale(1.03); } }

@media (max-width: 1199px) {
  .brand-power-card,
  .about-strip-grid { grid-template-columns: 1fr; }
  .animated-icon-stage { min-height: 320px; }
  .about-image.why-visual { min-height: 560px; }
}
@media (max-width: 640px) {
  .brand-power-card { min-height: auto; padding: 18px; }
  .brand-power-media img { height: 220px; }
  .animated-icon-stage { min-height: 250px; }
  .motion-icon { border-radius: 22px; }
  .about-image.why-visual { min-height: 390px; }
  .about-image.why-visual img { width: 118%; }
}


/* v2 adjustments based on latest feedback */
.collection-hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(0,0,0,.18) 48%, rgba(0,0,0,.74) 100%), linear-gradient(180deg, #f3eee8 0%, #d6d0ca 100%);
}
.collection-hero-card::before {
  display: none;
}
.collection-hero-card .collection-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: none;
}
.collection-hero-card:hover .collection-hero-image {
  transform: scale(1.02);
}
.collection-hero-card > div {
  max-width: 72%;
}

.icon-experience-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 250px;
}
.icon-experience-card span { display: none; }
.experience-icon {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  box-shadow: 0 18px 34px rgba(0,0,0,.14);
  will-change: transform;
}
.experience-icon img {
  width: 62%;
  height: 62%;
  object-fit: contain;
}
.icon-experience-card:nth-child(1) .experience-icon { background: #111; }
.icon-experience-card:nth-child(1) .experience-icon img { filter: invert(1); }
.icon-experience-card:nth-child(2) .experience-icon { background: var(--orange); }
.icon-experience-card:nth-child(2) .experience-icon img { filter: none; }
.icon-experience-card:nth-child(3) .experience-icon { background: var(--white); border: 1px solid var(--line); }
.icon-experience-card:nth-child(3) .experience-icon img { filter: none; }
.icon-float-one,
.icon-float-two,
.icon-float-three {
  animation: subtleIconFloat 4.8s ease-in-out infinite;
}

.brand-power-card {
  grid-template-columns: 1fr;
  min-height: auto;
  background: var(--panel);
}
.full-brand-power {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--orange);
}
.full-brand-power img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  display: block;
}
.brand-power-card .animated-icon-stage { display: none !important; }

.about-image.why-visual {
  min-height: auto;
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 0;
}
.about-image.why-visual::before,
.about-image.why-visual::after {
  display: none;
}
.about-image.why-visual img {
  width: 100%;
  max-width: 100%;
  filter: none;
}

@media (max-width: 920px) {
  .collection-hero-card .collection-hero-image { width: min(54%, 260px); right: 6%; }
  .collection-hero-card > div { max-width: 76%; }
}
@media (max-width: 640px) {
  .collection-hero-card .collection-hero-image { width: 58%; inset: 8% 4% auto auto; }
  .collection-hero-card > div { max-width: 100%; }
  .experience-icon { width: 78px; height: 78px; }
}


/* v3 refinement: full-div collection image + unified subtle icon motion */
@keyframes subtleIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 920px) {
  .collection-hero-card .collection-hero-image {
    width: 100%;
    right: auto;
  }
  .collection-hero-card > div { max-width: 82%; }
}
@media (max-width: 640px) {
  .collection-hero-card .collection-hero-image {
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .collection-hero-card > div { max-width: 100%; }
}


/* v4 final fix: make Vape Collection image fully cover the whole card */
.collection-hero-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(0,0,0,.16) 40%, rgba(0,0,0,.72) 100%),
    url("../images/product-card-bg.webp") center center / cover no-repeat !important;
}
.collection-hero-card .collection-hero-image {
  display: none !important;
}
.collection-hero-card::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.72) 100%);
}
.collection-hero-card > div {
  position: relative;
  z-index: 2;
  max-width: 78%;
}


/* About page redesign based on reference content while keeping current Ozzy theme */
.about-fresh-hero {
  background:
    radial-gradient(circle at 76% 16%, rgba(255,122,24,.32), transparent 28%),
    radial-gradient(circle at 16% 72%, rgba(255,204,51,.12), transparent 30%),
    linear-gradient(135deg, #12100e 0%, #070707 54%, #321507 100%);
}
.about-fresh-hero h1 span { color: var(--orange); }
.about-fresh-hero .hero-actions { margin-top: 30px; }
.about-banner-stage {
  min-height: 420px;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,90,0,.20), transparent 44%),
    rgba(255,255,255,.08);
}
.about-banner-stage img {
  width: 112%;
  max-width: none;
  filter: drop-shadow(0 32px 55px rgba(255,90,0,.18));
  animation: aboutBannerFloat 5.4s ease-in-out infinite;
}
.about-marquee { box-shadow: inset 0 1px 0 rgba(255,255,255,.16); }
.about-story-grid { align-items: center; }
.about-hand-visual {
  background:
    radial-gradient(circle at 50% 52%, rgba(255,90,0,.12), transparent 45%),
    var(--white);
  box-shadow: none;
  border: 0;
  overflow: visible;
}
.about-hand-visual img {
  width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 55px rgba(20,10,0,.18));
}
.about-mood-tags span {
  text-transform: uppercase;
  letter-spacing: .05em;
  background: var(--orange);
}
.why-about-section { overflow: hidden; }
.about-why-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 38% 35%, rgba(255,90,0,.24), transparent 28%),
    radial-gradient(circle at 70% 75%, rgba(255,204,51,.12), transparent 32%),
    rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.about-why-visual::before {
  content: "";
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: conic-gradient(from 0deg, rgba(255,90,0,.35), rgba(255,255,255,.12), rgba(255,204,51,.22), rgba(255,90,0,.35));
  filter: blur(18px);
  animation: spin360 16s linear infinite;
}
.about-why-visual img {
  position: relative;
  z-index: 1;
  width: min(92%, 560px);
  filter: drop-shadow(0 36px 60px rgba(0,0,0,.34));
  animation: whyFloat 5.8s ease-in-out infinite;
}
.about-stats-panel {
  background: var(--black);
  color: var(--white);
  padding-block: 84px;
}
.about-stats-panel .stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.about-values-section { background: var(--cream); }
.beginner-guide-section {
  background:
    radial-gradient(circle at 82% 25%, rgba(255,90,0,.14), transparent 26%),
    linear-gradient(180deg, var(--white), var(--orange-soft));
}
.beginner-list { margin-top: 24px; }
.video-preview-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,90,0,.22);
}
.video-preview-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: .82;
  transform: scale(1.08);
}
.video-preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 17%, rgba(0,0,0,.08) 18% 100%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.58));
}
.play-badge {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 18px rgba(255,90,0,.18), 0 24px 60px rgba(0,0,0,.34);
  font-size: 2rem;
  padding-left: 5px;
}
@keyframes aboutBannerFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.02); } }
@media (max-width: 1199px) {
  .about-banner-stage { min-height: 330px; }
  .about-why-visual { min-height: 440px; }
}
@media (max-width: 640px) {
  .about-fresh-hero .hero-actions { width: 100%; }
  .about-banner-stage { min-height: 260px; padding: 10px; }
  .about-banner-stage img { width: 128%; }
  .about-hand-visual { margin-bottom: 10px; }
  .about-why-visual { min-height: 330px; border-radius: 30px; }
  .video-preview-card, .video-preview-card img { min-height: 300px; }
  .play-badge { width: 76px; height: 76px; font-size: 1.5rem; }
}

/* About page requested fixes: portrait hero banner, clean story text, logo visual and new unique icons */
.about-hero-grid {
  grid-template-columns: minmax(0, .95fr) minmax(360px, .52fr);
}
.about-banner-stage {
  justify-self: end;
  width: min(100%, 520px);
  min-height: 640px;
  padding: 0;
  border-radius: 46px;
  background: #11100e;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 90px rgba(0,0,0,.32), 0 0 0 10px rgba(255,255,255,.045);
}
.about-banner-stage img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  max-height: none;
  object-fit: cover;
  object-position: center bottom;
  filter: none;
  animation: none;
}
.story-section .section-heading.left {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.about-logo-visual {
  background:
    radial-gradient(circle at 50% 42%, rgba(255,90,0,.38), transparent 34%),
    radial-gradient(circle at 72% 78%, rgba(255,204,51,.14), transparent 30%),
    #070707;
}
.about-logo-visual::before {
  width: 78%;
  opacity: .58;
}
.about-logo-visual img {
  width: min(78%, 420px);
  padding: clamp(24px, 3vw, 38px);
  border-radius: 38px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
  filter: drop-shadow(0 28px 60px rgba(255,90,0,.22));
  animation: whyFloat 6s ease-in-out infinite;
}
.about-values-section .value-card img {
  width: 78px;
  height: 78px;
  padding: 0;
  border-radius: 24px;
  background: transparent;
  filter: drop-shadow(0 14px 26px rgba(255,90,0,.14));
}

@media (max-width: 1199px) {
  .about-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(310px, .55fr); }
  .about-banner-stage { min-height: 520px; width: min(100%, 440px); }
  .about-banner-stage img { min-height: 520px; }
}
@media (max-width: 920px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-banner-stage { justify-self: stretch; width: 100%; min-height: 430px; }
  .about-banner-stage img { min-height: 430px; object-position: center bottom; }
}
@media (max-width: 640px) {
  .about-banner-stage { min-height: 360px; width: 100%; padding: 0; border-radius: 32px; }
  .about-banner-stage img { width: 100%; min-height: 360px; object-fit: cover; }
  .about-logo-visual img { width: min(82%, 310px); }
}


/* About page v3 fixes: flush hero artwork, no story/image box, clean white logo */
.about-fresh-hero .page-hero-grid.about-hero-grid {
  align-items: center;
}
.about-fresh-hero .reveal:first-child {
  position: relative;
  z-index: 2;
}
.about-banner-stage {
  align-self: start !important;
  justify-self: center !important;
  width: min(100%, 700px) !important;
  height: clamp(180px, 22vw, 285px) !important;
  min-height: 0 !important;
  margin-top: clamp(58px, 5.2vw, 78px) !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  display: flex !important;
  align-items: flex-end !important;
}
.about-banner-stage img {
  width: 122% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: left bottom !important;
  filter: drop-shadow(0 32px 44px rgba(255,90,0,.16)) !important;
  animation: none !important;
}
.story-section .section-heading.left,
.story-section .about-image,
.story-section .about-hand-visual {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.story-section .section-heading.left {
  padding: 0 !important;
  border-radius: 0 !important;
}
.story-section .about-hand-visual {
  border-radius: 0 !important;
  overflow: visible !important;
}
.story-section .about-hand-visual img {
  display: block;
  width: min(100%, 610px) !important;
  margin-inline: auto;
  background: transparent !important;
  filter: drop-shadow(0 28px 45px rgba(20,10,0,.16)) !important;
}
.about-logo-visual {
  background:
    radial-gradient(circle at 50% 42%, rgba(255,90,0,.30), transparent 32%),
    radial-gradient(circle at 74% 76%, rgba(255,204,51,.12), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.02)) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
}
.about-logo-visual img {
  width: min(86%, 480px) !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 32px 70px rgba(255,255,255,.16)) drop-shadow(0 24px 50px rgba(255,90,0,.22)) !important;
  animation: whyFloat 6s ease-in-out infinite !important;
}
@media (max-width: 1199px) {
  .about-banner-stage {
    height: clamp(170px, 24vw, 240px) !important;
    margin-top: clamp(54px, 5vw, 70px) !important;
  }
  .about-banner-stage img { width: 126% !important; }
}
@media (max-width: 920px) {
  .about-banner-stage {
    align-self: center !important;
    justify-self: start !important;
    width: 100% !important;
    height: clamp(175px, 34vw, 250px) !important;
    margin-top: 16px !important;
  }
  .about-banner-stage img {
    width: 100% !important;
    object-position: center bottom !important;
  }
}
@media (max-width: 640px) {
  .about-banner-stage {
    height: 172px !important;
    margin-top: 12px !important;
  }
  .about-banner-stage img { width: 112% !important; }
  .about-logo-visual img { width: min(88%, 330px) !important; }
}


/* About hero final update: use uploaded aboutus-banner full-size with no card/container feel */
.about-fresh-hero .page-hero-grid.about-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}
.about-banner-stage {
  align-self: center !important;
  justify-self: end !important;
  width: 100% !important;
  max-width: 430px !important;
  height: auto !important;
  min-height: 0 !important;
  margin-top: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  display: block !important;
}
.about-banner-stage img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
  filter: none !important;
  animation: none !important;
}
@media (max-width: 920px) {
  .about-fresh-hero .page-hero-grid.about-hero-grid {
    grid-template-columns: 1fr;
  }
  .about-banner-stage {
    justify-self: center !important;
    max-width: min(100%, 380px) !important;
    margin-top: 6px !important;
  }
}
@media (max-width: 640px) {
  .about-banner-stage {
    max-width: min(100%, 320px) !important;
  }
}


/* About hero v5 polishing: better desktop spacing, full transparent artwork, smoother mobile layout */
.about-fresh-hero {
  padding: calc(var(--header-offset) + clamp(58px, 5vw, 82px)) 0 clamp(68px, 6vw, 96px) !important;
}
.about-fresh-hero .page-hero-grid.about-hero-grid {
  grid-template-columns: minmax(0, .95fr) minmax(380px, .68fr) !important;
  gap: clamp(32px, 5vw, 76px) !important;
  align-items: center !important;
}
.about-fresh-hero .page-hero-grid.about-hero-grid > .reveal:first-child {
  max-width: 790px;
}
.about-fresh-hero .lead {
  max-width: 640px;
}
.about-banner-stage {
  max-width: min(42vw, 540px) !important;
  transform: translateY(8px);
}
.about-banner-stage img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block !important;
}
@media (max-width: 1199px) {
  .about-fresh-hero .page-hero-grid.about-hero-grid {
    grid-template-columns: minmax(0, .98fr) minmax(330px, .52fr) !important;
    gap: clamp(26px, 4vw, 48px) !important;
  }
  .about-banner-stage {
    max-width: min(38vw, 430px) !important;
  }
}
@media (max-width: 920px) {
  .about-fresh-hero {
    padding-top: calc(var(--header-offset) + 44px) !important;
    padding-bottom: 72px !important;
  }
  .about-fresh-hero .page-hero-grid.about-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .about-fresh-hero .page-hero-grid.about-hero-grid > .reveal:first-child {
    max-width: 100%;
  }
  .about-banner-stage {
    justify-self: center !important;
    max-width: min(86vw, 420px) !important;
    margin-top: 0 !important;
    transform: none !important;
  }
}
@media (max-width: 640px) {
  .about-fresh-hero {
    padding-top: calc(var(--header-offset) + 36px) !important;
    padding-bottom: 62px !important;
  }
  .about-fresh-hero h1 {
    font-size: clamp(3rem, 15vw, 4.9rem) !important;
  }
  .about-fresh-hero .lead {
    font-size: 1rem;
    margin-top: 18px;
  }
  .about-fresh-hero .hero-actions {
    gap: 10px;
    margin-top: 22px !important;
  }
  .about-banner-stage {
    max-width: min(94vw, 350px) !important;
  }
}
@media (max-width: 420px) {
  .about-banner-stage {
    max-width: min(96vw, 315px) !important;
  }
  .about-fresh-hero .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* Products page hero update: larger banner image inside a strong premium box */
.products-hero {
  padding-bottom: clamp(78px, 8vw, 120px);
}
.products-hero .page-hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr);
  gap: clamp(38px, 5vw, 76px);
}
.products-hero .product-stack {
  position: relative;
  min-height: clamp(460px, 44vw, 620px);
  padding: clamp(20px, 2.6vw, 34px);
  border-radius: clamp(34px, 4vw, 58px);
  background:
    radial-gradient(circle at 62% 22%, rgba(255, 146, 31, .30), transparent 28%),
    radial-gradient(circle at 24% 78%, rgba(255, 90, 0, .22), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.055) 46%, rgba(0,0,0,.24));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow:
    0 36px 100px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.24),
    0 0 0 10px rgba(255,255,255,.045);
  overflow: hidden;
  isolation: isolate;
}
.products-hero .product-stack::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: calc(clamp(34px, 4vw, 58px) - 14px);
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 58%);
  pointer-events: none;
  z-index: 0;
}
.products-hero .product-stack::after {
  content: "";
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  right: -12%;
  bottom: -18%;
  border-radius: 999px;
  background: rgba(255, 90, 0, .22);
  filter: blur(22px);
  z-index: 0;
}
.products-hero .product-stack img {
  position: relative;
  z-index: 1;
  width: min(124%, 650px);
  height: auto;
  max-height: none;
  object-fit: contain;
  transform: translateY(10px) rotate(-3deg) scale(1.08);
  filter: drop-shadow(0 42px 72px rgba(0,0,0,.34)) drop-shadow(0 24px 44px rgba(255,90,0,.24));
}
@media (max-width: 1199px) {
  .products-hero .page-hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(360px, .7fr);
    gap: 42px;
  }
  .products-hero .product-stack {
    min-height: 500px;
  }
  .products-hero .product-stack img {
    width: min(128%, 570px);
    transform: translateY(8px) rotate(-3deg) scale(1.04);
  }
}
@media (max-width: 920px) {
  .products-hero .page-hero-grid {
    grid-template-columns: 1fr;
  }
  .products-hero .product-stack {
    width: min(100%, 560px);
    justify-self: center;
    min-height: 455px;
  }
  .products-hero .product-stack img {
    width: min(116%, 540px);
    transform: translateY(6px) rotate(-2deg) scale(1.02);
  }
}
@media (max-width: 640px) {
  .products-hero {
    padding-bottom: 70px;
  }
  .products-hero .product-stack {
    min-height: 360px;
    padding: 16px;
    border-radius: 34px;
    box-shadow:
      0 24px 70px rgba(0,0,0,.34),
      inset 0 1px 0 rgba(255,255,255,.22),
      0 0 0 6px rgba(255,255,255,.04);
  }
  .products-hero .product-stack::before {
    inset: 12px;
    border-radius: 24px;
  }
  .products-hero .product-stack img {
    width: min(122%, 420px);
    transform: translateY(4px) rotate(-2deg) scale(1.03);
  }
}
