/* Kevil & Kevil — mcd-costseg overhaul
   Cool. Brief. Solid center of gravity. */

:root {
  --bg: #0b0c0e;
  --bg-elevated: #12141a;
  --bg-card: #161922;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  /* High-contrast type on near-black (WCAG AAA for body on #0b0c0e) */
  --text: #faf8f4;
  --text-dim: #e4e0d6;   /* secondary body — was ~62% opacity, too soft */
  --text-mute: #b8b3a8;  /* labels / meta — was ~38% opacity, unreadable */
  --gold: #f0c45c;       /* slightly brighter for accent readability */
  --gold-soft: rgba(240, 196, 92, 0.16);
  --ember: #d4452c;
  --ember-soft: rgba(212, 69, 44, 0.2);
  --ok: #4fd18c;
  --danger: #ff7a6b;
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --nav-h: 88px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --display: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1.125rem; /* 18px base — was browser 16px */
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(194, 59, 34, 0.14), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(232, 184, 74, 0.08), transparent 50%),
    var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

/* ——— Layout ——— */

.shell {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(11, 12, 14, 0.72);
  border-bottom: 1px solid var(--line);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(var(--max), calc(100% - 2.5rem));
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, var(--gold) 0%, #b8892a 45%, var(--ember) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(194, 59, 34, 0.25);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.15;
}

.brand-tag {
  font-size: 0.88rem;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: normal;
  line-height: 1.25;
  max-width: 22rem;
}

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

.nav a {
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-size: 1.1rem;
  color: var(--text-dim);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav a[aria-current="page"]:not(.nav-cta) {
  color: var(--bg);
  background: var(--text);
  font-weight: 600;
}

.nav-cta {
  margin-left: 0.4rem;
  padding: 0.65rem 1.15rem !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--gold), #d49a28) !important;
  color: #1a1205 !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  box-shadow: 0 8px 24px rgba(232, 184, 74, 0.22);
}

.nav-cta[aria-current="page"] {
  box-shadow: 0 8px 24px rgba(232, 184, 74, 0.22), 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.nav-cta:hover {
  filter: brightness(1.05);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: var(--text);
}

.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

main {
  padding-bottom: 5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  color: var(--text-mute);
  font-size: 0.95rem;
}

.site-footer .shell {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer strong {
  color: var(--text);
  font-weight: 600;
}

/* ——— Type & hero ——— */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 650;
  margin: 0 0 1rem;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.hero {
  padding: 5.5rem 0 3.5rem;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.65rem, 6.2vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 1.25rem;
  max-width: 14ch;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.lede {
  font-size: clamp(1.2rem, 2.1vw, 1.4rem);
  color: var(--text-dim);
  max-width: 40rem;
  margin: 0;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), filter 0.2s var(--ease);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d49a28);
  color: #1a1205;
  box-shadow: 0 12px 30px rgba(232, 184, 74, 0.18);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
}

.btn-block {
  width: 100%;
}

/* ——— Sections & cards ——— */

.section {
  padding: 1.5rem 0 2rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  color: var(--text);
}

.section-sub {
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 1.75rem;
  max-width: 38rem;
}

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

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

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%), var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Metrics: two locked horizontal rows (values, then labels) */
.stat-row {
  margin-top: 2.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-strong);
}

.stat-values,
.stat-labels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.55fr);
  column-gap: 1.25rem;
  align-items: end;
}

.stat-values {
  margin-bottom: 0.5rem;
}

.stat-value {
  display: block;
  font-size: 2.35rem; /* fixed — same size for all four metrics */
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.stat-labels {
  align-items: start;
}

.stat-label {
  display: block;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.35;
}

@media (max-width: 960px) {
  .stat-value {
    font-size: 1.85rem;
  }
}

@media (max-width: 720px) {
  .stat-values,
  .stat-labels {
    grid-template-columns: 1fr 1fr;
    row-gap: 0.35rem;
  }

  .stat-values {
    row-gap: 1.25rem;
  }

  /* Re-pair labels under their values in 2×2 */
  .stat-labels {
    display: none;
  }

  .stat-value {
    font-size: 2rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid var(--line);
  }

  .stat-value::after {
    content: attr(data-label);
    display: block;
    margin-top: 0.4rem;
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.35;
    color: var(--text-dim);
    white-space: normal;
  }
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--text-dim);
  font-size: 0.98rem;
  background: rgba(255, 255, 255, 0.02);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
}

.panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.panel p {
  margin: 0 0 1rem;
  color: var(--text-dim);
  font-size: 1.08rem;
  line-height: 1.65;
}

.panel p:last-child {
  margin-bottom: 0;
}

.contact-line {
  display: grid;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
  color: var(--text-dim);
}

/* ——— People / portraits ——— */

.person-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.5rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.person-photo {
  width: 132px;
  height: 132px;
  border-radius: 28px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line-strong);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.45);
  background: var(--bg-elevated);
}

.person-head .section-title {
  margin-bottom: 0.25rem;
}

.person-head .section-sub {
  margin-bottom: 0;
}

.person-email {
  margin: 0.55rem 0 0;
  font-size: 1.05rem;
}

.person-email a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.person-email a:hover {
  color: var(--text);
}

@media (max-width: 860px) {
  .person-head {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .person-photo {
    width: 112px;
    height: 112px;
    border-radius: 24px;
  }
}

.contact-line a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ——— Process steps ——— */

.steps {
  counter-reset: step;
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding-top: 0.15rem;
}

.steps h3 {
  margin: 0 0 0.3rem;
  font-size: 1.15rem;
  color: var(--text);
}

.steps p {
  margin: 0;
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ——— Order form ——— */

.order-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.25rem;
  align-items: start;
}

.order-intro h1 {
  font-size: clamp(2.35rem, 4.8vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0 0 0.9rem;
  max-width: 12ch;
  color: var(--text);
}

.order-intro .lede {
  font-size: 1.2rem;
}

.fun-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: var(--ember-soft);
  border: 1px solid rgba(212, 69, 44, 0.35);
  color: #ffd6ce;
  font-size: 0.98rem;
}

.form-card {
  background:
    radial-gradient(500px 240px at 100% 0%, rgba(232, 184, 74, 0.12), transparent 55%),
    var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-progress .dot {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.form-progress .dot span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--ember));
  transition: width 0.35s var(--ease);
}

.form-progress .dot.is-done span,
.form-progress .dot.is-active span {
  width: 100%;
}

.form-progress .dot.is-active span {
  width: 55%;
}

.form-step {
  display: none;
  animation: rise 0.35s var(--ease);
}

.form-step.is-active {
  display: block;
}

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

.form-step h2 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.form-step > p {
  margin: 0 0 1.15rem;
  color: var(--text-dim);
  font-size: 1.05rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0;
}

.field-row .field {
  margin-bottom: 0.95rem;
}

.field-hint {
  margin: -0.35rem 0 0.9rem;
  color: var(--danger);
  font-size: 0.95rem;
}

.section-label {
  margin: 0.25rem 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--text);
}

.label-optional {
  font-weight: 500;
  color: var(--text-mute);
}

.field select {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  font-size: 1.05rem;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-dim) 50%),
    linear-gradient(135deg, var(--text-dim) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field select:focus {
  border-color: rgba(232, 184, 74, 0.65);
  box-shadow: 0 0 0 3px rgba(232, 184, 74, 0.12);
}

.field select.is-invalid {
  border-color: rgba(255, 107, 90, 0.7);
}

.field select option {
  background: #161922;
  color: var(--text);
}

.site-footer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}

@media (max-width: 520px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.field label {
  font-size: 0.95rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  font-size: 1.05rem;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-mute);
  opacity: 1;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(232, 184, 74, 0.65);
  box-shadow: 0 0 0 3px rgba(232, 184, 74, 0.12);
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: rgba(255, 107, 90, 0.7);
}

.option-grid {
  display: grid;
  gap: 0.65rem;
}

.option {
  position: relative;
}

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

.option label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.option label:hover {
  border-color: rgba(232, 184, 74, 0.35);
  transform: translateY(-1px);
}

.option input:checked + label {
  border-color: rgba(232, 184, 74, 0.7);
  background: var(--gold-soft);
  box-shadow: inset 0 0 0 1px rgba(232, 184, 74, 0.15);
}

.option-title {
  font-weight: 650;
  font-size: 1.08rem;
  color: var(--text);
}

.option-desc {
  grid-column: 1 / -1;
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.5;
}

.option-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.08rem;
  white-space: nowrap;
}

.form-nav {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.form-nav .btn {
  flex: 1;
}

.success {
  text-align: center;
  padding: 1.5rem 0.5rem 0.5rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(61, 186, 122, 0.12);
  border: 1px solid rgba(61, 186, 122, 0.35);
  color: var(--ok);
  font-size: 1.6rem;
}

.success h2 {
  margin: 0 0 0.5rem;
}

.success p {
  margin: 0;
  color: var(--text-dim);
  font-size: 1.08rem;
}

.fine-print {
  margin-top: 1rem;
  color: var(--text-mute);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ——— Responsive ——— */

@media (max-width: 860px) {
  :root {
    --nav-h: 72px;
  }

  body {
    font-size: 1.05rem;
  }

  .shell,
  .site-header .shell {
    width: min(var(--max), calc(100% - 1.35rem));
  }

  .grid-2,
  .grid-3,
  .split,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .brand {
    gap: 0.65rem;
    min-width: 0;
    flex: 1;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-name {
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .brand-tag {
    font-size: 0.72rem;
    max-width: 12.5rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .nav-toggle {
    display: grid;
    flex-shrink: 0;
  }

  .nav {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.85rem;
    background: rgba(11, 12, 14, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a,
  .nav-cta {
    margin: 0 !important;
    border-radius: 12px !important;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem !important;
    text-align: center;
  }

  .hero {
    padding: 2.75rem 0 2rem;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 2.85rem);
    max-width: none;
  }

  .order-intro h1 {
    font-size: clamp(2rem, 8.5vw, 2.6rem);
    max-width: none;
  }

  .lede {
    font-size: 1.1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 1.1rem 0 1.5rem;
  }

  .panel,
  .card,
  .form-card {
    padding: 1.15rem 1.1rem;
  }

  .person-photo {
    width: 104px;
    height: 104px;
  }

  .site-footer {
    padding: 1.5rem 0 2rem;
    font-size: 0.9rem;
  }

  .site-footer .shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .form-nav {
    flex-direction: column-reverse;
  }

  .form-nav .btn {
    width: 100%;
  }

  .option label {
    padding: 0.85rem 0.9rem;
  }

  .option-price {
    font-size: 1rem;
  }

  .fun-note {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }

  .order-layout {
    gap: 1.5rem;
  }
}

@media (max-width: 720px) {
  .stat-value {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 1rem;
  }

  .brand-tag {
    max-width: 10.5rem;
  }

  .stat-values,
  .stat-labels {
    grid-template-columns: 1fr;
  }

  .stat-values {
    row-gap: 1rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }
}

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