:root {
  --bg: #03100d;
  --panel: #071b15;
  --panel-strong: #0b261d;
  --leaf: #16a34a;
  --leaf-deep: #0e6d39;
  --mint: #b8f36a;
  --gold: #f8c43a;
  --orange: #ff4e16;
  --peach: #ffc2a3;
  --cream: #fff8df;
  --muted: #a7bcae;
  --line: rgba(255, 248, 223, 0.15);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --nav-scroll: 0;
  --nav-expanded-height: 180px;
  --nav-collapsed-height: 90px;
  --focus-ring: 0 0 0 3px rgba(3, 16, 13, 0.96), 0 0 0 6px rgba(248, 196, 58, 0.92);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 16% 12%, rgba(22, 163, 74, 0.22), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(248, 196, 58, 0.1), transparent 24rem),
    linear-gradient(180deg, #010706 0%, var(--bg) 46%, #020806 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

main {
  padding-top: var(--nav-expanded-height);
}

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

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

button {
  font: inherit;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  color: #06100a;
  background: var(--gold);
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--nav-expanded-height) - ((var(--nav-expanded-height) - var(--nav-collapsed-height)) * var(--nav-scroll)));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 24px);
  padding: calc(20px - (8px * var(--nav-scroll))) max(clamp(18px, 5vw, 72px), env(safe-area-inset-left));
  background: linear-gradient(180deg, rgba(2, 8, 6, 0.94), rgba(5, 25, 36, calc(0.84 - (0.32 * var(--nav-scroll)))));
  border-bottom: 1px solid rgba(255, 248, 223, 0.1);
  backdrop-filter: blur(calc(8px + (10px * var(--nav-scroll))));
  box-shadow: 0 calc(18px * var(--nav-scroll)) calc(50px * var(--nav-scroll)) rgba(0, 0, 0, 0.36);
  transition: background 120ms linear, box-shadow 120ms linear;
}

.brand,
.home-link,
.partner-brand {
  flex: 0 0 auto;
  border-radius: 6px;
}

.brand img {
  width: calc(clamp(150px, 18vw, 230px) - (clamp(62px, 9vw, 116px) * var(--nav-scroll)));
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.5));
  transition: width 80ms linear, filter 120ms linear;
}

.home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 11px;
  color: rgba(255, 248, 223, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.home-link:hover,
.home-link[aria-current="page"] {
  color: var(--gold);
  background: rgba(248, 196, 58, 0.1);
}

.partner-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: clamp(10px, 1.8vw, 24px);
}

.partner-brand img {
  width: calc(clamp(86px, 10vw, 138px) - (clamp(36px, 5vw, 70px) * var(--nav-scroll)));
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.5));
  transition: width 80ms linear, filter 120ms linear;
}

.nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: clamp(14px, 2.5vw, 34px);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255, 248, 223, 0.78);
  border-radius: 4px;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 248, 223, 0.24);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 248, 223, 0.07);
  cursor: pointer;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  transform: translateY(-7px);
}

.nav-toggle-icon::after {
  transform: translateY(7px);
}

.site-header[data-nav-open="true"] .nav-toggle-icon {
  background: transparent;
}

.site-header[data-nav-open="true"] .nav-toggle-icon::before {
  transform: rotate(45deg);
}

.site-header[data-nav-open="true"] .nav-toggle-icon::after {
  transform: rotate(-45deg);
}

@media (max-width: 1180px) {
  .nav-links {
    gap: clamp(10px, 1.7vw, 22px);
    font-size: 0.72rem;
  }

  .partner-brand img {
    width: calc(clamp(70px, 8vw, 108px) - (clamp(30px, 4vw, 54px) * var(--nav-scroll)));
  }
}

.hero {
  position: relative;
  min-height: max(680px, calc(100svh - var(--nav-expanded-height)));
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-art,
.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art img {
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
  filter: saturate(1.24) brightness(0.82) contrast(1.08);
  transform: scale(1.025);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 48%, rgba(248, 196, 58, 0.12), transparent 21rem),
    radial-gradient(circle at 50% 40%, rgba(22, 163, 74, 0.12), transparent 31rem),
    linear-gradient(180deg, rgba(1, 7, 6, 0.46) 0%, rgba(1, 7, 6, 0.18) 42%, rgba(1, 7, 6, 0.72) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(3, 16, 13, 0.22) 22%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 92px) 0;
}

.hero-logo {
  justify-self: center;
  width: min(100%, 460px);
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.72));
}

.hero-copy {
  display: grid;
  justify-items: start;
  text-align: left;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2.75rem, 5.4vw, 5.8rem);
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.55);
}

h2 {
  margin-bottom: 18px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2.75rem, 6vw, 5.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
}

.intro {
  max-width: 680px;
  color: rgba(255, 248, 223, 0.84);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions,
.cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active,
.social-tile:active {
  transform: translateY(0);
}

.button.primary {
  color: #06100a;
  background: linear-gradient(135deg, var(--gold), #ffe878 50%, var(--mint));
  box-shadow: 0 18px 38px rgba(248, 196, 58, 0.18);
}

.button.secondary {
  color: var(--cream);
  border-color: rgba(255, 248, 223, 0.32);
  background: rgba(255, 248, 223, 0.06);
}

.intro-band {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 36px));
  margin: -42px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 20, 15, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.intro-band div {
  min-height: 132px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.intro-band div:last-child {
  border-right: 0;
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-band span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(80px, 9vw, 130px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.product-carousel {
  position: relative;
}

.product-carousel-viewport {
  overflow: hidden;
  padding: 0 54px;
}

.product-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(248, 196, 58, 0.58) rgba(255, 248, 223, 0.08);
  padding: 2px 2px 18px;
}

.product-grid::-webkit-scrollbar {
  height: 8px;
}

.product-grid::-webkit-scrollbar-track {
  background: rgba(255, 248, 223, 0.08);
  border-radius: 999px;
}

.product-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold), var(--mint));
  border-radius: 999px;
}

.carousel-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 223, 0.26);
  border-radius: 50%;
  color: #06100a;
  background: linear-gradient(135deg, var(--gold), #ffe878 52%, var(--mint));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.carousel-button:hover {
  transform: translateY(-50%) scale(1.06);
}

.carousel-button:disabled {
  opacity: 0.32;
  cursor: default;
  transform: translateY(-50%);
}

.carousel-button span {
  display: block;
  margin-top: -3px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.carousel-button-prev {
  left: 0;
}

.carousel-button-next {
  right: 0;
}

.product-card {
  flex: 0 0 clamp(300px, 31vw, 390px);
  scroll-snap-align: start;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(9, 34, 25, 0.7), rgba(3, 14, 11, 0.96)),
    radial-gradient(circle at top right, rgba(248, 196, 58, 0.16), transparent 12rem);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26);
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-logo-card {
  position: relative;
  min-height: 390px;
  justify-content: flex-end;
  padding: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(248, 196, 58, 0.16), transparent 14rem),
    linear-gradient(180deg, rgba(4, 18, 14, 0.86), rgba(2, 8, 6, 0.98));
}

.product-logo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(1, 7, 6, 0.28) 100%);
  pointer-events: none;
}

.product-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  border-radius: inherit;
}

.product-logo-card .product-card-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.02) drop-shadow(0 18px 30px rgba(0, 0, 0, 0.46));
  transition: transform 180ms ease, filter 180ms ease;
}

.product-logo-card:hover .product-card-link img {
  transform: scale(1.035);
  filter: saturate(1.14) contrast(1.04) drop-shadow(0 22px 34px rgba(0, 0, 0, 0.5));
}

.product-logo-card-wide .product-card-link img {
  padding: 12px;
}

.card-topline {
  margin-bottom: auto;
  color: rgba(255, 194, 163, 0.74);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 3.2rem;
}

.perch-card {
  background:
    linear-gradient(180deg, rgba(4, 18, 14, 0.72), rgba(4, 14, 11, 0.98)),
    url("assets/jungle-portrait-optimized.webp") center / cover;
  background-blend-mode: normal, luminosity;
}

.feature-card {
  grid-column: span 1;
  color: #07100a;
  background: linear-gradient(160deg, var(--gold), #ffe88d 56%, var(--mint));
}

.feature-card img {
  width: min(210px, 90%);
  margin: 0 auto auto;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
}

.feature-card p {
  color: rgba(7, 16, 10, 0.78);
}

.home-store-section {
  width: 100%;
  padding: clamp(18px, 3vw, 42px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(66, 112, 79, 0.14), transparent 36%),
    #020a08;
}

.home-store-card {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: clamp(620px, 64vw, 820px);
  overflow: hidden;
  border: 1px solid rgba(248, 196, 58, 0.34);
  border-radius: clamp(22px, 3vw, 36px);
  color: inherit;
  background: #061611;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.56);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.home-store-collage {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: #020806;
}

.home-store-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 480ms cubic-bezier(0.2, 0.74, 0.24, 1), filter 240ms ease;
}

.home-store-shot-main {
  grid-row: 1 / 3;
}

.home-store-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 8, 6, 0.92) 0%, rgba(1, 8, 6, 0.52) 48%, rgba(1, 8, 6, 0.08) 78%),
    linear-gradient(0deg, rgba(1, 8, 6, 0.94) 0%, rgba(1, 8, 6, 0.18) 62%, rgba(1, 8, 6, 0.36) 100%);
  pointer-events: none;
}

.home-store-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  min-height: clamp(620px, 64vw, 820px);
  padding: clamp(34px, 6vw, 86px);
}

.home-store-overlay h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 7.4rem);
}

.home-store-description {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(245, 239, 214, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.home-store-card:hover {
  border-color: rgba(248, 196, 58, 0.78);
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.68);
  transform: translateY(-4px);
}

.home-store-card:hover .home-store-shot {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.025);
}

.home-store-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.62fr;
  gap: 16px;
}

.gallery-grid > img,
.gallery-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.gallery-grid > img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.88) brightness(0.78);
  background: var(--panel);
  mix-blend-mode: screen;
}

.gallery-grid > img:first-child {
  grid-row: span 2;
}

.gallery-panel {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(9, 34, 25, 0.9), rgba(4, 14, 11, 0.98)),
    radial-gradient(circle at 20% 15%, rgba(255, 78, 22, 0.16), transparent 13rem);
}

.gallery-panel img {
  width: min(330px, 100%);
}

.gallery-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cta-section {
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(70px, 8vw, 110px);
  padding: clamp(34px, 5vw, 60px);
  border: 1px solid rgba(248, 196, 58, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 31, 23, 0.98), rgba(4, 14, 11, 0.9)),
    url("assets/jungle-banner-optimized.webp") center / cover;
  background-blend-mode: normal, luminosity;
  box-shadow: var(--shadow);
}

.cta-section h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  min-height: min(660px, 58svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(1, 7, 6, 0.28), rgba(1, 7, 6, 0.92)),
    url("assets/junglebackground.webp") center / cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(248, 196, 58, 0.16), transparent 22rem),
    linear-gradient(90deg, rgba(1, 7, 6, 0.9), rgba(1, 7, 6, 0.36), rgba(1, 7, 6, 0.88));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(90px, 10vw, 150px) 0 clamp(54px, 7vw, 90px);
}

.page-hero h1 {
  max-width: 920px;
}

.page-intro {
  max-width: 720px;
  color: rgba(255, 248, 223, 0.82);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.store-address {
  width: fit-content;
  margin: 0 0 20px;
  padding: 10px 14px;
  border: 1px solid rgba(248, 196, 58, 0.42);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(3, 16, 13, 0.72);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  font-size: clamp(0.78rem, 1.4vw, 0.96rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-gallery-section {
  width: min(1440px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 8vw, 116px) 0 0;
}

.store-gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.store-gallery-heading h2 {
  margin-bottom: 0;
}

.store-gallery-heading > p {
  max-width: 340px;
  margin: 0 0 8px;
  color: var(--muted);
  text-align: right;
}

.store-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(150px, 15vw, 230px);
  gap: 14px;
}

.store-gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 223, 0.18);
  border-radius: 10px;
  color: var(--cream);
  background: var(--panel);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  cursor: zoom-in;
  isolation: isolate;
}

.store-gallery-item:nth-child(1),
.store-gallery-item:nth-child(4),
.store-gallery-item:nth-child(8) {
  grid-column: span 2;
  grid-row: span 2;
}

.store-gallery-item:nth-child(3) {
  grid-row: span 2;
}

.store-gallery-item:nth-child(14),
.store-gallery-item:nth-child(15) {
  grid-column: span 2;
}

.store-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 48%, rgba(1, 7, 6, 0.84) 100%);
  pointer-events: none;
}

.store-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02) brightness(0.94);
  transition: transform 420ms cubic-bezier(0.2, 0.74, 0.24, 1), filter 260ms ease;
}

.store-gallery-item span {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.82);
}

.store-gallery-item:hover {
  border-color: rgba(248, 196, 58, 0.56);
}

.store-gallery-item:hover img {
  filter: saturate(1.12) contrast(1.04) brightness(1.02);
  transform: scale(1.045);
}

.content-band.visit-details {
  width: min(1440px, calc(100% - 36px));
}

.visit-details-panel {
  width: 100%;
  background:
    linear-gradient(110deg, rgba(5, 20, 15, 0.96), rgba(7, 27, 21, 0.88)),
    radial-gradient(circle at 90% 10%, rgba(248, 196, 58, 0.12), transparent 26rem);
}

.visit-details-panel h2 {
  max-width: 1200px;
}

.visit-details-panel .detail-list {
  max-width: 1040px;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

body.gallery-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 42%, rgba(22, 163, 74, 0.16), transparent 34rem),
    rgba(1, 7, 6, 0.97);
  opacity: 0;
}

.gallery-lightbox::backdrop {
  background: rgba(1, 7, 6, 0.92);
}

.gallery-lightbox[open] {
  display: block;
  animation: gallery-overlay-in 220ms ease forwards;
}

.gallery-lightbox[open].is-closing {
  animation: gallery-overlay-out 180ms ease forwards;
}

.gallery-lightbox-viewport {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: auto;
  padding: max(74px, env(safe-area-inset-top)) 18px max(92px, env(safe-area-inset-bottom));
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(248, 196, 58, 0.66) rgba(255, 248, 223, 0.08);
}

.gallery-lightbox-figure {
  --gallery-zoom: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: auto;
  transform: scale(var(--gallery-zoom));
  transform-origin: center;
  transition: transform 200ms ease;
  animation: gallery-photo-expand 340ms cubic-bezier(0.16, 0.8, 0.22, 1) both;
}

.is-closing .gallery-lightbox-figure {
  animation: gallery-photo-collapse 180ms ease both;
}

.gallery-lightbox-image {
  width: auto;
  max-width: min(92vw, 1800px);
  max-height: calc(100dvh - 170px);
  border: 1px solid rgba(255, 248, 223, 0.2);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.7);
  user-select: none;
}

.gallery-lightbox-figure figcaption {
  max-width: min(92vw, 900px);
  color: rgba(255, 248, 223, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.gallery-lightbox-close,
.gallery-lightbox-nav,
.gallery-lightbox-zoom {
  position: fixed;
  z-index: 1002;
}

.gallery-lightbox-close,
.gallery-lightbox-nav button,
.gallery-lightbox-zoom button {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 248, 223, 0.22);
  color: var(--cream);
  background: rgba(5, 20, 15, 0.9);
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav button:hover,
.gallery-lightbox-zoom button:hover {
  color: #06100a;
  border-color: var(--gold);
  background: var(--gold);
}

.gallery-lightbox-close {
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  padding-bottom: 4px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox-nav,
.gallery-lightbox-zoom {
  bottom: max(18px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 223, 0.14);
  border-radius: 999px;
  background: rgba(2, 11, 8, 0.84);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(16px);
}

.gallery-lightbox-nav {
  left: max(18px, env(safe-area-inset-left));
}

.gallery-lightbox-zoom {
  right: max(18px, env(safe-area-inset-right));
}

.gallery-lightbox-nav button,
.gallery-lightbox-zoom button {
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 900;
}

.gallery-lightbox-nav span {
  min-width: 70px;
  color: rgba(255, 248, 223, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.gallery-lightbox-zoom .gallery-zoom-level {
  min-width: 72px;
  color: rgba(255, 248, 223, 0.76);
  font-size: 0.76rem;
}

@keyframes gallery-overlay-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes gallery-overlay-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes gallery-photo-expand {
  from {
    opacity: 0;
    transform: scale(0.84);
  }
  to {
    opacity: 1;
    transform: scale(var(--gallery-zoom));
  }
}

@keyframes gallery-photo-collapse {
  from {
    opacity: 1;
    transform: scale(var(--gallery-zoom));
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}

.content-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 8vw, 116px) 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(9, 34, 25, 0.82), rgba(3, 14, 11, 0.98)),
    radial-gradient(circle at top right, rgba(248, 196, 58, 0.15), transparent 12rem);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.info-card h3 {
  color: var(--cream);
}

.info-card p,
.info-card li,
.detail-list li {
  color: var(--muted);
  line-height: 1.65;
}

.info-card ul,
.detail-list {
  margin: 0;
  padding-left: 1.1rem;
}

.product-showcase {
  width: min(1440px, calc(100% - 36px));
}

.product-listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 34px);
}

.product-listing-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(248, 196, 58, 0.36);
  border-radius: 12px;
  background: linear-gradient(145deg, #071b15, #020a08 72%);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-listing-card:hover {
  border-color: rgba(248, 196, 58, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.54);
  transform: translateY(-4px);
}

.product-listing-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid rgba(248, 196, 58, 0.24);
}

.product-listing-media {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.product-listing-media + .product-listing-media {
  border-left: 1px solid rgba(248, 196, 58, 0.24);
}

.product-listing-media-logo {
  background:
    radial-gradient(circle at 50% 42%, rgba(36, 62, 70, 0.56), transparent 68%),
    #101a17;
}

.product-listing-media-product {
  background:
    radial-gradient(circle at 55% 42%, #fff 0%, #f1f3f4 58%, #dce3e6 100%);
}

.product-listing-media-stud-logo {
  background:
    radial-gradient(circle at 50% 44%, rgba(22, 64, 74, 0.62), transparent 70%),
    #07110f;
}

.product-listing-media-stud-product {
  background: #f7f7f7;
}

.product-listing-media-avicrane-art {
  background: #f7f7f7;
}

.product-listing-media-avicrane-product {
  background: #f7f7f7;
}

.product-listing-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(2, 10, 8, 0.2));
}

.product-listing-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(26px, 4vw, 48px);
}

.product-listing-copy h2 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.product-listing-copy p {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
}

.foldfly-page-hero {
  min-height: min(760px, 72svh);
}

.foldfly-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
}

.foldfly-hero-copy h1 {
  max-width: 780px;
}

.foldfly-hero-logo {
  justify-self: end;
  width: min(100%, 460px);
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.62));
}

.avicrane-hero-art {
  width: min(100%, 720px);
}

.foldfly-product-detail {
  width: min(1440px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 52px);
}

.foldfly-product-media {
  min-height: 560px;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 223, 0.18);
  border-radius: 10px;
  background: linear-gradient(145deg, #fff, #e9edef);
  box-shadow: var(--shadow);
}

.foldfly-product-media img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  padding: clamp(18px, 3vw, 40px);
  object-fit: contain;
}

.foldfly-product-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.foldfly-product-copy h2 {
  font-size: clamp(2.8rem, 5.6vw, 5.5rem);
}

.foldfly-product-copy .detail-list {
  margin-bottom: 24px;
}

.foldfly-availability {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.detail-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 20, 15, 0.86);
  box-shadow: var(--shadow);
}

.detail-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.page-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.page-media img {
  width: 100%;
  min-height: 340px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(1.05) brightness(0.88);
}

.page-media.cmtp-logo-media img {
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: clamp(16px, 2.5vw, 30px);
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.42));
}

.content-band.custom-process {
  position: relative;
  width: min(1440px, calc(100% - 36px));
  min-height: clamp(520px, 58vw, 720px);
  display: grid;
  align-items: center;
  margin: clamp(74px, 8vw, 116px) auto;
  padding: clamp(28px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(255, 248, 223, 0.18);
  border-radius: 10px;
  background: #071b15;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.custom-process-media,
.custom-process-media::after,
.custom-process-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.custom-process-media {
  z-index: -1;
  overflow: hidden;
}

.custom-process-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 248, 223, 0.06), transparent 65%),
    linear-gradient(180deg, rgba(3, 16, 13, 0.08), rgba(3, 16, 13, 0.3));
  pointer-events: none;
}

.custom-process-media img {
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.015);
}

.custom-process-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 62%);
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid #000;
  color: #07180f;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.custom-process-panel .eyebrow {
  color: #744900;
}

.custom-process-panel h2 {
  color: #06140d;
  text-shadow: none;
}

.custom-process-panel .detail-list li {
  color: #173a2b;
  font-weight: 650;
}

.custom-process-panel .detail-list li::marker {
  color: #744900;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-row strong {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.contact-row a {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: rgba(248, 196, 58, 0.58);
  text-underline-offset: 0.2em;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 248, 223, 0.2);
  border-radius: 6px;
  color: var(--cream);
  background: rgba(1, 9, 7, 0.72);
  font: inherit;
  line-height: 1.5;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.form-field input {
  min-height: 48px;
}

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

.form-field input:hover,
.form-field textarea:hover {
  border-color: rgba(248, 196, 58, 0.48);
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  border-color: var(--gold);
  background: rgba(1, 9, 7, 0.94);
  box-shadow: var(--focus-ring);
}

.contact-submit {
  justify-self: start;
  min-width: 180px;
}

.detail-panel .form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 248, 223, 0.18);
  border-radius: 6px;
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: #d9ffae;
  border-color: rgba(184, 243, 106, 0.42);
  background: rgba(22, 163, 74, 0.14);
}

.form-status[data-state="error"] {
  color: #ffd4c2;
  border-color: rgba(255, 78, 22, 0.42);
  background: rgba(255, 78, 22, 0.12);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.social-tile {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 248, 223, 0.18);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(255, 248, 223, 0.08), rgba(255, 248, 223, 0.02));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-tile::before {
  content: "";
  position: absolute;
  inset: auto -18% -42% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--social-glow);
  opacity: 0.32;
  filter: blur(8px);
}

.social-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(248, 196, 58, 0.42);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.28);
}

.social-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: #fff;
  background: var(--social-color);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28);
}

.social-tile span:last-child {
  position: relative;
  z-index: 1;
  display: block;
}

.social-tile strong {
  color: var(--cream);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-tile.youtube {
  --social-color: #ff1f1f;
  --social-glow: rgba(255, 31, 31, 0.85);
}

.social-tile.facebook {
  --social-color: #1877f2;
  --social-glow: rgba(24, 119, 242, 0.85);
}

.social-tile.tiktok {
  --social-color: #050505;
  --social-glow: rgba(0, 242, 234, 0.8);
}

.social-tile.instagram {
  --social-color: #d62976;
  --social-glow: rgba(253, 176, 69, 0.85);
}

.flock-section {
  padding-top: 0;
}

.flock-section .section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.flock-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 16px;
}

.flock-card {
  position: relative;
  height: 320px;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 196, 58, 0.24);
  border-radius: 8px;
  background: #03120e;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.flock-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(1, 7, 6, 0.74) 100%),
    radial-gradient(circle at 24% 18%, rgba(248, 196, 58, 0.14), transparent 28rem);
  pointer-events: none;
}

.flock-card-feature {
  grid-row: span 2;
  height: 660px;
  min-height: 660px;
}

.flock-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04) brightness(0.92);
}

.flock-card-contain img {
  object-fit: cover;
  object-position: 50% 22%;
  padding: 0;
}

.flock-card figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: var(--cream);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.74);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 34px) clamp(14px, 4vw, 54px);
  border-top: 1px solid var(--line);
  background: #010706;
}

.site-footer img {
  display: block;
  width: min(100%, 680px);
  height: auto;
}

@supports (content-visibility: auto) {
  .product-section,
  .home-store-section,
  .store-gallery-section,
  .content-band,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }
}

@media (max-width: 940px) {
  :root {
    --nav-expanded-height: 132px;
    --nav-collapsed-height: 66px;
  }

  .site-header {
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(255, 248, 223, 0.16);
    border-radius: 10px;
    background: rgba(2, 10, 8, 0.98);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header[data-nav-open="true"] .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: rgba(248, 196, 58, 0.1);
  }

  .nav-toggle {
    display: grid;
    order: 3;
  }

  .partner-brand {
    order: 2;
    margin-left: auto;
  }

  .brand,
  .home-link {
    order: 1;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .hero-logo {
    width: min(420px, 80vw);
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .intro-band,
  .gallery-grid,
  .two-column,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .intro-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-band div:last-child {
    border-bottom: 0;
  }

  .product-card {
    min-height: 300px;
  }

  .product-carousel-viewport {
    padding: 0 46px;
  }

  .product-card {
    flex-basis: min(78vw, 380px);
  }

  .home-store-card,
  .home-store-overlay {
    min-height: 720px;
  }

  .home-store-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1.2fr 0.8fr 0.8fr;
  }

  .home-store-shot-main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .home-store-card::after {
    background:
      linear-gradient(0deg, rgba(1, 8, 6, 0.96) 0%, rgba(1, 8, 6, 0.4) 58%, rgba(1, 8, 6, 0.2) 100%);
  }

  .gallery-grid > img:first-child {
    grid-row: auto;
  }


  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .flock-card,
  .flock-card-feature {
    height: 420px;
    min-height: 420px;
    grid-row: auto;
  }

  .foldfly-hero-layout,
  .foldfly-product-detail {
    grid-template-columns: 1fr;
  }

  .foldfly-hero-logo {
    justify-self: center;
    width: min(420px, 72vw);
  }

  .avicrane-hero-art {
    width: min(720px, 92vw);
  }

  .foldfly-product-media {
    min-height: 480px;
  }

  .content-band.custom-process {
    min-height: 600px;
    padding: 32px;
  }

  .custom-process-panel {
    width: min(620px, 82%);
  }

  .store-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(170px, 30vw, 270px);
  }

  .store-gallery-item:nth-child(14),
  .store-gallery-item:nth-child(15) {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .home-store-section {
    padding: 14px;
  }

  .home-store-card,
  .home-store-overlay {
    min-height: 680px;
  }

  .home-store-card {
    border-radius: 22px;
  }

  .home-store-collage {
    gap: 5px;
    padding: 5px;
  }

  .home-store-overlay {
    padding: 26px 20px;
  }

  .home-store-overlay h2 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  :root {
    --nav-expanded-height: 104px;
    --nav-collapsed-height: 58px;
  }

  .site-header {
    gap: 10px;
    padding: 10px max(14px, env(safe-area-inset-left));
  }

  .brand img {
    width: calc(110px - (36px * var(--nav-scroll)));
  }

  .home-link {
    min-height: 40px;
    padding: 0 5px;
    font-size: 0.62rem;
  }

  .partner-brand img {
    width: calc(52px - (18px * var(--nav-scroll)));
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: max(620px, calc(100svh - var(--nav-expanded-height)));
  }

  .hero-shade {
    background:
      radial-gradient(circle at 50% 38%, rgba(248, 196, 58, 0.18), transparent 17rem),
      linear-gradient(180deg, rgba(1, 7, 6, 0.48) 0%, rgba(1, 7, 6, 0.36) 28%, rgba(1, 7, 6, 0.88) 100%),
      linear-gradient(0deg, var(--bg) 0%, transparent 38%);
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding-top: 64px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(2.4rem, 12.5vw, 3.7rem);
  }

  .flock-card,
  .flock-card-feature {
    height: 340px;
    min-height: 340px;
  }

  .flock-card figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.35rem);
  }

  .button {
    width: 100%;
  }

  .product-carousel-viewport {
    padding: 0;
  }

  .product-carousel {
    padding-bottom: 54px;
  }

  .carousel-button {
    top: auto;
    bottom: 0;
    width: 38px;
    height: 38px;
    transform: none;
  }

  .carousel-button:hover,
  .carousel-button:disabled {
    transform: none;
  }

  .carousel-button-prev {
    left: calc(50% - 46px);
  }

  .carousel-button-next {
    right: calc(50% - 46px);
  }

  .product-card {
    flex-basis: min(86vw, 330px);
  }

  .intro-band,
  .section,
  .cta-section {
    width: min(100% - 28px, 1180px);
  }

  .intro-band {
    margin-top: -26px;
  }

  .product-card,
  .gallery-panel,
  .cta-section {
    padding: 22px;
  }

  .product-logo-card {
    padding: 0;
  }

  .content-band,
  .page-hero-inner,
  .store-gallery-section,
  .product-showcase,
  .foldfly-product-detail {
    width: min(100% - 28px, 1180px);
  }

  .content-band {
    padding: 58px 0;
  }

  .content-band.custom-process {
    width: min(100% - 28px, 1180px);
    min-height: 620px;
    margin: 58px auto;
    padding: 18px;
  }

  .custom-process-panel {
    width: 100%;
    padding: 24px;
    background: transparent;
  }

  .custom-process-media img {
    object-position: 58% center;
  }

  .foldfly-product-media {
    min-height: 320px;
  }

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

  .product-listing-media + .product-listing-media {
    border-top: 1px solid rgba(248, 196, 58, 0.24);
    border-left: 0;
  }

  .product-listing-copy {
    padding: 24px;
  }

  .foldfly-product-copy .button {
    width: 100%;
  }

  .detail-panel,
  .info-card {
    padding: 22px;
  }

  .contact-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .contact-submit {
    justify-self: stretch;
    width: 100%;
  }

  .social-tile {
    min-height: 96px;
    grid-template-columns: 48px 1fr;
  }

  .social-icon {
    width: 48px;
    height: 48px;
    font-size: 1.65rem;
  }

  .store-gallery-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .store-gallery-heading > p {
    text-align: left;
  }

  .store-gallery {
    grid-auto-rows: clamp(130px, 42vw, 200px);
    gap: 10px;
  }

  .store-gallery-item:nth-child(4),
  .store-gallery-item:nth-child(8) {
    grid-row: span 1;
  }

  .store-gallery-item span {
    right: 11px;
    bottom: 10px;
    left: 11px;
    font-size: 0.67rem;
  }

  .gallery-lightbox-nav,
  .gallery-lightbox-zoom {
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .gallery-lightbox-nav {
    left: max(10px, env(safe-area-inset-left));
  }

  .gallery-lightbox-zoom {
    right: max(10px, env(safe-area-inset-right));
  }

  .gallery-lightbox-nav button,
  .gallery-lightbox-zoom button {
    min-width: 42px;
    height: 44px;
    padding: 0 10px;
  }

  .gallery-lightbox-nav span {
    min-width: 52px;
  }

  .gallery-lightbox-zoom .gallery-zoom-level {
    min-width: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (hover: none) {
  .button:hover,
  .social-tile:hover,
  .product-logo-card:hover .product-card-link img,
  .store-gallery-item:hover img,
  .product-listing-card:hover,
  .home-store-card:hover,
  .home-store-card:hover .home-store-shot {
    transform: none;
  }
}
