:root {
  --black: #090807;
  --ink: #16120f;
  --charcoal: #201b18;
  --deep: #2c170d;
  --cream: #f6efe3;
  --paper: #fffaf0;
  --yellow: #ffc21b;
  --orange: #ff6a1b;
  --red: #d71920;
  --teal: #053c35;
  --olive: #516832;
  --muted: #7a7067;
  --line: rgba(20, 16, 12, .12);
  --shadow: 0 24px 70px rgba(0, 0, 0, .22);
  --ease: cubic-bezier(.2, .75, .2, 1);
  --nav-height: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
.skip-link {
  position: fixed; left: 16px; top: 16px; z-index: 9999;
  padding: 10px 14px; color: #fff; background: #000;
  transform: translateY(-160%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.site-header { position: fixed; inset: 0 0 auto; z-index: 50; color: #fff; }
.header-strip {
  min-height: 30px; display: flex; justify-content: center; gap: clamp(10px, 3vw, 44px); align-items: center;
  padding: 6px 18px; background: linear-gradient(90deg, rgba(255,194,27,.92), rgba(255,106,27,.92));
  color: #120c08; font-size: 12px; font-weight: 950; letter-spacing: .04em; text-transform: uppercase;
}
.nav-bar {
  height: var(--nav-height); display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center;
  gap: 20px; padding: 0 clamp(18px, 3vw, 54px); background: linear-gradient(90deg, rgba(7,8,7,.96), rgba(43,22,10,.96), rgba(7,8,7,.96));
  border-bottom: 1px solid rgba(255, 255, 255, .12); box-shadow: 0 18px 48px rgba(0, 0, 0, .28); backdrop-filter: blur(18px);
  transition: background .25s ease, transform .35s var(--ease);
}
.nav-bar.is-condensed { background: rgba(7,8,7,.98); }
.nav-bar__left, .nav-bar__right { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); min-width: 0; }
.nav-bar__right { justify-content: flex-end; }
.nav-bar a, .menu-toggle, .icon-btn, .cart-btn { color: #fff; font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.nav-bar a { position: relative; opacity: .94; transition: opacity .2s ease, color .2s ease; }
.nav-bar a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -11px; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav-bar a:hover { opacity: 1; color: #fff2bd; }
.nav-bar a:hover::after { transform: scaleX(1); }
.brand { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 230px; text-align: center; }
.brand strong { font-family: Impact, Haettenschweiler, "Arial Black", sans-serif; font-size: clamp(24px, 2vw, 34px); line-height: .82; letter-spacing: .08em; transform: skew(-5deg); }
.brand small { margin-top: 8px; font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--yellow); }
.icon-btn, .cart-btn, .menu-toggle { border: 0; background: transparent; display: inline-flex; align-items: center; justify-content: center; }
.icon-btn svg, .cart-btn svg { width: 24px; height: 24px; fill: currentColor; }
.cart-btn { gap: 8px; position: relative; }
.cart-btn span { display: grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; color: #0b0907; background: var(--yellow); font-size: 11px; }
.menu-toggle { display: none; border: 1px solid rgba(255,255,255,.35); padding: 10px 12px; border-radius: 999px; }
.mobile-menu { display: none; background: rgba(7,8,7,.98); border-top: 1px solid rgba(255,255,255,.12); padding: 10px 22px 22px; }
.mobile-menu a { display: block; padding: 14px 0; color: #fff; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.1); }

.hero { min-height: 100vh; position: relative; display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--black); }
.hero__slides, .hero__slide, .hero__shade { position: absolute; inset: 0; }
.hero__slide { margin: 0; opacity: 0; transform: scale(1.04); transition: opacity 1s ease, transform 7s ease; background: #000; }
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.26) contrast(1.08); }
.hero__slide--product img { object-fit: cover; object-position: 72% center; filter: saturate(1.35) contrast(1.1) brightness(.88); }
.hero__shade { background: radial-gradient(circle at 78% 44%, rgba(255,194,27,.22), transparent 34%), linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.62) 35%, rgba(0,0,0,.18) 67%, rgba(0,0,0,.44) 100%); }
.hero__shade::before { content: ""; position: absolute; inset: auto 0 0; height: 38%; background: linear-gradient(0deg, rgba(9,8,7,.85), transparent); }
.hero__content { position: relative; z-index: 2; width: min(860px, calc(100% - 48px)); margin-left: clamp(24px, 8vw, 150px); padding-top: 100px; }
.kicker { margin: 0 0 14px; color: var(--yellow); font-size: 13px; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.hero h1 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Black", sans-serif; font-size: clamp(64px, 9vw, 148px); line-height: .84; letter-spacing: -.03em; text-transform: uppercase; text-shadow: 0 12px 40px rgba(0,0,0,.44); }
.hero__lead { max-width: 680px; margin: 24px 0 0; color: rgba(255,255,255,.92); font-size: clamp(17px, 1.55vw, 24px); line-height: 1.44; font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border: 2px solid transparent; font-size: 13px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; transform: translateZ(0); transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn--primary { color: #120c08; background: linear-gradient(135deg, var(--yellow), var(--orange)); box-shadow: 0 16px 38px rgba(255, 106, 27, .34); }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero__badges span { display: inline-flex; align-items: center; min-height: 34px; padding: 0 13px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #fff; background: rgba(0,0,0,.32); font-size: 12px; font-weight: 900; backdrop-filter: blur(14px); }
.hero__product { position: absolute; z-index: 3; right: clamp(20px, 6vw, 110px); bottom: clamp(28px, 8vw, 105px); width: clamp(180px, 23vw, 390px); aspect-ratio: 1; border-radius: 42px; overflow: hidden; box-shadow: 0 34px 100px rgba(0,0,0,.52); transform: rotate(-5deg); border: 3px solid rgba(255,194,27,.8); }
.hero__product img { width: 100%; height: 100%; object-fit: cover; background: #fff; }
.hero__dots { position: absolute; left: 50%; bottom: 24px; z-index: 4; display: flex; gap: 8px; transform: translateX(-50%); }
.hero__dots button { width: 10px; height: 10px; border: 0; border-radius: 50%; background: rgba(255,255,255,.5); }
.hero__dots button.is-active { width: 28px; border-radius: 999px; background: var(--yellow); }

.section-pad { padding: clamp(72px, 8vw, 130px) clamp(20px, 5vw, 86px); }
.section-head { max-width: 980px; margin: 0 auto 44px; text-align: center; }
.section-head--wide { max-width: 1080px; }
.section-head h2, .mosaic-head h2, .story-band h2, .feature-wall h2, .contact h2 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Black", sans-serif; font-size: clamp(36px, 5vw, 76px); line-height: .95; letter-spacing: -.03em; text-transform: uppercase; }
.section-head p:not(.kicker), .mosaic-head p:not(.kicker), .contact p, .feature-wall p, .story-band p { color: var(--muted); font-size: clamp(16px, 1.35vw, 20px); line-height: 1.65; }
.bestsellers { background: radial-gradient(circle at 30% 0%, rgba(255,194,27,.26), transparent 32%), var(--paper); }
.carousel-shell { position: relative; max-width: 1320px; margin: 0 auto; }
.product-carousel { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(270px, 1fr); grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; overflow: hidden; }
.product-card { position: relative; min-width: 0; background: #fff; border: 1px solid rgba(0,0,0,.08); box-shadow: 0 18px 44px rgba(29, 21, 13, .12); transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease; overflow: hidden; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 30px 72px rgba(29, 21, 13, .24); border-color: rgba(255,106,27,.46); }
.product-card__badge { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 8px 10px; color: #110d0a; background: var(--yellow); font-size: 10px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.product-card__image { aspect-ratio: 1.07; display: grid; place-items: center; background: linear-gradient(135deg, #fff, #f3eee6); overflow: hidden; }
.product-card__image img { width: 100%; height: 100%; object-fit: contain; transform: scale(.94); transition: transform .5s var(--ease); }
.product-card:hover .product-card__image img { transform: scale(1.02) rotate(-1deg); }
.product-card__body { padding: 20px 20px 22px; }
.product-card__category { margin: 0 0 8px; color: var(--orange); font-size: 11px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { margin: 0; font-size: 20px; line-height: 1.2; }
.product-card__rating { margin: 10px 0 0; color: #f2a400; font-weight: 900; font-size: 13px; }
.product-card__price { margin: 12px 0 0; font-size: 20px; font-weight: 950; }
.swatches { display: flex; gap: 8px; margin-top: 14px; }
.swatches i { width: 15px; height: 15px; border-radius: 50%; border: 2px solid rgba(0,0,0,.12); box-shadow: inset 0 0 0 1px rgba(255,255,255,.7); }
.product-card__actions { display: flex; gap: 10px; margin-top: 18px; }
.product-card__actions button, .product-card__actions a { flex: 1; min-height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 0; background: var(--ink); color: #fff; font-size: 11px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.product-card__actions a { background: var(--yellow); color: #120c08; }
.carousel-arrow { position: absolute; top: 42%; z-index: 5; width: 44px; height: 44px; border: 0; border-radius: 50%; background: #fff; box-shadow: 0 16px 30px rgba(0,0,0,.14); font-size: 32px; line-height: 1; }
.carousel-arrow--left { left: -22px; }
.carousel-arrow--right { right: -22px; }

.collection-mosaic { padding: clamp(64px, 7vw, 110px) 0 0; background: #0d0b09; color: #fff; }
.mosaic-head { width: min(1180px, calc(100% - 40px)); margin: 0 auto 34px; text-align: center; }
.mosaic-grid { display: grid; grid-template-columns: repeat(6, 1fr); min-height: 470px; }
.mosaic-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 360px; padding: 28px; overflow: hidden; background: #111; }
.mosaic-card--wide { grid-column: span 2; }
.mosaic-card::before { content: ""; position: absolute; inset: 0; background-image: var(--bg); background-size: cover; background-position: center; transform: scale(1.05); filter: saturate(1.3) contrast(1.05); transition: transform .6s var(--ease), filter .6s ease; }
.mosaic-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.78), rgba(0,0,0,.10) 60%); }
.mosaic-card:hover::before { transform: scale(1.15); filter: saturate(1.45) contrast(1.1); }
.mosaic-card span, .mosaic-card em { position: relative; z-index: 1; }
.mosaic-card span { font-family: Impact, Haettenschweiler, "Arial Black", sans-serif; font-size: clamp(28px, 2.4vw, 46px); line-height: .92; text-transform: uppercase; }
.mosaic-card em { width: max-content; margin-top: 14px; padding: 9px 12px; border: 2px solid rgba(255,255,255,.78); font-style: normal; font-size: 11px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }

.story-band { display: grid; grid-template-columns: 1fr minmax(360px, .95fr) 1fr; align-items: stretch; background: var(--paper); }
.story-band__image { min-height: 520px; overflow: hidden; background: #111; }
.story-band__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.story-band__image:hover img { transform: scale(1.08); }
.story-band__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(44px, 6vw, 86px); background: linear-gradient(135deg, #fffaf0, #f2e6d3); }
.story-band__copy p { color: #5c5148; }

.product-catalog { background: radial-gradient(circle at 78% 0%, rgba(255,106,27,.18), transparent 30%), #fff; }
.catalog-toolbar { max-width: 1220px; margin: 0 auto 34px; display: flex; flex-wrap: wrap; align-items: end; gap: 18px; justify-content: space-between; }
.search-box { display: grid; gap: 8px; min-width: min(420px, 100%); font-weight: 900; letter-spacing: .04em; text-transform: uppercase; font-size: 12px; }
.search-box input { min-height: 54px; border: 2px solid var(--ink); padding: 0 16px; background: var(--paper); font-size: 16px; font-weight: 700; text-transform: none; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-pills button { min-height: 44px; padding: 0 16px; border: 2px solid rgba(0,0,0,.18); background: #fff; color: var(--ink); font-weight: 950; letter-spacing: .06em; text-transform: uppercase; }
.filter-pills button.is-active, .filter-pills button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.catalog-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.catalog-grid .product-card { min-height: 100%; }
.catalog-empty { grid-column: 1 / -1; padding: 54px; text-align: center; background: var(--cream); font-weight: 900; }

.feature-wall { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; padding: clamp(70px, 8vw, 130px) clamp(20px, 6vw, 95px); color: #fff; background: radial-gradient(circle at 10% 10%, rgba(255,194,27,.18), transparent 30%), linear-gradient(135deg, #080706, #2b160b 58%, #070605); }
.feature-wall__copy { max-width: 760px; }
.feature-wall__copy p, .feature-wall li { color: rgba(255,255,255,.78); }
.feature-wall ul { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 18px; }
.feature-wall li { position: relative; padding-left: 32px; line-height: 1.65; }
.feature-wall li::before { content: ""; position: absolute; left: 0; top: .52em; width: 14px; height: 14px; background: var(--yellow); transform: rotate(45deg); }
.feature-wall__tiles { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.feature-wall__tiles article { min-height: 210px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(12px); transition: transform .3s var(--ease), background .3s ease; }
.feature-wall__tiles article:hover { transform: translateY(-8px); background: rgba(255,194,27,.14); }
.feature-wall__tiles span { color: var(--yellow); font-weight: 950; font-size: 14px; }
.feature-wall__tiles strong { font-family: Impact, Haettenschweiler, "Arial Black", sans-serif; font-size: 36px; text-transform: uppercase; }
.feature-wall__tiles small { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.5; }

.contact { padding: clamp(70px, 8vw, 130px) 20px; background: linear-gradient(135deg, var(--yellow), var(--orange)); color: #120c08; }
.contact .kicker { color: #120c08; }
.contact__inner { max-width: 1120px; margin: 0 auto; text-align: center; }
.contact p { max-width: 820px; margin: 20px auto 0; color: rgba(18,12,8,.75); font-weight: 700; }
.contact__cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 40px; }
.contact__cards a { min-height: 122px; display: flex; flex-direction: column; justify-content: center; padding: 20px; background: rgba(255,255,255,.58); border: 2px solid rgba(18,12,8,.14); box-shadow: 0 18px 45px rgba(100,44,0,.18); transition: transform .3s var(--ease), background .3s ease; }
.contact__cards a:hover { transform: translateY(-8px); background: #fff; }
.contact__cards strong { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.contact__cards span { margin-top: 8px; font-size: clamp(18px, 2vw, 28px); font-weight: 950; }
.site-footer { min-height: 100px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding: 28px clamp(20px, 5vw, 80px); background: var(--black); color: #fff; }
.site-footer div { display: grid; gap: 6px; }
.site-footer strong { font-family: Impact, Haettenschweiler, "Arial Black", sans-serif; font-size: 28px; letter-spacing: .06em; }
.site-footer span { color: rgba(255,255,255,.68); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer a { font-weight: 900; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.82); }
.site-footer a:hover { color: var(--yellow); }

.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 22px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(10px); }
.modal__dialog { position: relative; z-index: 1; width: min(1040px, 100%); max-height: calc(100vh - 44px); display: grid; grid-template-columns: .95fr 1.05fr; overflow: auto; background: #fff; box-shadow: 0 40px 130px rgba(0,0,0,.5); }
.modal__close { position: absolute; top: 14px; right: 14px; z-index: 3; width: 42px; height: 42px; border: 0; background: var(--ink); color: #fff; font-size: 32px; line-height: 1; }
.modal__image { min-height: 520px; display: grid; place-items: center; background: #f5f0e7; }
.modal__image img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.modal__content { padding: clamp(34px, 5vw, 70px); }
.modal__content h2 { margin: 0; font-size: clamp(34px, 4vw, 62px); line-height: .96; font-family: Impact, Haettenschweiler, "Arial Black", sans-serif; text-transform: uppercase; }
.modal__content p { color: var(--muted); font-size: 17px; line-height: 1.65; }
.modal__meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.modal__meta span { padding: 8px 10px; color: #120c08; background: var(--yellow); font-size: 12px; font-weight: 950; text-transform: uppercase; }
.modal__content ul { margin: 18px 0 28px; padding-left: 20px; color: #55483d; line-height: 1.65; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transition: opacity .7s ease, transform .9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translate3d(0,0,0); }
.js .reveal-up { transform: translate3d(0, 44px, 0); }
.js .reveal-left { transform: translate3d(-48px, 0, 0); }
.js .reveal-right { transform: translate3d(48px, 0, 0); }

@media (max-width: 1180px) {
  .nav-bar__left, .nav-bar__right { display: none; }
  .nav-bar { grid-template-columns: 1fr auto 1fr; }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .mobile-menu.is-open { display: block; }
  .product-carousel { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-columns: minmax(280px, 1fr); }
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mosaic-grid { grid-template-columns: repeat(3, 1fr); }
  .story-band { grid-template-columns: 1fr; }
  .story-band__image { min-height: 400px; }
  .feature-wall { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .header-strip { display: none; }
  .nav-bar { height: 64px; padding: 0 16px; }
  .brand { min-width: 170px; }
  .brand strong { font-size: 22px; }
  .brand small { font-size: 8px; }
  .hero { min-height: 92vh; }
  .hero__content { width: calc(100% - 32px); margin: 0 auto; padding-top: 84px; }
  .hero__lead { font-size: 16px; }
  .hero__actions { gap: 10px; }
  .btn { width: 100%; }
  .hero__product { display: none; }
  .hero__badges { display: none; }
  .product-carousel, .catalog-grid { grid-template-columns: 1fr; }
  .carousel-arrow { display: none; }
  .mosaic-grid { grid-template-columns: 1fr; }
  .mosaic-card--wide { grid-column: auto; }
  .mosaic-card { min-height: 300px; }
  .catalog-toolbar { align-items: stretch; }
  .search-box { min-width: 100%; }
  .filter-pills button { flex: 1 1 auto; }
  .feature-wall__tiles { grid-template-columns: 1fr; }
  .contact__cards { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .modal__dialog { grid-template-columns: 1fr; }
  .modal__image { min-height: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
