:root {
  --emerald: #003f38;
  --emerald-2: #052c28;
  --gold: #c6a542;
  --ivory: #f7f1e4;
  --sand: #ddc698;
  --black: #101010;
  --ink: #17221f;
  --muted: #68736d;
  --mango: #f68c00;
  --lime: #9bcb00;
  --purple: #4b1d78;
  --bronze: #9c6b2f;
  --line: rgba(198, 165, 66, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  color-scheme: light;
  font-family: Manrope, Montserrat, Inter, Avenir Next, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(0, 20, 18, 0.88), rgba(0, 20, 18, 0.34), transparent);
}

.site-header.scrolled {
  background: rgba(0, 28, 25, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 116px;
}

.brand-logo-img {
  width: clamp(86px, 8vw, 118px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.36));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  color: rgba(247, 241, 228, 0.84);
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(198, 165, 66, 0.32);
  background: rgba(0, 35, 31, 0.34);
}

.language-switcher a {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 30px;
  color: rgba(247, 241, 228, 0.74);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.language-switcher a[aria-current="page"] {
  background: var(--gold);
  color: var(--emerald);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(0, 63, 56, 0.22);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.header-cta:hover,
.button:focus-visible,
.header-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--emerald);
}

.button.dark {
  background: var(--emerald);
  color: var(--ivory);
  border-color: var(--emerald);
}

.button.dark:hover,
.button.dark:focus-visible {
  background: var(--black);
  border-color: var(--black);
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(0, 40, 35, 0.4);
  color: var(--ivory);
}

.menu-toggle {
  font-size: 0;
  position: relative;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  transform: translateX(-50%);
}

.menu-toggle::before {
  top: calc(50% - 4px);
}

.menu-toggle::after {
  top: calc(50% + 4px);
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(0, 22, 19, 0.96) 0%, rgba(0, 40, 35, 0.78) 34%, rgba(0, 20, 18, 0.16) 62%, rgba(0, 0, 0, 0.16) 100%),
    url("assets/campaign/separated/hero-clean-rally-lineup.jpg") center / cover no-repeat,
    var(--emerald);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: auto -8% 0 -8%;
  height: 42%;
  background:
    radial-gradient(80% 52% at 50% 100%, rgba(198, 165, 66, 0.18), transparent 70%),
    linear-gradient(172deg, transparent 32%, rgba(198, 165, 66, 0.14) 33%, transparent 34%),
    linear-gradient(184deg, transparent 40%, rgba(247, 241, 228, 0.07) 41%, transparent 42%);
  opacity: 0.82;
}

.hero::after {
  inset: auto 0 0;
  height: 26vh;
  background: linear-gradient(180deg, transparent, rgba(0, 39, 34, 0.92));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 126px 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.7fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  margin: 0;
}

.hero h1 {
  font-size: clamp(58px, 8.8vw, 118px);
  line-height: 0.92;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 560px;
  font-size: clamp(22px, 3.2vw, 42px);
  line-height: 1.08;
}

.hero-subcopy {
  margin: 18px 0 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(247, 241, 228, 0.82);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-cans:not(.product-stage) {
  display: grid;
  grid-template-columns: repeat(4, minmax(58px, 1fr));
  align-items: end;
  gap: 12px;
  min-height: 360px;
}

.hero-cans.product-stage {
  position: relative;
  justify-self: center;
  width: min(660px, 100%);
  min-height: clamp(430px, 52vw, 680px);
  isolation: isolate;
}

.hero-cans.product-stage::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 18% -15% 8%;
  background:
    radial-gradient(circle at 52% 38%, rgba(247, 241, 228, 0.24), transparent 18%),
    radial-gradient(circle at 50% 76%, rgba(198, 165, 66, 0.3), transparent 48%);
  filter: blur(12px);
}

.hero-cans.product-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 6%;
  right: 2%;
  bottom: -1%;
  height: 72px;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18), transparent);
  filter: blur(4px);
  transform: perspective(600px) rotateX(62deg);
  transform-origin: center;
}

.hero-can {
  position: absolute;
  bottom: 0;
  width: auto;
  object-fit: contain;
  transform-origin: bottom center;
  filter:
    drop-shadow(0 34px 28px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 26px rgba(198, 165, 66, 0.18));
}

.hero-can-ginger {
  left: -4%;
  height: 82%;
  z-index: 2;
  transform: translateY(4%) rotate(-7deg);
}

.hero-can-mango {
  left: 17%;
  height: 96%;
  z-index: 5;
  transform: translateY(-2%);
}

.hero-can-citrus {
  left: 38%;
  height: 84%;
  z-index: 3;
  transform: translateY(5%) rotate(5deg);
}

.hero-can-energy {
  left: 48%;
  height: 76%;
  z-index: 1;
  transform: translateY(7%) rotate(8deg);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 4vw, 56px);
}

.hero + .section {
  padding-top: clamp(32px, 4vw, 56px);
}

.section.dark {
  background: var(--emerald);
  color: var(--ivory);
}

.section.black {
  background: var(--black);
  color: var(--ivory);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(40px, 6vw, 82px);
  line-height: 0.98;
  color: inherit;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.dark .section-heading p,
.black .section-heading p {
  color: rgba(247, 241, 228, 0.72);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-height: 460px;
  color: var(--ivory);
  background: var(--emerald-2);
  background:
    radial-gradient(circle at 70% 76%, var(--card-color, var(--emerald)) 0, transparent 48%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.42)),
    var(--emerald-2);
  padding: 26px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 200ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(198, 165, 66, 0.28);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card h3 {
  font-size: 28px;
  line-height: 1;
  color: var(--gold);
}

.product-card p {
  margin: 12px 0 0;
  line-height: 1.6;
  color: rgba(247, 241, 228, 0.8);
}

.card-packshot {
  justify-self: center;
  align-self: end;
  height: clamp(270px, 27vw, 390px);
  width: auto;
  margin-top: 24px;
  object-fit: contain;
  filter:
    drop-shadow(0 26px 24px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 18px rgba(198, 165, 66, 0.16));
  transform: translateY(12px);
}

.card-photo {
  justify-self: stretch;
  align-self: end;
  width: 100%;
  aspect-ratio: 1;
  margin-top: 24px;
  object-fit: cover;
  border: 1px solid rgba(198, 165, 66, 0.26);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.card-mango { --card-color: var(--mango); }
.card-citrus { --card-color: var(--lime); }
.card-energy { --card-color: var(--purple); }
.card-ginger { --card-color: var(--emerald); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.editorial-copy h2 {
  font-size: clamp(38px, 5.8vw, 78px);
  line-height: 1;
}

.editorial-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.dark .editorial-copy p,
.black .editorial-copy p {
  color: rgba(247, 241, 228, 0.75);
}

.image-panel {
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--emerald);
  aspect-ratio: 1.12;
}

.image-panel.board-panel {
  aspect-ratio: 3 / 2;
  background: #f5efe3;
  padding: clamp(10px, 1.5vw, 18px);
}

.image-panel.story-panel {
  aspect-ratio: 1.75;
  background: var(--emerald-2);
  border: 1px solid rgba(198, 165, 66, 0.28);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel.board-panel img,
.image-panel img[src*="boards/"] {
  object-fit: contain;
}

.showcase-section {
  background:
    radial-gradient(circle at 78% 22%, rgba(198, 165, 66, 0.16), transparent 28%),
    linear-gradient(180deg, var(--ivory), #efe1c5);
}

.scroller-shell {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 14px;
  align-items: center;
}

.shot-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 34%);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  padding: 4px 4px 18px;
}

.shot-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--emerald-2);
  border: 1px solid rgba(198, 165, 66, 0.28);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.shot-card.wide {
  grid-column: span 1;
  grid-auto-columns: minmax(420px, 52%);
}

.shot-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.shot-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 8px 12px;
  background: rgba(0, 35, 31, 0.72);
  border: 1px solid rgba(198, 165, 66, 0.34);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.scroller-control {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  background: var(--emerald);
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.scroller-control:hover,
.scroller-control:focus-visible {
  background: var(--gold);
  color: var(--emerald);
}

.campaign-split {
  grid-template-columns: 0.72fr 1.28fr;
}

.campaign-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.campaign-panel {
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(198, 165, 66, 0.28);
  background: var(--emerald-2);
  box-shadow: var(--shadow);
}

.campaign-panel img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.stat-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat,
.detail,
.news-card {
  border: 1px solid rgba(198, 165, 66, 0.24);
  padding: 26px;
  background: rgba(255, 255, 255, 0.05);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 34px;
  margin-bottom: 8px;
}

.stat span,
.detail p,
.news-card p {
  color: rgba(247, 241, 228, 0.72);
  line-height: 1.7;
}

.detail h3,
.news-card h3 {
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 12px;
}

.page-hero {
  min-height: 62vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 78% 38%, rgba(198, 165, 66, 0.16), transparent 28%),
    linear-gradient(120deg, rgba(0, 19, 17, 0.98), rgba(0, 63, 56, 0.94) 50%, rgba(16, 16, 16, 0.96)),
    var(--emerald);
  padding: 150px clamp(18px, 4vw, 56px) 72px;
}

.page-hero.product {
  min-height: 86vh;
  padding-bottom: clamp(52px, 8vw, 96px);
}

.page-hero-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(54px, 10vw, 128px);
  line-height: 0.92;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.page-hero p {
  max-width: 640px;
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.18;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) 1fr;
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

.detail-packshot-wrap {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: clamp(540px, 68vh, 760px);
  margin: 0;
  isolation: isolate;
}

.detail-packshot-wrap::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 116%;
  height: 46%;
  bottom: 6%;
  background: radial-gradient(closest-side, rgba(198, 165, 66, 0.3), rgba(0, 0, 0, 0.2), transparent);
  filter: blur(20px);
}

.detail-packshot-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 82%;
  height: 58px;
  bottom: -10px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.2), transparent);
  filter: blur(5px);
}

.detail-packshot {
  width: auto;
  max-width: min(360px, 82vw);
  max-height: min(760px, 78vh);
  object-fit: contain;
  filter:
    drop-shadow(0 36px 28px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 22px rgba(198, 165, 66, 0.17));
}

.detail-packshot-wrap.photo-detail {
  place-items: center;
  min-height: clamp(420px, 56vh, 660px);
}

.detail-packshot-wrap.photo-detail::before,
.detail-packshot-wrap.photo-detail::after {
  display: none;
}

.detail-photo {
  width: min(520px, 88vw);
  max-width: 100%;
  max-height: none;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(198, 165, 66, 0.34);
  box-shadow: var(--shadow);
  filter: none;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.56);
}

.spec-table th,
.spec-table td {
  border-bottom: 1px solid rgba(0, 63, 56, 0.14);
  padding: 16px 14px;
  text-align: left;
}

.spec-table th {
  color: var(--emerald);
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--emerald);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.order-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(198, 165, 66, 0.18), transparent 30%),
    linear-gradient(180deg, #f7f1e4, #ead6ac);
}

.order-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(198, 165, 66, 0.36);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.form-status {
  margin: 0;
  color: var(--emerald);
  line-height: 1.5;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(0, 63, 56, 0.22);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  padding: 15px 14px;
  border-radius: 0;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 165, 66, 0.18);
}

.site-footer {
  background: var(--emerald-2);
  color: rgba(247, 241, 228, 0.72);
  padding: 56px clamp(18px, 4vw, 56px);
}

.footer-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.footer-inner strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, serif;
  letter-spacing: 0.14em;
  font-size: 32px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(198, 165, 66, 0.18);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-links a,
.footer-links a {
  transition: color 180ms ease;
}

.platform-links a:hover,
.platform-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

[dir="rtl"] body,
[dir="rtl"] input,
[dir="rtl"] select,
[dir="rtl"] textarea,
[dir="rtl"] button {
  font-family: Tahoma, Arial, sans-serif;
}

[dir="rtl"] .hero h1,
[dir="rtl"] .page-hero h1,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3 {
  font-family: Georgia, "Times New Roman", Tahoma, serif;
}

[dir="rtl"] .button-row,
[dir="rtl"] .footer-links,
[dir="rtl"] .platform-links {
  justify-content: flex-start;
}

[dir="rtl"] .eyebrow,
[dir="rtl"] .nav,
[dir="rtl"] .button,
[dir="rtl"] .header-cta {
  letter-spacing: 0;
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 22%, rgba(198, 165, 66, 0.16), transparent 28%),
    linear-gradient(135deg, #001d1a, #003f38 54%, #101010);
  color: var(--ivory);
}

.admin-shell {
  width: min(1180px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px) 0;
}

.admin-login {
  min-height: calc(100vh - 104px);
  display: grid;
  place-items: center;
  gap: 28px;
}

.admin-brand,
.admin-topbar,
.admin-toolbar,
.admin-stats,
.admin-login-card {
  border: 1px solid rgba(198, 165, 66, 0.28);
  background: rgba(0, 30, 27, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-brand img,
.admin-logo img {
  width: 108px;
}

.admin-login-card {
  width: min(480px, 100%);
  padding: clamp(26px, 5vw, 48px);
  display: grid;
  gap: 18px;
}

.admin-login-card h1,
.admin-topbar h1 {
  color: var(--gold);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.94;
}

.admin-login-card p {
  color: rgba(247, 241, 228, 0.74);
  line-height: 1.7;
}

.admin-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px;
  margin-bottom: 18px;
}

.admin-alert {
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(198, 165, 66, 0.32);
  background: rgba(198, 165, 66, 0.12);
  color: var(--ivory);
}

.admin-alert[data-tone="warning"] {
  border-color: rgba(246, 140, 0, 0.58);
  background: rgba(246, 140, 0, 0.16);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  margin-bottom: 18px;
}

.admin-stat {
  padding: 18px;
  background: rgba(0, 63, 56, 0.72);
}

.admin-stat strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 34px;
}

.admin-stat span {
  color: rgba(247, 241, 228, 0.72);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  padding: 18px;
  margin-bottom: 18px;
}

.admin-toolbar label {
  min-width: 190px;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(198, 165, 66, 0.28);
  background: rgba(0, 26, 23, 0.82);
  box-shadow: var(--shadow);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}

.admin-table th,
.admin-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(198, 165, 66, 0.16);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-table small {
  display: block;
  margin-top: 6px;
  color: rgba(247, 241, 228, 0.56);
}

.admin-table pre {
  max-width: 520px;
  white-space: pre-wrap;
  color: rgba(247, 241, 228, 0.76);
}

.empty-row {
  color: rgba(247, 241, 228, 0.64);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    align-items: center;
    padding: 12px clamp(14px, 4vw, 22px);
    background:
      linear-gradient(180deg, rgba(0, 26, 23, 0.92), rgba(0, 26, 23, 0.78));
    border-bottom: 1px solid rgba(198, 165, 66, 0.2);
    backdrop-filter: blur(18px);
  }

  .brand-link {
    min-width: 0;
    order: 1;
  }

  .brand-logo-img {
    width: 76px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    order: 3;
    width: 40px;
    height: 40px;
    background: rgba(247, 241, 228, 0.08);
    border-color: rgba(198, 165, 66, 0.38);
  }

  .nav {
    order: 4;
    grid-column: 1 / -1;
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    background: rgba(0, 34, 30, 0.98);
    border: 1px solid var(--line);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  }

  .nav.open {
    display: grid;
  }

  .nav a {
    padding: 16px;
  }

  .header-cta {
    display: none;
  }

  .language-switcher {
    order: 2;
    justify-self: end;
    gap: 2px;
    padding: 3px;
    background: rgba(247, 241, 228, 0.07);
  }

  .language-switcher a {
    min-width: 30px;
    min-height: 30px;
    font-size: 10px;
  }

  .hero-inner,
  .split,
  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    background-position: 58% center;
  }

  .hero-inner {
    max-width: 620px;
    margin-left: clamp(18px, 5vw, 48px);
  }

  .scroller-shell {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 10px;
  }

  .scroller-control {
    width: 40px;
    height: 40px;
  }

  .shot-scroller {
    grid-auto-columns: minmax(260px, 72%);
  }

  .campaign-split {
    grid-template-columns: 1fr;
  }

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

  .product-grid,
  .stat-grid,
  .detail-grid,
  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 82svh;
    background:
      linear-gradient(180deg, rgba(0, 24, 21, 0.92) 0%, rgba(0, 24, 21, 0.5) 28%, rgba(0, 35, 31, 0.72) 58%, rgba(0, 43, 38, 0.98) 100%),
      linear-gradient(90deg, rgba(0, 20, 18, 0.92) 0%, rgba(0, 20, 18, 0.62) 52%, rgba(0, 20, 18, 0.14) 100%),
      url("assets/campaign/separated/hero-clean-rally-lineup.jpg") 63% center / cover no-repeat,
      var(--emerald);
  }

  .hero-inner {
    padding-top: 108px;
    padding-bottom: 34px;
    width: min(100% - 36px, 520px);
    margin: 0 auto;
  }

  .hero .eyebrow {
    max-width: 310px;
    font-size: 10px;
    line-height: 1.7;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(50px, 18vw, 70px);
    letter-spacing: 0.06em;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.52);
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 23px;
    line-height: 1.16;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.56);
  }

  .hero-subcopy {
    margin-top: 14px;
    max-width: 338px;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(247, 241, 228, 0.9);
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.62);
  }

  .hero .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(100%, 352px);
    margin-top: 24px;
  }

  .hero .button {
    width: 100%;
    min-height: 42px;
    padding: 0 8px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero + .section {
    padding-top: 52px;
  }

  .product-grid,
  .stat-grid,
  .detail-grid,
  .admin-stats,
  .form-grid,
  .campaign-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .admin-topbar {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    display: grid;
  }

  .shot-scroller {
    grid-auto-columns: minmax(250px, 88%);
  }

  .shot-card,
  .shot-card img {
    min-height: 320px;
  }

  .scroller-shell {
    grid-template-columns: 1fr;
  }

  .scroller-control {
    display: none;
  }

  .card-photo {
    aspect-ratio: 4 / 3;
  }

  .detail-packshot-wrap {
    min-height: 470px;
  }

  .detail-photo {
    width: 100%;
    max-height: none;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .page-hero h1 {
    letter-spacing: 0.04em;
  }
}
