:root { color-scheme: dark; --header-h: 88px; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: #090909; color: #f5f2ec; }
img, video { max-width: 100%; height: auto; }
a { text-underline-offset: .25em; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: #f5f2ec; color: #090909; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }
.site-header { position: absolute; inset: 0 0 auto; z-index: 20; color: #fff; }
.site-header__inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.1rem clamp(1.25rem, 4vw, 4rem); }
.site-brand { color: inherit; text-decoration: none; font-size: .82rem; line-height: .78; letter-spacing: -.06em; font-weight: 900; }
.site-brand__logo { display: block; width: clamp(100px, 12vw, 150px); max-height: 64px; object-fit: contain; object-position: left center; }
.primary-nav, .primary-nav ul { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.5rem); margin: 0; padding: 0; list-style: none; }
.primary-nav a { color: inherit; text-decoration: none; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.primary-nav a:hover, .primary-nav .current-menu-item > a { opacity: .62; }
.primary-nav .menu-item-has-children { position: relative; }
.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: flex;
  min-width: 156px;
  padding: 13px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-7px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.primary-nav .sub-menu::before { position: absolute; right: 0; bottom: 100%; left: 0; height: 12px; content: ""; }
.primary-nav .sub-menu a { display: block; width: 100%; padding: 7px 0; color: inherit; white-space: nowrap; }
.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.cart-link span { display: inline-grid; place-items: center; min-width: 1.4rem; min-height: 1.4rem; margin-left: .25rem; border: 1px solid currentColor; border-radius: 50%; }
.menu-toggle { display: none; appearance: none; color: inherit; border: 1px solid rgba(255,255,255,.45); background: transparent; padding: .6rem .8rem; text-transform: uppercase; letter-spacing: .1em; }
.home { background: #fff; color: #444; }
.home .site-header { color: #333; }
.home .site-header__inner { justify-content: flex-end; }
.home .site-brand { display: none; }
.hero { position: relative; min-height: max(720px, 100svh); overflow: hidden; background: #111; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.16) 53%, rgba(0,0,0,.86) 100%); pointer-events: none; }
.hero__media { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__logo { position: absolute; top: 1.15rem; left: clamp(1.25rem, 4vw, 4rem); z-index: 3; width: clamp(120px, 12vw, 170px); max-height: 110px; object-fit: contain; object-position: left top; }
.hero__content { position: absolute; right: clamp(1.25rem, 6vw, 6rem); bottom: clamp(4.5rem, 7vh, 6rem); left: clamp(1.25rem, 6vw, 6rem); z-index: 3; text-align: left; }
.hero h1 { max-width: 1050px; margin: 0 0 1.4rem; color: #fff; font-size: clamp(2.2rem, 6.6vw, 6.8rem); line-height: .92; letter-spacing: -.055em; text-wrap: balance; text-transform: uppercase; }
.hero p { max-width: 760px; margin: 0; color: #fff; font-size: clamp(.72rem, 1.25vw, 1rem); font-weight: 700; letter-spacing: .14em; line-height: 1.5; }
.page-content > * { margin-block-start: 0; }
.content-shell { min-height: 70vh; width: min(1240px, calc(100% - 2.5rem)); margin-inline: auto; padding-block: calc(var(--header-h) + 5rem) 6rem; }
.page-heading { max-width: 1000px; margin-bottom: clamp(3rem, 7vw, 7rem); }
.page-heading p { color: #a8a8a8; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }
.page-heading h1 { margin: 0; font-size: clamp(3.2rem, 10vw, 9rem); text-transform: uppercase; }
.entry-content > * { margin-inline: auto; }
.entry-content > .alignwide { max-width: 1240px; }
.entry-content > .alignfull { max-width: none; width: 100vw; margin-left: calc(50% - 50vw); }
.site-footer { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 4vw, 4rem); border-top: 1px solid #333; color: #a8a8a8; font-size: .82rem; }
.site-footer strong { color: #f5f2ec; font-size: 1.2rem; letter-spacing: -.04em; }
.site-footer a { color: inherit; }
.woocommerce ul.products li.product .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button { border-radius: 0; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .hero__media { display: none; } }
@media (max-width: 760px) {
  :root { --header-h: 76px; }
  .menu-toggle { display: block; }
  .primary-nav { display: none; position: absolute; inset: var(--header-h) 0 auto; align-items: stretch; background: rgba(9,9,9,.98); padding: 2rem 1.25rem 2.5rem; }
  .primary-nav.is-open, .primary-nav ul { display: flex; flex-direction: column; align-items: flex-start; }
  .primary-nav a { font-size: 1rem; }
  .primary-nav .sub-menu {
    position: static;
    display: flex;
    min-width: 0;
    padding: .45rem 0 0 1rem;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .primary-nav .sub-menu::before { display: none; }
  .primary-nav .sub-menu a { padding: .3rem 0; font-size: .86rem; opacity: .78; }
  .home .site-header__inner { justify-content: space-between; padding-right: 1.25rem; }
  .home .site-brand { display: none; }
  .home .menu-toggle { color: #333; border-color: rgba(0,0,0,.25); }
  .home .primary-nav { color: #fff; }
  .hero { min-height: 100svh; }
  .hero__logo { top: 1rem; left: 1.25rem; width: clamp(108px, 32vw, 135px); max-height: 88px; }
  .hero__content { bottom: 4.5rem; }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 4.2rem); }
  .hero p { font-size: .72rem; }
  .site-footer { grid-template-columns: 1fr; }
}
