:root {
  --ink: #17110e;
  --ink-soft: #251a15;
  --brown: #563527;
  --red: #b82e22;
  --red-dark: #7e1d18;
  --gold: #e8bb60;
  --gold-bright: #f2ce7a;
  --cream: #f6efe3;
  --paper: #fffaf2;
  --white: #fffefd;
  --muted: #74665e;
  --line: rgba(40, 26, 20, .13);
  --shadow: 0 24px 80px rgba(48, 29, 19, .12);
  --shadow-dark: 0 30px 100px rgba(0, 0, 0, .38);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --shell: min(1240px, calc(100% - 48px));
  --header-height: 84px;
  --font-sans: "Aptos", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold); color: var(--ink); }

.app-surface { overflow: clip; background: var(--paper); }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: 10px 16px; color: var(--ink); background: var(--gold); border-radius: 10px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }
.section { padding: 112px 0; }
.section-dark { color: var(--white); background: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--gold-bright); }
.eyebrow-light > span { width: 28px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}
h1 em, h2 em { color: var(--gold); font-weight: 400; }
h2 { margin: 14px 0 0; font-size: clamp(2.6rem, 5vw, 5rem); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .015em;
  line-height: 1.1;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button .icon { transition: transform .25s ease; }
.button:hover .icon { transform: translateX(4px); }
.button-small { min-height: 44px; padding: 10px 18px; font-size: .82rem; }
.button-large { min-height: 58px; padding: 15px 26px; }
.button-gold { color: var(--ink); background: var(--gold); box-shadow: 0 12px 32px rgba(232, 187, 96, .2); }
.button-gold:hover { background: var(--gold-bright); box-shadow: 0 16px 40px rgba(232, 187, 96, .28); }
.button-dark { color: var(--white); background: var(--ink); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.32); }
.button-outline-light:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: .9rem; font-weight: 800; }
.text-link .icon { width: 1em; transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }
.text-link-light { color: var(--white); }
.icon-button { display: inline-grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: inherit; background: transparent; cursor: pointer; }

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  color: var(--white);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header.is-scrolled {
  position: fixed;
  height: 72px;
  background: rgba(23, 17, 14, .92);
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.brand-mark { position: relative; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(232,187,96,.56); border-radius: 50% 50% 48% 52%; color: var(--gold); font-family: var(--font-display); font-size: 1rem; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; width: 18px; height: 1px; background: var(--gold); transform: rotate(-42deg); }
.brand-mark::before { top: 10px; left: -4px; }
.brand-mark::after { right: -4px; bottom: 10px; }
.brand-mark span:last-child { margin-left: -2px; font-size: .74em; opacity: .72; }
.brand-copy { display: grid; gap: 5px; }
.brand-copy strong { font-family: var(--font-display); font-size: 1.12rem; letter-spacing: -.03em; }
.brand-copy small { color: var(--gold); font-size: .59rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { position: relative; color: rgba(255,255,255,.66); font-size: .83rem; font-weight: 700; transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--white); }
.desktop-nav a.is-active::after { content: ""; position: absolute; right: 0; bottom: -12px; left: 0; height: 2px; background: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-search { border-color: rgba(255,255,255,.18); }
.menu-toggle { display: none; border-color: rgba(255,255,255,.18); }
.mobile-drawer { position: fixed; top: 72px; right: 0; bottom: 0; left: 0; padding: 24px; background: rgba(23,17,14,.98); }
.mobile-menu { display: grid; }
.mobile-menu a { display: flex; min-height: 64px; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--font-display); font-size: 1.45rem; }

.hero {
  position: relative;
  min-height: 880px;
  padding: 150px 0 0;
  background:
    linear-gradient(110deg, rgba(23,17,14,.99) 0%, rgba(23,17,14,.94) 46%, rgba(59,25,19,.88) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image: repeating-linear-gradient(60deg, transparent 0 48px, rgba(232,187,96,.2) 49px 50px), repeating-linear-gradient(-60deg, transparent 0 48px, rgba(232,187,96,.14) 49px 50px);
  mask-image: linear-gradient(to right, transparent, #000 65%);
}
.hero-glow { position: absolute; top: 90px; right: 5%; width: 560px; height: 560px; border-radius: 50%; background: rgba(181,43,33,.2); filter: blur(100px); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.hero-copy { padding-bottom: 88px; }
.hero h1 { max-width: 710px; margin: 26px 0 28px; font-size: clamp(4rem, 6.4vw, 7rem); }
.hero h1 em { display: block; }
.hero-lead { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,.68); font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.hero-trust { display: grid; max-width: 610px; grid-template-columns: repeat(3, 1fr); margin-top: 58px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.13); }
.hero-trust span { display: grid; grid-template-columns: 32px 1fr; grid-template-rows: auto auto; align-items: center; color: var(--gold); }
.hero-trust .icon { grid-row: 1 / 3; width: 22px; }
.hero-trust b { color: var(--white); font-size: .82rem; }
.hero-trust small { color: rgba(255,255,255,.44); font-size: .7rem; }
.hero-visual { position: relative; align-self: end; }
.hero-image-frame { position: relative; height: 650px; overflow: hidden; border-radius: 180px 180px 0 0; box-shadow: var(--shadow-dark); }
.hero-image-frame::before { content: ""; position: absolute; z-index: 2; inset: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 165px 165px 0 0; pointer-events: none; }
.hero-image-frame > img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.hero-image-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(19,11,8,.9), transparent 48%); }
.hero-stamp { position: absolute; top: 42px; left: 42px; display: grid; width: 88px; height: 88px; place-content: center; border: 1px solid rgba(232,187,96,.75); border-radius: 50%; color: var(--gold); text-align: center; transform: rotate(-10deg); backdrop-filter: blur(8px); }
.hero-stamp b { font-family: var(--font-display); font-size: 1.35rem; line-height: 1; }
.hero-stamp small { font-size: .62rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-caption { position: absolute; right: 36px; bottom: 34px; left: 36px; display: flex; gap: 18px; align-items: center; color: var(--white); }
.hero-caption > span { display: grid; min-width: 50px; height: 50px; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: var(--gold); font-family: var(--font-display); }
.hero-caption p { margin: 0; color: rgba(255,255,255,.58); font-size: .76rem; line-height: 1.35; }
.hero-caption b { display: block; margin-bottom: 4px; color: var(--white); font-size: .89rem; }
.hero-note { position: absolute; top: 48%; right: -48px; display: flex; gap: 14px; align-items: center; padding: 15px 18px; color: var(--ink); background: var(--gold); border-radius: 12px; box-shadow: var(--shadow-dark); font-size: .72rem; font-weight: 900; letter-spacing: .04em; transform: rotate(90deg) translateY(-50%); transform-origin: center; text-transform: uppercase; }
.category-ribbon { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid rgba(255,255,255,.1); border-bottom: 0; background: rgba(33,22,18,.9); }
.category-ribbon a { display: grid; min-height: 106px; grid-template-columns: 1fr auto; align-content: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.1); transition: background .25s ease; }
.category-ribbon a:last-child { border-right: 0; }
.category-ribbon a:hover { background: rgba(232,187,96,.1); }
.category-ribbon span { font-family: var(--font-display); font-size: .98rem; line-height: 1.2; }
.category-ribbon small { color: rgba(255,255,255,.4); font-size: .67rem; }
.category-ribbon .icon { grid-row: 1 / 3; width: 17px; align-self: center; color: var(--gold); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-heading h2 { max-width: 790px; color: var(--ink); }
.section-heading h2 em { color: var(--red); }
.products-section { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 20px; }
.product-card { min-width: 0; }
.product-media { position: relative; display: block; aspect-ratio: 1 / 1.12; overflow: hidden; border-radius: var(--radius); background: #eadfce; }
.product-media::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(23,17,14,.08); border-radius: inherit; pointer-events: none; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-media img { transform: scale(1.045); }
.product-badge { position: absolute; top: 14px; left: 14px; padding: 8px 11px; border-radius: 999px; color: var(--white); background: rgba(23,17,14,.82); font-size: .65rem; font-weight: 800; letter-spacing: .05em; backdrop-filter: blur(8px); }
.product-arrow { position: absolute; right: 14px; bottom: 14px; display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--gold); transform: translateY(8px); opacity: 0; transition: transform .25s ease, opacity .25s ease; }
.product-card:hover .product-arrow { transform: translateY(0); opacity: 1; }
.product-card-body { padding: 20px 4px 6px; }
.product-category { color: var(--red); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { margin: 7px 0 9px; font-family: var(--font-display); font-size: 1.32rem; line-height: 1.12; }
.product-card h3 a:hover { color: var(--red); }
.product-card p { min-height: 46px; margin-bottom: 16px; color: var(--muted); font-size: .78rem; line-height: 1.48; }
.product-buy { display: inline-flex; align-items: center; gap: 8px; font-size: .76rem; font-weight: 900; }
.product-buy .icon { width: 17px; color: var(--red); }
.section-center { display: flex; justify-content: center; margin-top: 54px; }

.story-section { position: relative; overflow: hidden; padding: 112px 0; color: var(--white); background: var(--red-dark); }
.story-section::before { content: "RG"; position: absolute; top: -13vw; left: -4vw; color: rgba(255,255,255,.035); font-family: var(--font-display); font-size: 39vw; line-height: 1; }
.story-grid { position: relative; display: grid; grid-template-columns: .55fr 1.3fr 1fr; gap: clamp(40px, 7vw, 96px); align-items: start; }
.story-number { display: grid; padding-top: 12px; }
.story-number span, .story-number small { color: rgba(255,255,255,.58); font-size: .68rem; font-weight: 800; letter-spacing: .14em; line-height: 1.5; text-transform: uppercase; }
.story-number strong { margin: 2px 0 10px; color: var(--gold); font-family: var(--font-display); font-size: 5.5rem; font-weight: 500; letter-spacing: -.07em; line-height: 1; writing-mode: vertical-rl; transform: rotate(180deg); }
.story-copy h2 { margin-bottom: 28px; color: var(--white); font-size: clamp(3rem, 5vw, 5.4rem); }
.story-copy p { max-width: 690px; margin-bottom: 34px; color: rgba(255,255,255,.69); font-size: 1.02rem; line-height: 1.8; }
.award-stack { border-top: 1px solid rgba(255,255,255,.2); }
.award-stack > div { display: grid; grid-template-columns: 48px 1fr 30px; gap: 15px; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.award-stack > div > span { color: var(--gold); font-family: var(--font-display); font-size: .96rem; }
.award-stack p { margin: 0; color: rgba(255,255,255,.45); font-size: .68rem; line-height: 1.35; }
.award-stack p b { display: block; margin-bottom: 3px; color: var(--white); font-size: .82rem; }
.award-stack .icon { color: var(--gold); }

.ritual-section { background: var(--cream); }
.ritual-grid { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.ritual-copy h2 { margin-bottom: 28px; color: var(--ink); }
.ritual-copy h2 em { color: var(--red); }
.ritual-copy > p { max-width: 620px; color: var(--muted); font-size: 1.02rem; line-height: 1.8; }
.check-list { display: grid; gap: 0; margin: 34px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; padding: 18px 0; border-top: 1px solid var(--line); }
.check-list .icon { width: 24px; height: 24px; padding: 5px; border-radius: 50%; color: var(--white); background: var(--red); }
.check-list span { color: var(--muted); font-size: .83rem; }
.check-list b { display: block; margin-bottom: 3px; color: var(--ink); font-size: .96rem; }
.travel-card { position: relative; display: block; aspect-ratio: .84; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.travel-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.travel-card:hover > img { transform: scale(1.04); }
.travel-card-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,17,14,.9), transparent 55%); }
.travel-card-copy { position: absolute; right: 32px; bottom: 30px; left: 32px; display: grid; color: var(--white); }
.travel-card-copy small { margin-bottom: 8px; color: var(--gold); font-size: .69rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.travel-card-copy b { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 500; line-height: 1.02; }
.travel-card-copy > span { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: .78rem; font-weight: 900; }

.journal-section { background: var(--paper); }
.journal-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.journal-card { position: relative; display: flex; min-height: 320px; flex-direction: column; padding: 32px; border-right: 1px solid var(--line); transition: color .25s ease, background .25s ease; }
.journal-card:last-child { border-right: 0; }
.journal-card:hover { color: var(--white); background: var(--ink); }
.journal-featured { color: var(--white); background: var(--red-dark); }
.journal-index { position: absolute; top: 27px; right: 28px; color: var(--gold); font-family: var(--font-display); font-size: 1.35rem; }
.journal-type { color: var(--red); font-size: .67rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.journal-featured .journal-type { color: var(--gold); }
.journal-card h3 { max-width: 520px; margin: auto 0; font-family: var(--font-display); font-size: clamp(1.55rem, 2.2vw, 2.45rem); font-weight: 500; line-height: 1.12; }
.journal-action { display: inline-flex; align-items: center; gap: 9px; font-size: .74rem; font-weight: 900; }
.journal-action .icon { width: 17px; }

.final-cta { position: relative; overflow: hidden; padding: 120px 0; text-align: center; }
.final-cta-pattern { position: absolute; inset: 0; opacity: .11; background: radial-gradient(circle at center, var(--red) 0, transparent 55%), repeating-radial-gradient(circle at center, transparent 0 40px, var(--gold) 42px 43px); }
.final-cta-inner { position: relative; display: grid; justify-items: center; }
.final-cta h2 { margin-bottom: 24px; color: var(--white); font-size: clamp(3.4rem, 7vw, 7.3rem); }
.final-cta p { max-width: 590px; margin-bottom: 32px; color: rgba(255,255,255,.6); }

.site-footer { padding: 84px 0 28px; color: rgba(255,255,255,.6); background: #0e0b09; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr 1fr; gap: 58px; }
.footer-brand p { max-width: 310px; margin-top: 22px; font-size: .82rem; line-height: 1.7; }
.footer-links { display: grid; align-content: start; gap: 12px; font-size: .78rem; }
.footer-links strong { margin-bottom: 7px; color: var(--white); font-size: .71rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold); }
.footer-cta { display: grid; gap: 12px; align-content: start; }
.footer-cta > strong { color: var(--white); font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; line-height: 1.15; }
.footer-cta .button { margin-top: 8px; justify-self: start; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 64px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .68rem; }
.mobile-tabbar { display: none; }
.toast { position: fixed; z-index: 300; right: 22px; bottom: 22px; max-width: min(340px, calc(100% - 44px)); padding: 13px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; color: var(--white); background: rgba(23,17,14,.94); box-shadow: var(--shadow-dark); font-size: .82rem; opacity: 0; transform: translateY(16px); pointer-events: none; transition: .25s ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

.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; }
.breadcrumb { display: flex; align-items: center; gap: 10px; padding-top: 112px; color: rgba(255,255,255,.45); font-size: .72rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb > span:last-child { max-width: 420px; overflow: hidden; color: rgba(255,255,255,.75); text-overflow: ellipsis; white-space: nowrap; }

/* Catalog */
.page-hero { position: relative; min-height: 570px; padding: 165px 0 92px; overflow: hidden; }
.page-hero-pattern { position: absolute; inset: 0; opacity: .17; background: radial-gradient(circle at 80% 30%, var(--red) 0, transparent 34%), repeating-radial-gradient(circle at 90% 50%, transparent 0 62px, var(--gold) 63px 64px); }
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { margin: 24px 0; font-family: var(--font-display); font-size: clamp(4.2rem, 9vw, 8.5rem); font-weight: 500; letter-spacing: -.055em; line-height: .9; }
.page-hero h1 em { color: var(--gold); font-weight: 400; }
.page-hero-inner > p { max-width: 660px; margin: 0 auto 34px; color: rgba(255,255,255,.62); font-size: 1.02rem; }
.catalog-search { display: grid; width: min(680px, 100%); min-height: 66px; grid-template-columns: 28px 1fr 40px; gap: 12px; align-items: center; margin: 0 auto; padding: 8px 10px 8px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: var(--gold); background: rgba(255,255,255,.08); box-shadow: 0 18px 50px rgba(0,0,0,.2); backdrop-filter: blur(16px); }
.catalog-search input { width: 100%; border: 0; outline: 0; color: var(--white); background: transparent; font-size: .98rem; }
.catalog-search input::placeholder { color: rgba(255,255,255,.42); }
.catalog-search button { display: grid; width: 40px; height: 40px; padding: 0; place-items: center; border: 0; border-radius: 50%; color: var(--white); background: rgba(255,255,255,.1); cursor: pointer; }
.catalog-main { padding: 46px 0 110px; background: var(--paper); }
.catalog-toolbar { position: sticky; z-index: 20; top: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 42px; padding: 14px 0; background: rgba(255,250,242,.92); backdrop-filter: blur(16px); }
.filter-chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.filter-chips::-webkit-scrollbar { display: none; }
.filter-chips button { flex: 0 0 auto; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: transparent; font-size: .72rem; font-weight: 800; cursor: pointer; transition: .2s ease; }
.filter-chips button span { margin-left: 5px; opacity: .55; }
.filter-chips button:hover, .filter-chips button.is-active { color: var(--white); background: var(--ink); border-color: var(--ink); }
.catalog-count { flex: 0 0 auto; margin: 0; color: var(--muted); font-size: .75rem; }
.catalog-count strong { color: var(--ink); }
.catalog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.catalog-empty { padding: 80px 20px; text-align: center; }
.catalog-empty > .icon { width: 48px; height: 48px; color: var(--red); }
.catalog-empty h2 { margin: 22px 0 10px; font-size: 2.5rem; }
.catalog-empty p { color: var(--muted); }
.catalog-shop-banner { padding: 80px 0; color: var(--white); background: var(--red-dark); }
.catalog-shop-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.catalog-shop-inner h2 { margin-top: 10px; font-size: clamp(2.5rem, 5vw, 4.7rem); }

/* Product detail */
.product-hero { min-height: 850px; padding-bottom: 92px; background: radial-gradient(circle at 15% 35%, #3a2019 0, var(--ink) 46%); }
.product-hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: clamp(48px, 7vw, 95px); align-items: center; padding-top: 40px; }
.product-gallery { min-width: 0; }
.gallery-main { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 36px; background: #ede4d8; box-shadow: var(--shadow-dark); }
.gallery-main > img { width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: opacity .16s ease; }
.gallery-main > img.is-changing { opacity: .25; }
.gallery-main .product-badge { top: 20px; left: 20px; }
.gallery-share { position: absolute; top: 18px; right: 18px; color: var(--white); border-color: rgba(255,255,255,.25); background: rgba(23,17,14,.46); backdrop-filter: blur(10px); }
.gallery-counter { position: absolute; right: 20px; bottom: 18px; padding: 7px 12px; border-radius: 999px; color: rgba(255,255,255,.62); background: rgba(23,17,14,.7); font-size: .67rem; backdrop-filter: blur(10px); }
.gallery-counter b { color: var(--white); }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.gallery-thumbs button { flex: 0 0 72px; width: 72px; height: 72px; padding: 3px; overflow: hidden; border: 1px solid transparent; border-radius: 15px; background: transparent; cursor: pointer; opacity: .58; transition: .2s ease; }
.gallery-thumbs button.is-active { border-color: var(--gold); opacity: 1; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; border-radius: 11px; }
.product-summary h1 { margin: 18px 0 22px; font-family: var(--font-display); font-size: clamp(3.2rem, 5vw, 5.7rem); font-weight: 500; letter-spacing: -.055em; line-height: .95; }
.product-intro { max-width: 610px; color: rgba(255,255,255,.63); font-size: .98rem; line-height: 1.72; }
.summary-facts { display: grid; grid-template-columns: repeat(2, 1fr); margin: 32px 0; border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
.summary-facts span { display: grid; gap: 3px; padding: 15px 16px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.summary-facts small { color: rgba(255,255,255,.42); font-size: .64rem; }
.summary-facts b { font-size: .82rem; }
.variant-summary { margin: 26px 0; }
.variant-summary > span { display: block; margin-bottom: 10px; color: rgba(255,255,255,.48); font-size: .69rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.variant-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.variant-chips span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; color: rgba(255,255,255,.77); font-size: .67rem; }
.product-cta-stack { margin-top: 30px; }
.product-cta-stack .button { width: 100%; }
.product-cta-stack p { margin: 9px 0 0; color: rgba(255,255,255,.38); font-size: .66rem; text-align: center; }
.purchase-assurance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 24px; }
.purchase-assurance span { display: grid; justify-items: center; gap: 7px; color: var(--gold); font-size: .63rem; text-align: center; }
.purchase-assurance b { color: rgba(255,255,255,.66); font-weight: 700; }
.product-content-grid { display: grid; grid-template-columns: 1fr .72fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.product-description h2 { margin-bottom: 48px; color: var(--ink); }
.product-description h2 em { color: var(--red); }
.rich-copy { max-width: 760px; }
.rich-copy h3 { margin: 40px 0 12px; color: var(--red-dark); font-family: var(--font-display); font-size: 1.65rem; font-weight: 500; }
.rich-copy p, .rich-copy li { color: #584b44; font-size: .96rem; line-height: 1.85; }
.rich-copy ul, .rich-copy ol { padding-left: 22px; }
.spec-panel { position: sticky; top: 98px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.spec-panel-heading { display: grid; gap: 10px; padding: 25px 26px; color: var(--white); background: var(--ink); }
.spec-panel-heading strong { font-family: var(--font-display); font-size: 1.55rem; font-weight: 500; }
.spec-panel dl { margin: 0; }
.spec-panel dl div { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; padding: 14px 24px; border-bottom: 1px solid var(--line); }
.spec-panel dt { color: var(--muted); font-size: .72rem; }
.spec-panel dd { margin: 0; font-size: .75rem; font-weight: 800; text-align: right; }
.spec-note { display: grid; grid-template-columns: 22px 1fr; gap: 10px; margin: 0; padding: 18px 22px; color: var(--muted); background: var(--cream); font-size: .68rem; line-height: 1.5; }
.variant-section { padding: 104px 0; background: var(--cream); }
.variant-section h2 { color: var(--ink); }
.variant-section h2 em { color: var(--red); }
.variant-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.variant-card { overflow: hidden; border-radius: 22px; background: var(--white); box-shadow: 0 12px 40px rgba(46,28,18,.08); }
.variant-card img { aspect-ratio: 1; width: 100%; object-fit: cover; }
.variant-card > div { padding: 17px 18px 19px; }
.variant-card small { color: var(--red); font-size: .62rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.variant-card h3 { margin: 5px 0 0; font-family: var(--font-display); font-size: 1.25rem; }
.product-video-section { padding: 108px 0; }
.product-video-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.product-video-grid p { color: rgba(255,255,255,.56); }
.product-video-grid video { width: 100%; max-height: 640px; border-radius: 28px; background: #000; box-shadow: var(--shadow-dark); }
.product-next-inner { display: grid; justify-items: center; text-align: center; }
.product-next h2 { margin-bottom: 34px; color: var(--ink); }
.product-next h2 em { color: var(--red); }

/* Editorial & SEO pages */
.article-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.article-index-card { display: flex; min-height: 370px; flex-direction: column; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-index-meta { display: flex; justify-content: space-between; color: var(--red); font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.article-index-meta small { color: var(--muted); font-weight: 600; }
.article-index-card h2 { margin: auto 0 20px; font-size: clamp(1.8rem, 2.8vw, 2.85rem); line-height: 1.02; }
.article-index-card p { color: var(--muted); font-size: .8rem; }
.article-index-card:hover { color: var(--white); background: var(--red-dark); }
.article-index-card:hover p, .article-index-card:hover .article-index-meta small { color: rgba(255,255,255,.58); }
.article-index-card:hover .article-index-meta { color: var(--gold); }
.article-index-card:hover .text-link { color: var(--white); }
.topic-explorer { padding: 110px 0; }
.topic-explorer .section-heading h2 { color: var(--white); }
.topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.12); border-left: 1px solid rgba(255,255,255,.12); }
.topic-card { position: relative; min-height: 250px; padding: 26px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.topic-card > span { color: var(--gold); font-family: var(--font-display); }
.topic-card h3 { margin: 44px 0 12px; font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; }
.topic-card p { color: rgba(255,255,255,.48); font-size: .76rem; }
.topic-card > .icon { position: absolute; right: 25px; bottom: 25px; color: var(--gold); }
.topic-card:hover { background: rgba(232,187,96,.08); }
.keyword-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.keyword-layout h2 { color: var(--ink); }
.keyword-layout h2 em { color: var(--red); }
.keyword-layout p { color: var(--muted); }
.keyword-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.keyword-cloud span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--white); font-size: .67rem; }
.article-hero { min-height: 760px; padding-bottom: 100px; }
.article-hero-inner { max-width: 1030px; margin-top: 86px; text-align: center; }
.article-hero h1 { margin: 28px 0; font-family: var(--font-display); font-size: clamp(3.4rem, 7vw, 7.4rem); font-weight: 500; letter-spacing: -.055em; line-height: .94; }
.article-hero-inner > p { max-width: 720px; margin: 0 auto 30px; color: rgba(255,255,255,.62); font-size: 1.04rem; }
.article-layout { display: grid; grid-template-columns: 250px 1fr; gap: clamp(55px, 8vw, 110px); align-items: start; padding-top: 90px; padding-bottom: 110px; }
.article-toc { position: sticky; top: 105px; display: grid; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; }
.article-toc > span { color: var(--red); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.article-toc ol { display: grid; gap: 10px; margin: 0; padding-left: 20px; color: var(--muted); font-size: .72rem; }
.article-toc a:hover { color: var(--red); }
.toc-shop { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--ink); font-size: .72rem; font-weight: 900; }
.article-body { max-width: 820px; }
.article-body > section { position: relative; padding: 0 0 72px; }
.article-section-number { position: absolute; top: 3px; left: -54px; color: var(--red); font-family: var(--font-display); font-size: 1.1rem; }
.article-body h2 { margin: 0 0 24px; color: var(--ink); font-size: clamp(2.15rem, 4vw, 3.7rem); line-height: 1.02; }
.article-body p { color: #584b44; font-size: 1rem; line-height: 1.88; }
.article-faq { padding-top: 52px !important; border-top: 1px solid var(--line); }
.article-faq > h2 { margin-top: 14px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .icon { transition: transform .2s ease; }
.faq-list details[open] summary .icon { transform: rotate(90deg); }
.faq-list details p { margin: -4px 0 20px; font-size: .88rem; }
.article-end-cta { padding: 42px; border-radius: 28px; color: var(--white); background: var(--red-dark); }
.article-end-cta > span { color: var(--gold); font-size: .69rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.article-end-cta h2 { margin: 10px 0 24px; color: var(--white); }
.topic-hero { min-height: 600px; }
.topic-hero-grid { display: grid; grid-template-columns: 1fr .65fr; gap: 80px; align-items: end; padding-top: 95px; padding-bottom: 100px; }
.topic-hero h1 { margin: 20px 0; font-family: var(--font-display); font-size: clamp(4rem, 8vw, 8rem); font-weight: 500; letter-spacing: -.06em; line-height: .9; }
.topic-hero p { max-width: 650px; color: rgba(255,255,255,.58); }
.topic-terms { display: flex; flex-wrap: wrap; gap: 8px; align-content: end; }
.topic-terms small { width: 100%; margin-bottom: 10px; color: var(--gold); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.topic-terms span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: rgba(255,255,255,.62); font-size: .68rem; }
.topic-products h2 { color: var(--ink); }
.topic-products h2 em { color: var(--red); }
.topic-reading { padding: 100px 0; }
.topic-reading .section-heading h2 { color: var(--white); }
.topic-reading-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.topic-reading-card { min-height: 260px; padding: 28px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.topic-reading-card small { color: var(--gold); font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.topic-reading-card h3 { margin: 52px 0 25px; font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; }
.topic-reading-card span { display: flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 900; }

/* About & errors */
.about-hero { min-height: 760px; padding: 180px 0 100px; }
.about-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: center; }
.about-hero h1 { margin: 25px 0; font-family: var(--font-display); font-size: clamp(4rem, 7vw, 7.5rem); font-weight: 500; letter-spacing: -.06em; line-height: .9; }
.about-hero p { max-width: 660px; color: rgba(255,255,255,.6); }
.about-hero-art { display: grid; grid-template-columns: 1fr 1fr; align-items: center; justify-items: center; padding: 50px 28px; border: 1px solid rgba(232,187,96,.28); border-radius: 180px 180px 20px 20px; background: radial-gradient(circle, rgba(184,46,34,.32), transparent 60%); }
.about-hero-art span { color: var(--gold); font-family: var(--font-display); font-size: clamp(4rem, 8vw, 8.5rem); line-height: 1; }
.about-hero-art span + span { color: var(--white); }
.about-hero-art small { grid-column: 1 / -1; margin-top: 15px; color: rgba(255,255,255,.4); font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.about-story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.about-story-image { overflow: hidden; border-radius: 180px 180px 28px 28px; box-shadow: var(--shadow); }
.about-story-image img { width: 100%; aspect-ratio: .83; object-fit: cover; }
.about-story-copy h2 { margin-bottom: 28px; color: var(--ink); }
.about-story-copy h2 em { color: var(--red); }
.about-story-copy p { color: var(--muted); line-height: 1.8; }
.about-story-copy .button { margin-top: 18px; }
.award-section { padding: 110px 0; }
.award-section .section-heading h2 { color: var(--white); }
.award-timeline { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
.award-timeline article { position: relative; min-height: 300px; padding: 30px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.award-timeline strong { color: var(--gold); font-family: var(--font-display); font-size: 2.8rem; font-weight: 500; }
.award-timeline span { position: absolute; top: 28px; right: 28px; color: rgba(255,255,255,.28); }
.award-timeline h3 { margin: 100px 0 10px; font-family: var(--font-display); font-size: 1.55rem; font-weight: 500; }
.award-timeline p { color: rgba(255,255,255,.44); font-size: .74rem; }
.about-values h2 { color: var(--ink); }
.about-values h2 em { color: var(--red); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-grid article { min-height: 260px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-grid .icon { width: 34px; height: 34px; color: var(--red); }
.value-grid h3 { margin: 70px 0 10px; font-family: var(--font-display); font-size: 1.65rem; }
.value-grid p { color: var(--muted); font-size: .8rem; }
.not-found { min-height: 760px; padding: 160px 0 100px; }
.not-found-inner { position: relative; }
.not-found-code { position: absolute; top: -130px; right: 0; color: rgba(255,255,255,.035); font-family: var(--font-display); font-size: 26rem; line-height: 1; }
.not-found h1 { position: relative; margin: 25px 0; font-family: var(--font-display); font-size: clamp(4rem, 8vw, 8rem); font-weight: 500; letter-spacing: -.06em; line-height: .9; }
.not-found p { max-width: 590px; color: rgba(255,255,255,.58); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); transition-delay: var(--delay, 0ms); }
.reveal-delay { transition-delay: 160ms; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 40px, 960px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-grid; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .hero h1 { font-size: clamp(3.5rem, 7vw, 5.5rem); }
  .hero-image-frame { height: 580px; }
  .hero-note { display: none; }
  .category-ribbon { grid-template-columns: repeat(3, 1fr); }
  .category-ribbon a:nth-child(3) { border-right: 0; }
  .category-ribbon a:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .story-grid { grid-template-columns: .35fr 1.25fr 1fr; gap: 42px; }
  .footer-grid { grid-template-columns: 1.4fr .7fr .9fr; }
  .footer-cta { grid-column: 1 / -1; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); }
  .variant-grid { grid-template-columns: repeat(3, 1fr); }
  .article-index-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .award-timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 700px); --header-height: 72px; }
  .section { padding: 82px 0; }
  .header-actions .button { display: none; }
  .hero { padding-top: 120px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero h1 { max-width: 650px; font-size: clamp(3.5rem, 11vw, 5.8rem); }
  .hero-visual { width: min(100%, 620px); justify-self: center; }
  .hero-image-frame { height: min(680px, 100vw); }
  .category-ribbon { margin-top: 50px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: .25fr 1fr; }
  .award-stack { grid-column: 1 / -1; }
  .ritual-grid { grid-template-columns: 1fr; }
  .travel-card { max-width: 560px; width: 100%; justify-self: center; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .journal-featured { grid-column: 1 / -1; }
  .journal-card:nth-child(2) { border-top: 1px solid var(--line); }
  .journal-card:nth-child(3) { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .page-hero { min-height: 520px; }
  .catalog-toolbar { align-items: flex-start; flex-direction: column; }
  .filter-chips { width: 100%; }
  .product-hero-grid, .product-content-grid, .product-video-grid { grid-template-columns: 1fr; }
  .product-hero-grid { padding-top: 36px; }
  .product-summary { padding-top: 20px; }
  .spec-panel { position: static; }
  .product-video-grid { gap: 45px; }
  .article-index-card { min-height: 340px; }
  .keyword-layout { grid-template-columns: 1fr; gap: 48px; }
  .article-layout { grid-template-columns: 1fr; padding-top: 64px; }
  .article-toc { position: static; }
  .article-section-number { position: static; display: block; margin-bottom: 8px; }
  .topic-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .topic-reading-grid { grid-template-columns: 1fr; }
  .about-hero-grid, .about-story-grid { grid-template-columns: 1fr; }
  .about-hero-art { max-width: 560px; width: 100%; justify-self: center; }
  .about-story-image { max-width: 560px; width: 100%; justify-self: center; }
  .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); --radius: 20px; }
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .app-surface { border-radius: 0; }
  .header-inner { gap: 10px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 1.03rem; }
  .header-search { display: none; }
  .hero { padding-top: 106px; }
  .hero::before { mask-image: linear-gradient(to bottom, transparent, #000); }
  .hero-copy { text-align: left; }
  .hero h1 { margin-top: 20px; font-size: clamp(3.35rem, 16vw, 5.2rem); line-height: .92; }
  .hero-lead { font-size: .98rem; line-height: 1.7; }
  .hero-actions { gap: 17px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { width: 100%; justify-content: center; }
  .hero-trust { gap: 7px; margin-top: 38px; }
  .hero-trust span { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .hero-trust .icon { grid-row: auto; width: 21px; margin-bottom: 6px; }
  .hero-trust b { font-size: .74rem; }
  .hero-trust small { font-size: .59rem; }
  .hero-image-frame { height: 118vw; max-height: 590px; border-radius: 120px 120px 0 0; }
  .hero-image-frame::before { border-radius: 106px 106px 0 0; }
  .hero-stamp { top: 30px; left: 30px; width: 75px; height: 75px; }
  .hero-caption { right: 24px; bottom: 24px; left: 24px; }
  .category-ribbon { display: flex; width: calc(100% + 14px); margin-top: 0; margin-right: -14px; overflow-x: auto; border: 0; background: var(--ink); scrollbar-width: none; }
  .category-ribbon::-webkit-scrollbar { display: none; }
  .category-ribbon a { min-width: 152px; min-height: 92px; border: 1px solid rgba(255,255,255,.1) !important; border-left: 0 !important; }
  .category-ribbon a:first-child { border-left: 1px solid rgba(255,255,255,.1) !important; }
  .section { padding: 72px 0; }
  .section-heading { align-items: start; margin-bottom: 32px; }
  .section-heading .text-link { display: none; }
  h2 { font-size: clamp(2.7rem, 13vw, 4.3rem); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 12px; }
  .product-media { border-radius: 18px; }
  .product-badge { top: 9px; left: 9px; padding: 6px 8px; font-size: .56rem; }
  .product-arrow { display: none; }
  .product-card-body { padding: 13px 2px 0; }
  .product-category { font-size: .58rem; letter-spacing: .08em; }
  .product-card h3 { margin-top: 5px; font-size: 1.02rem; }
  .product-card p { display: none; }
  .product-buy { margin-top: 6px; font-size: .66rem; }
  .section-center { margin-top: 38px; }
  .section-center .button { width: 100%; }
  .story-section { padding: 76px 0; }
  .story-grid { grid-template-columns: 1fr; gap: 42px; }
  .story-number { grid-template-columns: auto 1fr; align-items: end; }
  .story-number strong { grid-row: 1 / 3; margin-right: 14px; font-size: 4.5rem; writing-mode: initial; transform: none; }
  .story-copy h2 { font-size: clamp(3rem, 13.5vw, 4.6rem); }
  .story-copy .button { width: 100%; }
  .award-stack { grid-column: auto; }
  .award-stack > div { grid-template-columns: 42px 1fr 25px; }
  .ritual-grid { gap: 48px; }
  .travel-card { border-radius: 28px; }
  .travel-card-copy { right: 24px; bottom: 24px; left: 24px; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card, .journal-featured { min-height: 270px; grid-column: auto; border: 0; border-bottom: 1px solid var(--line); }
  .final-cta { padding: 86px 0; }
  .final-cta h2 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 24px; }
  .footer-cta, .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; margin-top: 48px; }
  .mobile-tabbar {
    position: fixed;
    z-index: 180;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 70px;
    grid-template-columns: repeat(5, 1fr);
    padding: 8px max(8px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.55);
    background: rgba(18,14,12,.96);
    box-shadow: 0 -10px 40px rgba(0,0,0,.28);
    backdrop-filter: blur(20px);
  }
  .mobile-tabbar a { position: relative; display: grid; place-items: center; align-content: center; gap: 3px; font-size: .58rem; font-weight: 700; }
  .mobile-tabbar a > .icon { width: 20px; height: 20px; }
  .mobile-tabbar a.is-active { color: var(--gold); }
  .mobile-tabbar a.is-active::before { content: ""; position: absolute; top: -8px; width: 28px; height: 2px; background: var(--gold); }
  .mobile-tabbar .tabbar-shop { color: var(--gold); }
  .shop-orb { display: grid; width: 48px; height: 48px; place-items: center; margin-top: -30px; border: 5px solid #120e0c; border-radius: 50%; color: var(--ink); background: var(--gold); box-shadow: 0 8px 26px rgba(0,0,0,.34); }
  .shop-orb .icon { width: 20px; }
  .toast { right: 14px; bottom: calc(84px + env(safe-area-inset-bottom)); left: 14px; max-width: none; text-align: center; }
  .breadcrumb { padding-top: 94px; }
  .page-hero { min-height: 500px; padding: 132px 0 70px; }
  .page-hero h1 { font-size: clamp(3.7rem, 18vw, 6rem); }
  .page-hero-inner > p { font-size: .9rem; }
  .catalog-search { min-height: 58px; grid-template-columns: 24px 1fr 36px; padding-left: 16px; }
  .catalog-main { padding-top: 25px; }
  .catalog-toolbar { top: 70px; margin: 0 -14px 30px; padding: 12px 14px; }
  .catalog-count { padding-left: 4px; }
  .catalog-shop-inner { align-items: stretch; flex-direction: column; }
  .catalog-shop-inner .button { width: 100%; }
  .product-hero { padding-bottom: 62px; }
  .product-hero-grid { width: 100%; padding-top: 25px; }
  .product-gallery { width: 100%; }
  .gallery-main { border-radius: 0; }
  .gallery-thumbs { padding-inline: 14px; }
  .product-summary { width: var(--shell); margin-inline: auto; padding-top: 26px; }
  .product-summary h1 { font-size: clamp(3.15rem, 15vw, 4.8rem); }
  .summary-facts { margin: 26px 0; }
  .purchase-assurance { font-size: .58rem; }
  .product-content-grid { gap: 50px; }
  .product-description h2 { margin-bottom: 35px; }
  .rich-copy p, .rich-copy li { font-size: .92rem; }
  .variant-section { padding: 72px 0; }
  .variant-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .variant-card { border-radius: 16px; }
  .variant-card > div { padding: 12px; }
  .variant-card h3 { font-size: 1rem; }
  .product-video-section { padding: 76px 0; }
  .article-index-grid { grid-template-columns: 1fr; }
  .article-index-card { min-height: 315px; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-card { min-height: 220px; }
  .keyword-layout { gap: 34px; }
  .keyword-cloud span:nth-child(n+25) { display: none; }
  .article-hero { min-height: 680px; }
  .article-hero-inner { margin-top: 60px; }
  .article-hero h1 { font-size: clamp(3.1rem, 14vw, 5rem); }
  .article-body > section { padding-bottom: 54px; }
  .article-end-cta { padding: 30px 24px; }
  .topic-hero-grid { padding-top: 60px; padding-bottom: 72px; }
  .topic-hero h1 { font-size: clamp(3.6rem, 17vw, 5.4rem); }
  .topic-reading-card { min-height: 230px; }
  .about-hero { min-height: auto; padding: 135px 0 76px; }
  .about-hero h1 { font-size: clamp(3.4rem, 16vw, 5.2rem); }
  .about-hero-art { border-radius: 110px 110px 18px 18px; }
  .about-story-image { border-radius: 110px 110px 22px 22px; }
  .award-timeline { grid-template-columns: 1fr; }
  .award-timeline article { min-height: 250px; }
  .award-timeline h3 { margin-top: 70px; }
  .not-found { min-height: 680px; padding-top: 140px; }
  .not-found-code { top: -50px; font-size: 12rem; }
  .not-found h1 { font-size: clamp(3.5rem, 16vw, 5.2rem); }
}

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

@media (forced-colors: active) {
  .button, .icon-button, .product-card, .journal-card { border: 1px solid ButtonText; }
}
