:root {
  color-scheme: light;
  --ink: #153b42;
  --muted: #5f7376;
  --paper: #fffaf2;
  --snow: #f7fbfc;
  --mist: #e8f5f5;
  --teal: #006d6f;
  --teal-dark: #004b52;
  --red: #e33123;
  --berry: #b71d2a;
  --green: #0d7b4d;
  --gold: #f4b63e;
  --pink: #ffb8c5;
  --blue: #6bb7d6;
  --shadow: 0 18px 45px rgba(8, 42, 49, 0.16);
  --soft-shadow: 0 12px 26px rgba(8, 42, 49, 0.1);
  --radius: 8px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--snow);
  color: var(--ink);
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.prototype-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  min-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: #ffe6a6;
  color: #573600;
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
}

.prototype-bar span {
  padding: 2px 7px;
  border: 1px solid rgba(87, 54, 0, 0.25);
  background: #fff7db;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  z-index: 40;
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header[data-elevated="true"],
body.nav-open .site-header {
  background: rgba(255, 250, 242, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(9, 42, 49, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 170px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: #fff;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(227, 49, 35, 0.24);
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: currentColor;
  opacity: 0.78;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-weight: 800;
  font-size: 15px;
}

.main-nav a {
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: currentColor;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(820px, 96vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(20px, 5vw, 72px) 82px;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, rgba(247, 251, 252, 0) 0%, var(--snow) 78%);
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: url("assets/box-christmas.png");
  background-size: cover;
  background-position: center 48%;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 14, 9, 0.88) 0%, rgba(28, 14, 9, 0.66) 43%, rgba(28, 14, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(47, 18, 12, 0.6) 0%, rgba(47, 18, 12, 0.14) 50%, rgba(7, 30, 34, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe6a6;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  width: min(650px, 100%);
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 13px 20px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(227, 49, 35, 0.28);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #c8291e;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}

.button.dark {
  background: var(--teal-dark);
  color: #fff;
}

.button.light {
  background: #fff;
  color: var(--teal-dark);
  border: 1px solid rgba(0, 109, 111, 0.16);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
}

.hero-facts div {
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-facts dd {
  margin: 0;
  font-size: 18px;
  font-weight: 950;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--teal-dark);
  text-decoration: none;
  font-size: 24px;
  box-shadow: var(--soft-shadow);
  transform: translateX(-50%);
}

.order-strip {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 34px));
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  margin: -44px auto 0;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(0, 109, 111, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.strip-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.strip-copy strong {
  font-size: 19px;
}

.strip-copy span,
.strip-price span {
  color: var(--muted);
}

.strip-price {
  display: grid;
  gap: 2px;
  text-align: right;
}

.strip-price strong {
  color: var(--red);
  font-size: 26px;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 56px);
}

.section-heading {
  width: min(840px, 100%);
  margin: 0 auto clamp(32px, 5vw, 58px);
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.product-section {
  background:
    linear-gradient(180deg, #fffaf2 0%, #fff 48%, #f7fbfc 100%),
    repeating-linear-gradient(45deg, rgba(183, 29, 42, 0.045) 0 10px, transparent 10px 22px);
}

.relief-section {
  background:
    linear-gradient(180deg, var(--snow) 0%, #fff 100%);
}

.relief-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.relief-grid article {
  min-height: 238px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(21, 59, 66, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 245, 245, 0.72)),
    #fff;
  box-shadow: var(--soft-shadow);
}

.relief-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-showcase {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.02fr) minmax(300px, 0.98fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.product-photo {
  position: relative;
  margin: 0;
  padding: clamp(8px, 1.4vw, 14px);
  background:
    linear-gradient(135deg, #4b1714 0%, #0d3f34 58%, #f0c96a 100%),
    #fff7e8;
  border: 1px solid rgba(244, 182, 62, 0.36);
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(63, 24, 12, 0.22);
  overflow: hidden;
}

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

.product-photo::before {
  inset: clamp(8px, 1.4vw, 14px);
  z-index: 2;
  border: 1px solid rgba(255, 246, 219, 0.45);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(75, 23, 20, 0.18);
}

.product-photo::after {
  left: clamp(24px, 5vw, 60px);
  right: clamp(24px, 5vw, 60px);
  bottom: clamp(18px, 3vw, 28px);
  z-index: 2;
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--berry) 0 18%, var(--gold) 18% 28%, var(--green) 28% 72%, var(--gold) 72% 82%, var(--berry) 82% 100%);
  opacity: 0.9;
}

.product-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(20, 9, 4, 0.22);
}

.product-points {
  display: grid;
  gap: 16px;
}

.product-points article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px 18px;
  padding: 18px;
  border: 1px solid rgba(21, 59, 66, 0.1);
  border-left: 4px solid rgba(183, 29, 42, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 242, 0.86)),
    #fff;
  box-shadow: 0 10px 22px rgba(63, 24, 12, 0.08);
}

.product-points article:last-child {
  border-bottom: 1px solid rgba(21, 59, 66, 0.1);
}

.point-number {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--berry), var(--red));
  color: #fff;
  font-weight: 950;
  box-shadow: 0 8px 16px rgba(183, 29, 42, 0.22);
}

.product-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.contents-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.contents-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.contents-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contents-photo img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.contents-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

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

.included-grid article {
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(21, 59, 66, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.included-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 16px;
}

.included-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.board-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  background: #e7f7fb;
}

.wide-media {
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.wide-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: top center;
}

.board-copy {
  max-width: 520px;
}

.board-copy p:not(.eyebrow) {
  color: #405d63;
  font-size: 18px;
  line-height: 1.62;
}

.creations-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--paper) 100%),
    repeating-linear-gradient(90deg, rgba(227, 49, 35, 0.05) 0 10px, transparent 10px 20px);
}

.creation-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.creation-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--soft-shadow);
}

.creation-tile img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 240ms ease;
}

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

.creation-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 25%, rgba(5, 25, 28, 0.72) 100%);
}

.creation-label {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 5px;
  color: #fff;
}

.creation-label span {
  width: 38px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--red);
  font-weight: 950;
}

.creation-label strong {
  font-size: 16px;
  line-height: 1.24;
}

.trust-section {
  padding-top: 58px;
  padding-bottom: 58px;
  background: var(--teal-dark);
  color: #fff;
}

.trust-band {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.trust-band > div {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.08);
}

.trust-band strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 25px;
  line-height: 1.1;
}

.trust-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.52;
}

.faq-section {
  background:
    linear-gradient(180deg, #fff 0%, #f2fbfb 100%);
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(21, 59, 66, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 950;
}

.faq-list summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: #4b3000;
  font-weight: 950;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.6;
}

.mini-label,
.stage {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-section {
  background:
    linear-gradient(135deg, rgba(255, 184, 197, 0.32), rgba(244, 182, 62, 0.18) 44%, rgba(107, 183, 214, 0.24)),
    var(--paper);
}

.order-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 390px);
  gap: 22px;
  align-items: start;
}

.order-shell[hidden] {
  display: none;
}

.checkout-form,
.order-summary,
.admin-lock,
.admin-panel,
.pipeline,
.metric,
.campaign-grid article {
  border: 1px solid rgba(21, 59, 66, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.checkout-form {
  padding: clamp(18px, 3vw, 34px);
}

fieldset {
  min-width: 0;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 950;
}

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

.address-grid {
  grid-template-columns: minmax(130px, 0.52fr) minmax(190px, 1fr);
}

.wide-field {
  grid-column: 1 / -1;
}

.field-hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.field-hint[data-tone="good"] {
  color: var(--green);
  font-weight: 850;
}

.field-hint[data-tone="warn"] {
  color: #8a5700;
  font-weight: 850;
}

label {
  display: grid;
  gap: 7px;
  color: #254d54;
  font-size: 14px;
  font-weight: 850;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(21, 59, 66, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(21, 59, 66, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 109, 111, 0.12);
}

.option-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.radio-card {
  min-height: 82px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(21, 59, 66, 0.15);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.radio-card input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--teal);
}

.radio-card span {
  display: grid;
  gap: 4px;
}

.radio-card small {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.35;
}

.foxpost-picker {
  display: grid;
  gap: 14px;
  padding: clamp(14px, 2.4vw, 20px);
  border: 1px solid rgba(21, 59, 66, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 252, 0.9)),
    #fff;
  box-shadow: 0 14px 32px rgba(8, 42, 49, 0.08);
}

.foxpost-picker[hidden] {
  display: none;
}

.foxpost-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 2px;
}

.foxpost-panel-head div {
  display: grid;
  gap: 4px;
}

.foxpost-panel-head strong {
  color: var(--teal-dark);
  font-size: 18px;
  line-height: 1.2;
}

.foxpost-panel-head span:not(.foxpost-badge) {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.foxpost-badge,
.selection-state {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.foxpost-badge {
  flex: 0 0 auto;
  padding: 6px 10px;
  background: #f15a24;
  color: #fff;
  box-shadow: 0 8px 18px rgba(241, 90, 36, 0.22);
}

.foxpost-smart-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.foxpost-smart-search label {
  min-width: 0;
}

.foxpost-location {
  min-height: 48px;
  white-space: nowrap;
}

.foxpost-search-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.foxpost-search-status[data-tone="good"] {
  color: var(--green);
}

.foxpost-search-status[data-tone="warn"] {
  color: #8a5700;
}

.foxpost-results {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
}

.foxpost-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  width: 100%;
  border: 1px solid rgba(21, 59, 66, 0.12);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.foxpost-result:hover,
.foxpost-result:focus-visible {
  border-color: rgba(0, 109, 111, 0.35);
  box-shadow: 0 8px 18px rgba(8, 42, 49, 0.08);
}

.foxpost-result span {
  display: grid;
  gap: 3px;
}

.foxpost-result strong {
  color: var(--teal-dark);
  font-size: 14px;
  line-height: 1.25;
}

.foxpost-result small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.foxpost-result em {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(0, 109, 111, 0.1);
  color: var(--teal-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.foxpost-map-details {
  border: 1px solid rgba(21, 59, 66, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.foxpost-map-details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--teal-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
  list-style: none;
}

.foxpost-map-details summary::-webkit-details-marker {
  display: none;
}

.foxpost-map-details summary::after {
  content: "+";
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 109, 111, 0.1);
}

.foxpost-map-details[open] summary::after {
  content: "-";
}

.foxpost-selection {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 109, 111, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(247, 251, 252, 0.98)),
    #fff;
  color: var(--muted);
  line-height: 1.45;
}

.foxpost-selection strong {
  color: var(--teal-dark);
  font-size: 16px;
}

.selection-state {
  padding: 4px 9px;
  background: rgba(244, 182, 62, 0.18);
  color: #8a5700;
}

.foxpost-selection[data-selected="true"] {
  border-color: rgba(13, 123, 77, 0.28);
  background:
    linear-gradient(135deg, rgba(231, 247, 235, 0.98), rgba(247, 251, 252, 0.98)),
    #fff;
}

.foxpost-selection[data-selected="true"] .selection-state {
  background: rgba(13, 123, 77, 0.14);
  color: var(--green);
}

.foxpost-selection small {
  color: #42666d;
  font-weight: 650;
}

.foxpost-frame-shell {
  overflow: hidden;
  border-top: 1px solid rgba(21, 59, 66, 0.1);
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.6),
    0 14px 28px rgba(8, 42, 49, 0.08);
}

.foxpost-frame-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(21, 59, 66, 0.1);
  background:
    linear-gradient(90deg, rgba(0, 109, 111, 0.08), rgba(244, 182, 62, 0.12)),
    #fff;
}

.foxpost-frame-toolbar span {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 950;
}

.foxpost-frame-toolbar small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.foxpost-frame {
  width: 100%;
  height: min(560px, 68vh);
  min-height: 420px;
  border: 0;
  background: #fff;
}

.foxpost-direct {
  justify-self: start;
  min-height: 44px;
  padding-inline: 16px;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 4px 0 24px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.order-summary {
  position: sticky;
  top: 124px;
  padding: 18px;
}

.summary-image {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-bottom: 18px;
  padding: 8px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(75, 23, 20, 0.94), rgba(13, 63, 52, 0.92)),
    #fff7e8;
  box-shadow: inset 0 0 0 1px rgba(244, 182, 62, 0.26);
}

.summary-image img {
  width: 100%;
  max-height: 230px;
  border-radius: 6px;
  object-fit: cover;
}

.order-summary p {
  margin: 8px 0 18px;
  color: var(--muted);
  line-height: 1.45;
}

.order-summary dl {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(21, 59, 66, 0.12);
}

.order-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px;
  background: #fff;
}

.order-summary dt,
.order-summary dd {
  margin: 0;
}

.order-summary dt {
  color: var(--muted);
  font-weight: 700;
}

.order-summary dd {
  color: var(--ink);
  font-weight: 950;
}

.summary-note {
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  background: #e7f7fb;
  color: #24535c;
  font-size: 14px;
  line-height: 1.45;
}

.confirmation-panel {
  width: min(1180px, 100%);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
  gap: 22px;
  align-items: start;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(21, 59, 66, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.confirmation-panel[hidden] {
  display: none;
}

.confirmation-panel h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.confirmation-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.confirmation-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 59, 66, 0.12);
  border-radius: 8px;
}

.confirmation-details div {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: #f7fbfc;
}

.confirmation-details dt,
.confirmation-details dd {
  margin: 0;
}

.confirmation-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.confirmation-details dd {
  color: var(--teal-dark);
  font-weight: 950;
}

.next-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: next-step;
}

.next-steps li {
  position: relative;
  min-height: 98px;
  padding: 44px 16px 16px;
  border-radius: 8px;
  background: #e7f7fb;
  color: #24535c;
  line-height: 1.45;
}

.next-steps li::before {
  counter-increment: next-step;
  content: counter(next-step);
  position: absolute;
  top: 13px;
  left: 16px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: #4b3000;
  font-size: 13px;
  font-weight: 950;
}

.confirmation-panel > .button {
  justify-self: start;
}

.ops-section {
  background: #fff;
}

.admin-page {
  background: #fff;
}

.legal-page {
  background: #fff;
}

.admin-page .site-header {
  background: rgba(255, 250, 242, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(9, 42, 49, 0.12);
  backdrop-filter: blur(14px);
}

.legal-page .site-header {
  background: rgba(255, 250, 242, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(9, 42, 49, 0.12);
  backdrop-filter: blur(14px);
}

.admin-page .admin-section {
  min-height: calc(100vh - 96px);
  padding-top: clamp(150px, 14vw, 190px);
}

.legal-section {
  padding-top: clamp(150px, 14vw, 190px);
  background:
    linear-gradient(180deg, #fff 0%, #f2fbfb 100%);
}

.legal-section h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.legal-doc {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(21, 59, 66, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  overflow-x: auto;
}

.legal-doc h2 {
  margin: 34px 0 12px;
  font-size: 24px;
}

.legal-doc h2:first-child {
  margin-top: 0;
}

.legal-doc p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-doc a {
  color: var(--teal);
  font-weight: 900;
}

.legal-table {
  min-width: 720px;
}

.admin-page .ops-layout {
  grid-template-columns: 1fr;
}

.admin-page .metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-lock {
  width: min(520px, 100%);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 34px);
}

.admin-login {
  display: grid;
  gap: 16px;
}

.login-message {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--berry);
  font-weight: 850;
}

.admin-section[data-admin-auth="true"] .admin-lock {
  display: none;
}

.admin-section[data-admin-auth="false"] .admin-content {
  display: none;
}

.ops-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 22px;
  align-items: start;
}

.ops-column {
  display: grid;
  gap: 18px;
}

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

.metric {
  padding: 18px;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.metric strong {
  display: block;
  margin-top: 8px;
  color: var(--teal-dark);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
}

.pipeline {
  padding: 22px;
}

.pipeline h3 {
  margin-bottom: 16px;
}

.pipeline ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.pipeline li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.pipeline li::before {
  counter-increment: step;
  content: counter(step);
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: #4b3000;
  font-weight: 950;
}

.pipeline strong,
.pipeline span {
  grid-column: 2;
}

.pipeline strong {
  display: block;
  margin-bottom: 3px;
}

.pipeline span {
  color: var(--muted);
  line-height: 1.45;
}

.admin-panel {
  min-width: 0;
  padding: 18px;
}

.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-head .eyebrow {
  margin-bottom: 4px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(21, 59, 66, 0.12);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

th,
td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(21, 59, 66, 0.1);
  vertical-align: middle;
  font-size: 14px;
}

th {
  color: #315b62;
  background: #eef8f8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.status.preorder {
  background: #fff0bc;
  color: #684300;
}

.status.invoice {
  background: #e1f2ff;
  color: #184f6c;
}

.status.label {
  background: #ffe1e8;
  color: #7c1f36;
}

.status.packed {
  background: #dff5df;
  color: #135e25;
}

.mini-action {
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  padding: 8px 10px;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

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

.campaign-section {
  background:
    linear-gradient(180deg, #fff 0%, #f2fbfb 100%);
}

.campaign-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.campaign-grid article {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.campaign-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--teal));
}

.campaign-grid h3 {
  margin-top: 10px;
}

.campaign-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: #fff;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: #ffe6a6;
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: min(380px, calc(100% - 36px));
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    gap: 12px;
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .brand strong,
  .brand small {
    white-space: nowrap;
  }

  .main-nav {
    position: fixed;
    inset: 108px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(21, 59, 66, 0.12);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(21, 59, 66, 0.1);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    position: fixed;
    top: 70px;
    right: 16px;
    z-index: 70;
    flex: 0 0 44px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.22);
  }

  .site-header[data-elevated="true"] .nav-toggle,
  body.nav-open .nav-toggle {
    background: rgba(0, 109, 111, 0.1);
  }

  .product-showcase,
  .contents-layout,
  .board-section,
  .order-shell,
  .confirmation-panel,
  .ops-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

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

  .relief-grid,
  .next-steps,
  .trust-band,
  .campaign-grid {
    grid-template-columns: 1fr;
  }

  .contents-photo img {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .prototype-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .site-header {
    top: 54px;
    min-height: 70px;
  }

  .nav-toggle {
    top: 68px;
  }

  .hero {
    min-height: 780px;
    padding-top: 150px;
    padding-bottom: 88px;
    width: 100%;
    max-width: 100vw;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-content,
  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 40px);
    min-width: 0;
  }

  .hero-copy {
    font-size: 18px;
    line-height: 1.5;
    overflow-wrap: break-word;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 30, 34, 0.82) 0%, rgba(7, 30, 34, 0.46) 48%, rgba(7, 30, 34, 0.78) 100%);
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .order-strip {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .strip-price {
    text-align: left;
  }

  .form-grid,
  .option-row,
  .included-grid,
  .confirmation-details,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .foxpost-picker {
    padding: 12px;
    gap: 12px;
  }

  .foxpost-panel-head,
  .foxpost-frame-toolbar,
  .foxpost-smart-search {
    flex-direction: column;
    align-items: flex-start;
  }

  .foxpost-smart-search {
    display: grid;
    grid-template-columns: 1fr;
  }

  .foxpost-location {
    width: 100%;
    white-space: normal;
  }

  .foxpost-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .foxpost-frame-toolbar small {
    text-align: left;
  }

  .foxpost-frame {
    height: 520px;
    min-height: 520px;
  }

  .foxpost-direct {
    width: 100%;
  }

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

  .creation-tile,
  .creation-tile img {
    min-height: 330px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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