:root {
  --paper: #f6efdd;
  --section-padding: 32px;
  --section-padding-mobile: 16px;
  --content-max-width: 1200px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --radius-1: 10px;
  --radius-2: 14px;
  --radius-3: 18px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.06);
  --shadow-soft: 0 6px 14px rgba(0, 0, 0, 0.05);
  --shadow: 0 20px 45px rgba(18, 11, 7, 0.16);
  --cream: #fff9ec;
  --gold: #d39a38;
  --rust: #a9532d;
  --oak: #2d231d;
  --ink: #2f2a24;
  --line: rgba(45, 35, 29, 0.16);
  --ok: #2f8b44;
  --warn: #ac6b0f;
  --scroll-offset: 118px;
  --site-header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: var(--scroll-offset);
}

@media (max-width: 720px) {
  :root {
    --scroll-offset: 100px;
  }

  .section-heading-with-actions {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-heading-actions {
    justify-content: flex-start;
  }
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.01em;
  word-spacing: -0.02em;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 244, 223, 0.72), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(211, 154, 56, 0.3), transparent 35%),
    linear-gradient(135deg, #dec097 0%, #f0e1c5 48%, #d8b383 100%);
}

body.cart-drawer-open {
  overflow: hidden;
}

.site-header,
.section,
.site-footer {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.social-strip {
  width: min(1120px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 14;
}

.social-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.95rem;
  background:
    radial-gradient(circle at 14% 0%, rgba(211, 154, 56, 0.12), transparent 48%),
    linear-gradient(140deg, rgba(18, 13, 10, 0.78), rgba(11, 8, 6, 0.78));
  border: 1px solid rgba(255, 236, 208, 0.18);
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(10, 7, 5, 0.2);
  backdrop-filter: blur(6px);
}
.partner-logos-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.partner-logos-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.partner-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  padding: 16px;
  border-radius: 12px;
  background: #fff9ec;
  border: 1px solid rgba(45, 35, 29, 0.08);
  box-shadow: 0 10px 24px rgba(12, 9, 7, 0.12);
  text-align: center;
}
.partner-card img {
  max-height: 96px;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
}
.partner-card h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #2d231d;
}
.partner-card p {
  margin: 0;
  color: #5b493a;
  font-size: 0.96rem;
}
.partners-page {
  padding-top: 42px;
  position: relative;
  z-index: 1;
}
.partners-page #partners-grid-page {
  margin-top: 18px;
}
.partners-page-body .site-header {
  display: none;
}
.partners-page-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 18px;
}
.partners-page-head h1 {
  margin: 0 0 6px;
}
.partners-page-head .fine {
  margin: 0;
}
.partner-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 243, 219, 0.85);
  color: #2d231d;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(45, 35, 29, 0.12);
  box-shadow: 0 8px 18px rgba(18, 11, 7, 0.12);
}
.partner-logo-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.global-search-form {
  margin-left: 0;
  justify-self: end;
  width: min(420px, 100%);
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.perf-toggle {
  margin-left: 0;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}

.social-strip .perf-toggle {
  display: none;
}

.perf-toggle button {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
}

.perf-status {
  font-size: 0.78rem;
  color: rgba(255, 240, 219, 0.7);
}

.global-search-form input {
  min-width: 0;
  flex: 1;
  max-width: 100%;
  background: rgba(255, 247, 233, 0.95);
  border-color: rgba(45, 35, 29, 0.2);
}

.global-search-results {
  position: absolute;
  top: calc(100% + 0.42rem);
  right: 0;
  width: min(430px, 72vw);
  z-index: 9;
  margin-top: 0;
  border: 1px solid rgba(45, 35, 29, 0.15);
  border-radius: 12px;
  background: rgba(255, 254, 249, 0.98);
  box-shadow: 0 16px 34px rgba(10, 7, 5, 0.18);
  padding: 0.5rem;
  display: grid;
  gap: 0.35rem;
}

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

.search-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.search-filter {
  border: 1px solid var(--line);
  background: #fffaf0;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  cursor: pointer;
}

.search-filter.is-active {
  background: var(--oak);
  color: #fff;
  border-color: var(--oak);
}

.search-results-list {
  display: grid;
  gap: 0.35rem;
}

.search-result-link {
  display: block;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  background: #fff9ec;
}

.search-target {
  scroll-margin-top: 118px;
}

.search-hit {
  animation: search-hit-flash 1.2s ease;
}

@keyframes search-hit-flash {
  0% {
    box-shadow: 0 0 0 0 rgba(211, 154, 56, 0);
    border-color: var(--line);
  }
  30% {
    box-shadow: 0 0 0 3px rgba(211, 154, 56, 0.36);
    border-color: rgba(211, 154, 56, 0.72);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(211, 154, 56, 0);
    border-color: var(--line);
  }
}

.social-strip-title {
  font-weight: 800;
  color: #fff3dc;
  margin-bottom: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.quick-social-links {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.quick-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 233, 195, 0.3);
  text-decoration: none;
  font-weight: 800;
  color: #fff5e4;
  background: rgba(255, 249, 236, 0.12);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.quick-social-pill:hover,
.quick-social-pill:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 249, 236, 0.2);
  border-color: rgba(255, 233, 195, 0.45);
  outline: none;
}

.site-header {
  width: min(1240px, 96vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.72rem;
  padding: 0.38rem 0.64rem;
  position: fixed;
  top: calc(0.42rem + env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  border-radius: 16px;
  border: 1px solid rgba(255, 232, 193, 0.24);
  backdrop-filter: blur(8px);
  background:
    radial-gradient(circle at 12% -30%, rgba(211, 154, 56, 0.2), transparent 48%),
    rgba(11, 8, 6, 0.58);
  box-shadow: 0 14px 32px rgba(7, 5, 4, 0.3);
  min-height: 58px;
}

.site-header.compact {
  padding: 0.3rem 0.58rem;
  background: rgba(10, 7, 5, 0.74);
  box-shadow: 0 10px 22px rgba(7, 5, 4, 0.34);
}

.site-header.compact .brand {
  transform: scale(0.985);
  transform-origin: left center;
}

.site-header.compact .menu-toggle {
  transform: scale(0.98);
  transform-origin: right center;
}

.site-header.compact .brand-text {
  gap: 0.02rem;
}

.network-status-banner {
  width: min(1120px, 92vw);
  margin: calc(var(--site-header-height, 72px) + 1rem + env(safe-area-inset-top)) auto 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.82rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(74, 52, 31, 0.16);
  box-shadow: 0 18px 34px rgba(20, 13, 8, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 18;
}

.network-status-banner.is-checking {
  background:
    radial-gradient(circle at 0% 0%, rgba(211, 154, 56, 0.18), transparent 34%),
    rgba(255, 249, 239, 0.9);
}

.network-status-banner.is-online {
  background:
    radial-gradient(circle at 0% 0%, rgba(58, 160, 107, 0.18), transparent 34%),
    rgba(244, 251, 245, 0.92);
  border-color: rgba(47, 139, 68, 0.18);
}

.network-status-banner.is-limited,
.network-status-banner.is-offline {
  background:
    radial-gradient(circle at 0% 0%, rgba(198, 111, 42, 0.16), transparent 34%),
    rgba(255, 248, 239, 0.94);
  border-color: rgba(169, 83, 45, 0.16);
}

.network-status-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.network-status-copy strong {
  font-size: 0.95rem;
  line-height: 1.1;
  color: #33261c;
}

.network-status-copy span {
  font-size: 0.83rem;
  line-height: 1.45;
  color: rgba(51, 38, 28, 0.74);
}

.network-install-btn {
  white-space: nowrap;
  flex: 0 0 auto;
}

body[data-app-installed] .network-install-btn {
  display: none !important;
}

@media (display-mode: standalone), (display-mode: minimal-ui), (display-mode: fullscreen) {
  .network-install-btn {
    display: none !important;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  min-width: 0;
}

.header-search-shell {
  position: relative;
  width: min(214px, 24vw);
}

.header-search-form {
  width: 100%;
  gap: 0.34rem;
}

.header-search-form input {
  min-width: 0;
  width: 100%;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 250, 238, 0.14);
  border: 1px solid rgba(255, 231, 193, 0.28);
  color: #fff6e4;
  padding: 0 0.68rem;
  font-size: 0.84rem;
  backdrop-filter: blur(4px);
}

.header-search-form input::placeholder {
  color: rgba(255, 237, 209, 0.74);
}

.header-search-form .btn {
  border-radius: 999px;
  padding: 0.34rem 0.54rem;
  min-width: 0;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  background: rgba(255, 249, 236, 0.2);
  border: 1px solid rgba(255, 231, 193, 0.34);
  color: #fff7e7;
}

.header-search-results {
  width: min(440px, 72vw);
}

.header-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.header-links a {
  text-decoration: none;
  color: rgba(255, 241, 221, 0.88);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.28rem 0.5rem;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.header-links a:hover,
.header-links a:focus-visible {
  background: rgba(255, 244, 221, 0.1);
  border-color: rgba(255, 229, 184, 0.26);
  color: #fffaf1;
  transform: translateY(-1px);
  outline: none;
}

.ticket-preview {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.6rem;
}

.ticket-preview-card {
  border: 1px solid rgba(64, 46, 31, 0.16);
  border-radius: 12px;
  padding: 0.65rem;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(255, 255, 255, 0.9));
}

.ticket-preview-card .ticket-brand {
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #7a4b2c;
}

.ticket-preview-card .ticket-meta {
  font-size: 0.85rem;
  color: #3b2616;
  margin-top: 0.25rem;
}

.ticket-preview-card img {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0.5rem 0;
  border-radius: 8px;
  border: 1px solid rgba(64, 46, 31, 0.2);
}

.brand {
  text-decoration: none;
  color: #fff8ea;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 7px 16px rgba(6, 4, 3, 0.36);
}

.brand-text {
  display: grid;
  gap: 0.05rem;
}

.brand-top {
  font-family: "Alfa Slab One", serif;
  letter-spacing: 0.012em;
  font-size: clamp(0.95rem, 1.75vw, 1.22rem);
  line-height: 1.04;
  color: #fff8eb;
}

.brand-bottom {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: rgba(255, 237, 206, 0.74);
}

.main-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0.3rem;
  z-index: 45;
  display: none;
  width: min(320px, 92vw);
  flex-direction: column;
  gap: 0.3rem;
  border: 1px solid rgba(255, 232, 193, 0.24);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 15% 0%, rgba(211, 154, 56, 0.2), transparent 46%),
    rgba(16, 11, 8, 0.96);
  box-shadow: 0 24px 48px rgba(7, 5, 4, 0.5);
  padding: 0.7rem;
  max-height: min(72vh, 560px);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  transform: scale(0.97);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.main-nav.open {
  display: flex;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.main-nav a {
  display: block;
  text-decoration: none;
  font-weight: 800;
  color: rgba(255, 243, 219, 0.95);
  padding: 0.42rem 0.5rem;
  border-radius: 8px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 240, 210, 0.1);
  color: #fffdf7;
  outline: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  border: 1px solid rgba(255, 232, 193, 0.28);
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  background: rgba(255, 249, 236, 0.16);
  color: #fff6e6;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(255, 249, 236, 0.22);
  border-color: rgba(255, 232, 193, 0.44);
  transform: translateY(-1px);
  outline: none;
}

.menu-dots {
  width: 0.72rem;
  height: 0.72rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

@media (max-width: 1180px) {
  .header-links {
    display: none;
  }

  .header-search-shell {
    width: min(248px, 34vw);
  }
}

.menu-dots span {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #ffe4b2;
  opacity: 0.92;
}

.draft-indicator {
  border: 1px solid rgba(255, 231, 193, 0.4);
  background: rgba(211, 154, 56, 0.2);
  color: #fff3d8;
  border-radius: 999px;
  padding: 0.24rem 0.54rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.section {
  padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile) 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

.kicker {
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.17em;
  font-weight: 800;
  color: var(--rust);
  margin-bottom: 0.7rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  color: #241a14;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  margin-bottom: 0.7rem;
  text-shadow: 0 8px 22px rgba(20, 13, 9, 0.12);
}

h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  margin-bottom: 0.55rem;
  text-shadow: 0 6px 18px rgba(20, 13, 9, 0.1);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  margin-bottom: 0.35rem;
  text-shadow: 0 6px 16px rgba(20, 13, 9, 0.08);
}

.section-heading {
  margin-bottom: 0.95rem;
  display: grid;
  gap: 0.36rem;
}

.section-heading-copy {
  display: grid;
  gap: 0.24rem;
  min-width: 0;
}

.section-heading-with-actions {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.7rem 0.9rem;
}

.section-heading-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.section-heading .kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.2rem 0.62rem;
  border-radius: 999px;
  background: rgba(169, 83, 45, 0.13);
  border: 1px solid rgba(169, 83, 45, 0.24);
  white-space: nowrap;
  max-width: 100%;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  font-weight: 800;
  line-height: 1.06;
  max-width: 16ch;
  text-wrap: balance;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
}

.hero.section {
  width: 100%;
  margin-inline: 0;
  padding: 0;
}

.hero-media {
  position: relative;
  display: grid;
  gap: 0;
  width: 100%;
}

.hero-slider {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: clamp(520px, 84vh, 880px);
  box-shadow: none;
  border: none;
  background: #1b1511;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(2.1%, 0, 0);
  transition: opacity 1.24s cubic-bezier(0.16, 0.82, 0.22, 1), transform 1.24s cubic-bezier(0.16, 0.82, 0.22, 1);
  will-change: opacity, transform;
}

.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slider:not([data-ready="true"]) .hero-slide:first-child:not(.is-active) {
  opacity: 0.88;
  transform: translate3d(0.4%, 0, 0);
  z-index: 1;
}

.hero-slider:not([data-ready="true"]) .hero-slide:first-child:not(.is-active) img {
  transform: scale(1.01);
}

.hero-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  z-index: 2;
  animation: heroSlideReveal 1.24s cubic-bezier(0.16, 0.82, 0.22, 1) both;
}

.hero-slide.is-prev {
  opacity: 0;
  transform: translate3d(-1.6%, 0, 0);
  z-index: 1;
}

@keyframes heroSlideReveal {
  0% {
    opacity: 0;
    transform: translate3d(2.4%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.05) brightness(1.02);
  object-position: center;
  transform: scale(1.01);
  transition: filter 0.45s ease;
  animation: heroImageBreathBase calc(var(--hero-slide-duration, 5000ms) * 1.32) cubic-bezier(0.42, 0, 0.24, 1) infinite alternate;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: auto;
}

.hero-slide.is-active img {
  animation: heroImageBreath calc(var(--hero-slide-duration, 5000ms) * 1.22) cubic-bezier(0.42, 0, 0.24, 1) infinite alternate;
}

@keyframes heroImageBreathBase {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.075) translate3d(0.52%, -0.2%, 0);
  }
}

@keyframes heroImageBreath {
  0% {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.12) translate3d(0.9%, -0.32%, 0);
  }
}

@keyframes heroImageBreathMobile {
  0% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.062) translate3d(0.34%, -0.14%, 0);
  }
}

.hero-slide:nth-child(1) img { object-position: 50% 40%; }
.hero-slide:nth-child(2) img { object-position: 50% 45%; }
.hero-slide:nth-child(3) img { object-position: 50% 42%; }
.hero-slide:nth-child(4) img { object-position: 50% 38%; }
.hero-slide:nth-child(5) img { object-position: 50% 40%; }
.hero-slide:nth-child(6) img { object-position: 50% 52%; }
.hero-slide:nth-child(7) img { object-position: 50% 44%; }

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 6, 5, 0.14) 0%, rgba(8, 6, 5, 0.05) 46%, rgba(8, 6, 5, 0.28) 100%),
    linear-gradient(104deg, rgba(8, 6, 5, 0.2) 2%, rgba(8, 6, 5, 0.02) 54%, rgba(8, 6, 5, 0.14) 100%);
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-intro {
  width: min(1120px, 92vw);
  margin-inline: auto;
  padding: clamp(1.6rem, 3.2vw, 2.2rem) 0 0.5rem;
}

.hero-intro-inner {
  max-width: min(920px, 100%);
}

.hero-intro h1 {
  color: #231912;
  text-shadow: none;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1.06;
  margin-bottom: 0.6rem;
  max-width: 18ch;
}

.hero-intro .hero-subtext {
  max-width: 58ch;
  color: rgba(36, 27, 20, 0.84);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.62;
}

.hero-intro .hero-lanes-note {
  margin-top: 0.56rem;
  margin-bottom: 0;
  max-width: 62ch;
  color: rgba(138, 88, 42, 0.88);
  font-size: clamp(0.72rem, 1.02vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-lanes-floating {
  position: absolute;
  left: clamp(0.9rem, 2.2vw, 1.8rem);
  bottom: clamp(0.9rem, 2.5vw, 1.6rem);
  z-index: 4;
  margin: 0;
  max-width: min(66vw, 760px);
  padding: 0.4rem 0.64rem;
  border-radius: 999px;
  background: rgba(10, 7, 5, 0.5);
  border: 1px solid rgba(255, 228, 182, 0.32);
  color: rgba(255, 240, 213, 0.96);
  font-size: clamp(0.62rem, 0.9vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  pointer-events: none;
}

.hero-intro .hero-actions {
  margin-top: 0.95rem;
}

.hero-intro .btn-primary {
  background: linear-gradient(135deg, #d39a38 0%, #b77722 100%);
  color: #fffaf1;
  border: 1px solid rgba(164, 104, 26, 0.35);
  padding: 0.82rem 1.16rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(90, 53, 16, 0.2);
}

.hero-intro .btn-soft {
  color: rgba(35, 24, 17, 0.84);
  border: 1px solid rgba(45, 30, 17, 0.24);
  border-radius: 999px;
  padding: 0.72rem 0.98rem;
  font-size: 0.71rem;
  letter-spacing: 0.08em;
}

.hero-intro .btn-soft:hover,
.hero-intro .btn-soft:focus-visible {
  color: rgba(35, 24, 17, 0.96);
}

.hero-intro .btn-soft::after {
  display: none;
}

.hero-slide-overlay {
  display: none;
}

/* foundation teaser */
.foundation-teaser {
  background: linear-gradient(135deg, #f6efe6 0%, #f2e1cc 100%);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.foundation-teaser-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  align-items: center;
}
.foundation-teaser h2 {
  margin: 6px 0 6px;
}
.foundation-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

/* hide on-home about blocks (About content now lives under Governance) */
#identity,
#marketing,
#difference,
#dominance,
#ranch-life,
#faith-foundation,
#structure,
#journey,
#collaborations,
#community {
  display: none !important;
}

.hero-photo-note {
  position: absolute;
  left: clamp(1rem, 2.4vw, 2rem);
  bottom: clamp(1.4rem, 3.8vw, 2.2rem);
  z-index: 4;
  width: min(560px, 60vw);
  padding: 0.62rem 0.74rem;
  border-radius: 12px;
  background: rgba(9, 6, 4, 0.58);
  border: 1px solid rgba(255, 234, 194, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(4px);
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transform-origin: left bottom;
  transition: opacity 0.42s cubic-bezier(0.16, 0.82, 0.22, 1), transform 0.58s cubic-bezier(0.16, 0.82, 0.22, 1), filter 0.42s cubic-bezier(0.16, 0.82, 0.22, 1);
  will-change: transform, opacity, filter;
  animation: none;
}

.hero-photo-note.is-exit {
  opacity: 0;
  transform: translateY(16px) translateX(-6px) scale(0.965);
  filter: blur(4px);
}

.hero-photo-note.is-enter {
  animation: heroNoteIn 0.96s cubic-bezier(0.16, 0.82, 0.22, 1);
}

@keyframes heroNoteFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0.24%, -1.8%, 0) scale(1.018);
  }
}

@keyframes heroNoteIn {
  0% {
    opacity: 0;
    transform: translateY(20px) translateX(-8px) scale(0.94);
    filter: blur(5px);
  }
  64% {
    opacity: 1;
    transform: translateY(-2px) translateX(0) scale(1.018);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active {
    animation: none;
  }

  .hero-media.is-autoplaying .hero-dot.is-active.is-filling::after {
    animation: none;
    transform: scaleX(1);
  }

  .hero-photo-note {
    transition: none;
  }

  .hero-photo-note.is-enter {
    animation: none;
  }

  .hero-photo-note.is-exit {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.hero-photo-note-kicker {
  margin: 0;
  color: rgba(255, 213, 150, 0.95);
  font-size: clamp(0.58rem, 0.95vw, 0.7rem);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.hero-photo-note-title {
  margin: 0.14rem 0 0;
  color: #fff8ec;
  font-size: clamp(1.12rem, 2vw, 1.7rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.hero-photo-note-text {
  margin: 0;
  color: rgba(255, 243, 221, 0.96);
  font-size: clamp(0.82rem, 1.35vw, 0.98rem);
  line-height: 1.5;
  font-weight: 550;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  margin-top: 0.26rem;
}

.hero-slider-controls {
  position: absolute;
  right: clamp(1rem, 3.2vw, 2rem);
  bottom: clamp(1.2rem, 3.2vw, 2.1rem);
  transform: none;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.46rem;
  width: auto;
  margin: 0;
  padding: 0.34rem 0.42rem;
  border-radius: 999px;
  backdrop-filter: blur(7px);
  background: rgba(20, 13, 9, 0.44);
  border: 1px solid rgba(255, 248, 236, 0.25);
}

.hero-nav {
  border: 1px solid rgba(255, 248, 236, 0.32);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  padding: 0;
  background: rgba(255, 249, 236, 0.94);
  color: #2b1f17;
  font-weight: 900;
  font-size: 1.18rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-nav:hover,
.hero-nav:focus-visible {
  transform: translateY(-1px);
  background: #fffef9;
  box-shadow: 0 8px 18px rgba(18, 11, 7, 0.16);
}

.hero-dots {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}

.hero-dot {
  width: 9px;
  height: 8px;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 249, 236, 0.6);
  background: rgba(255, 249, 236, 0.3);
  cursor: pointer;
  transition: width 0.26s ease, background 0.22s ease, border-color 0.22s ease;
}

.hero-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #e9b14f 0%, #d39a38 100%);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
}

.hero-dot.is-active {
  width: 28px;
  background: rgba(255, 248, 231, 0.26);
  border-color: rgba(45, 35, 29, 0.35);
}

.hero-dot.is-active::after {
  opacity: 1;
}

.hero-media.is-autoplaying .hero-dot.is-active.is-filling::after {
  animation: heroDotFill var(--hero-slide-duration, 5000ms) linear forwards;
}

.hero-media:not(.is-autoplaying) .hero-dot.is-active::after {
  transform: scaleX(1);
}

@keyframes heroDotFill {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

.hero-copy,
.hero-card,
.product-card,
.cart-panel,
.inquiry-form,
.foundation-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card,
.foundation-card {
  padding: clamp(1.2rem, 3vw, 2.2rem);
}

.hero-card {
  background: linear-gradient(170deg, #2f251f 0%, #1d1613 100%);
}

.hero-copy-below {
  position: absolute;
  left: clamp(1.1rem, 4vw, 3.6rem);
  bottom: clamp(9rem, 14vh, 11.4rem);
  z-index: 5;
  width: min(760px, 88vw);
  margin: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 clamp(0rem, 10vw, 6.8rem) 0 0;
  display: grid;
  gap: 0.2rem;
}

.hero-signature {
  font-size: 0.68rem;
  color: rgba(255, 236, 197, 0.9);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.hero-copy-below h1 {
  max-width: 12.8ch;
  font-size: clamp(2.5rem, 6.9vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 0.012em;
  color: #fffaf0;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.62);
  margin-bottom: 1rem;
}

.hero-copy-below > p,
.hero-copy-below .hero-subtext {
  max-width: 48ch;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: rgba(255, 246, 231, 0.95);
  font-weight: 520;
  line-height: 1.62;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
}

.hero-copy-below .kicker {
  display: inline-flex;
  width: fit-content;
  color: #ffe8be;
  background: rgba(12, 8, 5, 0.56);
  border: 1px solid rgba(255, 226, 170, 0.46);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.32rem;
  letter-spacing: 0.14em;
}

.hero-copy-below .btn-primary {
  background: linear-gradient(135deg, #d39a38 0%, #b77722 100%);
  color: #fffaf1;
  border: 1px solid rgba(255, 224, 165, 0.62);
  padding: 0.86rem 1.2rem;
  min-width: 212px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(10, 7, 4, 0.4);
}

.hero-copy-below .btn-primary:hover,
.hero-copy-below .btn-primary:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(10, 7, 4, 0.46);
}

.btn-soft {
  border: none;
  border-radius: 0;
  padding: 0.86rem 0.24rem;
  color: rgba(255, 239, 211, 0.76);
  background: transparent;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  background: transparent;
}

.btn-soft::after {
  content: "";
  position: absolute;
  left: 0.24rem;
  right: 0.24rem;
  bottom: 0.54rem;
  height: 1px;
  background: rgba(255, 232, 187, 0.28);
  transition: background 0.2s ease;
}

.btn-soft:hover,
.btn-soft:focus-visible {
  color: #fff8ea;
  transform: translateY(-1px);
  background: transparent;
}

.btn-soft:hover::after,
.btn-soft:focus-visible::after {
  background: rgba(255, 232, 187, 0.52);
}

.hero-media .hero-card {
  position: absolute;
  bottom: 1.4rem;
  right: 1.6rem;
  width: min(320px, 78vw);
  box-shadow: 0 18px 40px rgba(10, 7, 5, 0.45);
  border: 1px solid rgba(255, 246, 232, 0.18);
  backdrop-filter: blur(6px);
  background: linear-gradient(170deg, rgba(24, 18, 14, 0.98) 0%, rgba(16, 12, 10, 0.98) 100%);
}

.hero-card h2,
.hero-card li {
  color: #fff9ef;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.hero-card li {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-scene {
  border: 1px solid rgba(255, 246, 232, 0.22);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.hero-scene svg {
  display: block;
  width: 100%;
  height: auto;
}

.horse-wrap {
  animation: horse-run 1.22s ease-in-out infinite;
  transform-origin: 170px 132px;
}

.leg-front {
  animation: legs-front 0.46s linear infinite alternate;
  transform-origin: 182px 126px;
}

.leg-back {
  animation: legs-back 0.46s linear infinite alternate-reverse;
  transform-origin: 112px 126px;
}

.rider {
  animation: rider-bounce 0.6s ease-in-out infinite;
  transform-origin: 147px 90px;
}

.dust {
  animation: dust-shift 1s ease-out infinite;
}

.cowboy-stand {
  animation: stand-breathe 2.8s ease-in-out infinite;
  transform-origin: 44px 108px;
}

.sun-glow {
  animation: sun-pulse 2.8s ease-in-out infinite;
}

.acacia {
  animation: sway 3.4s ease-in-out infinite;
  transform-origin: 52px 90px;
}

@keyframes horse-run {
  0% { transform: translateX(0) translateY(0); }
  30% { transform: translateX(8px) translateY(-1px); }
  60% { transform: translateX(14px) translateY(0); }
  100% { transform: translateX(0) translateY(0); }
}

@keyframes legs-front {
  from { transform: rotate(9deg); }
  to { transform: rotate(-9deg); }
}

@keyframes legs-back {
  from { transform: rotate(-9deg); }
  to { transform: rotate(9deg); }
}

@keyframes rider-bounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

@keyframes dust-shift {
  0% { transform: translateX(0) scale(1); opacity: 0.58; }
  100% { transform: translateX(16px) scale(1.08); opacity: 0.2; }
}

@keyframes stand-breathe {
  0% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
  100% { transform: translateY(0); }
}

@keyframes sun-pulse {
  0% { opacity: 0.86; }
  50% { opacity: 1; }
  100% { opacity: 0.86; }
}

@keyframes sway {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(1.5deg); }
  100% { transform: rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .btn,
  .showcase-tile,
  .product-card,
  .video-card,
  .outfit-card {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  .horse-wrap,
  .leg-front,
  .leg-back,
  .rider,
  .dust,
  .cowboy-stand,
  .sun-glow,
  .acacia {
    animation: none;
  }
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-copy-below .hero-actions {
  margin-top: 1.8rem;
}

.quick-lane-strip {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-lane-strip a {
  text-decoration: none;
  border: 1px solid rgba(255, 226, 178, 0.24);
  border-radius: 999px;
  background: rgba(18, 12, 9, 0.88);
  color: #fff0d4;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  padding: 0.38rem 0.78rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.quick-lane-strip a:hover,
.quick-lane-strip a:focus-visible {
  background: rgba(255, 249, 236, 0.12);
  border-color: rgba(255, 226, 178, 0.42);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(18, 11, 7, 0.2);
  outline: none;
}

.hero-lane-strip {
  justify-content: flex-start;
  gap: 0.9rem;
  margin-top: 0.82rem;
}

.hero-lane-strip a {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  color: rgba(255, 231, 186, 0.84);
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}

.hero-lane-strip a:not(:first-child) {
  padding-left: 0.86rem;
}

.hero-lane-strip a:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0.08rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(255, 231, 186, 0.44);
}

.hero-lane-strip a:hover,
.hero-lane-strip a:focus-visible {
  background: transparent;
  border: none;
  color: #fff8e8;
  box-shadow: none;
}

.dominance-section {
  padding-top: clamp(2rem, 5vw, 3.4rem);
}

.dominance-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.95rem;
}

.dominance-manifesto,
.dominance-stat {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.dominance-manifesto {
  background:
    radial-gradient(circle at 84% 14%, rgba(211, 154, 56, 0.18), transparent 42%),
    linear-gradient(152deg, #231911 0%, #1a120d 100%);
  color: #fff8ec;
  padding: clamp(1rem, 2.8vw, 1.6rem);
}

.dominance-manifesto h3 {
  color: #fff8ec;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
}

.dominance-manifesto p {
  color: rgba(255, 248, 236, 0.92);
}

.dominance-pillars {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.6rem;
  list-style: none;
}

.dominance-pillars li {
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(255, 248, 236, 0.2);
  color: #fff8ec;
  line-height: 1.45;
}

.dominance-pillars strong {
  color: #ffd891;
}

.dominance-manifesto .btn-partner {
  color: #fff5de;
  border-color: rgba(255, 224, 165, 0.72);
  background: rgba(255, 224, 165, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 234, 199, 0.32),
    0 9px 22px rgba(7, 5, 4, 0.22);
}

.dominance-manifesto .btn-partner:hover,
.dominance-manifesto .btn-partner:focus-visible {
  background: rgba(255, 224, 165, 0.2);
  border-color: rgba(255, 229, 180, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 240, 213, 0.42),
    0 12px 26px rgba(7, 5, 4, 0.28);
}

.dominance-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.dominance-stat {
  background: linear-gradient(168deg, #fff7e7 0%, #f8edd7 100%);
  padding: 0.95rem;
  display: grid;
  gap: 0.35rem;
  align-content: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dominance-stat:hover,
.dominance-stat:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(18, 11, 7, 0.2);
}

.stat-value {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(1.5rem, 3.6vw, 2.3rem);
  letter-spacing: 0.01em;
  color: #2f1f14;
  line-height: 1;
}

.stat-label {
  color: rgba(47, 35, 24, 0.86);
  font-weight: 700;
  font-size: 0.88rem;
}

.ranch-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.ranch-copy {
  padding: 0.4rem 0.4rem 0.4rem 0.2rem;
}

.ranch-scene-wrap {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #2a1f17;
}

.ranch-scene-wrap svg {
  display: block;
  width: 100%;
  height: auto;
}

.faith-strip {
  background: linear-gradient(110deg, #fff3dd 0%, #f6e8cd 55%, #f2dfbe 100%);
  border: 1px solid var(--line);
  border-left: 6px solid var(--rust);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.2rem;
}

.faith-strip h3 {
  margin-bottom: 0.4rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--oak);
  color: #fff7e9;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--oak);
  background: transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 10px 22px rgba(29, 22, 18, 0.28);
  filter: brightness(1.03);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(169, 83, 45, 0.08);
  border-color: rgba(169, 83, 45, 0.4);
}

.split {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 1rem;
}

.top-space {
  margin-top: 1rem;
}

.bottom-space {
  margin-bottom: 1rem;
}

.gallery-manager {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.compact-heading h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.admin-form {
  margin-top: 0.5rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.admin-form label.admin-span-full,
.admin-form label:nth-child(5),
.admin-form .admin-actions,
.admin-form #save-backend,
.admin-form .fine {
  grid-column: 1 / -1;
}

.admin-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.admin-form input[readonly] {
  background: rgba(148, 163, 184, 0.18);
  cursor: not-allowed;
}

.admin-tools-stack {
  display: grid;
  gap: 0.8rem;
}

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

.collection-card,
.shop-lane-stack {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
  position: relative;
}

.lane-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  align-items: start;
}

.lane-layout .cart-panel {
  position: sticky;
  top: 92px;
}

.lane-layout .card-grid.three {
  grid-template-columns: repeat(2, 1fr);
}

.shop-finder {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(89, 58, 29, 0.12);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 233, 183, 0.55), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 243, 0.98), rgba(246, 231, 202, 0.96));
  box-shadow: 0 18px 36px rgba(18, 11, 7, 0.1);
}

.shop-finder-copy h3,
.shop-rail-heading h3 {
  margin-top: 0.2rem;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.shop-finder-copy p:last-child {
  margin-top: 0.42rem;
  color: rgba(47, 42, 36, 0.78);
}

.shop-finder-controls {
  display: grid;
  gap: 0.75rem;
  align-content: center;
}

.shop-finder-input {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: rgba(47, 42, 36, 0.78);
}

.shop-finder-input span {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-filter-pills {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.shop-filter-pill,
.shop-inline-cta,
.shop-rail-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.shop-filter-pill {
  border: 1px solid rgba(89, 58, 29, 0.14);
  background: rgba(255, 248, 235, 0.92);
  color: rgba(47, 32, 21, 0.84);
  padding: 0.52rem 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.shop-filter-pill.is-active {
  background: linear-gradient(135deg, #3e2818 0%, #2a1b10 100%);
  color: #fff3dc;
  border-color: rgba(42, 27, 16, 0.95);
}

.shop-finder-summary {
  margin-top: 0;
}

.shop-launch-panel {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(92, 58, 28, 0.14);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 239, 206, 0.92), transparent 38%),
    linear-gradient(135deg, rgba(255, 248, 233, 0.98), rgba(244, 228, 196, 0.95));
  box-shadow: 0 18px 38px rgba(21, 13, 8, 0.11);
}

.shop-trust-strip,
.shop-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.shop-trust-card,
.shop-showcase-card {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(92, 58, 28, 0.12);
  background: rgba(255, 251, 245, 0.96);
  box-shadow: 0 14px 28px rgba(29, 18, 11, 0.08);
}

.shop-showcase-card {
  text-decoration: none;
  color: inherit;
  background:
    radial-gradient(circle at top left, rgba(255, 235, 196, 0.68), transparent 36%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(247, 235, 208, 0.98));
}

.shop-trust-card h3,
.shop-trust-card p,
.shop-showcase-card h3,
.shop-showcase-card p {
  margin: 0;
}

.shop-trust-card p:last-child,
.shop-showcase-card p:last-child {
  color: rgba(47, 42, 36, 0.78);
}

.shop-launch-copy h3,
.shop-launch-copy p {
  margin: 0;
}

.shop-launch-copy h3 {
  margin-top: 0.2rem;
  font-size: clamp(1.16rem, 2vw, 1.52rem);
  line-height: 1.14;
}

.shop-launch-copy p:last-child {
  margin-top: 0.4rem;
  color: rgba(47, 42, 36, 0.8);
}

.shop-launch-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 0.9rem;
}

.shop-launch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(92, 58, 28, 0.14);
  background: rgba(255, 250, 241, 0.94);
  color: rgba(47, 32, 21, 0.86);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.shop-launch-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.72rem;
  align-items: end;
  margin-top: 0.95rem;
}

.shop-launch-search label {
  display: grid;
  gap: 0.34rem;
}

.shop-launch-search span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(47, 42, 36, 0.76);
}

.shop-launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  justify-content: flex-end;
  align-items: center;
}

.shop-rail-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.85rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(93, 61, 31, 0.1);
}

.shop-rail-heading p {
  margin: 0.2rem 0 0;
  color: rgba(47, 42, 36, 0.78);
}

.shop-rail-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.48rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(121, 74, 34, 0.88);
}

.shop-rail-hint::before {
  content: "↔";
  font-size: 0.92rem;
}

.shop-rail-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.shop-inline-cta {
  padding: 0.58rem 0.9rem;
  font-weight: 800;
}

.shop-rail-nav {
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(89, 58, 29, 0.14);
  background: rgba(255, 248, 235, 0.92);
  color: var(--oak);
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
}

.shop-rail-nav-emphasis {
  min-width: 50px;
  height: 50px;
  border-color: rgba(61, 39, 23, 0.28);
  background: linear-gradient(180deg, rgba(61, 39, 23, 0.98), rgba(39, 24, 15, 0.96));
  color: #fff3dc;
  box-shadow: 0 14px 28px rgba(28, 17, 10, 0.16);
}

.shop-rail-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 31vw);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 0.25rem;
  padding: 0.15rem 0.15rem 0.45rem;
  scrollbar-width: thin;
}

.shop-rail-grid.gallery-grid,
.shop-rail-grid.card-grid,
.shop-rail-grid.card-grid.three {
  grid-template-columns: none;
}

.shop-rail-grid > * {
  scroll-snap-align: start;
  min-width: 0;
}

#events .shop-rail-grid {
  grid-auto-columns: minmax(238px, 28vw);
}

.lane-layout .shop-lane-stack::after,
.collection-card::after {
  content: "";
  position: absolute;
  top: 3.3rem;
  right: 0;
  width: 44px;
  height: calc(100% - 3.5rem);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(243, 221, 177, 0), rgba(243, 221, 177, 0.88));
  opacity: 0.92;
}

#events .shop-lane-stack::after {
  width: 64px;
  background: linear-gradient(90deg, rgba(243, 221, 177, 0), rgba(243, 221, 177, 0.98));
}

#our-events .photo-showcase::after {
  content: "";
  position: sticky;
  right: 0;
  width: 64px;
  margin-left: -64px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(243, 221, 177, 0), rgba(243, 221, 177, 0.98));
}

.shop-premium-banner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(92, 58, 28, 0.14);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 242, 214, 0.94), transparent 42%),
    linear-gradient(135deg, rgba(76, 48, 28, 0.95), rgba(36, 24, 16, 0.92));
  color: #fff4df;
  box-shadow: 0 24px 46px rgba(21, 13, 8, 0.2);
}

.shop-premium-copy h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.15;
  margin-top: 0.2rem;
}

.shop-premium-copy p:last-child {
  margin-top: 0.45rem;
  color: rgba(255, 239, 214, 0.82);
  max-width: 54ch;
}

.shop-premium-actions {
  display: grid;
  gap: 0.8rem;
  align-content: center;
  justify-items: start;
}

.shop-drawer-cta {
  min-width: 220px;
}

.shop-premium-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.shop-premium-pills span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 226, 173, 0.2);
  background: rgba(255, 248, 235, 0.1);
  color: rgba(255, 242, 220, 0.92);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-grid {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.65rem;
}

.photo-showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}

#our-events .photo-showcase {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(304px, 38vw);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.95rem;
  padding: 0.15rem 2.8rem 0.55rem 0.15rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

#our-events .photo-showcase::-webkit-scrollbar {
  display: none;
}

.showcase-rail-shell {
  position: relative;
  overflow: hidden;
}

.showcase-rail-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.showcase-rail-nav-left {
  left: 0.4rem;
}

.showcase-rail-nav-right {
  right: 0.4rem;
}

.showcase-tile {
  grid-column: span 4;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(211, 154, 56, 0.2), transparent 38%),
    #fffef9;
  box-shadow:
    0 16px 34px rgba(18, 11, 7, 0.16),
    inset 0 0 0 1px rgba(255, 244, 223, 0.6);
  transform: translateY(0);
  position: relative;
  isolation: isolate;
  animation: tile-float 5.5s ease-in-out infinite;
}

#our-events .showcase-tile,
#our-events .showcase-tile:nth-child(5n),
#our-events .showcase-tile:nth-child(7n) {
  grid-column: auto;
  scroll-snap-align: start;
  aspect-ratio: 5 / 6;
  border-radius: 28px;
  border: 1px solid rgba(108, 67, 32, 0.03);
  background: rgba(255, 250, 244, 0.18);
  box-shadow:
    0 20px 38px rgba(18, 11, 7, 0.14),
    inset 0 0 0 1px rgba(255, 244, 223, 0.08);
}

.showcase-tile:nth-child(2n) {
  animation-duration: 6.4s;
}

.showcase-tile:nth-child(3n) {
  animation-duration: 7.2s;
}

.showcase-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  background: linear-gradient(145deg, #f2e0bf, #ebd0a3);
  transform: scale(1.08);
  transition: transform 0.7s ease, filter 0.35s ease;
  filter: saturate(1.12) contrast(1.06);
}

#our-events .showcase-tile img {
  transform: scale(1.28);
  filter: saturate(1.18) contrast(1.09) brightness(1.02);
}

.showcase-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.42rem;
  margin-top: 0.55rem;
}

.showcase-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(110, 74, 38, 0.24);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, width 0.18s ease;
}

.showcase-dot.is-active {
  width: 26px;
  background: linear-gradient(135deg, #3e2818 0%, #a55a2f 100%);
}

.showcase-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(168deg, rgba(11, 7, 5, 0.06) 0%, rgba(11, 7, 5, 0.01) 46%, rgba(11, 7, 5, 0.16) 100%),
    radial-gradient(circle at 20% 0%, rgba(255, 248, 235, 0.28), transparent 44%);
  opacity: 0.88;
  transition: opacity 0.25s ease;
}

.showcase-tile:hover img,
.showcase-tile:focus-within img {
  transform: scale(1.19);
  filter: saturate(1.18) contrast(1.08);
}

.showcase-tile:hover::before,
.showcase-tile:focus-within::before {
  opacity: 0.64;
}

.photo-showcase .showcase-tile:nth-child(1) img { object-position: 50% 58%; }
.photo-showcase .showcase-tile:nth-child(2) img { object-position: 50% 50%; }
.photo-showcase .showcase-tile:nth-child(3) img { object-position: 50% 48%; }
.photo-showcase .showcase-tile:nth-child(4) img { object-position: 50% 36%; }
.photo-showcase .showcase-tile:nth-child(5) img { object-position: 50% 42%; }
.photo-showcase .showcase-tile:nth-child(6) img { object-position: 50% 38%; }
.photo-showcase .showcase-tile:nth-child(7) img { object-position: 50% 46%; }
.photo-showcase .showcase-tile:nth-child(8) img { object-position: 50% 46%; }
.photo-showcase .showcase-tile:nth-child(9) img { object-position: 50% 50%; }
.photo-showcase .showcase-tile:nth-child(10) img { object-position: 50% 44%; }

.showcase-tile:nth-child(5n) {
  grid-column: span 6;
}

.showcase-tile:nth-child(7n) {
  grid-column: span 3;
}

@keyframes tile-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.outfit-card {
  display: grid;
  gap: 0;
  border: 1px solid rgba(101, 66, 33, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 235, 196, 0.45), transparent 36%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(246, 234, 209, 0.98));
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(31, 19, 11, 0.09);
}

.outfit-image {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 24%;
  background: linear-gradient(145deg, #f2e0bf, #ebd0a3);
}

#events-grid .product-card .outfit-image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 38%;
  background: #120d09;
  border-radius: 10px;
}

#events-grid .product-card picture {
  display: block;
}

.event-card {
  position: relative;
  gap: 0.78rem;
  padding: 0.85rem;
  border-radius: 22px;
  border: 1px solid rgba(103, 66, 34, 0.14);
  background:
    radial-gradient(circle at top left, rgba(255, 233, 190, 0.6), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(246, 233, 206, 0.98));
  box-shadow: 0 18px 34px rgba(29, 18, 11, 0.11);
}

.event-card .outfit-image {
  border-radius: 16px;
}

.event-card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}

.event-date-badge {
  display: inline-grid;
  gap: 0.08rem;
  min-width: 66px;
  padding: 0.6rem 0.72rem;
  border-radius: 18px;
  background: rgba(61, 39, 23, 0.94);
  color: #fff5df;
  box-shadow: 0 12px 24px rgba(33, 20, 11, 0.18);
}

.event-date-badge strong {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.event-date-badge span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 238, 207, 0.84);
}

.event-card .shop-meta-chips {
  margin: 0;
  justify-content: flex-end;
}

.event-card h3 {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.08;
  text-wrap: balance;
}

.event-facts {
  display: grid;
  gap: 0.42rem;
}

.event-facts p,
.event-ticket-line {
  display: grid;
  gap: 0.12rem;
  margin: 0;
}

.event-facts strong,
.event-ticket-line strong {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(146, 89, 41, 0.82);
}

.event-facts span {
  color: rgba(47, 42, 36, 0.82);
}

.event-countdown {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(92, 58, 28, 0.08);
  color: rgba(85, 52, 24, 0.92);
  border: 1px solid rgba(92, 58, 28, 0.12);
}

.event-countdown[data-countdown-state="soon"],
.event-countdown[data-countdown-state="today"] {
  background: rgba(169, 83, 45, 0.13);
  color: rgba(128, 61, 22, 0.96);
  border-color: rgba(169, 83, 45, 0.22);
}

.event-countdown[data-countdown-state="closed"] {
  background: rgba(61, 39, 23, 0.08);
  color: rgba(61, 39, 23, 0.72);
}

.event-ticket-line {
  padding-top: 0.18rem;
  border-top: 1px solid rgba(103, 66, 34, 0.1);
}

.event-ticket-line span {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--oak);
}

.outfit-body {
  display: grid;
  gap: 0.5rem;
  padding: 0.88rem;
}

.outfit-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.outfit-lane-label {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  background: rgba(61, 39, 23, 0.08);
  color: rgba(61, 39, 23, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outfit-sell-note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(117, 70, 32, 0.9);
  font-weight: 700;
}

.outfit-name {
  margin: 0;
  font-weight: 800;
  color: var(--oak);
  font-size: 1.04rem;
}

.outfit-meta {
  font-size: 0.87rem;
  color: rgba(47, 42, 36, 0.82);
  margin: 0;
}

.outfit-trust {
  display: grid;
  gap: 0.18rem;
}

.outfit-trust p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(47, 42, 36, 0.74);
}

.shop-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin: 0 0 0.55rem;
}

.shop-meta-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 244, 221, 0.94);
  border: 1px solid rgba(119, 79, 38, 0.12);
  color: rgba(90, 58, 27, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.shop-meta-chip.is-size {
  background: rgba(61, 39, 23, 0.08);
}

.shop-meta-chip.is-badge {
  background: rgba(169, 83, 45, 0.14);
  border-color: rgba(169, 83, 45, 0.22);
  color: rgba(133, 63, 24, 0.96);
}

.shop-meta-chip.is-category {
  background: rgba(61, 39, 23, 0.08);
  color: rgba(61, 39, 23, 0.84);
}

.shop-meta-chip.is-batch {
  background: rgba(169, 83, 45, 0.14);
  border-color: rgba(169, 83, 45, 0.24);
  color: rgba(133, 63, 24, 0.96);
}

.shop-meta-chip.is-release {
  background: rgba(57, 109, 73, 0.12);
  border-color: rgba(57, 109, 73, 0.2);
  color: rgba(39, 95, 58, 0.94);
}

.shop-meta-chip.is-release.is-few_left {
  background: rgba(181, 93, 36, 0.14);
  border-color: rgba(181, 93, 36, 0.22);
  color: rgba(145, 66, 17, 0.96);
}

.shop-meta-chip.is-release.is-sold_out,
.shop-meta-chip.is-release.is-closed {
  background: rgba(61, 39, 23, 0.1);
  border-color: rgba(61, 39, 23, 0.16);
  color: rgba(61, 39, 23, 0.74);
}

.gallery-empty {
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 0.65rem;
  font-size: 0.86rem;
  color: rgba(47, 42, 36, 0.7);
}

.outfit-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fffef9;
}

.video-card video {
  width: 100%;
  display: block;
  background: #1d1713;
}

.video-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #1d1713;
}

.video-poster {
  position: relative;
  display: grid;
  place-items: center;
  background: #1d1713;
  border-radius: 10px;
  overflow: hidden;
}
.video-poster img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(0.9);
}
.video-play-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
}

.video-body {
  padding: 0.55rem 0.65rem 0.7rem;
}

.team-row,
.social-row {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  background: #fffef9;
}

.team-row {
  display: grid;
  gap: 0.6rem;
}

.team-photo {
  display: block;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center top;
  border-radius: 10px;
  background: linear-gradient(145deg, #f2e0bf, #ebd0a3);
}

.team-photo,
.showcase-tile img,
.outfit-image {
  cursor: zoom-in;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(12, 8, 5, 0.9);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox-content {
  width: auto;
  max-width: 95vw;
  max-height: 95vh;
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  background: transparent;
  padding: 0.1rem;
}

.media-lightbox-image {
  max-width: 95vw;
  max-height: 92vh;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
  object-fit: contain;
  transition: transform 0.2s ease;
  transform-origin: center center;
}

.media-lightbox.media-lightbox-event .media-lightbox-content {
  max-width: 96vw;
  max-height: 96vh;
  padding: 0;
  gap: 0.1rem;
}

.media-lightbox.media-lightbox-event .media-lightbox-image {
  max-width: 96vw;
  max-height: 94vh;
  border-radius: 6px;
}

.media-lightbox-caption {
  color: #f8eee1;
  font-weight: 700;
  text-align: center;
}

.media-lightbox-close {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 999px;
  padding: 0.44rem 0.82rem;
  cursor: pointer;
  font-weight: 800;
}

.media-lightbox-toolbar {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  background: rgba(16, 10, 7, 0.64);
  border: 1px solid rgba(255, 239, 215, 0.24);
  border-radius: 999px;
  padding: 0.28rem 0.34rem;
}

.media-lightbox-zoom {
  border: 1px solid rgba(255, 243, 220, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff8ea;
  border-radius: 999px;
  min-width: 40px;
  height: 32px;
  padding: 0 0.5rem;
  font-weight: 800;
  cursor: pointer;
}
.media-lightbox-prev,
.media-lightbox-next {
  font-size: 1rem;
}

.media-lightbox-zoom:hover,
.media-lightbox-zoom:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.media-lightbox-zoom-label {
  color: rgba(255, 245, 226, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  min-width: 2.8rem;
  text-align: center;
}

.social-link {
  font-weight: 800;
  text-decoration: none;
}

.whatsapp-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1300;
  display: grid;
  gap: 0.42rem;
  justify-items: end;
  touch-action: none;
}

.whatsapp-widget.is-dragging {
  user-select: none;
}

.whatsapp-widget-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.whatsapp-widget-control,
.whatsapp-widget-restore {
  border: 1px solid rgba(18, 98, 87, 0.18);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.94);
  color: #215046;
  box-shadow: 0 10px 22px rgba(10, 58, 50, 0.18);
  font-weight: 800;
}

.whatsapp-widget-control {
  min-height: 32px;
  padding: 0 0.72rem;
  font-size: 0.72rem;
  cursor: pointer;
}

.whatsapp-widget-dismiss {
  min-width: 32px;
  padding: 0;
}

.whatsapp-chat-float,
.whatsapp-widget-restore {
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: #128c7e;
  border: 1px solid rgba(10, 86, 76, 0.75);
  border-radius: 999px;
  padding: 0.68rem 0.95rem;
  box-shadow: 0 12px 25px rgba(7, 54, 47, 0.26);
}

.whatsapp-widget-restore {
  color: #fff;
  cursor: pointer;
}

.whatsapp-widget.is-minimized .whatsapp-widget-controls,
.whatsapp-widget.is-minimized .whatsapp-chat-float {
  display: none;
}

.whatsapp-widget:not(.is-minimized) .whatsapp-widget-restore {
  display: none;
}

.whatsapp-chat-float:hover,
.whatsapp-chat-float:focus-visible,
.whatsapp-widget-restore:hover,
.whatsapp-widget-restore:focus-visible {
  background: #0f7a6e;
  outline: none;
}

.delete-outfit {
  border: 1px solid rgba(169, 83, 45, 0.35);
  background: transparent;
  color: var(--rust);
  border-radius: 999px;
  padding: 0.38rem 0.6rem;
  font-weight: 700;
  cursor: pointer;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.product-card,
.cart-panel,
.inquiry-form {
  padding: 0.95rem;
}

#apparel .split > .card-grid .product-card,
#apparel .shop-lane-stack .product-card,
.lane-layout .product-card,
.lane-layout .cart-panel,
#apparel .cart-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 232, 187, 0.42), transparent 30%),
    linear-gradient(180deg, rgba(255, 251, 243, 0.98), rgba(255, 241, 217, 0.98));
  border: 1px solid rgba(82, 54, 29, 0.12);
  box-shadow:
    0 18px 36px rgba(18, 11, 7, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.cart-panel {
  position: relative;
  overflow: hidden;
}

.cart-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.22), transparent 32%),
    radial-gradient(circle at 100% 0%, rgba(211, 154, 56, 0.12), transparent 28%);
}

.cart-panel > * {
  position: relative;
  z-index: 1;
}

.product-card,
.cart-panel,
.inquiry-form,
.video-card,
.outfit-card,
.team-row,
.social-row {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover,
.video-card:hover,
.outfit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(18, 11, 7, 0.16);
}

body.lite-mode .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

body.lite-mode .showcase-tile,
body.lite-mode .product-card,
body.lite-mode .video-card,
body.lite-mode .outfit-card,
body.lite-mode .btn {
  animation: none !important;
  transition: none !important;
}

body.lite-mode .showcase-tile img {
  transform: none;
}

body.lite-mode .hero-slide,
body.lite-mode .hero-photo-note,
body.lite-mode .hero-slider-controls {
  transition: none !important;
}

body.lite-mode .hero-slide.is-active {
  animation: none !important;
}

body.lite-mode .hero-slide img,
body.lite-mode .hero-slide.is-active img {
  animation: none !important;
  transform: none !important;
  transition: none !important;
}

body.lite-mode .hero-photo-note.is-enter {
  animation: none !important;
}

body.lite-mode .hero-photo-note.is-exit {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.product-card label,
.inquiry-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

select,
input,
textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.68rem;
  font-family: inherit;
}

.stock {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.in-stock {
  color: var(--ok);
  background: rgba(47, 139, 68, 0.13);
}

.low-stock {
  color: var(--warn);
  background: rgba(172, 107, 15, 0.16);
}

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

#cart-count {
  background: rgba(169, 83, 45, 0.16);
  color: var(--rust);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.quick-cart-count {
  background: rgba(169, 83, 45, 0.16);
  color: var(--rust);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.cart-items {
  list-style: none;
  margin: 0.8rem 0;
  display: grid;
  gap: 0.45rem;
}

.cart-items li {
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.55rem;
}

.cart-item-row {
  display: grid;
  gap: 0.5rem;
}

.cart-item-main {
  display: grid;
  gap: 0.1rem;
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-qty-btn,
.cart-remove-btn {
  border: 1px solid rgba(107, 73, 38, 0.18);
  background: rgba(255, 248, 236, 0.9);
  color: var(--ink);
  border-radius: 999px;
  min-width: 2rem;
  height: 2rem;
  cursor: pointer;
  font-weight: 700;
}

.cart-remove-btn {
  color: #9f2d22;
}

.cart-item-total {
  font-weight: 700;
  color: var(--ink);
}

.cart-total {
  margin-bottom: 0.8rem;
}

.cart-slide-trigger {
  width: 100%;
  margin-bottom: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: var(--ink-900);
  color: #fff8ec;
  border: none;
}

.cart-slide-trigger .cart-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.cart-slide-trigger .cart-pill-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  padding: 0 6px;
  height: 20px;
  border-radius: 10px;
  background: #fff3dc;
  color: #2b1a0e;
  font-weight: 800;
  font-size: 0.78rem;
  line-height: 1;
}

.cart-drawer-close {
  border: 1px solid rgba(255, 232, 193, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 15% 0%, rgba(211, 154, 56, 0.26), transparent 42%),
    rgba(15, 10, 7, 0.92);
  color: #fff6e6;
  box-shadow: 0 18px 38px rgba(10, 6, 4, 0.28);
}

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1280;
  background: rgba(12, 8, 6, 0.5);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.cart-drawer-overlay.is-open {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(460px, 100vw);
  height: 100vh;
  z-index: 1290;
  transform: translateX(104%);
  transition: transform 0.34s cubic-bezier(0.22, 0.78, 0.24, 1);
  pointer-events: none;
}

.cart-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.cart-drawer-shell {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem 1rem calc(1rem + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 228, 173, 0.48), transparent 28%),
    linear-gradient(180deg, #fff8ee 0%, #f4e3c3 100%);
  border-left: 1px solid rgba(89, 58, 29, 0.12);
  box-shadow: -22px 0 48px rgba(11, 7, 4, 0.18);
  overflow-y: auto;
}

.cart-drawer-grip {
  width: 64px;
  height: 5px;
  border-radius: 999px;
  background: rgba(110, 72, 36, 0.22);
  align-self: center;
  margin-bottom: -0.15rem;
}

.cart-drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.75rem;
}

.cart-drawer-header h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.08;
}

.cart-drawer-close {
  padding: 0.72rem 0.9rem;
  cursor: pointer;
  font-weight: 800;
}

.cart-drawer-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.42rem;
}

.cart-drawer-lane {
  border: 1px solid rgba(100, 67, 34, 0.14);
  border-radius: 999px;
  background: rgba(255, 248, 235, 0.76);
  color: rgba(47, 32, 21, 0.82);
  padding: 0.52rem 0.5rem;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.cart-drawer-lane.is-active {
  background: linear-gradient(135deg, #3e2818 0%, #2a1b10 100%);
  color: #fff3dc;
  border-color: rgba(42, 27, 16, 0.95);
}

.cart-drawer-summary {
  border: 1px solid rgba(96, 65, 34, 0.12);
  border-radius: 18px;
  padding: 0.9rem;
  background: rgba(255, 252, 244, 0.72);
}

.cart-drawer-dismiss-hint {
  margin-top: 0.4rem;
  color: rgba(92, 61, 31, 0.8);
}

.cart-drawer-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.cart-drawer-stats div {
  padding: 0.78rem 0.82rem;
  border-radius: 16px;
  background: rgba(255, 245, 223, 0.92);
  border: 1px solid rgba(96, 65, 34, 0.1);
}

.cart-drawer-stats span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(122, 78, 40, 0.82);
  margin-bottom: 0.22rem;
}

.cart-drawer-items {
  margin: 0;
}

.cart-drawer-empty-state {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(241, 186, 88, 0.18), transparent 40%),
    rgba(255, 251, 243, 0.88);
  border: 1px solid rgba(96, 65, 34, 0.12);
}

.cart-drawer-empty-state h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.18;
}

.cart-drawer-empty-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cart-drawer-empty-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.92);
  border: 1px solid rgba(96, 65, 34, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(74, 48, 24, 0.88);
}

.cart-drawer-empty-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.cart-drawer-panel {
  display: grid;
  gap: 0.7rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(96, 65, 34, 0.16);
}

.cart-drawer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.card-qty-label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.84rem;
  color: rgba(47, 42, 36, 0.82);
  margin: 0.4rem 0 0.15rem;
}

.card-qty-input {
  width: 100%;
  max-width: 7rem;
}

.fine {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: rgba(47, 42, 36, 0.78);
}

.fine.ok {
  color: var(--ok);
  font-weight: 700;
}

.fine.warn {
  color: #b45309;
  font-weight: 700;
}

.fine[data-state="ok"] {
  color: var(--ok);
  font-weight: 700;
}

.fine[data-state="error"] {
  color: #b91c1c;
  font-weight: 700;
}

.inquiry-form {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

details.inquiry-form > summary {
  list-style: none;
  cursor: pointer;
  width: fit-content;
}
details.inquiry-form > summary::-webkit-details-marker {
  display: none;
}
details.inquiry-form .inquiry-form-body {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.9rem;
}

.checkbox-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.86rem;
  color: rgba(47, 42, 36, 0.75);
}

.check-grid {
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: rgba(47, 42, 36, 0.78);
}

.pillars {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pillars span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-weight: 700;
  background: rgba(211, 154, 56, 0.12);
}

.site-footer {
  padding: 2rem 0 3rem;
  color: rgba(47, 42, 36, 0.83);
  font-size: 0.94rem;
}

.admin-access-footer {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 35, 29, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.admin-access-btn {
  min-width: 0;
}

.admin-mode-shell {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.admin-mode-shell span {
  font-weight: 700;
  color: rgba(47, 42, 36, 0.82);
}

a {
  color: var(--rust);
}

#app-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  max-width: min(420px, 92vw);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  color: #fff;
  background: rgba(31, 41, 55, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

#app-toast.show {
  opacity: 1;
  transform: translateY(0);
}

#app-toast.is-actionable {
  pointer-events: auto;
  cursor: pointer;
}

#app-toast.ok {
  background: rgba(6, 95, 70, 0.95);
}

#app-toast.warn {
  background: rgba(146, 64, 14, 0.96);
}

.cookie-banner {
  position: fixed;
  bottom: calc(18px + 72px);
  left: 18px;
  right: 18px;
  z-index: 1400;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-banner[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
  .cookie-banner {
    bottom: calc(14px + 82px);
  }
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(47, 42, 36, 0.8);
  flex: 1 1 260px;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

@media (min-width: 981px) {
  .section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 680px;
  }

  .team-row {
    grid-template-columns: 220px 1fr;
    align-items: start;
  }

  .team-photo {
    max-width: 220px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-behavior: auto;
  }

  .section {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero,
  .dominance-layout,
  .ranch-feature,
  .split,
  .collection-grid,
  .lane-layout,
  .admin-form,
  .card-grid,
  .card-grid.three,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .photo-showcase {
    grid-template-columns: 1fr;
  }

  #our-events .photo-showcase {
    grid-template-columns: none;
    grid-auto-columns: minmax(82vw, 332px);
    scroll-padding-inline: 0.75rem;
    padding-right: 2.4rem;
  }

  .social-strip {
    margin-top: 0.18rem;
    width: min(1120px, 94vw);
  }

  .shop-premium-banner {
    grid-template-columns: 1fr;
    padding: 0.95rem;
    border-radius: 20px;
  }

  .shop-launch-panel {
    grid-template-columns: 1fr;
    padding: 0.95rem;
    border-radius: 20px;
  }

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

  .shop-finder {
    grid-template-columns: 1fr;
    padding: 0.92rem;
  }

  .shop-premium-actions {
    justify-items: stretch;
  }

  .shop-launch-actions {
    justify-content: stretch;
  }

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

  .shop-launch-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .shop-drawer-cta {
    min-width: 0;
    width: 100%;
  }

  .shop-rail-heading {
    align-items: start;
    flex-direction: column;
  }

  .shop-rail-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .shop-rail-grid {
    grid-auto-columns: minmax(76vw, 320px);
  }

  #events .shop-rail-grid {
    grid-auto-columns: minmax(72vw, 286px);
  }

  .lane-layout .shop-lane-stack::after,
  .collection-card::after {
    top: 3.15rem;
    width: 28px;
    height: calc(100% - 3.35rem);
  }

  #events .shop-lane-stack::after {
    width: 38px;
  }

  #our-events .photo-showcase {
    grid-template-columns: none;
    grid-auto-columns: minmax(82vw, 332px);
    scroll-padding-inline: 0.75rem;
    padding-right: 2.4rem;
  }

  #our-events .photo-showcase::after {
    width: 38px;
    margin-left: -38px;
  }

  #our-events .showcase-tile,
  #our-events .showcase-tile:nth-child(5n),
  #our-events .showcase-tile:nth-child(7n) {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
  }

  .showcase-rail-nav {
    top: calc(50% - 0.45rem);
  }

  .showcase-rail-nav-left {
    left: 0.18rem;
  }

  .showcase-rail-nav-right {
    right: 0.18rem;
  }

  .showcase-dots {
    margin-top: 0.45rem;
  }

  .shop-inline-cta {
    width: 100%;
    justify-content: center;
  }

  .shop-rail-nav {
    min-width: 38px;
    height: 38px;
  }

  .shop-rail-nav-emphasis {
    min-width: 46px;
    height: 46px;
  }

  .shop-filter-pill {
    flex: 1 1 calc(50% - 0.55rem);
    justify-content: center;
    text-align: center;
  }

  .network-status-banner {
    width: 95vw;
    margin-top: calc(var(--site-header-height, 108px) + 0.55rem + env(safe-area-inset-top));
    padding: 0.78rem 0.82rem;
    gap: 0.65rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .network-install-btn {
    width: 100%;
  }

  .site-header {
    top: calc(0.28rem + env(safe-area-inset-top));
    width: 95vw;
    padding: 0.24rem 0.42rem 0.34rem;
    min-height: 48px;
    gap: 0.28rem;
    border-radius: 12px;
    backdrop-filter: none;
    background:
      radial-gradient(circle at 12% -34%, rgba(211, 154, 56, 0.18), transparent 46%),
      rgba(10, 7, 5, 0.95);
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .brand {
    gap: 0.48rem;
    min-width: 0;
    width: 100%;
  }

  .brand-text {
    min-width: 0;
  }

  .header-search-shell {
    width: 100%;
    grid-area: search;
  }

  .header-search-form {
    gap: 0.22rem;
  }

  .header-search-form input {
    height: 30px;
    font-size: 0.8rem;
    padding: 0 0.56rem;
  }

  .header-search-form .btn {
    padding: 0.31rem 0.46rem;
    font-size: 0.62rem;
  }

  .header-search-results {
    width: min(90vw, 380px);
    right: auto;
    left: 0;
  }

  .header-right {
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "search menu"
      "links links";
    gap: 0.42rem 0.38rem;
    align-items: center;
  }

  .menu-toggle {
    grid-area: menu;
    padding: 0.28rem 0.56rem;
    font-size: 0.76rem;
    gap: 0.34rem;
    min-height: 30px;
  }

  .menu-dots {
    width: 0.68rem;
    height: 0.68rem;
  }

  .brand-top {
    font-size: clamp(0.74rem, 2.95vw, 0.9rem);
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
    line-height: 1.1;
  }

  .brand-bottom {
    display: none;
  }

  .header-links {
    grid-area: links;
    display: flex;
    width: 100%;
    gap: 0.36rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.04rem;
  }

  .header-links::-webkit-scrollbar {
    display: none;
  }

  .header-links a {
    white-space: nowrap;
    flex: 0 0 auto;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    padding: 0.23rem 0.5rem;
    background: rgba(255, 244, 221, 0.1);
    border: 1px solid rgba(255, 229, 184, 0.2);
  }

  .section-heading .kicker {
    display: inline-block !important;
    position: relative;
    z-index: 2;
    width: auto;
    max-width: none;
    white-space: normal;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    line-height: 1.35;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    margin: 0 0 0.3rem !important;
    color: rgba(150, 90, 43, 0.9);
    text-wrap: balance;
  }

  .section-heading .kicker::before,
  .section-heading .kicker::after {
    content: none !important;
    display: none !important;
  }

  .section-heading h2 {
    position: relative;
    z-index: 2;
    font-size: clamp(1.46rem, 6.6vw, 2rem);
    line-height: 1.08;
    max-width: none;
    text-shadow: none;
    text-wrap: balance;
  }

  .event-card {
    padding: 0.8rem;
    border-radius: 18px;
  }

  .event-card-topline {
    align-items: center;
  }

  .event-date-badge {
    min-width: 60px;
    padding: 0.52rem 0.62rem;
    border-radius: 16px;
  }

  .event-card .shop-meta-chips {
    justify-content: flex-start;
  }

  .section-heading {
    gap: 0.18rem;
  }

  .section-heading-with-actions {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-heading-actions {
    justify-content: flex-start;
  }

  .draft-indicator {
    display: none !important;
  }

  .social-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.76rem 0.78rem;
    gap: 0.56rem;
  }

  .main-nav {
    right: 4vw;
    width: min(280px, 92vw);
  }

  .cart-drawer {
    width: 100vw;
  }

  .cart-drawer-shell {
    padding: 0.98rem 0.88rem calc(1rem + env(safe-area-inset-bottom));
  }

  .cart-drawer-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-drawer-actions {
    grid-template-columns: 1fr;
  }

  .cart-drawer-empty-actions {
    grid-template-columns: 1fr;
  }

  .lane-layout .cart-panel,
  #apparel .cart-panel {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-media .hero-card {
    position: static;
    width: 100%;
  }

  .hero-slider {
    min-height: clamp(400px, 62svh, 560px);
  }

  .hero-intro {
    padding: 1.05rem 0 0.36rem;
  }

  .hero-intro h1 {
    font-size: clamp(1.72rem, 7.8vw, 2.45rem);
    line-height: 1.05;
    margin-bottom: 0.44rem;
    max-width: 15ch;
  }

  .hero-intro .hero-subtext {
    max-width: 35ch;
    font-size: 0.88rem;
    line-height: 1.42;
    color: rgba(32, 22, 16, 0.86);
  }

  .hero-intro .hero-lanes-note {
    margin-top: 0.46rem;
    font-size: 0.63rem;
    letter-spacing: 0.085em;
    line-height: 1.4;
    color: rgba(122, 74, 32, 0.86);
  }

  .hero-lanes-floating {
    left: 0.7rem;
    bottom: 0.68rem;
    max-width: min(72vw, 250px);
    padding: 0.34rem 0.52rem;
    font-size: 0.56rem;
    letter-spacing: 0.06em;
    background: rgba(10, 7, 5, 0.56);
  }

  .hero-intro .hero-actions {
    margin-top: 0.72rem;
    gap: 0.48rem;
  }

  .hero-intro .btn-primary {
    min-width: min(214px, 80vw);
    justify-content: center;
    padding: 0.74rem 0.96rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    box-shadow: 0 10px 20px rgba(31, 20, 10, 0.26);
  }

  .hero-intro .btn-soft {
    padding: 0.6rem 0.84rem;
    font-size: 0.66rem;
  }

  .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(6, 4, 3, 0.08) 0%, rgba(6, 4, 3, 0.22) 52%, rgba(6, 4, 3, 0.38) 100%),
      linear-gradient(112deg, rgba(6, 4, 3, 0.2) 0%, rgba(6, 4, 3, 0.04) 54%, rgba(6, 4, 3, 0.16) 100%);
  }

  .hero-slider::before {
    background: linear-gradient(180deg, rgba(6, 4, 3, 0.01) 0%, rgba(6, 4, 3, 0) 52%, rgba(6, 4, 3, 0.08) 100%);
  }

  .hero-slide:nth-child(1) img { object-position: 50% 40%; }
  .hero-slide:nth-child(2) img { object-position: 50% 45%; }
  .hero-slide:nth-child(3) img { object-position: 50% 42%; }
  .hero-slide:nth-child(4) img { object-position: 50% 36%; }
  .hero-slide:nth-child(5) img { object-position: 50% 32%; }
  .hero-slide:nth-child(6) img { object-position: 50% 50%; }
  .hero-slide:nth-child(7) img { object-position: 50% 34%; }

  .hero-slide-overlay {
    display: none;
  }

  .hero-photo-note {
    display: block;
    left: 0.68rem;
    bottom: 4.05rem;
    width: min(74vw, 300px);
    padding: 0.5rem 0.56rem;
    border-radius: 10px;
    background: rgba(8, 5, 3, 0.64);
    border-color: rgba(255, 235, 199, 0.22);
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.24);
    backdrop-filter: none;
    animation: heroNoteFloatMobile calc(var(--hero-slide-duration, 5000ms) * 1.06) cubic-bezier(0.42, 0, 0.24, 1) infinite alternate;
  }

  .hero-slide {
    transform: none;
    transition: opacity 0.72s cubic-bezier(0.22, 0.76, 0.2, 1);
    will-change: auto;
  }

  .hero-slide.is-active {
    animation: none;
  }

  .hero-slide img {
    transform: scale(1.012);
    transition: filter 0.32s ease;
    animation: heroImageBreathMobileBase calc(var(--hero-slide-duration, 5000ms) * 1.18) cubic-bezier(0.42, 0, 0.24, 1) infinite alternate;
  }

  .hero-slide.is-active img {
    animation: heroImageBreathMobile calc(var(--hero-slide-duration, 5000ms) * 1.08) cubic-bezier(0.42, 0, 0.24, 1) infinite alternate;
  }

  @keyframes heroImageBreathMobileBase {
    0% {
      transform: scale(1.026) translate3d(0, 0, 0);
    }
    100% {
      transform: scale(1.048) translate3d(0.32%, -0.12%, 0);
    }
  }

  .hero-photo-note,
  .hero-slider-controls,
  .main-nav {
    transition: none;
  }

  .hero-photo-note.is-enter {
    animation: none;
  }

  .hero-photo-note.is-exit {
    opacity: 1;
    transform: none;
    filter: none;
  }

  @keyframes heroNoteFloatMobile {
    0% {
      transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
      transform: translate3d(0.14%, -1.1%, 0) scale(1.014);
    }
  }

  .hero-slider-controls {
    right: 0.66rem;
    bottom: 0.66rem;
    gap: 0.34rem;
    padding: 0.24rem 0.34rem;
    background: rgba(12, 8, 6, 0.58);
    border-color: rgba(255, 240, 212, 0.28);
    backdrop-filter: none;
  }

  .hero-nav {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .hero-copy,
  .hero-card,
  .foundation-card {
    padding: 1rem;
  }

  .hero-copy-below {
    left: 1.1rem;
    right: 1.1rem;
    width: auto;
    bottom: 6.1rem;
    padding: 0;
  }

  .hero-signature {
    font-size: 0.62rem;
    margin-bottom: 0.56rem;
  }

  .hero-copy-below h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.9rem);
    line-height: 1.06;
    margin-bottom: 0.75rem;
  }

  .hero-copy-below > p {
    font-size: 0.96rem;
    line-height: 1.5;
    max-width: 34ch;
  }

  .hero-copy-below .kicker {
    margin-bottom: 0.24rem;
  }

  .hero-copy-below .hero-actions {
    margin-top: 1.25rem;
    gap: 0.44rem;
  }

  .hero-copy-below .btn-primary {
    min-width: 0;
    padding: 0.78rem 1rem;
    font-size: 0.72rem;
  }

  .hero-copy-below .btn-soft {
    padding: 0.56rem 0.2rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-copy-below .btn-soft::after {
    bottom: 0.3rem;
  }

  .quick-lane-strip {
    gap: 0.42rem;
  }

  .quick-lane-strip a {
    font-size: 0.78rem;
    padding: 0.32rem 0.64rem;
  }

  .hero-lane-strip {
    gap: 0.54rem;
  }

  .hero-lane-strip a {
    font-size: 0.62rem;
  }

  .hero-lane-strip a:not(:first-child) {
    padding-left: 0.58rem;
  }

  .showcase-tile,
  .showcase-tile:nth-child(5n),
  .showcase-tile:nth-child(7n) {
    grid-column: span 12;
    aspect-ratio: 5 / 4;
  }

  .dominance-stats {
    grid-template-columns: 1fr;
  }

  .hero-slide img {
    object-fit: cover;
    filter: saturate(1.04) contrast(1.06) brightness(1.02);
    image-rendering: auto;
  }

  .whatsapp-widget {
    right: 0.72rem;
    bottom: calc(0.68rem + env(safe-area-inset-bottom));
    z-index: 1180;
  }

  .whatsapp-chat-float,
  .whatsapp-widget-restore {
    padding: 0.56rem 0.84rem;
    font-size: 0.86rem;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(135deg, #149484 0%, #0f7569 100%);
    box-shadow: 0 10px 20px rgba(6, 45, 40, 0.32);
  }

  .whatsapp-chat-float:hover,
  .whatsapp-chat-float:focus-visible,
  .whatsapp-widget-restore:hover,
  .whatsapp-widget-restore:focus-visible {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #16a292 0%, #117e72 100%);
  }

  .whatsapp-widget-controls {
    gap: 0.3rem;
  }

  .whatsapp-widget-control {
    min-height: 30px;
    padding-inline: 0.64rem;
  }

  .whatsapp-widget.is-minimized {
    right: 0.52rem;
    left: auto !important;
    top: auto !important;
    bottom: calc(0.58rem + env(safe-area-inset-bottom));
  }

  .whatsapp-widget.is-minimized .whatsapp-widget-restore {
    min-width: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    box-shadow: 0 10px 18px rgba(6, 45, 40, 0.24);
  }

  .whatsapp-widget.is-minimized .whatsapp-widget-restore::before {
    content: "WA";
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
  }

  #app-toast {
    right: 0.72rem;
    left: 0.72rem;
    bottom: calc(0.74rem + env(safe-area-inset-bottom));
    max-width: none;
  }
}

@media (max-width: 640px) {
  .cart-drawer-header {
    align-items: center;
  }

  .header-search-shell {
    width: 100%;
  }

  .header-search-form .btn {
    display: none;
  }

  .header-search-form input {
    padding-right: 0.58rem;
  }

  .hero-lanes-floating {
    max-width: min(66vw, 230px);
    font-size: 0.53rem;
  }

  .hero-photo-note {
    left: 0.6rem;
    bottom: 3.94rem;
    width: min(76vw, 280px);
  }

  .hero-photo-note-kicker {
    font-size: 0.56rem;
    letter-spacing: 0.15em;
  }

  .hero-photo-note-title {
    font-size: 0.98rem;
    line-height: 1.08;
  }

  .hero-photo-note-text {
    font-size: 0.82rem;
    line-height: 1.42;
  }
}

@media (min-width: 981px) {
  .hero-slider {
    min-height: clamp(540px, 84vh, 880px);
  }

  .hero-slide-overlay p {
    display: none;
  }
}
/* Governance about accordion (scoped) */
#about-sections {
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  background: linear-gradient(135deg, rgba(255, 244, 232, 0.92), rgba(241, 224, 204, 0.96));
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 18px;
  padding: 1.6rem 1.4rem 1.9rem;
  box-shadow: 0 20px 60px -25px rgba(0, 0, 0, 0.25);
}

.gov-shell {
  background: linear-gradient(180deg, rgba(247, 236, 222, 0.95), rgba(241, 222, 201, 0.94));
  padding-top: 1.6rem;
}

.gov-hero {
  border-radius: 22px;
  padding: 1.4rem 1.4rem 1.8rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 80px -40px rgba(0, 0, 0, 0.32);
  margin-bottom: 1.4rem;
}

.gov-cta-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.gov-card-grid.four {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 0.9rem;
}
#about-sections .section-heading h2 {
  margin-bottom: 0.3rem;
}
#about-sections .quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 1.2rem;
}
#about-sections .quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  text-decoration: none;
  color: #3b2b1e;
  box-shadow: 0 6px 20px -14px rgba(0, 0, 0, 0.35);
}
#about-sections .actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0.2rem 0 1.1rem;
}
#about-sections .actions button {
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f7efe5;
  color: #2d1f14;
  cursor: pointer;
  font-weight: 700;
}
#about-sections .about-accordion {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.05rem 1rem 0.1rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 10px 30px -22px rgba(0, 0, 0, 0.35);
}
#about-sections .about-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 0.1rem;
  font-size: 1.08rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
#about-sections .about-accordion summary::before {
  content: "▸";
  transition: transform 160ms ease, color 160ms ease;
  color: #8f6036;
}
#about-sections .about-accordion[open] summary::before {
  transform: rotate(90deg);
  color: #5a351c;
}
#about-sections .about-accordion p,
#about-sections .about-accordion ul,
#about-sections .about-accordion ol {
  margin: 0 0 0.9rem 0;
  color: #2f251c;
  line-height: 1.55;
}
#about-sections .about-accordion a.btn {
  margin-right: 0.5rem;
}
#about-sections a:focus-visible,
#about-sections .chip:focus-visible,
#about-sections .pill-btn:focus-visible {
  outline: 2px solid #8f6036;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(143, 96, 54, 0.18);
}
#about-sections,
section[id],
[id^="about-"] {
  scroll-margin-top: 96px;
}
#about-sections .chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.4rem 0 0.6rem;
}
#about-sections .chip {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  text-decoration: none;
  color: #3b2b1e;
  box-shadow: 0 6px 20px -14px rgba(0, 0, 0, 0.35);
}
#about-sections .journey-list {
  margin: 0 0 0.9rem 0.2rem;
  padding-left: 1rem;
}
#about-sections .journey-list li {
  margin: 0.18rem 0;
  line-height: 1.5;
}
#about-sections .pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  color: #2d1f14;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 30px -22px rgba(0, 0, 0, 0.35);
}
#about-sections .pill-btn + .pill-btn {
  margin-left: 0.35rem;
}

/* Governance documents grid */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 0.8rem;
}
.doc-card {
  padding: 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 18px 50px -30px rgba(0, 0, 0, 0.32);
}
.doc-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}
.doc-card p {
  margin: 0 0 0.8rem 0;
  line-height: 1.5;
}

#about-sections a:focus-visible,
#about-sections .chip:focus-visible,
#about-sections .pill-btn:focus-visible,
.doc-card a:focus-visible,
.corp-shell .pill-btn:focus-visible,
.corp-shell .chip:focus-visible {
  outline: 2px solid #8f6036;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(143, 96, 54, 0.18);
}

/* Corporate Hub layout */
.corp-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.6rem;
}
.corp-hero {
  border-radius: 22px;
  padding: 1.4rem 1.4rem 1.8rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 80px -40px rgba(0, 0, 0, 0.32);
  margin-bottom: 1.4rem;
}
.corp-cta-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}
.corp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.corp-section {
  margin-top: 1.6rem;
}
.corp-structure {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
  margin-top: 0.8rem;
}
.corp-access {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

/* Admin-only link styling (when data-admin-link is revealed) */
a.admin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(143, 96, 54, 0.16);
  border: 1px solid rgba(143, 96, 54, 0.28);
  font-weight: 800;
  color: #3b2b1e;
}
.admin-nav-divider {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  margin: 4px 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8f6036;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: #2d1f14;
  font-weight: 800;
  cursor: pointer;
  margin-right: 0.5rem;
  box-shadow: 0 10px 26px -18px rgba(0, 0, 0, 0.3);
}

.cart-pill:hover,
.cart-pill:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -16px rgba(0, 0, 0, 0.35);
}

.back-chip {
  position: fixed;
  left: 12px;
  bottom: 88px;
  z-index: 900;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: #2d1f14;
  font-weight: 800;
  box-shadow: 0 16px 40px -24px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.back-chip.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-chip:active {
  transform: translateY(1px);
}
@media (max-width: 720px) {
  #about-sections {
    padding: 1.2rem 1rem 1.4rem;
  }
  #about-sections .about-accordion summary {
    font-size: 1rem;
  }
}
