:root {
  --black: #000000;
  --deep: #212020;
  --muted: #90878E;
  --soft: #C6C2C3;
  --bg: #ECE8E5;
  --line: rgba(144, 135, 142, 0.28);
  --title-font: "Bebas Neue", "Helvetica Neue", Arial, sans-serif;
  --body-font: "Helvetica Neue", "Avenir Next", "Segoe UI", sans-serif;
  --max: 1320px;
}

/* Bootstrap bridge: keeps framework defaults aligned with site branding. */
:root {
  --bs-body-bg: var(--bg);
  --bs-body-color: var(--deep);
  --bs-border-color: var(--line);
  --bs-emphasis-color: var(--black);
  --bs-secondary-color: var(--muted);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; }
body {
  font-family: var(--body-font);
  color: var(--deep);
  background: var(--bg);
  opacity: 0;
  transition: opacity 0.45s ease;
}
body.page-ready { opacity: 1; }
body.nav-open,
body.cart-open {
  overflow: hidden;
}

body.has-scroll-reveal .reveal-on-scroll {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
  transition:
    opacity 0.62s ease,
    transform 0.62s ease,
    filter 0.62s ease;
  will-change: opacity, transform, filter;
}

body.has-scroll-reveal .reveal-on-scroll.reveal-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.announce {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  background: var(--black);
  color: var(--bg);
}

.announce-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 38px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.announce-label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 38px;
  left: 0;
  width: 100%;
  z-index: 88;
  transition: background 0.18s ease, color 0.18s ease;
  color: var(--bg);
}

.site-header:hover,
.site-header:focus-within {
  background: rgba(255, 255, 255, 0.95);
  color: var(--deep);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 78px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: var(--deep);
  display: inline-grid;
  align-items: center;
  justify-items: center;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.menu-lines {
  width: 24px;
  display: grid;
  gap: 5px;
}

.menu-lines span {
  height: 1.5px;
  display: block;
  background: currentColor;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.header-nav a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.header-logo {
  justify-self: center;
  width: 142px;
  height: 40px;
  position: relative;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.header-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.18s ease;
}

.logo-light { opacity: 0; }
.logo-dark { opacity: 1; }

body[data-page="presets"] .logo-light,
body[data-page="luts"] .logo-light {
  opacity: 0;
}

body[data-page="presets"] .logo-dark,
body[data-page="luts"] .logo-dark {
  opacity: 1;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--deep);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.icon-action,
.icon-link {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

body.nav-icons-hidden .top-actions,
body.nav-icons-hidden .menu-toggle,
body.nav-icons-hidden .header-nav,
body.nav-icons-hidden .header-logo {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

body.nav-icons-hidden .site-header:hover .top-actions,
body.nav-icons-hidden .site-header:focus-within .top-actions,
body.nav-icons-hidden .site-header:hover .menu-toggle,
body.nav-icons-hidden .site-header:focus-within .menu-toggle,
body.nav-icons-hidden .site-header:hover .header-nav,
body.nav-icons-hidden .site-header:focus-within .header-nav,
body.nav-icons-hidden .site-header:hover .header-logo,
body.nav-icons-hidden .site-header:focus-within .header-logo {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.icon-action svg,
.icon-link svg {
  width: 18px;
  height: 18px;
}

.header-nav a:hover,
.header-nav a:focus-visible,
.header-logo:hover,
.header-logo:focus-visible,
.icon-action:hover,
.icon-action:focus-visible,
.icon-link:hover,
.icon-link:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-2px);
}

.search-wrap {
  position: relative;
}

.search-popover {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  width: min(420px, 92vw);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  color: var(--deep);
}

.search-popover.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.quick-search-input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  min-height: 42px;
  padding: 8px 10px;
}

.quick-search-results {
  max-height: 44vh;
  overflow-y: auto;
  margin-top: 8px;
}

.quick-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.quick-item-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.quick-item-meta {
  margin: 4px 0 0;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-action {
  position: relative;
}

.cart-count {
  position: absolute;
  right: -5px;
  top: -5px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  font-size: 9px;
  line-height: 16px;
  text-align: center;
}

.cart-count:empty {
  display: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: min(360px, 92vw);
  height: 100vh;
  z-index: 99;
  background: #ffffff;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  transform: translateX(-100%);
  transition: transform 0.24s ease;
  padding: 28px 22px;
  overflow-y: auto;
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open .sidebar {
  transform: translateX(0);
}

.sidebar-close {
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  margin: 0 0 12px;
  padding: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.brand .logo {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.brand .logo img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.brand span:last-child {
  font-family: var(--title-font);
  font-size: 31px;
  line-height: 1;
  letter-spacing: 0.03em;
}

.sidebar-nav {
  display: grid;
  gap: 12px;
}

.sidebar-nav a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.sidebar-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.sidebar-meta a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a:focus-visible,
.sidebar-meta a:hover,
.sidebar-meta a:focus-visible {
  transform: translateY(-2px);
}

.home-section {
  min-height: 84vh;
  display: grid;
  align-items: center;
  position: relative;
  padding: 152px 22px 72px;
}

.home-section > .inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-about {
  color: var(--deep);
  background: #d2d2d2;
  background-image:
    linear-gradient(rgba(236, 232, 229, 0.18), rgba(236, 232, 229, 0.18)),
    url("../A.Davis Productions_files/Photoleap+22(1).png");
  background-size: cover;
  background-position: center bottom;
  padding-bottom: 0;
}

.hero-about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5vw;
  align-items: start;
}

.hero-title,
.block-title,
.page-title,
.product-title,
.cart-head h2,
.quick-item-title {
  font-family: var(--title-font);
  font-weight: 400;
}

.hero-title {
  margin: 0;
  font-size: clamp(52px, 8.8vw, 150px);
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-transform: lowercase;
}

.hero-copy {
  margin: 18px 0 0;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.76;
  letter-spacing: 0.005em;
  color: rgba(33, 32, 32, 0.9);
  max-width: 46ch;
  text-wrap: pretty;
}

.hero-copy br {
  display: block;
  content: "";
  margin-top: 0.55em;
}

.hero-copy-end {
  display: inline-block;
  font-family: var(--title-font);
  font-size: 1.18em;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: lowercase;
}

.wave-divider {
  display: none;
}

.hero-youtube {
  color: var(--bg);
  background-image:
    linear-gradient(rgba(33, 32, 32, 0.58), rgba(33, 32, 32, 0.58)),
    url("../A.Davis Productions_files/DSC09301(1).jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  margin-top: -230px;
  padding-top: calc(152px + 230px);
  clip-path: polygon(
    0 20%,
    8% 19.95%,
    16% 19.8%,
    24% 19.5%,
    32% 19.05%,
    40% 18.35%,
    48% 17.35%,
    56% 16%,
    64% 14.2%,
    72% 11.9%,
    80% 9.05%,
    87% 6.2%,
    93% 3.6%,
    97% 1.65%,
    100% 0,
    100% 100%,
    0 100%
  );
}

.hero-youtube .hero-title {
  text-transform: lowercase;
}

.hero-sub {
  margin: 10px auto 24px;
  max-width: 58ch;
  font-size: clamp(14px, 1.5vw, 21px);
  line-height: 1.5;
}

.youtube-badge {
  width: min(240px, 45vw);
  display: block;
  margin: 0 auto;
}

.home-section.shop {
  min-height: 72vh;
  background: var(--bg);
  color: var(--deep);
}

.shop-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.shop-panel {
  display: grid;
  grid-template-rows: auto minmax(280px, 1fr) auto;
  align-content: stretch;
  gap: 22px;
  padding: 0 clamp(12px, 2.5vw, 34px);
}

.shop-panel + .shop-panel {
  border-left: 1px solid var(--line);
}

.shop-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}

.block-title {
  margin: 0;
  text-align: center;
  font-size: clamp(54px, 8vw, 130px);
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-transform: lowercase;
}

.shop-image {
  max-width: min(100%, 880px);
  max-height: 340px;
  width: auto;
  height: auto;
  margin: 0 auto;
  display: block;
}

.button-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.link-cta,
.shop-button {
  border: 1px solid var(--deep);
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: var(--deep);
  color: #fff;
  cursor: pointer;
}

.link-cta.dim,
.shop-button.alt {
  background: transparent;
  color: var(--deep);
}

.home-section.categories {
  min-height: 54vh;
  padding-top: 86px;
  padding-bottom: 96px;
}

.category-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.category-card {
  border: 1px solid var(--line);
  background: #f8f7f6;
  padding: 26px;
  min-height: 200px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(33, 32, 32, 0.45);
}

.card-kicker {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.card-title {
  margin: 6px 0 0;
  font-family: var(--title-font);
  font-size: clamp(34px, 4.8vw, 72px);
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.card-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4a4749;
}

.follow-strip {
  background: var(--deep);
  color: var(--bg);
  padding: 70px 22px;
}

.follow-strip.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
}

.follow-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.follow-title {
  margin: 0 0 16px;
  font-family: var(--title-font);
  font-size: clamp(42px, 7vw, 108px);
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-transform: lowercase;
}

.social-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.social-link {
  display: inline-flex;
  width: 30px;
  height: 30px;
  color: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.social-link svg {
  width: 100%;
  height: 100%;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
}

.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 170px 22px 90px;
}

.shell.has-footer {
  padding-bottom: 0;
}

.page-kicker {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.page-title {
  margin: 6px 0 0;
  font-size: clamp(52px, 7vw, 118px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.page-description {
  margin: 10px 0 0;
  max-width: 70ch;
  line-height: 1.6;
}

.controls {
  margin-top: 28px;
}

.search-input {
  width: min(520px, 100%);
  min-height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
  padding: 8px 12px;
}

.product-list {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.product-row {
  border: 1px solid var(--line);
  background: #f8f7f6;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
}

.product-kicker {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-title {
  margin: 6px 0 0;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.product-description {
  margin: 10px 0 0;
  line-height: 1.55;
}

.product-meta {
  margin: 12px 0 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.product-side {
  display: grid;
  justify-items: end;
  align-content: space-between;
  gap: 10px;
}

.product-price {
  margin: 0;
  font-family: var(--title-font);
  font-size: 42px;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.empty-state {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 96;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: min(430px, 96vw);
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  z-index: 97;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

body.cart-open .cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-head,
.cart-foot {
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-foot {
  border-bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  gap: 10px;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-head h2 {
  margin: 0;
  font-size: 40px;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.cart-close {
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.cart-body {
  overflow-y: auto;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.cart-item {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 12px;
}

.cart-item-name {
  margin: 0;
  font-family: var(--title-font);
  font-size: 28px;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.cart-item-meta {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.cart-item-actions {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.qty-controls {
  display: inline-flex;
  border: 1px solid rgba(0, 0, 0, 0.14);
  align-items: center;
}

.qty-controls button {
  border: 0;
  background: transparent;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

.qty-controls span {
  min-width: 24px;
  text-align: center;
  font-size: 12px;
}

.cart-remove,
.cart-clear {
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  min-height: 34px;
  padding: 0 12px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.cart-total {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}

.cart-checkout {
  border: 1px solid var(--deep);
  background: var(--deep);
  color: #fff;
  min-height: 42px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  cursor: pointer;
}

.product-page-shell {
  max-width: min(1460px, 100%);
}

.product-breadcrumb {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-breadcrumb span {
  opacity: 0.65;
}

.pdp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 30px;
  align-items: start;
}

.pdp-gallery {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
}

.pdp-thumbs {
  display: grid;
  gap: 8px;
}

.pdp-thumb {
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  padding: 0;
  height: 62px;
  cursor: pointer;
  overflow: hidden;
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-thumb.is-active {
  border-color: var(--deep);
}

.pdp-stage {
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

.pdp-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.pdp-details {
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  padding: 22px;
}

.pdp-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(44px, 5.1vw, 88px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.pdp-price {
  margin: 12px 0 0;
  font-family: var(--title-font);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.pdp-copy {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #3e3a3d;
}

.pdp-list {
  margin: 18px 0 0;
  padding-left: 16px;
  display: grid;
  gap: 6px;
  font-size: 14px;
  line-height: 1.55;
}

.pdp-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pdp-divider {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.pdp-extra {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.pdp-reviews {
  margin-top: 34px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 22px;
}

.pdp-reviews h2 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.review-placeholder {
  margin-top: 16px;
  border: 1px dashed rgba(0, 0, 0, 0.24);
  padding: 16px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .hero-about-grid,
  .shop-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .shop-duo-grid {
    grid-template-columns: 1fr;
  }

  .shop-panel {
    grid-template-rows: auto auto auto;
    padding-left: 0;
    padding-right: 0;
  }

  .shop-panel + .shop-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    margin-top: 8px;
    padding-top: 36px;
  }

  .hero-title,
  .block-title,
  .follow-title,
  .page-title {
    text-align: center;
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-about {
    padding-bottom: 42px;
  }

  .hero-youtube {
    margin-top: -120px;
    padding-top: calc(152px + 120px);
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .pdp-layout {
    grid-template-columns: 1fr;
  }

  .pdp-gallery {
    grid-template-columns: 1fr;
  }

  .pdp-thumbs {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .pdp-thumb {
    height: 52px;
  }

  .pdp-stage,
  .pdp-stage img {
    min-height: 0;
  }

  .product-side {
    justify-items: start;
  }
}

@media (max-width: 820px) {
  .site-header { top: 38px; }
  .header-inner {
    min-height: 64px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .header-nav {
    display: none;
  }

  .header-logo {
    width: 114px;
    height: 32px;
  }

  .home-section {
    padding-top: 126px;
  }

  .hero-about {
    padding-bottom: 28px;
  }

  .hero-youtube {
    margin-top: -72px;
    padding-top: calc(126px + 72px);
    clip-path: polygon(
      0 10%,
      20% 9.9%,
      40% 9.4%,
      60% 8.2%,
      78% 6.2%,
      90% 3.9%,
      97% 1.9%,
      100% 0,
      100% 100%,
      0 100%
    );
  }

  .shell {
    padding-top: 136px;
  }

  .follow-strip,
  .follow-strip.full-bleed {
    display: block;
    visibility: visible;
    opacity: 1;
    padding: 46px 18px calc(46px + env(safe-area-inset-bottom, 0px));
  }

  .follow-title {
    font-size: clamp(36px, 12vw, 64px);
    margin-bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.has-scroll-reveal .reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
