/* HeliCustom Interiors — Preview Styles */

:root {
  --black: #090909;
  --charcoal: #161616;
  --white: #ffffff;
  --off-white: #f7f6f3;
  --sand: #d7b98e;
  --gray-light: #eaeaea;
  --gray-mid: #8d8d8d;
  --font: "Manrope", system-ui, sans-serif;
  --header-h: 80px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1200px, calc(100% - 3rem));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-body {
  color: var(--gray-mid);
  max-width: 36rem;
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--sand);
  color: var(--black);
}

.btn-primary:hover {
  background: #e0c8a3;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: #222;
}

.btn-full {
  width: 100%;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--gray-light);
}

.btn-ghost-dark:hover {
  border-color: var(--black);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(9, 9, 9, 0.96);
  backdrop-filter: blur(10px);
}

.site-header.is-over-hero:not(.is-scrolled) {
  background: linear-gradient(to bottom, rgba(9, 9, 9, 0.65), transparent);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: min(1320px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: var(--white);
}

.logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.nav-main {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
}

.nav-main > li {
  position: relative;
}

.nav-main a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.nav-main a:hover,
.nav-main a:focus-visible {
  color: var(--sand);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  translate: -50% 0;
  min-width: 200px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.dropdown a {
  display: block;
  padding: 0.65rem 1.25rem;
  letter-spacing: 0.1em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: var(--radius);
  transition: color 0.2s;
}

.icon-btn:hover {
  color: var(--sand);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: var(--sand);
  color: var(--black);
  font-size: 0.55rem;
  font-weight: 700;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.cart-wrap {
  position: relative;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  margin: 4px auto;
  transition: transform 0.25s, opacity 0.25s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 68vh;
  min-height: 68dvh;
  max-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(215, 185, 142, 0.14), transparent 50%),
    linear-gradient(135deg, #1a1612 0%, #0d0c0b 45%, #090909 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media .hero-img,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.03);
  animation: heroZoom 16s var(--ease) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.55) 0%, rgba(9, 9, 9, 0.45) 40%, rgba(9, 9, 9, 0.72) 100%),
    linear-gradient(90deg, rgba(9, 9, 9, 0.35) 0%, rgba(9, 9, 9, 0.2) 50%, rgba(9, 9, 9, 0.35) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: calc(var(--header-h) + 0.5rem) 1.25rem 2.5rem;
  text-align: center;
  animation: fadeUp 0.9s var(--ease) 0.15s both;
}

.hero-eyebrow {
  color: var(--sand);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: none;
  margin-inline: auto;
}

.hero p {
  margin-top: 1.35rem;
  max-width: 36rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  justify-content: center;
}

.hero-commerce {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  justify-content: center;
}

.hero-commerce span {
  position: relative;
  padding-left: 0.9rem;
}

.hero-commerce span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sand);
}

/* Shop strip */
.shop-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.shop-strip-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s;
}

.shop-strip-item:last-child {
  border-right: none;
}

.shop-strip-item:hover {
  background: rgba(215, 185, 142, 0.08);
}

.shop-strip-item strong {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.shop-strip-item span {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.shop-strip-accent strong {
  color: var(--sand);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust bar */
.trust-bar {
  background: var(--black);
  color: var(--white);
  padding: 2.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
  padding: 0.5rem;
  color: inherit;
  text-decoration: none;
  display: block;
  transition: color 0.25s var(--ease);
}

a.trust-item:hover h3 {
  color: var(--sand);
}

.trust-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 1rem;
  color: var(--sand);
}

.trust-item h3 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.45;
}

/* Aircraft */
.aircraft {
  padding: 6rem 0;
  background: var(--off-white);
}

.section-intro {
  margin-bottom: 2.75rem;
  max-width: 36rem;
}

.aircraft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.aircraft-card {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s var(--ease);
}

.aircraft-card:hover {
  transform: translateY(-4px);
}

.aircraft-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.7s var(--ease), opacity 0.4s;
}

.aircraft-card:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

.aircraft-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 9, 0.92) 0%, rgba(9, 9, 9, 0.2) 55%, transparent 100%);
}

.aircraft-card-body {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
}

.aircraft-card h3 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.aircraft-card p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0.4rem 0 1rem;
  font-size: 0.95rem;
}

.aircraft-card .link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
}

/* Transformation */
.transformation {
  background: var(--black);
  color: var(--white);
  padding: 6rem 0;
}

.transformation .section-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: end;
  max-width: none;
  margin-bottom: 3rem;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.ba-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--charcoal);
}

.ba-images figure {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ba-images figure.ba-zoomable {
  cursor: zoom-in;
}

.ba-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.ba-images figure.ba-zoomable:hover img {
  transform: scale(1.04);
}

.ba-zoom-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.55);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  z-index: 2;
}

.ba-zoom-badge svg {
  width: 15px;
  height: 15px;
}

.ba-images figure.ba-zoomable:hover .ba-zoom-badge,
.ba-images figure.ba-zoomable:focus-visible .ba-zoom-badge {
  opacity: 1;
}

.ba-label {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(9, 9, 9, 0.75);
  padding: 0.35rem 0.55rem;
  z-index: 2;
}

.ba-meta {
  padding: 1.15rem 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.ba-meta span:last-child {
  color: var(--gray-mid);
}

/* Why */
.why {
  padding: 6rem 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--gray-light);
  padding-top: 2.5rem;
}

.why-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.why-item p {
  color: var(--gray-mid);
  font-size: 0.95rem;
}

.why-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--sand);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

/* Materials */
.materials {
  background: var(--black);
  color: var(--white);
  padding: 0;
}

.materials-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 620px;
}

.materials-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.materials-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.materials-content {
  padding: clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--charcoal);
}

.materials-list {
  margin: 2rem 0;
  display: grid;
  gap: 1.15rem;
}

.materials-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.15rem;
}

.materials-list strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.materials-list span {
  color: var(--gray-mid);
  font-size: 0.9rem;
}

/* Products */
.products {
  padding: 6rem 0;
  background: var(--off-white);
}

.products-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.product-tabs {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  align-items: center;
}

.product-tabs button {
  padding: 0.55rem 0.95rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  border: 1px solid var(--gray-light);
  background: var(--white);
  border-radius: var(--radius);
  line-height: 1.2;
  flex: 0 0 auto;
}

.product-tabs button.is-active,
.product-tabs button:hover {
  color: var(--white);
  border-color: var(--black);
  background: var(--black);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
}

.product-card-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1612;
  position: relative;
  display: block;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  background: var(--sand);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-card-body {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.product-card h3 {
  font-size: 1rem;
  line-height: 1.3;
}

.product-card .product-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.product-card .product-name a:hover {
  color: var(--sand);
}

.product-fit {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.product-price {
  font-weight: 700;
  margin-top: 0.35rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
}

.star-row {
  display: inline-flex;
  gap: 0.12rem;
  color: var(--sand);
}

.star-row i {
  width: 11px;
  height: 11px;
  display: block;
  background: currentColor;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.rating-count {
  color: var(--gray-mid);
  letter-spacing: 0;
  font-size: 0.78rem;
}

.product-card .product-name {
  font-size: 1rem;
  line-height: 1.3;
}

.product-brand {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.product-card .btn {
  margin-top: auto;
  padding-top: 0.85rem;
}

.product-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.85rem;
}

.product-actions .link-btn {
  text-align: center;
  align-self: center;
}

.product-card .link-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  align-self: start;
  padding-bottom: 0.15rem;
}

/* Cart drawer */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-drawer-backdrop[hidden] {
  display: none !important;
}

.cart-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: block !important;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  max-height: 100dvh;
  background: var(--white);
  color: var(--black);
  z-index: 410;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s var(--ease), visibility 0.35s;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.25);
}

.cart-drawer[hidden] {
  display: none !important;
}

.cart-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  display: flex !important;
}

.cart-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--gray-light);
}

.cart-drawer-head h2 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-drawer-head .icon-btn {
  color: var(--black);
}

.cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 1.25rem;
}

.cart-empty {
  color: var(--gray-mid);
  text-align: center;
  padding: 2rem 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-light);
  align-items: start;
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: #1a1612;
}

.cart-line h3 {
  font-size: 0.9rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.cart-line p {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.cart-line-remove {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 0.4rem;
}

.cart-line-remove:hover {
  color: var(--black);
}

.cart-line-price {
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cart-drawer-foot {
  padding: 1.25rem;
  border-top: 1px solid var(--gray-light);
  display: grid;
  gap: 0.65rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 400;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Custom CTA */
.custom-cta {
  position: relative;
  padding: 7rem 0;
  color: var(--white);
  overflow: hidden;
  background: var(--black);
}

.custom-cta-bg {
  position: absolute;
  inset: 0;
}

.custom-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.custom-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 9, 9, 0.92), rgba(9, 9, 9, 0.55));
}

.custom-cta .container {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.custom-cta .hero-ctas {
  margin-top: 2rem;
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
  align-items: start;
}

.testimonial-card {
  border-top: 2px solid var(--black);
  padding: 1.75rem 0 0;
}

.stars {
  color: var(--sand);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.testimonial-card cite {
  font-style: normal;
  display: block;
}

.testimonial-card cite strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-card cite span {
  color: var(--gray-mid);
  font-size: 0.85rem;
}

/* Gallery preview / page */
.gallery-preview,
.gallery-page {
  padding: 6rem 0;
  background: var(--off-white);
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.gallery-filters {
  display: flex;
  gap: 0.55rem;
  margin: 1.25rem 0 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.gallery-toolbar .gallery-filters {
  margin: 0;
}

.gallery-count {
  font-size: 0.85rem;
  color: var(--gray-mid);
}

.gallery-filters button {
  padding: 0.55rem 0.95rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  border: 1px solid var(--gray-light);
  background: var(--white);
  cursor: pointer;
  border-radius: var(--radius);
  line-height: 1.2;
  flex: 0 0 auto;
}

.gallery-filters button.is-active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.gallery-filters button:hover:not(.is-active) {
  border-color: var(--black);
  color: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 0.85rem;
}

.gallery-grid.is-compact {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
}

.gallery-grid.is-duo {
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 320px;
}

.gallery-grid.is-single {
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(360px, 52vh);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #1a1612;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  display: block;
  color: inherit;
  text-align: left;
}

.gallery-item[hidden] {
  display: none !important;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--feature {
  grid-column: 1 / -1;
}

.gallery-grid.is-compact .gallery-item--tall,
.gallery-grid.is-compact .gallery-item--wide,
.gallery-grid.is-duo .gallery-item--tall,
.gallery-grid.is-duo .gallery-item--wide {
  grid-row: span 1;
  grid-column: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .gallery-zoom-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.55);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  z-index: 2;
}

.gallery-item .gallery-zoom-badge svg {
  width: 16px;
  height: 16px;
}

.gallery-item:hover .gallery-zoom-badge {
  opacity: 1;
}

.gallery-caption,
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(9, 9, 9, 0.85), transparent);
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1;
}

.gallery-item:hover .gallery-caption,
.gallery-item:hover figcaption,
.gallery-item:focus-visible .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item strong,
.gallery-caption strong {
  display: block;
  font-size: 0.95rem;
}

.gallery-item span,
.gallery-caption span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.gallery-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}

.gallery-cta .btn {
  box-sizing: border-box;
}

.lightbox-caption {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-align: center;
  max-width: min(640px, 90vw);
}

/* Blog */
.blog {
  padding: 6rem 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.blog-card article {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 1.15rem;
  background: var(--gray-light);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.blog-card:hover img {
  transform: scale(1.04);
}

.blog-card .tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.blog-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.blog-card p {
  color: var(--gray-mid);
  font-size: 0.95rem;
}

.blog-card[hidden] {
  display: none !important;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pagination-btn,
.pagination-num {
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(9, 9, 9, 0.14);
  background: var(--white);
  color: var(--black);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.pagination-btn:hover:not(:disabled),
.pagination-num:hover {
  border-color: var(--black);
}

.pagination-num.is-active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.pagination-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Final CTA */
.final-cta {
  position: relative;
  padding: 7rem 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.final-cta-bg {
  position: absolute;
  inset: 0;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.72) 0%, rgba(9, 9, 9, 0.78) 100%),
    radial-gradient(ellipse at center, rgba(215, 185, 142, 0.12), transparent 55%);
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-inline: auto;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 32rem;
  margin: 1.15rem auto 0;
}

.final-cta .hero-ctas {
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 4.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--gray-mid);
  margin: 1.15rem 0 1.5rem;
  max-width: 22rem;
  font-size: 0.95rem;
}

.socials {
  display: flex;
  gap: 0.85rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s, color 0.2s;
}

.socials a:hover {
  border-color: var(--sand);
  color: var(--sand);
}

.socials svg {
  width: 15px;
  height: 15px;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
  color: var(--sand);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col .contact-line {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  padding: 0.35rem 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--gray-mid);
  font-size: 0.8rem;
}

.footer-bottom nav {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: #090909;
  color: var(--white);
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav.is-open {
  transform: translateX(0);
  display: flex !important;
}

.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  min-height: var(--header-h);
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #090909;
  position: relative;
  z-index: 2;
}

.mobile-nav-head .logo-img {
  height: 34px;
  max-width: min(180px, 58vw);
}

.mobile-nav-head .icon-btn {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-nav-head .icon-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-nav > ul,
.mobile-nav-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.75rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

.mobile-nav-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 1.25rem 2rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: none;
  cursor: pointer;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--sand);
}

.mobile-nav-caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  margin-left: 0.75rem;
  flex-shrink: 0;
}

.has-sub.is-open > .mobile-nav-toggle .mobile-nav-caret {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.mobile-sub {
  list-style: none;
  padding: 0.15rem 0 0.65rem 0.85rem;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-sub[hidden] {
  display: none !important;
}

.mobile-sub a {
  display: block;
  padding: 0.7rem 0;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: none;
}

.mobile-sub li:last-child a {
  padding-bottom: 0.85rem;
}

.mobile-nav-list > li:last-child > .mobile-nav-link,
.mobile-nav-list > li:last-child.is-open > .mobile-sub {
  border-bottom: none;
}

body.menu-open .site-header {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .header-inner > nav {
    display: none;
  }

  .nav-main {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: min(1320px, calc(100% - 1.5rem));
  }

  .header-actions {
    justify-self: end;
    flex-shrink: 0;
    gap: 0.35rem;
  }

  .logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo-img {
    height: 40px;
    max-width: min(200px, 52vw);
  }

  .icon-btn,
  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item--tall {
    grid-row: span 2;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .shop-strip-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 900px) {
  .trust-grid,
  .aircraft-grid,
  .why-grid,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .materials-grid,
  .transformation .section-intro,
  .ba-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    align-items: start;
  }

  .testimonials,
  .gallery-preview,
  .blog {
    padding: 4rem 0;
  }

  .materials-media {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  .gallery-filters,
  .product-tabs {
    gap: 0.5rem;
    width: 100%;
  }

  .gallery-filters button,
  .product-tabs button {
    padding: 0.5rem 0.8rem;
    min-height: 36px;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    height: 100%;
    width: min(1320px, calc(100% - 1.25rem));
    gap: 0.5rem;
  }

  .header-actions {
    gap: 0.15rem;
  }

  .logo-img {
    height: 34px;
    max-width: min(170px, 48vw);
  }

  .icon-btn,
  .menu-toggle {
    width: 34px;
    height: 34px;
  }

  .icon-btn svg {
    width: 17px;
    height: 17px;
  }

  .container {
    width: min(100% - 2rem, 1200px);
  }

  .hero-content {
    width: calc(100% - 2rem);
    margin-inline: auto;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .hero-ctas {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: none;
    align-self: stretch;
    box-sizing: border-box;
  }

  .materials-grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .materials-media {
    width: 100%;
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .materials-content {
    width: 100%;
    padding: 2rem 1.15rem 2.25rem;
  }

  .materials-content .btn {
    width: 100%;
    box-sizing: border-box;
  }

  .materials-list {
    margin: 1.35rem 0;
  }

  .custom-cta,
  .final-cta {
    padding: 3.5rem 0;
  }

  .custom-cta .container,
  .final-cta .container {
    max-width: none;
    width: min(100% - 2rem, 1200px);
  }

  .custom-cta .hero-ctas,
  .final-cta .hero-ctas {
    margin-top: 1.35rem;
  }

  .custom-cta-overlay {
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.78), rgba(9, 9, 9, 0.88));
  }

  .trust-grid,
  .aircraft-grid,
  .why-grid,
  .testimonial-grid,
  .blog-grid,
  .product-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonials,
  .gallery-preview,
  .gallery-page,
  .blog,
  .why,
  .products {
    padding: 3.25rem 0;
  }

  .page-hero {
    padding: calc(var(--header-h) + 1.5rem) 0 1.75rem;
  }

  .page-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .page-hero p {
    margin-top: 0.75rem;
    font-size: 0.95rem;
  }

  .breadcrumbs {
    margin-bottom: 0.65rem;
  }

  .page-section {
    padding: 2rem 0;
  }

  .products.page-section {
    padding: 1.35rem 0 2.5rem;
  }

  .shop-toolbar {
    margin-bottom: 1rem;
  }

  .testimonials .section-intro,
  .gallery-preview .section-intro,
  .gallery-preview > .container > .reveal,
  .blog .section-intro,
  .section-intro {
    margin-bottom: 1.25rem;
  }

  .testimonial-grid {
    margin-top: 1.25rem;
    gap: 1.5rem;
    align-items: start;
  }

  .testimonial-card {
    padding-top: 1.15rem;
  }

  .testimonial-card blockquote {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
  }

  .stars {
    margin-bottom: 0.65rem;
  }

  .gallery-filters {
    margin: 0.85rem 0 1.1rem;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .gallery-item--tall,
  .gallery-item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .ba-images {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .ba-images figure {
    aspect-ratio: 1;
  }

  .transformation {
    padding: 3.5rem 0;
  }

  .transformation .section-intro {
    margin-bottom: 1.5rem;
    gap: 1rem;
  }

  .transformation .section-heading {
    font-size: 1.65rem;
  }

  .ba-grid {
    gap: 1rem;
  }

  .ba-meta {
    padding: 0.85rem 1rem;
    font-size: 0.78rem;
    flex-wrap: wrap;
  }

  .ba-label {
    left: 0.5rem;
    bottom: 0.5rem;
    font-size: 0.6rem;
    padding: 0.28rem 0.45rem;
  }

  .ba-zoom-badge {
    opacity: 1;
  }

  .gallery-cta {
    margin-top: 1.25rem;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.65rem;
  }

  .gallery-cta .btn {
    width: 100%;
    min-height: 3rem;
  }

  .gallery-page {
    padding-bottom: 2.5rem;
  }

  .aircraft-card {
    min-height: 340px;
  }

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

/* ========== Inner pages ========== */
.site-header.is-solid {
  background: rgba(9, 9, 9, 0.96);
  backdrop-filter: blur(10px);
}

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.page-hero.has-media {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.65), rgba(9, 9, 9, 0.78));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(800px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
  margin-inline: auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.breadcrumbs a:hover {
  color: var(--sand);
}

.page-section {
  padding: 4.5rem 0;
}

.page-section--dark {
  background: var(--black);
  color: var(--white);
}

.page-section--muted {
  background: var(--off-white);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-light);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: var(--radius);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--sand);
  outline-offset: 1px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-aside {
  background: var(--charcoal);
  color: var(--white);
  padding: 2rem;
}

.contact-aside h3 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
}

.contact-aside p {
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas:
    "gallery head"
    "gallery buy";
  gap: 1rem 2.5rem;
  align-items: start;
  padding: calc(var(--header-h) + 2.5rem) 0 4rem;
}

.product-gallery,
.product-gallery--mosaic {
  grid-area: gallery;
}

.product-buy-head {
  grid-area: head;
}

.product-buy {
  grid-area: buy;
}

.product-gallery--mosaic {
  display: grid;
  gap: 0.75rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.gallery-tile {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #eceae6;
  cursor: zoom-in;
}

.gallery-tile--hero {
  aspect-ratio: 4 / 3;
}

.gallery-tile-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.gallery-tile-row .gallery-tile {
  aspect-ratio: 1;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.gallery-tile.is-active {
  box-shadow: inset 0 0 0 2px var(--sand);
}

.gallery-zoom-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.55);
  color: var(--white);
  pointer-events: none;
}

.gallery-zoom-badge svg {
  width: 18px;
  height: 18px;
}

.product-gallery-dots {
  display: none;
}

.product-gallery-main {
  aspect-ratio: 1;
  background: #1a1612;
  overflow: hidden;
  position: relative;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.35s ease;
}

.product-gallery-main:hover img {
  transform: scale(1.03);
}

.gallery-nav,
.gallery-zoom {
  position: absolute;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(9, 9, 9, 0.55);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.2s, color 0.2s;
}

.gallery-nav:hover,
.gallery-zoom:hover {
  background: rgba(9, 9, 9, 0.85);
  color: var(--sand);
}

.gallery-nav svg,
.gallery-zoom svg {
  width: 18px;
  height: 18px;
}

.gallery-prev {
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-next {
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-zoom {
  right: 0.85rem;
  top: 0.85rem;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.product-thumbs button {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid transparent;
  padding: 0;
  background: #1a1612;
}

.product-thumbs button.is-active,
.product-thumbs button:hover {
  border-color: var(--sand);
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lightbox zoom */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(9, 9, 9, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  width: 44px;
  height: 44px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--sand);
}

.lightbox-count {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-nav:hover {
  color: var(--sand);
  background: rgba(255, 255, 255, 0.14);
}

.lightbox-nav svg {
  width: 20px;
  height: 20px;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

@media (max-width: 640px) {
  .gallery-nav,
  .gallery-zoom {
    width: 36px;
    height: 36px;
  }

  .image-lightbox {
    padding: 2rem 1rem;
  }
}

.product-buy .product-rating,
.product-buy-head .product-rating {
  margin-bottom: 0.65rem;
}

.product-buy h1,
.product-buy-head h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.product-buy .price {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
}

.product-buy .fit {
  color: var(--gray-mid);
  margin-bottom: 0.35rem;
}

.product-buy .product-brand,
.product-buy-head .product-brand {
  margin-bottom: 0.35rem;
}

.product-buy-head .breadcrumbs {
  margin-bottom: 0.85rem;
}

.product-options {
  display: grid;
  gap: 1.25rem;
  margin: 0.5rem 0 1.75rem;
}

.option-group {
  margin: 0;
  padding: 1.35rem 1.25rem 1.2rem;
  border: 1px solid var(--gray-light);
  background: var(--white);
  min-inline-size: 0;
}

.option-group legend {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 0.45rem;
  margin-left: 0.25rem;
  color: var(--black);
}

.option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.option-pills label {
  border: 1px solid var(--gray-light);
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  background: var(--white);
}

.option-pills label:hover {
  border-color: #bbb;
}

.option-pills input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-pills input:checked + span,
.option-pills label:has(input:checked) {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.option-pills span {
  display: block;
}

.product-buy .form-field {
  margin: 0 0 1.35rem;
}

.product-buy .form-field label {
  margin-bottom: 0.55rem;
}

.product-buy .add-to-cart {
  margin-top: 0.25rem;
}

.trust-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-light);
  font-size: 0.82rem;
  color: var(--gray-mid);
}

.trust-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-note svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--sand);
}

.buy-together {
  margin-top: 1.5rem;
  padding: 1.15rem;
  border: 1px solid var(--gray-light);
  background: #faf9f7;
}

.buy-together-head .eyebrow {
  color: var(--black);
  margin-bottom: 0.35rem;
}

.buy-together-head h2 {
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.buy-together-list {
  display: grid;
  gap: 0.55rem;
}

.buy-together-row {
  display: grid;
  grid-template-columns: auto 52px 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.55rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  cursor: pointer;
}

.buy-together-row:has(input:checked) {
  border-color: rgba(215, 185, 142, 0.7);
}

.buy-together-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--sand);
}

.buy-together-row img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.buy-together-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.buy-together-meta strong {
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.25;
}

.buy-together-meta em {
  font-style: normal;
  font-size: 0.84rem;
  color: var(--gray-mid);
}

.buy-together-foot {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.buy-together-foot > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.buy-together-foot span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.buy-together-foot strong {
  font-size: 1.2rem;
  color: var(--black);
}

.checklist {
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  padding-left: 1.4rem;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--sand);
}

/* Product info tabs & description */
.product-info {
  padding-top: 1rem;
}

.product-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 2.5rem;
}

.product-tabs-nav button {
  position: relative;
  padding: 0.85rem 0;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  background: none;
  border: 0;
  cursor: pointer;
}

.product-tabs-nav button.is-active {
  color: var(--black);
}

.product-tabs-nav button.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--sand);
}

.product-tab-panel[hidden] {
  display: none !important;
}

/* Story-style full description */
.desc-story {
  display: grid;
  gap: 3rem;
}

.desc-story-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-items: end;
  background: #161616;
}

.desc-story-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.desc-story-hero-copy {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  max-width: 40rem;
  color: var(--white);
  background: linear-gradient(180deg, transparent 0%, rgba(9, 9, 9, 0.72) 55%, rgba(9, 9, 9, 0.88) 100%);
  width: 100%;
}

.desc-story-hero-copy .eyebrow {
  color: var(--sand);
}

.desc-story-hero-copy h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  margin: 0.55rem 0 0.85rem;
}

.desc-story-hero-copy p:last-child {
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
}

.desc-story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 1.5rem 0;
}

.desc-story-stats strong {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 0.25rem;
}

.desc-story-stats span {
  color: var(--gray-mid);
  font-size: 0.85rem;
}

.desc-story-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.desc-story-block.is-reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.desc-story-block.is-reverse figure {
  order: 2;
}

.desc-story-block figure {
  margin: 0;
}

.desc-story-block img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.desc-story-block figcaption {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.desc-story-block h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  margin: 0.45rem 0 0.9rem;
}

.desc-story-block p {
  color: var(--gray-mid);
  margin-bottom: 0.9rem;
}

.desc-story-block .checklist {
  margin-top: 1.1rem;
  color: var(--gray-mid);
}

.desc-story-materials {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: end;
  padding: 2rem;
  background: #f7f6f3;
}

.desc-story-materials h3 {
  font-size: 1.5rem;
  margin: 0.4rem 0 0.75rem;
}

.desc-story-materials-copy p:last-child {
  color: var(--gray-mid);
}

.desc-story-materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.desc-story-materials-grid figure {
  margin: 0;
}

.desc-story-materials-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.desc-story-materials-grid figcaption {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.desc-story-quote {
  margin: 0;
  padding: 2.25rem 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  text-align: center;
}

.desc-story-quote p {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.35;
  max-width: 34rem;
  margin: 0 auto 1rem;
}

.desc-story-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.desc-story-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--black);
  color: var(--white);
}

.desc-story-cta h3 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.desc-story-cta p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 32rem;
}

.desc-story-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.desc-story-cta .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.desc-story-cta .btn-ghost-dark:hover {
  background: var(--white);
  color: var(--black);
}

.product-desc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.product-desc-copy p {
  color: var(--gray-mid);
  margin-top: 1rem;
  max-width: 38rem;
}

.product-desc-copy .checklist {
  margin-top: 1.5rem;
  color: var(--gray-mid);
}

.product-desc-media {
  margin: 0;
}

.product-desc-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.product-desc-media figcaption,
.product-desc-gallery figcaption {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.product-desc-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 3.5rem;
}

.product-desc-feature figure {
  margin: 0;
}

.product-desc-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.product-desc-feature h3 {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.product-desc-feature p {
  color: var(--gray-mid);
  margin-bottom: 0.85rem;
}

.product-desc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.product-desc-gallery figure {
  margin: 0;
}

.product-desc-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.product-steps {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.85rem;
  color: var(--gray-mid);
  padding-left: 1.15rem;
}

.product-faq {
  display: grid;
  gap: 0;
  max-width: 760px;
}

.product-faq details {
  border-bottom: 1px solid var(--gray-light);
}

.product-faq summary {
  cursor: pointer;
  padding: 1.1rem 0;
  font-weight: 600;
  list-style: none;
}

.product-faq summary::-webkit-details-marker {
  display: none;
}

.product-faq details p {
  color: var(--gray-mid);
  padding-bottom: 1.1rem;
}

/* Cross-sell */
.cross-sell-box {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 1.5rem;
}

.cross-sell-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.cross-sell-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--gray-light);
  background: var(--white);
  min-width: min(100%, 220px);
  flex: 1;
  cursor: pointer;
  position: relative;
}

.cross-sell-item.is-primary {
  cursor: default;
  border-color: rgba(215, 185, 142, 0.55);
  background: #faf8f4;
}

.cross-sell-item input {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
}

.cross-sell-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.cross-sell-item .tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cross-sell-item h3 {
  font-size: 0.92rem;
  line-height: 1.3;
}

.cross-sell-plus {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gray-mid);
}

.cross-sell-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.cross-sell-summary p {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.cross-sell-summary strong {
  font-size: 1.6rem;
  color: var(--sand);
}

.cross-sell-summary .link-btn {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.45);
  align-self: center;
  margin-top: 0.25rem;
}

.related-products .product-grid {
  margin-top: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--gray-mid);
  padding-bottom: 1rem;
}

.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.swatch {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.swatch.black { background: #111; }
.swatch.gray { background: #6b6b6b; }
.swatch.tan { background: #a67c52; }
.swatch.sand { background: #d7b98e; }

.material-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.material-block:nth-child(even) .material-block-media {
  order: 2;
}

.material-block-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1612;
}

.material-block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  border-top: 2px solid var(--black);
  padding-top: 1.25rem;
}

.step-card .num {
  color: var(--sand);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-light);
  color: var(--gray-mid);
}

.cart-table td {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--gray-light);
  vertical-align: middle;
}

.cart-product {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cart-product img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  background: #1a1612;
}

.cart-summary {
  background: var(--off-white);
  padding: 1.75rem;
  margin-top: 2rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: start;
}

.account-box {
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid var(--gray-light);
  padding: 2rem;
}

/* Shop ecommerce layout */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

.shop-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 1.35rem 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.shop-sidebar-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: -0.1rem 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--gray-light);
}

.shop-sidebar-head h2 {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-sidebar-foot {
  display: none;
}

.shop-filter-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--gray-light);
  background: var(--white);
  color: var(--black);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
}

.shop-filter-toggle svg {
  width: 16px;
  height: 16px;
}

.shop-filter-badge {
  display: inline-grid;
  place-items: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0;
}

.shop-filter-badge[hidden] {
  display: none !important;
}

.shop-filter-backdrop {
  display: none;
}

.shop-toolbar-start {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  min-width: 0;
}

.shop-sidebar h3 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 1.25rem 0 0.75rem;
  color: var(--black);
}

.shop-sidebar-body > h3:first-child {
  margin-top: 0;
}

.shop-sidebar .filter-list {
  display: grid;
  gap: 0.45rem;
}

.shop-sidebar label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: #444;
  cursor: pointer;
}

.shop-sidebar input[type="checkbox"],
.shop-sidebar input[type="radio"] {
  accent-color: var(--black);
  width: 15px;
  height: 15px;
}

.filter-count {
  margin-left: auto;
  color: var(--gray-mid);
  font-size: 0.8rem;
}

.price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.price-inputs input {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--gray-light);
  font-family: inherit;
  font-size: 0.85rem;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.shop-toolbar p {
  color: var(--gray-mid);
  font-size: 0.9rem;
}

.shop-toolbar select {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--gray-light);
  font-family: inherit;
  font-size: 0.85rem;
  background: var(--white);
}

.shop-main .product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.sidebar-cta {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-light);
}

.sidebar-cta p {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 0.85rem;
}

.stars {
  display: inline-flex;
  gap: 0.12rem;
  color: var(--sand);
}

.stars i {
  width: 12px;
  height: 12px;
  display: block;
  background: currentColor;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

@media (max-width: 1100px) {
  .shop-main .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-layout,
  .product-layout,
  .material-block,
  .cart-layout,
  .form-row-2,
  .steps,
  .shop-layout,
  .product-desc-grid,
  .product-desc-feature,
  .product-split,
  .cross-sell-box,
  .desc-story-block,
  .desc-story-block.is-reverse,
  .desc-story-materials {
    grid-template-columns: 1fr;
  }

  .shop-filter-toggle {
    display: inline-flex;
  }

  .shop-filter-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 420;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .shop-filter-backdrop[hidden] {
    display: none !important;
  }

  .shop-filter-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block !important;
  }

  .shop-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: min(360px, 92vw);
    height: 100%;
    max-height: 100dvh;
    margin: 0;
    padding: 0;
    border: none;
    border-right: 1px solid var(--gray-light);
    z-index: 430;
    display: flex;
    flex-direction: column;
    transform: translateX(-105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s var(--ease), visibility 0.35s;
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.18);
  }

  .shop-sidebar.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .shop-sidebar-head {
    display: flex;
    flex-shrink: 0;
    padding: 1rem 1.15rem;
    margin: 0;
  }

  .shop-sidebar-head .icon-btn {
    color: var(--black);
    border: 1px solid var(--gray-light);
  }

  .shop-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 0.35rem 1.15rem 1.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .shop-sidebar-foot {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 0.65rem;
    flex-shrink: 0;
    padding: 0.95rem 1.15rem calc(0.95rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--gray-light);
    background: var(--white);
  }

  .shop-sidebar-foot .btn {
    width: 100%;
    padding-inline: 0.75rem;
  }

  body.filters-open {
    overflow: hidden;
  }

  .product-gallery--mosaic {
    position: static;
    top: auto;
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    gap: 0.65rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.25rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .product-gallery--mosaic::-webkit-scrollbar {
    display: none;
  }

  .gallery-tile-row {
    display: contents;
  }

  .gallery-tile,
  .gallery-tile--hero,
  .gallery-tile-row .gallery-tile {
    flex: 0 0 82%;
    width: 82%;
    max-width: 82%;
    aspect-ratio: 1;
    scroll-snap-align: center;
    border-radius: 12px;
  }

  .gallery-zoom-badge {
    opacity: 1;
    width: 36px;
    height: 36px;
    top: 0.75rem;
    right: 0.75rem;
  }

  .product-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
  }

  .product-gallery-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border-radius: 50%;
    background: rgba(9, 9, 9, 0.2);
    border: 0;
  }

  .product-gallery-dots button.is-active {
    background: var(--black);
    transform: scale(1.15);
  }

  .product-layout {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-buy-head,
  .product-gallery,
  .product-gallery--mosaic,
  .product-gallery-dots,
  .product-buy {
    grid-area: auto;
    width: 100%;
  }

  .product-buy .fit {
    margin-top: 0.25rem;
  }

  .product-buy .price {
    margin-top: 0.5rem;
  }

  .cart-drawer {
    width: 100%;
  }

  .desc-story-block.is-reverse figure {
    order: 0;
  }

  .desc-story {
    gap: 2rem;
  }

  .desc-story-hero {
    min-height: 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .desc-story-hero-copy {
    padding: 4.5rem 1.25rem 1.5rem;
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.2) 0%, rgba(9, 9, 9, 0.78) 45%, rgba(9, 9, 9, 0.94) 100%);
  }

  .desc-story-hero-copy h2 {
    font-size: 1.55rem;
  }

  .desc-story-hero-copy p:last-child {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
  }

  .desc-story-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem 1rem;
    padding: 1.25rem 0;
  }

  .desc-story-stats strong {
    font-size: 1.35rem;
  }

  .desc-story-stats span {
    font-size: 0.8rem;
    color: #666;
  }

  .desc-story-block {
    gap: 1.15rem;
  }

  .desc-story-block img {
    aspect-ratio: 1;
  }

  .desc-story-block h3 {
    font-size: 1.35rem;
  }

  .desc-story-block p,
  .desc-story-block .checklist,
  .desc-story-materials-copy p:last-child {
    color: #555;
  }

  .desc-story-block figcaption {
    margin-top: 0.5rem;
    margin-bottom: 0.35rem;
  }

  .desc-story-materials {
    padding: 1.25rem;
    gap: 1.25rem;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
  }

  .desc-story-materials h3 {
    font-size: 1.3rem;
  }

  .desc-story-materials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .desc-story-materials-grid figcaption {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .desc-story-quote {
    padding: 1.5rem 0.25rem;
  }

  .desc-story-quote p {
    font-size: 1.2rem;
  }

  .desc-story-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 1rem;
    padding: 1.35rem 1.25rem;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
  }

  .desc-story-cta h3 {
    font-size: 1.2rem;
  }

  .desc-story-cta p {
    max-width: none;
    font-size: 0.92rem;
  }

  .desc-story-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .desc-story-cta-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .desc-story-cta-actions .link-btn {
    align-self: stretch;
    text-align: center;
    width: 100%;
  }

  .product-tabs-nav {
    gap: 0.25rem 1rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.15rem;
    -webkit-overflow-scrolling: touch;
  }

  .product-tabs-nav button {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.72rem;
    padding: 0.75rem 0;
  }

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

  .cross-sell-plus {
    display: none;
  }

  .material-block:nth-child(even) .material-block-media {
    order: 0;
  }

  .trust-notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shop-main .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 450;
  background: rgba(9, 9, 9, 0.94);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay[hidden] {
  display: none !important;
}

.search-overlay.is-open {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-close-corner {
  position: absolute;
  top: max(0.85rem, env(safe-area-inset-top, 0px));
  right: max(0.85rem, env(safe-area-inset-right, 0px));
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
}

.search-close-corner:hover,
.search-close-corner:focus-visible {
  color: var(--sand);
  border-color: var(--sand);
  background: rgba(215, 185, 142, 0.1);
}

.search-close-corner svg {
  width: 22px;
  height: 22px;
}

.search-panel {
  width: min(720px, 100%);
}

.search-panel form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 0.85rem;
}

.search-panel input[type="search"],
.search-panel input[type="text"] {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--white);
  font-family: inherit;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 500;
}

.search-panel input[type="search"]::placeholder,
.search-panel input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-panel .search-submit,
.search-panel .search-clear {
  color: var(--white);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  border: 0;
}

.search-panel .search-submit:hover,
.search-panel .search-clear:hover,
.search-panel .search-submit:focus-visible,
.search-panel .search-clear:focus-visible {
  color: var(--sand);
}

.search-panel .search-submit svg,
.search-panel .search-clear svg {
  width: 20px;
  height: 20px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.search-suggestions {
  margin-top: 1.5rem;
}

.search-suggestions p {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.85rem;
}

.search-suggestions a {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.search-suggestions a:hover {
  color: var(--sand);
}

.search-suggestions a span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.2rem;
}

