:root {
  --lux-ink: #1e1d1b;
  --lux-deep: #2b2926;
  --lux-surface-dark: #34302c;
  --lux-plum: #4b374a;
  --lux-text: #5f5a54;
  --lux-muted: #6a6259;
  --lux-line: #ded7cc;
  --lux-line-soft: #e9e4dc;
  --lux-stone: #ece7df;
  --lux-canvas: #f7f4ef;
  --lux-card: #fcfbf8;
  --lux-cream: #ede4d5;
  --lux-brass: #a9844f;
  --lux-brass-text: #73572f;
  --lux-brass-light: #c5a46c;
  --lux-brass-line: #d8c8aa;
  --lux-white: #fff;
  --lux-ink-rgb: 30, 29, 27;
  --lux-shadow-rgb: 31, 27, 24;
  --lux-brass-rgb: 169, 132, 79;
  --lux-brass-light-rgb: 197, 164, 108;
  --lux-canvas-rgb: 247, 244, 239;
  --ink: var(--lux-ink);
  --muted: var(--lux-text);
  --line: var(--lux-line);
  --paper: var(--lux-card);
  --soft: var(--lux-canvas);
  --mist: var(--lux-stone);
  --accent: var(--lux-plum);
  --accent-dark: var(--lux-deep);
  --gold: var(--lux-brass-text);
  --violet: var(--lux-plum);
  --shadow: 0 14px 40px rgba(var(--lux-shadow-rgb), .1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.55; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: 12px; padding: 11px 15px; color: #fff; background: var(--lux-plum); border-radius: 4px; font-weight: 800; transform: translateY(-160%); transition: transform .16s ease; }
.skip-link:focus { transform: translateY(0); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.topbar { background: #241832; color: #fff; text-align: center; padding: 8px 16px; font-size: 13px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav-wrap { max-width: 1240px; margin: 0 auto; min-height: 76px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 290px; }
.brand-logo { width: 76px; height: auto; flex: 0 0 auto; }
.brand-copy { min-width: 0; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; background: var(--accent); color: #fff; font-weight: 800; border-radius: 8px; }
.brand strong { display: block; color: #65328a; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a { padding: 10px 12px; color: var(--muted); font-weight: 700; border-radius: 6px; }
.main-nav a:hover, .main-nav a.active { color: #65328a; background: #f5f0f8; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: 8px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); display: block; }
.hero, .page-hero { min-height: 620px; background-size: cover; background-position: center; display: flex; align-items: center; }
.page-hero.compact { min-height: 390px; }
.hero-content, .page-hero > div { width: min(1180px, calc(100% - 44px)); margin: 0 auto; color: #fff; }
.hero h1, .page-hero h1 { max-width: 780px; margin: 12px 0 18px; font-size: 58px; line-height: 1.02; letter-spacing: 0; }
.page-hero h1 { font-size: 46px; }
.hero p, .page-hero p { max-width: 680px; font-size: 18px; color: rgba(255,255,255,.92); }
.eyebrow { display: inline-flex; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 12px 18px; background: var(--accent); color: #fff; border-radius: 6px; font-weight: 800; border: 1px solid var(--accent); }
.button:hover { background: var(--accent-dark); }
.button.ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }
.button.light { background: #fff; color: var(--accent-dark); border-color: #fff; }
.stats { width: min(1180px, calc(100% - 44px)); margin: -48px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; box-shadow: var(--shadow); border-radius: 8px; overflow: hidden; position: relative; z-index: 3; }
.stats div { padding: 24px; border-right: 1px solid var(--line); }
.stats div:last-child { border-right: 0; }
.stats strong { display: block; font-size: 24px; color: var(--accent-dark); }
.stats span { color: var(--muted); font-size: 14px; }
.section { width: min(1180px, calc(100% - 44px)); margin: 86px auto; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
h1, h2, h3 { line-height: 1.12; margin: 0; letter-spacing: 0; }
h2 { font-size: 36px; }
h3 { font-size: 20px; }
p { color: var(--muted); margin: 12px 0 0; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 38px; align-items: center; }
.category-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.category-list a, .process-list span, .about-points strong { padding: 18px; background: var(--soft); border: 1px solid var(--line); border-radius: 8px; font-weight: 800; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; transition: transform .18s ease, box-shadow .18s ease; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-media { aspect-ratio: 1 / 1; background: var(--soft); overflow: hidden; display: block; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-copy { padding: 16px; }
.product-copy h3 { min-height: 66px; font-size: 18px; }
.product-copy p { font-size: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.chips span { padding: 5px 8px; border-radius: 999px; background: var(--mist); color: var(--accent-dark); font-size: 12px; font-weight: 700; }
.chips.large span { font-size: 13px; padding: 7px 10px; }
.feature-grid, .category-cards, .bottle-system, .contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-grid article, .category-cards article, .bottle-system article, .contact-grid article, .quote-box { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.bottles-preview { background: var(--soft); width: 100%; padding: 76px max(22px, calc((100% - 1180px) / 2)); }
.bottles-preview .section-head, .bottles-preview .feature-grid { width: 100%; max-width: 1180px; margin-left: auto; margin-right: auto; }
.bottle-system article span { display: inline-grid; place-items: center; width: 36px; height: 36px; background: var(--accent); color: #fff; border-radius: 50%; font-weight: 800; margin-bottom: 18px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery img, .detail-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.process-list, .about-points { display: grid; gap: 12px; }
.contact-band { width: min(1180px, calc(100% - 44px)); margin: 86px auto; padding: 34px; border-radius: 8px; background: var(--accent-dark); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.contact-band p { color: rgba(255,255,255,.84); max-width: 760px; }
.site-footer { margin-top: 90px; padding: 38px max(22px, calc((100% - 1180px) / 2)); background: var(--ink); color: #fff; display: flex; justify-content: space-between; gap: 24px; }
.site-footer p { color: rgba(255,255,255,.72); max-width: 620px; }
.footer-links { display: grid; gap: 8px; align-content: start; }
.product-detail { width: min(1180px, calc(100% - 44px)); margin: 68px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; }
.detail-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.detail-copy h1 { font-size: 42px; margin-top: 10px; overflow-wrap: anywhere; }
.detail-copy p { font-size: 17px; }
.detail-copy .button { margin-top: 24px; }
.detail-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-info { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr); gap: 28px; align-items: start; }
.info-copy, .spec-panel { border: 1px solid var(--line); border-radius: 8px; padding: 28px; background: #fff; }
.spec-panel { background: var(--soft); }
.info-copy h2, .spec-panel h2 { margin-top: 8px; font-size: 28px; }
.info-copy p { color: var(--ink); font-size: 16px; }
.spec-list { display: grid; margin-top: 18px; border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.spec-row strong { color: var(--accent-dark); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.spec-row span { color: var(--muted); }
.quote-box { max-width: 760px; }
.quote-box .button { margin-top: 20px; }

/* Homepage: preserves the archived carousel and brand-led layout */
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.home-page { --home-purple: var(--lux-plum); --home-purple-dark: var(--lux-deep); --home-gold: var(--lux-brass); --home-warm: var(--lux-canvas); overflow: clip; }
.home-page h1, .home-page h2, .home-page h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.home-carousel { background: #18151b; border-bottom: 1px solid #d8d1dc; }
.home-carousel-viewport { width: min(100%, 1500px); aspect-ratio: 15 / 7; margin: 0 auto; position: relative; overflow: hidden; background: #e9e7e5; touch-action: pan-y pinch-zoom; }
.home-carousel:focus-visible { outline: 3px solid #fff; outline-offset: -5px; box-shadow: inset 0 0 0 8px #65328a; }
.home-carousel-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .9s ease, visibility .9s ease; }
.home-carousel-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; z-index: 1; }
.home-carousel-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-carousel-slide.is-active img { animation: home-carousel-zoom 6s ease-out both; }
.home-carousel.is-interaction-paused .home-carousel-slide.is-active img { animation-play-state: paused; }
@keyframes home-carousel-zoom { from { transform: scale(1.005); } to { transform: scale(1.055); } }
.home-carousel-arrow { position: absolute; z-index: 4; top: 50%; width: 50px; height: 50px; display: grid; place-items: center; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.68); border-radius: 50%; color: #fff; background: rgba(20,16,23,.58); box-shadow: 0 8px 24px rgba(0,0,0,.18); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.home-carousel-arrow:hover { background: rgba(75,38,94,.88); transform: translateY(-50%) scale(1.04); }
.home-carousel-arrow.previous { left: 20px; }
.home-carousel-arrow.next { right: 20px; }
.home-carousel-arrow span { font: 38px/1 Arial, sans-serif; transform: translateY(-2px); }
.home-carousel-toolbar { width: min(100%, 1500px); min-height: 54px; margin: 0 auto; padding: 7px 20px; display: flex; align-items: center; justify-content: center; gap: 18px; color: #fff; background: #241832; border-top: 1px solid rgba(255,255,255,.1); }
.home-carousel-dots { display: flex; align-items: center; justify-content: center; }
.home-carousel-dots button { width: 34px; height: 34px; padding: 0; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.home-carousel-dots button span { width: 8px; height: 8px; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; background: transparent; transition: width .2s ease, border-radius .2s ease, background .2s ease; }
.home-carousel-dots button[aria-current="true"] span { width: 22px; border-color: #dfba68; border-radius: 999px; background: #dfba68; }
.home-carousel-toggle { min-height: 38px; padding: 7px 11px; display: inline-flex; align-items: center; gap: 7px; color: #fff; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(255,255,255,.07); font-weight: 800; cursor: pointer; }
.home-carousel-toggle-icon { width: 16px; color: #dfba68; font-size: 12px; text-align: center; }
.home-carousel button:focus-visible { outline: 3px solid #fff; outline-offset: 2px; box-shadow: 0 0 0 5px #4b255d; }
.home-page a:focus-visible { outline: 3px solid #65328a; outline-offset: 3px; box-shadow: 0 0 0 5px #fff; }
.home-bottle-band a:focus-visible { outline-color: #fff; box-shadow: 0 0 0 5px #65328a; }
.home-intro { margin-top: 76px; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr); gap: 58px; align-items: center; }
.home-intro h1 { max-width: 820px; margin-top: 14px; font-size: clamp(46px, 5.4vw, 72px); line-height: .98; letter-spacing: -.045em; }
.home-intro-copy > p { max-width: 760px; margin-top: 24px; color: #59635f; font-size: 17px; line-height: 1.75; }
.home-outline { color: var(--home-purple); background: transparent; border-color: #a996b2; }
.home-outline:hover { color: #fff; background: var(--home-purple-dark); border-color: var(--home-purple-dark); }
.home-project-scope { padding: 30px; color: #fff; background: linear-gradient(145deg, #281b31, #482857); box-shadow: 0 24px 70px rgba(53,31,63,.17); }
.home-project-scope > span { color: #e3c077; font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.home-project-scope dl { margin: 18px 0 0; }
.home-project-scope dl > div { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.13); }
.home-project-scope dt { color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 21px; }
.home-project-scope dd { margin: 5px 0 0; color: rgba(255,255,255,.68); font-size: 13px; }
.home-stats { width: min(1180px, calc(100% - 44px)); margin: 0 auto 98px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #ded8e0; background: #fff; box-shadow: 0 18px 55px rgba(48,34,54,.08); }
.home-stats div { min-height: 126px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid #ded8e0; }
.home-stats div:last-child { border-right: 0; }
.home-stats strong { color: var(--home-purple); font-family: Georgia, "Times New Roman", serif; font-size: 31px; font-weight: 500; }
.home-stats span { color: #66706c; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.home-section-head { margin-bottom: 34px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 56px; align-items: end; }
.home-section-head h2 { max-width: 680px; margin-top: 12px; font-size: clamp(38px, 4.2vw, 58px); line-height: 1.02; letter-spacing: -.035em; }
.home-section-head > p { max-width: 480px; margin: 0; color: #66706c; line-height: 1.7; }
.home-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #ded8e0; background: #ded8e0; gap: 1px; }
.home-category-grid a { min-height: 320px; padding: 26px; display: flex; flex-direction: column; background: #fff; transition: color .2s ease, background .2s ease; }
.home-category-grid a > span { color: #9d7b36; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.home-category-grid h3 { margin-top: 66px; font-size: 26px; }
.home-category-grid p { font-size: 13px; line-height: 1.65; }
.home-category-grid strong { margin-top: auto; padding-top: 20px; color: var(--home-purple); font-size: 12px; }
.home-category-grid a:hover { color: #fff; background: var(--home-purple-dark); }
.home-category-grid a:hover p { color: rgba(255,255,255,.7); }
.home-category-grid a:hover strong, .home-category-grid a:hover > span { color: #e3c077; }
.home-products { padding-top: 14px; }
.home-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.home-product-card { min-width: 0; overflow: hidden; border: 1px solid #e0dce2; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.home-product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 52px rgba(48,34,54,.12); }
.home-product-media { aspect-ratio: 1 / 1; position: relative; overflow: hidden; display: block; background: #f0ece8; }
.home-product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.home-product-card:hover .home-product-media img { transform: scale(1.025); }
.home-product-media > span { position: absolute; left: 14px; bottom: 14px; padding: 6px 9px; color: #fff; background: rgba(36,24,50,.88); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.home-product-copy { padding: 20px; }
.home-product-copy h3 { font-size: 22px; line-height: 1.16; }
.home-product-copy p { min-height: 78px; color: #68716d; font-size: 12px; line-height: 1.6; }
.home-product-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.home-product-tags span { padding: 5px 8px; color: #654b25; border: 1px solid #e5d5b4; background: #fbf6ed; font-size: 10px; font-weight: 800; }
.home-section-action { margin-top: 34px; text-align: center; }
.home-bottle-band { margin: 106px 0; padding: 92px max(22px, calc((100% - 1180px) / 2)); color: #fff; background: linear-gradient(135deg, #17101c, #392047 62%, #503063); }
.home-bottle-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.home-bottle-inner figure { margin: 0; padding: 13px; border: 1px solid rgba(227,192,119,.48); background: rgba(255,255,255,.06); }
.home-bottle-inner figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.home-bottle-inner h2 { margin-top: 14px; font-size: clamp(40px, 4.5vw, 60px); line-height: 1; letter-spacing: -.04em; }
.home-bottle-inner p { color: rgba(255,255,255,.72); line-height: 1.7; }
.home-bottle-inner ul { margin: 24px 0 30px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; list-style: none; }
.home-bottle-inner li { padding: 10px 0 10px 17px; position: relative; color: rgba(255,255,255,.86); border-bottom: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.home-bottle-inner li::before { content: ""; width: 6px; height: 6px; position: absolute; left: 0; top: 17px; border-radius: 50%; background: #e3c077; }
.home-about { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 62px; align-items: center; }
.home-about-media { min-height: 500px; position: relative; overflow: hidden; border: 1px solid #e0dce2; background: #fff; }
.home-about-media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: contain; }
.home-about-media > span { position: absolute; left: 22px; bottom: 22px; padding: 8px 11px; color: #fff; background: rgba(36,24,50,.88); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.home-about-copy h2 { margin-top: 14px; font-size: clamp(40px, 4.5vw, 58px); line-height: 1; letter-spacing: -.04em; }
.home-about-copy > p { margin-top: 22px; line-height: 1.75; }
.home-about-links { margin-top: 30px; border-top: 1px solid #ddd6df; }
.home-about-links a { padding: 18px 0; display: grid; grid-template-columns: 210px 1fr; gap: 18px; border-bottom: 1px solid #ddd6df; }
.home-about-links strong { color: var(--home-purple); }
.home-about-links span { color: #68716d; font-size: 13px; }

/* Premium perfume box selection guide */
.box-guide {
  --box-ink: var(--lux-ink);
  --box-deep: var(--lux-deep);
  --box-green: var(--lux-plum);
  --box-gold: var(--lux-brass);
  --box-cream: var(--lux-cream);
  --box-warm: var(--lux-canvas);
  color: var(--box-ink);
  background: var(--box-warm);
  overflow: clip;
}
.box-guide h1, .box-guide h2, .box-guide h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.box-guide h2 { font-size: clamp(36px, 4.5vw, 58px); letter-spacing: -.038em; }
.box-guide h3 { letter-spacing: -.018em; }
.box-guide p { line-height: 1.7; }
.archive-hero { width: min(1380px, calc(100% - 48px)); min-height: 690px; margin: 0 auto; padding: 48px 0 54px; display: grid; grid-template-columns: minmax(360px, .82fr) minmax(580px, 1.18fr); gap: 56px; align-items: center; }
.archive-hero-copy h1 { max-width: 650px; margin: 20px 0 24px; font-size: clamp(50px, 6vw, 80px); line-height: .98; letter-spacing: -.056em; }
.archive-hero-copy > p { max-width: 610px; color: #5f6b66; font-size: 17px; }
.archive-outline { color: var(--box-deep); background: transparent; border-color: #9fa9a4; }
.archive-outline:hover { color: #fff; }
.archive-hero-gallery { height: 590px; display: grid; grid-template-columns: 1.16fr .84fr; grid-template-rows: 1fr 1fr; gap: 12px; }
.archive-hero-tile { min-height: 0; position: relative; overflow: hidden; background: #e9e4db; }
.archive-hero-tile.primary { grid-row: 1 / -1; }
.archive-hero-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.archive-hero-tile:hover img { transform: scale(1.025); }
.archive-hero-tile::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(180deg, transparent, rgba(7,19,17,.83)); }
.archive-hero-tile > span { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 20px; display: grid; gap: 4px; color: #fff; }
.archive-hero-tile small { color: #e8c783; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.archive-hero-tile strong { font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 500; line-height: 1.15; }
.archive-hero-tile.primary strong { font-size: 26px; }
.archive-hero .box-hero-facts span { color: #5e6a65; border-color: #cfd6d1; background: rgba(255,255,255,.58); }
.archive-hero .box-hero-facts strong { color: #7f5c22; }
.archive-proof { padding-top: 92px; }
.archive-fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #dce2dd; background: #fff; }
.archive-fact-grid article { min-height: 150px; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid #dce2dd; }
.archive-fact-grid article:last-child { border-right: 0; }
.archive-fact-grid strong { color: var(--box-green); font-family: Georgia, "Times New Roman", serif; font-size: 31px; font-weight: 500; }
.archive-fact-grid span { color: #62706a; font-size: 12px; line-height: 1.55; }
.documented-structures { padding-bottom: 104px; }
.legacy-anchor { display: block; height: 0; position: relative; top: -150px; visibility: hidden; }
.documented-structure-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.13); }
.documented-structure-grid article[id] { scroll-margin-top: 160px; }
.documented-structure-grid article { min-height: 320px; padding: 27px; display: flex; flex-direction: column; background: #123733; }
.documented-structure-grid article.featured { grid-column: span 2; background: linear-gradient(135deg, #184d47, #176f64); }
.documented-structure-grid article > span { color: #e0bd77; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.documented-structure-grid h3 { margin-top: 56px; color: #fff; font-size: 27px; }
.documented-structure-grid p { color: rgba(255,255,255,.64); font-size: 13px; }
.documented-structure-grid small { margin-top: auto; padding-top: 18px; color: #e5c681; border-top: 1px solid rgba(255,255,255,.12); line-height: 1.55; }
.archive-source-sheet { margin: 0; border: 1px solid #dce2dd; background: #fff; }
.archive-source-sheet a { display: block; overflow: hidden; }
.archive-source-sheet img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .25s ease; }
.archive-source-sheet a:hover img { transform: scale(1.012); }
.archive-source-sheet figcaption { padding: 12px 16px; color: #69746f; font-size: 11px; line-height: 1.55; }
.archive-source-sheet.dark-sheet { margin-top: 42px; border-color: rgba(255,255,255,.15); background: #10322e; }
.archive-source-sheet.dark-sheet figcaption { color: rgba(255,255,255,.55); }
.premium-collection { padding-bottom: 118px; }
.archive-collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.archive-product-card { min-width: 0; display: flex; flex-direction: column; border: 1px solid #dce2dd; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.archive-product-card:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(20,37,33,.1); }
.archive-product-card.featured { grid-column: span 2; display: grid; grid-template-columns: 1.18fr .82fr; }
.archive-product-media { min-height: 0; position: relative; overflow: hidden; background: #ece8e0; }
.archive-product-card:not(.featured) .archive-product-media { aspect-ratio: 4 / 3; }
.archive-product-card.featured .archive-product-media { height: 100%; min-height: 440px; }
.archive-product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.archive-product-card:hover .archive-product-media img { transform: scale(1.025); }
.archive-product-media > span { position: absolute; left: 14px; top: 14px; padding: 7px 9px; color: #16312d; background: rgba(241,218,171,.94); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.archive-product-copy { min-width: 0; padding: 24px; display: flex; flex: 1; flex-direction: column; }
.archive-product-copy > small { color: #927039; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.archive-product-copy h3 { margin-top: 24px; font-size: 24px; overflow-wrap: anywhere; }
.archive-product-card.featured h3 { font-size: 31px; }
.archive-product-copy p { color: #65716c; font-size: 12px; }
.archive-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.archive-tags span { padding: 6px 8px; color: #31524c; background: #edf3f0; font-size: 10px; font-weight: 800; }
.archive-product-link { margin-top: auto; padding-top: 22px; color: var(--box-green); font-size: 12px; font-weight: 900; }
.archive-product-link span { margin-left: 5px; }
.material-layer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.material-layer-grid article { min-height: 300px; padding: 27px; display: flex; flex-direction: column; border: 1px solid #dce2dd; background: #fff; }
.material-layer-grid article > span { color: #8e6a2d; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.material-layer-grid h3 { margin-top: auto; font-size: 26px; }
.material-layer-grid p { font-size: 13px; }
.source-sheet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 44px; }
.source-note { margin-top: 20px; padding: 22px 26px; display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: center; border: 1px solid #dac89e; background: #f2eadb; }
.source-note strong { color: #775520; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.source-note p { margin: 0; font-size: 12px; }
.finish-sheet { margin-bottom: 44px; }
.verified-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.verified-process-grid article { min-height: 250px; padding: 26px; display: flex; flex-direction: column; border: 1px solid #dce2dd; background: #fff; }
.verified-process-grid article > span { color: #76531e; font-size: 10px; font-weight: 900; }
.verified-process-grid h3 { margin-top: auto; font-size: 25px; }
.verified-process-grid p { font-size: 12px; }
.verified-process-grid p strong { color: #27443f; }
.finish-rule { margin-top: 22px; padding: 21px 24px; display: grid; grid-template-columns: 250px 1fr; gap: 24px; border: 1px solid #dce2dd; background: #eef2ef; }
.finish-rule strong { color: #694c1d; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.finish-rule span { color: #58655f; font-size: 13px; }
.production-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); gap: 22px; align-items: start; }
.production-layout .dark-sheet { margin-top: 0; }
.production-steps { display: grid; gap: 1px; background: rgba(255,255,255,.12); }
.production-steps article { min-height: 135px; padding: 22px; display: grid; grid-template-columns: 34px 1fr; gap: 14px; background: #123733; }
.production-steps article > span { color: #dfbc76; font-size: 10px; font-weight: 900; }
.production-steps h3 { color: #fff; font-size: 20px; }
.production-steps p { color: rgba(255,255,255,.6); font-size: 12px; }
.archive-timing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 30px; background: rgba(255,255,255,.12); }
.archive-timing-grid article { min-height: 165px; padding: 21px; display: flex; flex-direction: column; justify-content: space-between; background: #10322e; }
.archive-timing-grid strong { color: #e4c17c; font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 500; }
.archive-timing-grid span { color: rgba(255,255,255,.56); font-size: 11px; line-height: 1.55; }
.timing-note { margin-top: 17px; color: rgba(255,255,255,.52); font-size: 11px; }
.archive-brief-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr); gap: 22px; align-items: start; }
.archive-brief-layout ol { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #dce2dd; list-style: none; counter-reset: archivebrief; }
.archive-brief-layout li { min-height: 145px; padding: 24px; display: flex; flex-direction: column; background: #fff; counter-increment: archivebrief; }
.archive-brief-layout li::before { content: counter(archivebrief, decimal-leading-zero); color: #76531e; font-size: 10px; font-weight: 900; }
.archive-brief-layout li strong { margin-top: 25px; font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 500; }
.archive-brief-layout li span { margin-top: 7px; color: #65716c; font-size: 11px; line-height: 1.55; }
.archive-brief-layout aside { padding: 30px; background: #efe5d5; }
.archive-brief-layout aside h3 { margin-top: 18px; font-size: 29px; }
.archive-brief-layout aside p { font-size: 13px; }
.archive-brief-layout aside .button { width: 100%; margin-top: 20px; }
.specification-sheet { margin-top: 34px; }
.archive-economy { padding-top: 106px; }
.archive-economy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.archive-economy-grid .archive-product-card { min-height: 100%; }
.box-hero { min-height: 720px; position: relative; isolation: isolate; display: flex; align-items: center; background: #111b18; }
.box-hero-image, .box-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.box-hero-image { z-index: -2; object-fit: cover; object-position: center; }
.box-hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(8,18,16,.96) 0%, rgba(8,18,16,.84) 30%, rgba(8,18,16,.32) 57%, rgba(8,18,16,.08) 100%); }
.box-hero-content { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 92px 0 84px; color: #fff; }
.box-kicker { display: inline-flex; align-items: center; gap: 10px; color: #e5c37f; font-size: 12px; font-weight: 800; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; }
.box-kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.box-kicker.dark { color: var(--box-green); }
.box-hero h1 { max-width: 740px; margin: 18px 0 22px; font-size: clamp(48px, 6.2vw, 82px); line-height: .98; letter-spacing: -.055em; }
.box-hero-content > p { max-width: 680px; color: rgba(255,255,255,.8); font-size: 18px; }
.box-primary { color: #15211f; background: #d2ab65; border-color: #d2ab65; }
.box-primary:hover { color: #fff; }
.box-hero-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 46px; }
.box-hero-facts span { display: inline-flex; align-items: baseline; gap: 7px; padding: 10px 14px; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.2); font-size: 12px; }
.box-hero-facts strong { color: #f0ca83; font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 500; }
.box-index { position: sticky; top: 109px; z-index: 30; border-bottom: 1px solid #dfe5df; background: rgba(250,248,244,.96); backdrop-filter: blur(14px); }
.box-index > div { width: min(1240px, calc(100% - 48px)); min-height: 54px; margin: 0 auto; display: flex; align-items: center; gap: 7px; overflow-x: auto; scrollbar-width: thin; }
.box-index > div > span { margin-right: auto; color: #72807b; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.box-index a { padding: 8px 11px; border-radius: 999px; color: #53615d; font-size: 12px; font-weight: 800; white-space: nowrap; }
.box-index a:hover, .box-index a:focus-visible { color: var(--box-deep); background: #e7efeb; outline: none; }
.box-section, .box-dark-inner, .box-engineering-inner { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.box-section { padding: 112px 0; scroll-margin-top: 160px; }
.box-intro { padding-top: 98px; }
.box-heading { max-width: 850px; margin-bottom: 44px; }
.box-heading h2 { margin-top: 16px; }
.box-heading > p, .box-heading-split > p { font-size: 17px; }
.box-heading-split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 74px; align-items: end; }
.box-heading-split > p { margin: 0 0 4px; }
.box-decision-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #dce2dd; background: #fff; }
.box-decision-grid article { min-height: 250px; padding: 30px; border-right: 1px solid #dce2dd; }
.box-decision-grid article:last-child { border-right: 0; }
.box-decision-grid article > span { color: #9c742e; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.box-decision-grid h3 { margin-top: 48px; font-size: 25px; }
.box-decision-grid p { font-size: 14px; }
.box-figure { margin: 0; }
.box-figure img { width: 100%; object-fit: cover; border-radius: 2px; }
.box-figure figcaption { margin-top: 10px; color: #66726d; font-size: 12px; line-height: 1.6; }
.structure-figure img { aspect-ratio: 16 / 9; object-position: center 46%; }
.structure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 48px; scroll-margin-top: 160px; }
.structure-card { min-height: 430px; padding: 28px; display: flex; flex-direction: column; border: 1px solid #dce2dd; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.structure-card:hover { transform: translateY(-3px); box-shadow: 0 18px 48px rgba(20,37,33,.1); }
.structure-card.hero-card { grid-column: span 2; color: #fff; background: linear-gradient(135deg, #0c3c37, #176f64); border-color: transparent; }
.structure-card.special-card { color: #fff; background: #262b29; border-color: #262b29; }
.structure-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.structure-top span { padding: 6px 9px; color: #74531e; border: 1px solid #d8c9aa; border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.structure-top strong { color: #9a7b46; font-size: 11px; letter-spacing: .1em; }
.hero-card .structure-top span, .special-card .structure-top span { color: #edcf92; border-color: rgba(237,207,146,.34); }
.hero-card .structure-top strong, .special-card .structure-top strong { color: #e9c785; }
.structure-card h3 { margin-top: 60px; font-size: 30px; }
.structure-card > p { font-size: 14px; }
.hero-card > p, .special-card > p { color: rgba(255,255,255,.68); }
.structure-card dl { margin: auto 0 0; border-top: 1px solid #e5e9e5; }
.hero-card dl, .special-card dl { border-color: rgba(255,255,255,.15); }
.structure-card dl > div { display: grid; grid-template-columns: 82px 1fr; gap: 14px; padding: 11px 0; border-bottom: 1px solid #edf0ed; }
.hero-card dl > div, .special-card dl > div { border-color: rgba(255,255,255,.12); }
.structure-card dt { color: #71807a; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.structure-card dd { margin: 0; color: #42514c; font-size: 12px; font-weight: 700; }
.hero-card dt, .special-card dt { color: rgba(255,255,255,.48); }
.hero-card dd, .special-card dd { color: rgba(255,255,255,.77); }
.box-dark-panel, .box-engineering { padding: 112px 0; scroll-margin-top: 160px; color: #fff; background: var(--box-deep); }
.box-guide .light-heading { max-width: 880px; }
.box-guide .light-heading p { color: rgba(255,255,255,.68); }
.material-system { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.13); }
.material-system article { min-height: 320px; padding: 28px; display: flex; flex-direction: column; background: #123733; }
.material-system article > span { color: #e0bd77; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.material-system h3 { margin-top: 55px; color: #fff; font-size: 27px; }
.material-system p { color: rgba(255,255,255,.65); font-size: 13px; }
.material-system small { margin-top: auto; padding-top: 20px; color: #e5c681; border-top: 1px solid rgba(255,255,255,.12); line-height: 1.55; }
.insert-heading { margin-top: 70px; padding-top: 58px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: 70px; align-items: end; border-top: 1px solid rgba(255,255,255,.15); }
.insert-heading h3 { margin-top: 14px; color: #fff; font-size: 36px; }
.insert-heading > p { color: rgba(255,255,255,.62); font-size: 14px; }
.insert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 34px; background: rgba(255,255,255,.12); }
.insert-grid article { min-height: 150px; padding: 23px; display: grid; align-content: start; gap: 10px; background: #10322e; }
.insert-grid strong { color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 500; }
.insert-grid span { color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.6; }
.finish-figure img { aspect-ratio: 16 / 8.7; object-position: center 44%; }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 52px; }
.process-grid > article { padding: 30px; border: 1px solid #dce2dd; background: #fff; }
.process-title { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding-bottom: 24px; border-bottom: 1px solid #e1e5e1; }
.process-title > span { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--box-green); border-radius: 50%; font-size: 11px; font-weight: 900; }
.process-title h3 { font-size: 28px; }
.process-grid ul { margin: 0; padding: 0; list-style: none; }
.process-grid li { padding: 16px 0; display: grid; grid-template-columns: minmax(140px, .72fr) minmax(0, 1.28fr); gap: 18px; border-bottom: 1px solid #edf0ed; }
.process-grid li:last-child { padding-bottom: 0; border-bottom: 0; }
.process-grid li strong { color: #243b37; font-size: 13px; }
.process-grid li span { color: #68736e; font-size: 12px; }
.programs { padding-top: 100px; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.program-grid article { min-height: 300px; padding: 27px; display: flex; flex-direction: column; border: 1px solid #dce2dd; background: #fff; }
.program-grid .program-featured { color: #fff; background: linear-gradient(135deg, #123f3a, #176f64); border-color: transparent; }
.program-grid article > span { color: #73531f; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.program-grid .program-featured > span { color: #e7c57f; }
.program-grid h3 { margin: auto 0 12px; font-size: 27px; }
.program-grid p { font-size: 13px; }
.program-grid small { padding-top: 16px; color: #8a6b36; border-top: 1px solid #ebe6dc; line-height: 1.5; }
.program-grid .program-featured p { color: rgba(255,255,255,.69); }
.program-grid .program-featured small { color: #e6c47f; border-color: rgba(255,255,255,.15); }
.engineering-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr); gap: 24px; align-items: start; }
.engineering-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.12); }
.engineering-grid article { min-height: 190px; padding: 24px; display: grid; grid-template-columns: 36px 1fr; gap: 16px; background: #123733; }
.engineering-grid article > span { color: #dfbc76; font-size: 11px; font-weight: 900; }
.engineering-grid h3 { color: #fff; font-size: 22px; }
.engineering-grid p { color: rgba(255,255,255,.6); font-size: 13px; }
.quote-brief { padding: 32px; color: var(--box-ink); background: var(--box-cream); }
.quote-brief h3 { margin-top: 18px; font-size: 31px; }
.quote-brief ol { margin: 25px 0; padding: 0; display: grid; list-style: none; counter-reset: quote; }
.quote-brief li { padding: 10px 0 10px 32px; position: relative; color: #53605b; border-bottom: 1px solid rgba(19,35,33,.12); font-size: 12px; counter-increment: quote; }
.quote-brief li::before { content: counter(quote, decimal-leading-zero); position: absolute; left: 0; color: #6f4f1f; font-size: 10px; font-weight: 900; }
.quote-brief .button { width: 100%; }
.economy { scroll-margin-top: 160px; }
.economy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; scroll-margin-top: 160px; }
.economy-grid article { min-height: 230px; padding: 25px; display: flex; flex-direction: column; border: 1px solid #dce2dd; background: #fff; }
.economy-grid article > span { color: #9d7838; font-size: 11px; font-weight: 900; }
.economy-grid h3 { margin-top: auto; font-size: 25px; }
.economy-grid p { font-size: 13px; }
.economy-spec { margin-top: 24px; border: 1px solid #dce2dd; background: #f1ede5; }
.economy-spec > div { padding: 16px 22px; display: grid; grid-template-columns: 190px 1fr; gap: 24px; border-bottom: 1px solid #dce2dd; }
.economy-spec > div:last-child { border-bottom: 0; }
.economy-spec strong { color: #674d22; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.economy-spec span { color: #55625d; font-size: 13px; }
.box-cta { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 56px; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); gap: 50px; align-items: end; color: #fff; background: linear-gradient(125deg, #0d3c37, #176f64); }
.box-cta h2 { margin-top: 16px; color: #fff; }
.box-cta p { max-width: 700px; color: rgba(255,255,255,.72); }
.box-cta-actions { display: grid; gap: 16px; text-align: center; }
.box-cta-actions > a:last-child { color: #fff3d6; font-size: 13px; font-weight: 800; }
.box-disclaimer { width: min(1240px, calc(100% - 48px)); margin: 20px auto 0; padding-bottom: 42px; color: #5e6a65; font-size: 11px; text-align: center; }
.box-guide .button:focus-visible { outline: 3px solid #e5c681; outline-offset: 3px; }

/* Perfume bottle selection guide */
.bottle-guide {
  --guide-ink: var(--lux-ink);
  --guide-deep: var(--lux-deep);
  --guide-green: var(--lux-plum);
  --guide-cream: var(--lux-cream);
  --guide-warm: var(--lux-canvas);
  --guide-gold: var(--lux-brass);
  background: var(--guide-warm);
  color: var(--guide-ink);
  overflow: clip;
}
.bottle-guide h1, .bottle-guide h2, .bottle-guide h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.bottle-guide h2 { font-size: clamp(36px, 4.4vw, 58px); letter-spacing: -.035em; }
.bottle-guide h3 { letter-spacing: -.015em; }
.bottle-guide p { line-height: 1.7; }
.guide-hero { min-height: 700px; position: relative; isolation: isolate; display: flex; align-items: center; background: #121917; }
.guide-hero-image, .guide-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.guide-hero-image { object-fit: cover; object-position: center; z-index: -2; }
.guide-hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(7,17,16,.96) 0%, rgba(7,17,16,.84) 29%, rgba(7,17,16,.32) 57%, rgba(7,17,16,.08) 100%); }
.guide-hero-content { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 92px 0 82px; color: #fff; }
.guide-kicker { display: inline-flex; align-items: center; gap: 10px; color: #e2be79; font-size: 12px; font-weight: 800; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; }
.guide-kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.guide-kicker.dark { color: var(--guide-green); }
.guide-hero h1 { max-width: 680px; margin: 18px 0 22px; font-size: clamp(48px, 6.3vw, 82px); line-height: .98; letter-spacing: -.055em; }
.guide-hero-content > p { max-width: 650px; color: rgba(255,255,255,.8); font-size: 18px; }
.guide-primary { background: #d0aa65; color: #14211f; border-color: #d0aa65; }
.guide-primary:hover { color: #fff; }
.guide-hero-facts { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 46px; }
.guide-hero-facts span { display: inline-flex; align-items: baseline; gap: 7px; padding: 10px 14px; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); backdrop-filter: blur(8px); border-radius: 999px; font-size: 12px; }
.guide-hero-facts strong { color: #fff; font-size: 18px; }
.guide-index { position: sticky; top: 109px; z-index: 40; border-bottom: 1px solid #dfe4df; background: rgba(251,249,245,.94); backdrop-filter: blur(16px); }
.guide-index > div { width: min(1240px, calc(100% - 48px)); min-height: 62px; margin: 0 auto; display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.guide-index > div::-webkit-scrollbar { display: none; }
.guide-index span { padding-right: 20px; margin-right: 8px; color: #75571f; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; border-right: 1px solid #d7ddd9; }
.guide-index a { padding: 9px 13px; border-radius: 999px; color: #53615d; font-size: 13px; font-weight: 800; white-space: nowrap; }
.guide-index a:hover, .guide-index a:focus-visible { background: #e7f0ec; color: var(--guide-deep); outline: none; }
.guide-section, .guide-panel-inner { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.guide-section { padding: 112px 0; scroll-margin-top: 160px; }
.guide-intro { padding-top: 98px; }
.guide-heading { max-width: 800px; margin-bottom: 42px; }
.guide-heading h2 { margin-top: 16px; }
.guide-heading > p, .split-heading > p { font-size: 17px; }
.split-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 72px; align-items: end; }
.split-heading > p { margin: 0 0 4px; }
.decision-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #dce2dd; background: #fff; }
.decision-grid article { min-height: 250px; padding: 30px; border-right: 1px solid #dce2dd; position: relative; }
.decision-grid article:last-child { border-right: 0; }
.decision-grid article > span { color: #a47d39; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.decision-grid h3 { margin-top: 48px; font-size: 25px; }
.decision-grid p { font-size: 14px; }
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.format-card { min-height: 350px; padding: 28px; display: flex; flex-direction: column; gap: 24px; border: 1px solid #dce1dc; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.format-card:hover { transform: translateY(-3px); box-shadow: 0 18px 48px rgba(19,35,33,.1); }
.format-card.featured { grid-column: span 2; color: #fff; background: linear-gradient(135deg, #0d3e39, #176f64); border-color: transparent; }
.format-number { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid #cfd9d3; border-radius: 50%; color: var(--guide-green); font-size: 12px; font-weight: 900; }
.format-card.featured .format-number { color: #f1cf8a; border-color: rgba(255,255,255,.28); }
.format-label { display: inline-flex; padding: 5px 8px; margin-bottom: 12px; border-radius: 4px; background: #d5b069; color: #14211f; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.format-card h3 { font-size: 28px; }
.format-card p { font-size: 14px; }
.format-card.featured p { color: rgba(255,255,255,.72); }
.format-card dl { margin: auto 0 0; border-top: 1px solid #e4e8e4; }
.format-card.featured dl { border-color: rgba(255,255,255,.18); }
.format-card dl > div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 10px 0; border-bottom: 1px solid #e8ebe8; }
.format-card.featured dl > div { border-color: rgba(255,255,255,.14); }
.format-card dt { color: #5f6d67; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.format-card dd { margin: 0; font-size: 13px; font-weight: 700; }
.format-card.featured dt { color: rgba(255,255,255,.56); }
.guide-panel { padding: 110px 0; scroll-margin-top: 160px; color: #fff; background: var(--guide-deep); }
.guide-panel-inner { display: grid; }
.light-heading { max-width: 850px; }
.light-heading p { color: rgba(255,255,255,.7); }
.guide-figure { margin: 0; }
.guide-figure img { width: 100%; border-radius: 2px; object-fit: cover; }
.guide-figure figcaption { margin-top: 10px; color: #596660; font-size: 12px; line-height: 1.6; }
.component-figure img { aspect-ratio: 16 / 8.2; object-position: center 42%; }
.component-figure figcaption { color: rgba(255,255,255,.5); }
.connection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 46px; background: rgba(255,255,255,.14); }
.connection-grid article { min-height: 290px; padding: 28px; background: #103632; }
.connection-tag { display: inline-flex; padding: 6px 9px; color: #e4c17c; border: 1px solid rgba(228,193,124,.34); border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.connection-grid h3 { margin-top: 54px; color: #fff; font-size: 27px; }
.connection-grid p { color: rgba(255,255,255,.66); font-size: 14px; }
.connection-grid small { display: block; margin-top: 18px; color: #e5c681; line-height: 1.5; }
.spray-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 48px; background: rgba(255,255,255,.12); }
.spray-type { min-height: 100px; padding: 20px; display: grid; gap: 6px; background: #0e302c; }
.spray-type strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 500; }
.spray-type span { color: rgba(255,255,255,.57); font-size: 13px; }
.technical-note { margin-top: 24px; padding: 24px 28px; display: grid; grid-template-columns: 260px 1fr; gap: 26px; align-items: center; border: 1px solid rgba(214,177,104,.38); background: rgba(214,177,104,.08); }
.technical-note strong { color: #e5c681; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.technical-note p { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; }
.pump-spec-note { margin-top: 1px; border-color: rgba(255,255,255,.16); background: #0e302c; }
.cap-section { margin-top: 70px; padding-top: 58px; border-top: 1px solid rgba(255,255,255,.15); }
.cap-section > div:first-child { max-width: 680px; }
.cap-section h3 { margin-top: 14px; color: #fff; font-size: 34px; }
.cap-section > div:first-child p { color: rgba(255,255,255,.66); font-size: 14px; }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 28px; background: rgba(255,255,255,.12); }
.cap-grid article { min-height: 132px; padding: 22px; display: grid; align-content: start; gap: 9px; background: #0e302c; }
.cap-grid strong { color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 500; }
.cap-grid span { color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.55; }
.material-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.material-card { min-height: 370px; padding: 26px; border: 1px solid #dfe4df; background: #fff; }
.material-card.primary { color: #fff; background: #153e39; border-color: #153e39; }
.material-card > span { color: #76571e; font-size: 11px; font-weight: 900; }
.material-card h3 { margin-top: 70px; font-size: 25px; }
.material-card p { font-size: 14px; }
.material-card.primary p { color: rgba(255,255,255,.68); }
.material-card ul { margin: 24px 0 0; padding: 18px 0 0; display: grid; gap: 10px; border-top: 1px solid #e5e8e5; list-style: none; }
.material-card.primary ul { border-color: rgba(255,255,255,.16); }
.material-card li { padding-left: 14px; position: relative; color: #53605b; font-size: 12px; }
.material-card.primary li { color: rgba(255,255,255,.68); }
.material-card li::before { content: ""; width: 5px; height: 5px; position: absolute; left: 0; top: .62em; border-radius: 50%; background: #bf9145; }
.shape-board { margin-top: 54px; padding: 34px; display: grid; grid-template-columns: minmax(210px, .7fr) minmax(360px, 1.3fr) minmax(260px, 1fr); gap: 34px; align-items: center; border: 1px solid #dfe4df; background: #f2ede5; }
.shape-board h3 { margin-top: 10px; font-size: 27px; }
.shape-board > p { margin: 0; font-size: 13px; }
.shape-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.shape-chips span { padding: 9px 12px; border: 1px solid #ced8d2; border-radius: 999px; background: #fff; color: #34514c; font-size: 12px; font-weight: 800; }
.table-block { margin-top: 28px; border: 1px solid #dfe4df; background: #fff; }
.table-title { padding: 32px 34px 24px; }
.table-title h3 { margin-top: 10px; font-size: 28px; }
.table-scroll { overflow-x: auto; }
.table-block table { width: 100%; border-collapse: collapse; min-width: 800px; }
.table-block th, .table-block td { padding: 17px 20px; text-align: left; border-top: 1px solid #e1e5e1; }
.table-block thead th { color: #58655f; background: #f4f6f3; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.table-block td { color: #53605b; font-size: 13px; }
.table-block td strong { color: var(--guide-deep); }
.table-block tbody th { color: var(--guide-deep); background: #fff; font-size: 13px; font-weight: 800; }
.table-scroll:focus-visible { outline: 3px solid #b78d43; outline-offset: -3px; }
.table-note { margin: 0; padding: 18px 24px; border-top: 1px solid #e1e5e1; color: #59645f; background: #fbfbf9; font-size: 12px; }
.finish-section { padding-top: 100px; }
.finish-figure img { aspect-ratio: 16 / 9; }
.finish-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 52px; }
.finish-group { padding: 30px; border: 1px solid #dce2dd; background: #fff; }
.finish-group-head { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding-bottom: 24px; border-bottom: 1px solid #e2e6e2; }
.finish-group-head > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--guide-green); font-size: 11px; font-weight: 900; }
.finish-group h3 { font-size: 28px; }
.finish-group-head p { margin-top: 5px; font-size: 13px; }
.finish-group ul { margin: 0; padding: 0; list-style: none; }
.finish-group li { padding: 16px 0; display: grid; grid-template-columns: minmax(150px, .75fr) minmax(0, 1.25fr); gap: 20px; border-bottom: 1px solid #edf0ed; }
.finish-group li:last-child { border-bottom: 0; padding-bottom: 0; }
.finish-group li strong { color: #243b37; font-size: 13px; }
.finish-group li span { color: #68736e; font-size: 12px; }
.validation-panel { padding-bottom: 120px; }
.validation-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr); gap: 24px; align-items: start; }
.test-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.12); }
.test-list article { min-height: 190px; padding: 24px; display: grid; grid-template-columns: 36px 1fr; gap: 16px; background: #103632; }
.test-list article > span { color: #dfbc76; font-size: 11px; font-weight: 900; }
.test-list h3 { color: #fff; font-size: 22px; }
.test-list p { color: rgba(255,255,255,.6); font-size: 13px; }
.brief-card { padding: 32px; color: var(--guide-ink); background: #f1e8db; }
.brief-card h3 { margin-top: 18px; font-size: 31px; }
.brief-card ol { margin: 26px 0; padding: 0; display: grid; gap: 0; list-style: none; counter-reset: brief; }
.brief-card li { padding: 11px 0 11px 32px; position: relative; border-bottom: 1px solid rgba(19,35,33,.12); color: #53605b; font-size: 13px; counter-increment: brief; }
.brief-card li::before { content: counter(brief, decimal-leading-zero); position: absolute; left: 0; color: #6f4f1f; font-size: 10px; font-weight: 900; }
.brief-card .button { width: 100%; }
.combinations .guide-heading { margin-bottom: 36px; }
.combination-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.combination-grid article { min-height: 240px; padding: 25px; display: flex; flex-direction: column; border: 1px solid #dce2dd; background: #fff; }
.combination-grid article > span { color: #72531f; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.combination-grid h3 { margin: auto 0 12px; font-size: 25px; }
.combination-grid p { font-size: 13px; }
.guide-cta { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 56px; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); gap: 50px; align-items: end; color: #fff; background: linear-gradient(125deg, #0d3c37, #176f64); }
.guide-cta h2 { margin-top: 16px; color: #fff; }
.guide-cta p { max-width: 700px; color: rgba(255,255,255,.72); }
.guide-cta-actions { display: grid; gap: 16px; justify-items: stretch; text-align: center; }
.guide-cta-actions > a:last-child { color: #fff3d6; font-size: 13px; font-weight: 800; }
.guide-disclaimer { width: min(1240px, calc(100% - 48px)); margin: 20px auto 0; padding-bottom: 42px; color: #5e6a65; font-size: 11px; text-align: center; }
.bottle-guide .button:focus-visible { outline: 3px solid #e5c681; outline-offset: 3px; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .main-nav { position: absolute; left: 22px; right: 22px; top: 100%; display: flex; flex-direction: column; align-items: stretch; padding: 14px; border: 1px solid var(--line); background: #fff; border-radius: 8px; box-shadow: var(--shadow); }
  .js .main-nav { display: none; }
  .js .main-nav.open { display: flex; }
  .hero h1 { font-size: 42px; }
  .page-hero h1 { font-size: 34px; }
  .stats, .product-grid, .feature-grid, .category-cards, .bottle-system, .contact-grid, .gallery, .detail-gallery { grid-template-columns: repeat(2, 1fr); }
  .split, .product-detail, .product-info { grid-template-columns: 1fr; }
  .contact-band, .site-footer { flex-direction: column; align-items: flex-start; }
  .home-intro, .home-bottle-inner, .home-about { grid-template-columns: 1fr; }
  .home-intro { gap: 32px; }
  .home-project-scope { max-width: 720px; }
  .home-stats { grid-template-columns: repeat(2, 1fr); }
  .home-stats div:nth-child(2) { border-right: 0; }
  .home-stats div:nth-child(-n+2) { border-bottom: 1px solid #ded8e0; }
  .home-category-grid, .home-product-grid { grid-template-columns: repeat(2, 1fr); }
  .home-category-grid a { min-height: 270px; }
  .home-bottle-inner figure { max-width: 720px; }
  .home-about-media { min-height: 460px; }
  .archive-hero { min-height: auto; grid-template-columns: 1fr; gap: 36px; padding-top: 64px; }
  .archive-hero-copy h1 { max-width: 760px; }
  .archive-hero-gallery { height: 560px; }
  .archive-fact-grid, .documented-structure-grid, .material-layer-grid, .verified-process-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-fact-grid article:nth-child(2) { border-right: 0; }
  .archive-fact-grid article:nth-child(-n+2) { border-bottom: 1px solid #dce2dd; }
  .documented-structure-grid article.featured { grid-column: span 2; }
  .archive-collection-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-product-card.featured { grid-column: span 2; }
  .archive-timing-grid { grid-template-columns: repeat(3, 1fr); }
  .production-layout, .archive-brief-layout { grid-template-columns: 1fr; }
  .archive-economy-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-economy-grid .archive-product-card:last-child { grid-column: 1 / -1; }
  .box-index { top: 109px; }
  .box-hero { min-height: 650px; }
  .box-hero-shade { background: linear-gradient(90deg, rgba(8,18,16,.95) 0%, rgba(8,18,16,.75) 48%, rgba(8,18,16,.18) 100%); }
  .box-decision-grid, .material-system { grid-template-columns: repeat(2, 1fr); }
  .box-decision-grid article { border-bottom: 1px solid #dce2dd; }
  .box-decision-grid article:nth-child(2) { border-right: 0; }
  .box-heading-split, .insert-heading, .box-cta { grid-template-columns: 1fr; gap: 28px; }
  .box-heading-split > p { margin-top: 0; }
  .structure-grid, .program-grid { grid-template-columns: repeat(2, 1fr); }
  .structure-card.hero-card { grid-column: span 2; }
  .insert-grid { grid-template-columns: repeat(2, 1fr); }
  .engineering-layout { grid-template-columns: 1fr; }
  .quote-brief { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
  .quote-brief > * { grid-column: 1 / -1; }
  .guide-index { top: 109px; }
  .topbar { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .guide-hero { min-height: 640px; }
  .guide-hero-shade { background: linear-gradient(90deg, rgba(7,17,16,.95) 0%, rgba(7,17,16,.74) 46%, rgba(7,17,16,.18) 100%); }
  .decision-grid, .connection-grid, .combination-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .decision-grid article { border-bottom: 1px solid #dce2dd; }
  .decision-grid article:nth-child(2) { border-right: 0; }
  .format-grid, .material-grid { grid-template-columns: repeat(2, 1fr); }
  .format-card.featured { grid-column: span 2; }
  .material-card:last-child { grid-column: span 2; }
  .split-heading, .shape-board, .guide-cta { grid-template-columns: 1fr; gap: 28px; }
  .split-heading > p { margin-top: 0; }
  .validation-layout { grid-template-columns: 1fr; }
  .brief-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
  .brief-card > * { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  .nav-wrap { min-height: 68px; padding: 0 16px; }
  .brand { min-width: 0; }
  .brand-logo { width: 62px; }
  .brand-copy strong { font-size: 13px; }
  .brand small { display: none; }
  .main-nav { left: 16px; right: 16px; }
  .hero { min-height: 560px; background-position: center top; }
  .page-hero.compact { min-height: 330px; }
  .hero-content, .page-hero > div, .section, .stats, .contact-band, .product-detail { width: min(100% - 32px, 1180px); }
  .hero h1 { font-size: 34px; }
  .page-hero h1 { font-size: 28px; }
  .detail-copy h1 { font-size: clamp(30px, 9vw, 38px); }
  h2 { font-size: 28px; }
  .hero p, .page-hero p { font-size: 16px; }
  .stats { margin-top: 0; grid-template-columns: 1fr 1fr; border-radius: 0; width: 100%; }
  .stats div { padding: 18px 16px; }
  .section { margin: 58px auto; }
  .section-head { display: block; }
  .product-grid, .feature-grid, .category-cards, .bottle-system, .contact-grid, .gallery, .detail-gallery, .category-list { grid-template-columns: 1fr; }
  .product-copy h3 { min-height: 0; }
  .bottles-preview { padding: 56px 16px; }
  .contact-band { margin: 58px auto; padding: 24px; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
  .site-footer { margin-top: 60px; padding: 30px 16px; }
  .home-carousel-slide img { object-fit: contain; }
  .home-carousel-arrow { display: none; }
  .home-carousel-toolbar { min-height: 56px; padding: 6px 4px; gap: 4px; justify-content: space-between; }
  .home-carousel-dots button { width: 36px; height: 44px; }
  .home-carousel-toggle { min-height: 44px; padding: 7px 9px; font-size: 12px; }
  .home-intro { margin-top: 58px; }
  .home-intro h1 { font-size: 38px; }
  .home-intro-copy > p { font-size: 15px; }
  .home-project-scope { padding: 24px; }
  .home-stats { width: 100%; margin-bottom: 68px; }
  .home-stats div { min-height: 105px; padding: 18px 16px; }
  .home-stats strong { font-size: 25px; }
  .home-section-head { display: block; }
  .home-section-head h2 { font-size: 36px; }
  .home-section-head > p { margin-top: 18px; }
  .home-category-grid, .home-product-grid { grid-template-columns: 1fr; }
  .home-category-grid a { min-height: 230px; padding: 22px; }
  .home-category-grid h3 { margin-top: 34px; }
  .home-product-copy p { min-height: 0; }
  .home-bottle-band { margin: 72px 0; padding: 62px 16px; }
  .home-bottle-inner { gap: 38px; }
  .home-bottle-inner h2 { font-size: 38px; }
  .home-bottle-inner ul { grid-template-columns: 1fr; }
  .home-about { gap: 34px; }
  .home-about-media { min-height: 340px; }
  .home-about-copy h2 { font-size: 38px; }
  .home-about-links a { grid-template-columns: 1fr; gap: 5px; }
  .archive-hero { width: calc(100% - 32px); padding: 54px 0 38px; }
  .archive-hero-copy h1 { font-size: 44px; }
  .archive-hero-copy > p { font-size: 15px; }
  .archive-hero-gallery { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: 380px 210px; }
  .archive-hero-tile.primary { grid-column: 1 / -1; grid-row: auto; }
  .archive-hero-tile.secondary, .archive-hero-tile.tertiary { min-height: 210px; }
  .archive-hero-tile > span { left: 14px; right: 14px; bottom: 14px; }
  .archive-hero-tile strong { font-size: 14px; }
  .archive-hero-tile.primary strong { font-size: 21px; }
  .archive-fact-grid, .documented-structure-grid, .archive-collection-grid, .material-layer-grid, .source-sheet-grid, .verified-process-grid, .archive-timing-grid, .archive-economy-grid { grid-template-columns: 1fr; }
  .archive-fact-grid article, .archive-fact-grid article:nth-child(2) { min-height: 125px; border-right: 0; border-bottom: 1px solid #dce2dd; }
  .archive-fact-grid article:last-child { border-bottom: 0; }
  .documented-structure-grid article.featured { grid-column: auto; }
  .documented-structure-grid article { min-height: 285px; }
  .archive-product-card.featured { grid-column: auto; display: flex; }
  .archive-product-card.featured .archive-product-media { height: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .archive-product-card.featured h3 { font-size: 25px; }
  .archive-product-copy h3 { font-size: 22px; }
  .material-layer-grid article { min-height: 260px; }
  .source-note, .finish-rule { grid-template-columns: 1fr; gap: 7px; }
  .verified-process-grid article { min-height: 220px; }
  .archive-timing-grid article { min-height: 135px; }
  .archive-brief-layout ol { grid-template-columns: 1fr; }
  .archive-brief-layout li { min-height: 130px; }
  .archive-economy-grid .archive-product-card:last-child { grid-column: auto; }
  .box-hero { min-height: 760px; align-items: flex-end; }
  .box-hero-image { object-position: 67% center; }
  .box-hero-shade { background: linear-gradient(180deg, rgba(8,18,16,.08) 0%, rgba(8,18,16,.48) 35%, rgba(8,18,16,.95) 69%, rgba(8,18,16,.99) 100%); }
  .box-hero-content { width: calc(100% - 32px); padding: 265px 0 44px; }
  .box-hero h1 { font-size: 43px; }
  .box-hero-content > p { font-size: 15px; }
  .box-hero-facts { margin-top: 30px; }
  .box-index { top: 68px; }
  .box-index > div, .box-section, .box-dark-inner, .box-engineering-inner, .box-cta, .box-disclaimer { width: calc(100% - 32px); }
  .box-index > div { width: 100%; padding: 0 16px; }
  .box-index > div > span { display: none; }
  .box-section, .box-dark-panel, .box-engineering { padding: 76px 0; scroll-margin-top: 124px; }
  .box-guide h2 { font-size: 36px; }
  .box-heading-split { display: block; }
  .box-heading-split > p { margin-top: 18px; }
  .box-decision-grid, .structure-grid, .material-system, .insert-grid, .process-grid, .program-grid, .engineering-grid, .economy-grid { grid-template-columns: 1fr; }
  .box-decision-grid article, .box-decision-grid article:nth-child(2) { min-height: auto; border-right: 0; border-bottom: 1px solid #dce2dd; }
  .box-decision-grid article:last-child { border-bottom: 0; }
  .box-decision-grid h3 { margin-top: 30px; }
  .structure-figure img, .finish-figure img { aspect-ratio: 4 / 3; }
  .structure-card.hero-card { grid-column: auto; }
  .structure-card { min-height: 400px; }
  .material-system article { min-height: 280px; }
  .insert-heading { display: block; }
  .insert-heading > p { margin-top: 18px; }
  .process-grid > article { padding: 22px; }
  .process-grid li { grid-template-columns: 1fr; gap: 4px; }
  .program-grid article { min-height: 265px; }
  .engineering-grid article { min-height: auto; }
  .quote-brief { display: block; padding: 25px; }
  .economy-spec > div { grid-template-columns: 1fr; gap: 5px; }
  .box-cta { padding: 34px 24px; }
  .box-cta h2 { font-size: 36px; }
  .guide-hero { min-height: 720px; align-items: flex-end; }
  .guide-hero-image { object-position: 68% center; }
  .guide-hero-shade { background: linear-gradient(180deg, rgba(7,17,16,.15) 0%, rgba(7,17,16,.52) 36%, rgba(7,17,16,.96) 73%, rgba(7,17,16,.99) 100%); }
  .guide-hero-content { width: calc(100% - 32px); padding: 250px 0 44px; }
  .guide-hero h1 { font-size: 44px; }
  .guide-hero-content > p { font-size: 15px; }
  .guide-hero-facts { margin-top: 30px; }
  .guide-index { top: 68px; }
  .guide-index > div, .guide-section, .guide-panel-inner, .guide-cta, .guide-disclaimer { width: calc(100% - 32px); }
  .guide-index > div { width: 100%; padding: 0 16px; }
  .guide-index span { display: none; }
  .guide-section { padding: 76px 0; scroll-margin-top: 124px; }
  .guide-panel { padding: 76px 0; scroll-margin-top: 124px; }
  .bottle-guide h2 { font-size: 36px; }
  .split-heading { display: block; }
  .split-heading > p { margin-top: 18px; }
  .decision-grid, .format-grid, .connection-grid, .spray-types, .cap-grid, .material-grid, .finish-groups, .test-list, .combination-grid { grid-template-columns: 1fr; }
  .decision-grid article, .decision-grid article:nth-child(2) { min-height: auto; border-right: 0; border-bottom: 1px solid #dce2dd; }
  .decision-grid article:last-child { border-bottom: 0; }
  .decision-grid h3 { margin-top: 30px; }
  .format-card.featured, .material-card:last-child { grid-column: auto; }
  .format-card { min-height: 330px; }
  .component-figure img { aspect-ratio: 4 / 3; }
  .connection-grid article { min-height: 250px; }
  .connection-grid h3 { margin-top: 38px; }
  .technical-note { grid-template-columns: 1fr; }
  .material-card { min-height: 330px; }
  .shape-board { padding: 24px; }
  .finish-figure img { aspect-ratio: 4 / 3; object-fit: cover; }
  .finish-group { padding: 22px; }
  .finish-group li { grid-template-columns: 1fr; gap: 4px; }
  .test-list article { min-height: auto; }
  .brief-card { display: block; padding: 25px; }
  .combination-grid article { min-height: 210px; }
  .guide-cta { padding: 34px 24px; }
  .guide-cta h2 { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .product-card, .format-card, .structure-card, .archive-hero-tile img, .archive-product-card, .archive-product-media img, .archive-source-sheet img, .home-carousel-slide, .home-carousel-arrow, .home-carousel-dots button span, .home-product-card, .home-product-media img { transition: none; }
  .home-carousel-slide.is-active img { animation: none; }
}

/* Warm Atelier: site-wide luxury palette */
html, body { background: var(--lux-canvas); }
.topbar, .site-footer { background: var(--lux-ink); }
.site-header { background: rgba(var(--lux-canvas-rgb), .96); border-color: var(--lux-line); }
.brand strong { color: var(--lux-plum); }
.main-nav a { color: var(--lux-text); }
.main-nav a:hover, .main-nav a.active { color: var(--lux-plum); background: var(--lux-stone); }
.menu-toggle, .main-nav, .product-card, .feature-grid article, .category-cards article, .bottle-system article, .contact-grid article, .quote-box, .info-copy { background: var(--lux-card); border-color: var(--lux-line); }
.spec-panel, .category-list a, .process-list span, .about-points strong, .bottles-preview { background: var(--lux-stone); border-color: var(--lux-line); }
.button { background: var(--lux-plum); border-color: var(--lux-plum); }
.button:hover { background: var(--lux-deep); border-color: var(--lux-deep); }
.button.light { color: var(--lux-deep); background: var(--lux-card); border-color: var(--lux-card); }
.contact-band { background: var(--lux-deep); }
.eyebrow, .spec-row strong { color: var(--lux-brass-text); }
.hero .eyebrow, .page-hero .eyebrow, .contact-band .eyebrow, .home-bottle-band .eyebrow { color: var(--lux-brass-light); }
.chips span { color: var(--lux-deep); background: var(--lux-stone); }
.stats, .product-card, .detail-media img, .gallery img, .detail-gallery img, .info-copy, .spec-panel, .spec-list, .spec-row { border-color: var(--lux-line); }
.stats, .product-card, .info-copy { background: var(--lux-card); }
.product-media { background: var(--lux-stone); }
.stats strong, .bottle-system article span { color: var(--lux-plum); }

.home-page { color: var(--lux-ink); background: var(--lux-canvas); }
.home-carousel { background: var(--lux-ink); border-color: var(--lux-line); }
.home-carousel-viewport, .home-product-media { background: var(--lux-stone); }
.home-carousel:focus-visible { box-shadow: inset 0 0 0 8px var(--lux-plum); }
.home-carousel-arrow { background: rgba(var(--lux-ink-rgb), .68); }
.home-carousel-arrow:hover { background: rgba(75, 55, 74, .92); }
.home-carousel-toolbar { background: var(--lux-deep); }
.home-carousel-dots button[aria-current="true"] span, .home-carousel-toggle-icon { color: var(--lux-brass-light); border-color: var(--lux-brass-light); background-color: var(--lux-brass-light); }
.home-carousel button:focus-visible { box-shadow: 0 0 0 5px var(--lux-plum); }
.home-page a:focus-visible { outline-color: var(--lux-plum); box-shadow: 0 0 0 5px var(--lux-card); }
.home-bottle-band a:focus-visible { outline-color: var(--lux-card); box-shadow: 0 0 0 5px var(--lux-plum); }
.home-intro-copy > p, .home-section-head > p, .home-stats span, .home-product-copy p, .home-about-copy > p { color: var(--lux-text); }
.home-outline { color: var(--lux-plum); border-color: var(--lux-brass-line); }
.home-outline:hover { color: var(--lux-card); background: var(--lux-deep); border-color: var(--lux-deep); }
.home-project-scope { background: linear-gradient(145deg, var(--lux-ink), var(--lux-surface-dark) 70%, var(--lux-plum)); box-shadow: 0 24px 70px rgba(var(--lux-shadow-rgb), .16); }
.home-project-scope > span { color: var(--lux-brass-light); }
.home-stats, .home-category-grid, .home-product-card, .home-about-media { border-color: var(--lux-line); background: var(--lux-card); box-shadow: 0 18px 55px rgba(var(--lux-shadow-rgb), .07); }
.home-stats div, .home-category-grid { border-color: var(--lux-line); }
.home-stats strong, .home-category-grid strong { color: var(--lux-plum); }
.home-category-grid { background: var(--lux-line); }
.home-category-grid a { background: var(--lux-card); }
.home-category-grid a > span, .home-product-tags span { color: var(--lux-brass-text); }
.home-category-grid a:hover { background: var(--lux-deep); }
.home-category-grid a:hover strong, .home-category-grid a:hover > span { color: var(--lux-brass-light); }
.home-product-card:hover { box-shadow: 0 20px 52px rgba(var(--lux-shadow-rgb), .11); }
.home-product-media > span, .home-about-media > span { background: rgba(var(--lux-ink-rgb), .88); }
.home-product-tags span { border-color: var(--lux-brass-line); background: var(--lux-cream); }
.home-bottle-band { background: linear-gradient(135deg, var(--lux-ink), var(--lux-deep) 62%, var(--lux-surface-dark)); }
.home-bottle-inner figure { border-color: rgba(var(--lux-brass-light-rgb), .48); }
.home-bottle-inner li::before { background: var(--lux-brass-light); }

.box-guide, .bottle-guide { background: var(--lux-canvas); color: var(--lux-ink); }
.archive-hero-copy > p, .archive-fact-grid span, .archive-source-sheet figcaption, .archive-product-copy p, .archive-brief-layout li span, .box-heading > p, .box-heading-split > p, .box-figure figcaption, .structure-card dt, .structure-card dd, .process-grid li span, .program-grid p, .economy-grid p, .economy-spec span, .box-disclaimer,
.guide-heading > p, .split-heading > p, .guide-figure figcaption, .format-card dt, .material-card li, .table-block td, .table-note, .finish-group li span, .brief-card li, .combination-grid p, .guide-disclaimer { color: var(--lux-text); }
.archive-outline { color: var(--lux-deep); border-color: var(--lux-brass-line); }
.archive-outline:hover { color: var(--lux-card); background: var(--lux-deep); }
.archive-hero-tile { background: var(--lux-stone); }
.archive-hero-tile::after { background: linear-gradient(180deg, transparent, rgba(var(--lux-ink-rgb), .86)); }
.archive-hero-tile small, .documented-structure-grid article > span, .documented-structure-grid small, .production-steps article > span, .archive-timing-grid strong, .material-system article > span, .material-system small, .engineering-grid article > span,
.box-kicker, .box-hero-facts strong, .hero-card .structure-top span, .special-card .structure-top span, .hero-card .structure-top strong, .special-card .structure-top strong, .program-grid .program-featured > span, .program-grid .program-featured small,
.guide-kicker, .format-card.featured .format-number, .connection-tag, .connection-grid small, .technical-note strong, .test-list article > span { color: var(--lux-brass-light); }
.archive-hero .box-hero-facts strong, .archive-product-copy > small, .material-layer-grid article > span, .source-note strong, .verified-process-grid article > span, .finish-rule strong, .archive-brief-layout li::before, .box-decision-grid article > span, .structure-top span, .structure-top strong, .program-grid article > span, .program-grid small, .quote-brief li::before, .economy-grid article > span, .economy-spec strong,
.guide-index span, .decision-grid article > span, .material-card > span, .table-scroll:focus-visible, .brief-card li::before, .combination-grid article > span { color: var(--lux-brass-text); }

.archive-fact-grid, .archive-fact-grid article, .archive-source-sheet, .archive-product-card, .material-layer-grid article, .verified-process-grid article, .archive-brief-layout li, .box-decision-grid, .box-decision-grid article, .structure-card, .process-grid > article, .program-grid article, .economy-grid article, .decision-grid, .decision-grid article, .format-card, .material-card, .table-block, .finish-group, .combination-grid article { background: var(--lux-card); }
.archive-fact-grid, .archive-fact-grid article, .archive-source-sheet, .archive-product-card, .material-layer-grid article, .verified-process-grid article, .source-note, .finish-rule, .archive-brief-layout ol, .box-decision-grid, .box-decision-grid article, .structure-card, .process-grid > article, .program-grid article, .economy-grid article, .economy-spec, .economy-spec > div,
.decision-grid, .decision-grid article, .format-card, .material-card, .shape-board, .table-block, .table-block th, .table-block td, .table-note, .finish-group, .finish-group-head, .finish-group li, .combination-grid article { border-color: var(--lux-line); }
.archive-product-card:hover, .structure-card:hover, .format-card:hover { box-shadow: 0 18px 48px rgba(var(--lux-shadow-rgb), .1); }
.archive-product-media, .finish-rule, .shape-chips span, .table-block thead th { background: var(--lux-stone); }
.archive-product-media > span { color: var(--lux-deep); background: rgba(237, 228, 213, .94); }
.archive-tags span, .box-index a:hover, .box-index a:focus-visible, .guide-index a:hover, .guide-index a:focus-visible { color: var(--lux-deep); background: var(--lux-stone); }
.source-note, .archive-brief-layout aside, .quote-brief, .economy-spec, .brief-card, .shape-board { background: var(--lux-cream); }
.box-index, .guide-index { border-color: var(--lux-line); background: rgba(var(--lux-canvas-rgb), .96); }
.box-index > div > span, .box-index a, .guide-index a { color: var(--lux-text); }

.box-hero, .guide-hero { background: var(--lux-ink); }
.box-hero-shade, .guide-hero-shade { background: linear-gradient(90deg, rgba(var(--lux-ink-rgb), .96) 0%, rgba(var(--lux-ink-rgb), .84) 30%, rgba(var(--lux-ink-rgb), .32) 57%, rgba(var(--lux-ink-rgb), .08) 100%); }
.box-primary, .guide-primary { color: var(--lux-ink); background: var(--lux-brass-light); border-color: var(--lux-brass-light); }
.box-primary:hover, .guide-primary:hover { color: var(--lux-card); background: var(--lux-plum); border-color: var(--lux-plum); }
.documented-structure-grid article, .archive-source-sheet.dark-sheet, .production-steps article, .archive-timing-grid article, .material-system article, .insert-grid article, .engineering-grid article,
.connection-grid article, .spray-type, .pump-spec-note, .cap-grid article, .test-list article, .material-card.primary { background: var(--lux-surface-dark); }
.documented-structure-grid article.featured, .structure-card.hero-card, .program-grid .program-featured, .format-card.featured, .material-card.primary { background: linear-gradient(135deg, var(--lux-deep), var(--lux-plum)); }
.structure-card.special-card { background: var(--lux-ink); border-color: var(--lux-ink); }
.box-dark-panel, .box-engineering, .guide-panel { background: var(--lux-deep); }
.box-cta, .guide-cta { background: linear-gradient(125deg, var(--lux-deep), var(--lux-plum)); }
.process-title > span, .finish-group-head > span { background: var(--lux-plum); }
.format-number { color: var(--lux-plum); border-color: var(--lux-line); }
.format-label { color: var(--lux-ink); background: var(--lux-brass-light); }
.connection-tag, .technical-note { border-color: rgba(var(--lux-brass-light-rgb), .38); }
.technical-note { background: rgba(var(--lux-brass-light-rgb), .08); }
.shape-chips span { color: var(--lux-text); border-color: var(--lux-line); }
.material-card li::before { background: var(--lux-brass); }
.box-guide .button:focus-visible, .bottle-guide .button:focus-visible { outline-color: var(--lux-brass-light); }

@media (max-width: 980px) {
  .box-hero-shade, .guide-hero-shade { background: linear-gradient(90deg, rgba(var(--lux-ink-rgb), .95) 0%, rgba(var(--lux-ink-rgb), .75) 48%, rgba(var(--lux-ink-rgb), .18) 100%); }
}
@media (max-width: 640px) {
  .box-hero-shade { background: linear-gradient(180deg, rgba(var(--lux-ink-rgb), .08) 0%, rgba(var(--lux-ink-rgb), .48) 35%, rgba(var(--lux-ink-rgb), .95) 69%, rgba(var(--lux-ink-rgb), .99) 100%); }
  .guide-hero-shade { background: linear-gradient(180deg, rgba(var(--lux-ink-rgb), .15) 0%, rgba(var(--lux-ink-rgb), .52) 36%, rgba(var(--lux-ink-rgb), .96) 73%, rgba(var(--lux-ink-rgb), .99) 100%); }
}
