/*
 * Chick N'Craze — premium editorial system
 * Direction: warm street-food energy, restaurant-first photography,
 * confident typography and a deliberately tactile finish.
 */

:root {
  --premium-ink: #160a04;
  --premium-ink-2: #211006;
  --premium-ink-3: #321a0c;
  --premium-cream: #fff1d8;
  --premium-paper: #f6e6c9;
  --premium-orange: #ff9a2e;
  --premium-red: #f0522d;
  --premium-mint: #19b5a6;
  --premium-line: rgba(255, 241, 216, 0.14);
  --premium-line-dark: rgba(22, 10, 4, 0.17);
  --premium-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --premium-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container-max-width: 1360px;
  --container-padding: clamp(1.1rem, 3.2vw, 3.2rem);
  --header-height: 88px;
}

html {
  scroll-padding-top: calc(var(--header-height) + 5rem);
}

body {
  background: var(--premium-ink);
  background-image:
    radial-gradient(circle at 10% 0%, rgba(240, 82, 45, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 34%, rgba(25, 181, 166, 0.08), transparent 30rem);
  color: var(--premium-cream);
  font-family: var(--font-family);
}

body::after {
  z-index: 9999;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

::selection {
  background: var(--premium-orange);
  color: var(--premium-ink);
}

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid var(--premium-mint);
  outline-offset: 4px;
}

.main {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.page-home .main {
  padding: 0;
}

svg {
  flex: 0 0 auto;
}

.cnc-btn svg,
.cnc-menu__all svg,
.cnc-card__cta svg,
.cnc-info__map svg,
.cnc-sticky svg,
.header svg,
.order-mode-icon svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header */
.header {
  height: var(--header-height);
  background: rgba(22, 10, 4, 0.9);
  border-bottom: 1px solid var(--premium-line);
  box-shadow: none;
  transition:
    background 0.35s ease,
    height 0.35s ease,
    box-shadow 0.35s ease;
}

.page-home .header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(16, 7, 3, 0.84), rgba(16, 7, 3, 0));
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header.is-scrolled {
  background: rgba(22, 10, 4, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.page-home .header-spacer {
  display: none;
}

.header-inner {
  position: relative;
  gap: clamp(1rem, 2.4vw, 2.4rem);
}

.header .nav-btn {
  width: auto;
  height: 46px;
  padding: 0 1rem;
  gap: 0.65rem;
  border: 1px solid var(--premium-line);
  border-radius: 999px;
  background: rgba(255, 241, 216, 0.06);
  color: var(--premium-cream);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.header .nav-btn svg {
  width: 18px;
  height: 18px;
}

.header .nav-btn:hover {
  color: var(--premium-ink);
  background: var(--premium-cream);
  border-color: var(--premium-cream);
  transform: none;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.header-logo:hover {
  color: inherit;
}

.header-logo .header-logo-img {
  width: 59px;
  height: 59px;
  object-fit: contain;
  filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.3));
}

.header-logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.header-logo-text strong {
  font-family: var(--font-family-heading);
  font-size: 0.92rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.header-logo-text small {
  margin-top: 0.34rem;
  color: var(--premium-orange);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 2.5vw, 2.7rem);
  margin-left: auto;
}

.header-nav a,
.header-track {
  position: relative;
  color: rgba(255, 241, 216, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  background: var(--premium-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--premium-ease);
}

.header-nav a:hover,
.header-track:hover {
  color: var(--premium-cream);
}

.header-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  gap: 0.6rem;
}

.header .cart-btn {
  width: 46px;
  padding: 0;
}

.header-order {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.3rem;
  border: 1px solid var(--premium-orange);
  border-radius: 999px;
  background: var(--premium-orange);
  color: var(--premium-ink);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease;
}

.header-order:hover {
  color: var(--premium-ink);
  background: var(--premium-cream);
  border-color: var(--premium-cream);
  transform: translateY(-2px);
}

.cart-count-badge {
  top: -3px;
  right: -4px;
  background: var(--premium-red);
  color: #fff;
  border-color: var(--premium-ink);
  box-shadow: none;
}

/* Drawer */
.nav-overlay {
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  background: rgba(10, 4, 1, 0.65);
}

.nav-drawer {
  width: min(500px, 100%);
  max-height: 100svh;
  height: 100%;
  border: 0;
  border-right: 1px solid var(--premium-line);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(240, 82, 45, 0.12), transparent 32%),
    var(--premium-ink);
  box-shadow: 40px 0 100px rgba(0, 0, 0, 0.52);
  animation: drawerSlideSide 0.55s var(--premium-ease);
}

@keyframes drawerSlideSide {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.nav-drawer__head {
  padding: 1.7rem clamp(1.4rem, 4vw, 2.5rem);
  border-color: var(--premium-line);
}

.nav-drawer__title {
  color: var(--premium-cream);
  font-family: var(--font-family-heading);
  font-size: 1rem;
  font-style: normal;
  letter-spacing: -0.02em;
  text-shadow: none;
  text-transform: uppercase;
}

.nav-drawer__close {
  color: var(--premium-cream);
  border-color: var(--premium-line);
  border-radius: 50%;
}

.nav-drawer__body {
  gap: 0;
  padding: 1rem clamp(1.4rem, 4vw, 2.5rem);
}

.nav-drawer .nav-item {
  justify-content: flex-start;
  gap: 1.3rem;
  padding: 1.1rem 0;
  border: 0;
  border-bottom: 1px solid var(--premium-line);
  border-radius: 0;
  background: transparent;
  color: var(--premium-cream);
  font-family: var(--font-family-heading);
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-style: normal;
  letter-spacing: -0.035em;
}

.nav-drawer .nav-item span {
  width: 2rem;
  color: var(--premium-mint);
  font-family: var(--font-family);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.nav-drawer .nav-item:hover {
  padding-left: 0.6rem;
  color: var(--premium-orange);
  border-color: var(--premium-orange);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.nav-divider {
  margin-top: 1.7rem;
  color: var(--premium-orange);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-divider ~ .nav-item {
  padding: 0.75rem 0;
  color: rgba(255, 241, 216, 0.72);
  font-family: var(--font-family);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
}

.nav-drawer__footer {
  margin-top: auto;
  padding: 1.4rem clamp(1.4rem, 4vw, 2.5rem) 2rem;
  border-top: 1px solid var(--premium-line);
  color: rgba(255, 241, 216, 0.62);
  font-size: 0.82rem;
}

.nav-drawer__footer p {
  margin: 0.2rem 0;
}

/* Global controls */
.btn {
  min-height: 48px;
  border-radius: 999px;
  box-shadow: none;
  font-family: var(--font-family);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.btn-primary {
  min-height: 52px;
  border: 1px solid var(--premium-orange);
  border-radius: 999px;
  background: var(--premium-orange);
  color: var(--premium-ink);
  box-shadow: none;
  font-family: var(--font-family);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.btn-primary:hover {
  color: var(--premium-ink);
  background: var(--premium-cream);
  border-color: var(--premium-cream);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: var(--premium-line);
  background: transparent;
  color: var(--premium-cream);
}

.btn-secondary:hover {
  border-color: var(--premium-cream);
  background: var(--premium-cream);
  color: var(--premium-ink);
  box-shadow: none;
}

input,
textarea,
select {
  min-height: 54px;
  border: 1px solid rgba(255, 241, 216, 0.18);
  border-radius: 0;
  background: rgba(255, 241, 216, 0.055);
  color: var(--premium-cream);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 241, 216, 0.36);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--premium-orange);
  background: rgba(255, 241, 216, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 154, 46, 0.14);
}

/* Home hero */
.cnc-hero {
  min-height: max(760px, 100svh);
  flex-direction: column;
  padding: calc(var(--header-height) + 5rem) var(--container-padding) 0;
  align-items: stretch;
  background: var(--premium-ink);
}

.cnc-hero__media img {
  filter: saturate(1.08) contrast(1.08);
}

.cnc-hero__veil {
  background:
    linear-gradient(90deg, rgba(16, 7, 3, 0.95) 0%, rgba(16, 7, 3, 0.7) 44%, rgba(16, 7, 3, 0.24) 77%, rgba(16, 7, 3, 0.48) 100%),
    linear-gradient(180deg, rgba(16, 7, 3, 0.12) 35%, rgba(16, 7, 3, 0.92) 100%);
}

.cnc-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.cnc-hero__frame {
  position: absolute;
  z-index: 2;
  top: calc(var(--header-height) + 2.3rem);
  right: var(--container-padding);
  bottom: 11rem;
  left: var(--container-padding);
  border-top: 1px solid rgba(255, 241, 216, 0.26);
  border-right: 1px solid rgba(255, 241, 216, 0.18);
  pointer-events: none;
}

.cnc-hero__frame span {
  position: absolute;
  top: 1rem;
  color: rgba(255, 241, 216, 0.62);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cnc-hero__frame span:first-child {
  right: 1rem;
}

.cnc-hero__frame span:last-child {
  right: -0.3rem;
  bottom: 1rem;
  top: auto;
  transform: rotate(-90deg);
  transform-origin: right bottom;
}

.cnc-hero__inner {
  z-index: 3;
  display: flex;
  flex: 1;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto 3rem;
}

.cnc-hero__copy {
  max-width: 950px;
}

.cnc-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  color: var(--premium-cream);
  font-family: var(--font-family);
  font-size: clamp(0.66rem, 1vw, 0.78rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.cnc-hero__eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--premium-orange);
}

.cnc-hero__title {
  font-size: clamp(4.3rem, 11.1vw, 10rem);
  line-height: 0.79;
  letter-spacing: -0.075em;
  text-shadow: 0 10px 45px rgba(0, 0, 0, 0.35);
}

.cnc-hero__title .line--accent {
  color: var(--premium-orange);
}

.cnc-hero__title .line--out {
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.16vw, 2.5px) var(--premium-cream);
}

.cnc-hero__sub {
  max-width: 620px;
  margin: 1.7rem 0 2rem;
  color: rgba(255, 241, 216, 0.88);
  font-family: var(--font-family-accent);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
}

.cnc-btn {
  min-height: 54px;
  gap: 0.8rem;
  border: 1px solid var(--premium-orange);
  border-radius: 999px;
  background: var(--premium-orange);
  color: var(--premium-ink);
  font-family: var(--font-family);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.cnc-btn:hover {
  color: var(--premium-ink);
  background: var(--premium-cream);
  border-color: var(--premium-cream);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.28);
}

.cnc-btn--lg {
  min-height: 58px;
  padding: 0 2rem;
  font-size: 0.77rem;
}

.cnc-btn--ghost {
  border-color: rgba(255, 241, 216, 0.38);
  background: rgba(255, 241, 216, 0.04);
  color: var(--premium-cream);
  backdrop-filter: blur(8px);
}

.cnc-hero__note {
  width: 220px;
  flex: 0 0 220px;
  margin-bottom: 1.2rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 241, 216, 0.24);
  background: rgba(22, 10, 4, 0.4);
  backdrop-filter: blur(12px);
  transform: rotate(2.5deg);
}

.cnc-hero__note img {
  width: 118px;
  margin: -4.2rem auto 0.25rem;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.38));
}

.cnc-hero__note p {
  margin: 0;
  text-align: center;
}

.cnc-hero__note strong,
.cnc-hero__note span {
  display: block;
}

.cnc-hero__note strong {
  font-family: var(--font-family-heading);
  font-size: 0.83rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.cnc-hero__note span {
  margin-top: 0.35rem;
  color: var(--premium-orange);
  font-family: var(--font-family-accent);
  font-size: 1.2rem;
}

.cnc-hero__assure {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: calc(100% + (2 * var(--container-padding)));
  margin: 0 calc(-1 * var(--container-padding));
  padding: 0 var(--container-padding);
  border-top: 1px solid rgba(255, 241, 216, 0.2);
  background: rgba(22, 10, 4, 0.68);
  backdrop-filter: blur(14px);
}

.cnc-hero__assure li {
  display: block;
  min-height: 112px;
  padding: 1.55rem clamp(1rem, 3vw, 2.5rem);
  border-right: 1px solid rgba(255, 241, 216, 0.16);
}

.cnc-hero__assure li::before {
  display: none;
}

.cnc-hero__assure li:first-child {
  padding-left: 0;
}

.cnc-hero__assure li:last-child {
  border-right: 0;
}

.cnc-hero__assure strong,
.cnc-hero__assure span {
  display: block;
}

.cnc-hero__assure strong {
  margin-bottom: 0.35rem;
  color: var(--premium-cream);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cnc-hero__assure span {
  color: rgba(255, 241, 216, 0.58);
  font-size: 0.77rem;
  font-weight: 500;
}

/* Home ticker */
.cnc-ticker {
  position: relative;
  z-index: 4;
  padding: 0.85rem 0;
  border: 0;
  background: var(--premium-orange);
  color: var(--premium-ink);
  transform: none;
}

.cnc-ticker__track {
  gap: 1.25rem;
}

.cnc-ticker__item {
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: -0.03em;
}

.cnc-ticker__star {
  color: var(--premium-red);
}

/* Home menu */
.cnc-menu {
  padding: clamp(6rem, 11vw, 10rem) var(--container-padding);
  background:
    radial-gradient(circle at 90% 20%, rgba(240, 82, 45, 0.1), transparent 28rem),
    var(--premium-ink);
}

.cnc-menu__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  max-width: 1360px;
  margin: 0 auto clamp(3rem, 6vw, 5.5rem);
}

.cnc-menu__eyebrow,
.catalog-eyebrow,
.page-eyebrow,
.product-eyebrow,
.order-mode-kicker {
  margin: 0 0 1rem;
  color: var(--premium-mint);
  font-family: var(--font-family);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cnc-menu__title {
  margin: 0;
  color: var(--premium-cream);
  font-size: clamp(2.8rem, 6.7vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.cnc-menu__title span {
  display: inline-block;
  max-width: 900px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 241, 216, 0.64);
}

.cnc-menu__all,
.cnc-info__map {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--premium-orange);
  color: var(--premium-cream);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cnc-menu__all:hover,
.cnc-info__map:hover {
  color: var(--premium-orange);
  text-decoration: none;
}

.cnc-grid {
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2.1vw, 2rem);
  max-width: 1360px;
}

.cnc-card {
  grid-column: span 4;
  border: 1px solid var(--premium-line);
  border-radius: 0;
  background: var(--premium-ink-2);
  color: var(--premium-cream);
  box-shadow: none;
}

.cnc-card:first-child {
  grid-column: span 7;
}

.cnc-card:nth-child(2) {
  grid-column: span 5;
}

.cnc-card:hover {
  border-color: var(--premium-orange);
  box-shadow: var(--premium-shadow);
  transform: translateY(-7px);
}

.cnc-card__media {
  aspect-ratio: 5 / 4;
  border-bottom: 1px solid var(--premium-line);
}

.cnc-card:first-child .cnc-card__media,
.cnc-card:nth-child(2) .cnc-card__media {
  aspect-ratio: 16 / 10;
}

.cnc-card__media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(22, 10, 4, 0.5));
  pointer-events: none;
}

.cnc-card__media img {
  filter: saturate(1.02) contrast(1.03);
}

.cnc-card__index {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 241, 216, 0.35);
  border-radius: 50%;
  background: rgba(22, 10, 4, 0.5);
  color: var(--premium-cream);
  font-size: 0.67rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.cnc-card__badge {
  position: absolute;
  z-index: 1;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.7rem;
  background: var(--premium-mint);
  color: var(--premium-ink);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cnc-card__body {
  gap: 0.7rem;
  padding: 1.5rem;
}

.cnc-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cnc-card__body h3 {
  max-width: 70%;
  color: var(--premium-cream);
  font-family: var(--font-family-heading);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  letter-spacing: -0.035em;
}

.cnc-card__price {
  position: static;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--premium-orange);
  font-family: var(--font-family-heading);
  font-size: 1.15rem;
  box-shadow: none;
}

.cnc-card__body p {
  max-width: 52ch;
  color: rgba(255, 241, 216, 0.58);
  font-size: 0.86rem;
}

.cnc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  color: var(--premium-cream);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Manifesto */
.cnc-manifesto {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  overflow: hidden;
  padding: clamp(6rem, 12vw, 11rem) var(--container-padding);
  background: var(--premium-paper);
  color: var(--premium-ink);
}

.cnc-manifesto__word {
  position: absolute;
  right: -2vw;
  bottom: -0.15em;
  color: transparent;
  font-family: var(--font-family-heading);
  font-size: clamp(10rem, 25vw, 25rem);
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(22, 10, 4, 0.08);
  pointer-events: none;
}

.cnc-manifesto__intro {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.cnc-manifesto .cnc-menu__eyebrow {
  color: #087f75;
}

.cnc-manifesto__intro h2 {
  margin: 0 0 2rem;
  color: var(--premium-ink);
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  font-style: normal;
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.cnc-manifesto__intro h2 em {
  color: var(--premium-red);
  font-family: var(--font-family-accent);
  font-size: 1.15em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}

.cnc-manifesto__intro > p:last-child {
  max-width: 42ch;
  color: rgba(22, 10, 4, 0.68);
  font-size: 1rem;
  font-weight: 600;
}

.cnc-features__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.cnc-feature {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 1.2rem;
  padding: 1.65rem 0;
  border: 0;
  border-top: 1px solid var(--premium-line-dark);
  border-radius: 0;
  background: transparent;
}

.cnc-feature:last-child {
  border-bottom: 1px solid var(--premium-line-dark);
}

.cnc-feature__num {
  color: var(--premium-red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.cnc-feature__title {
  margin: 0 0 0.55rem;
  color: var(--premium-ink);
  font-family: var(--font-family-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  letter-spacing: -0.035em;
}

.cnc-feature__text {
  max-width: 55ch;
  margin: 0;
  color: rgba(22, 10, 4, 0.62);
  font-size: 0.88rem;
}

/* Practical info */
.cnc-info {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.72fr;
  gap: 0;
  padding: 0 var(--container-padding);
  background: var(--premium-ink-2);
  color: var(--premium-cream);
}

.cnc-info > div {
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1.7rem, 4.2vw, 4.5rem);
  border-right: 1px solid var(--premium-line);
}

.cnc-info > div:first-child {
  padding-left: 0;
}

.cnc-info > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.cnc-info__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cnc-info__title {
  margin: 0 0 1.6rem;
  color: var(--premium-cream);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-style: normal;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.cnc-info__intro > p:not(.cnc-menu__eyebrow) {
  max-width: 43ch;
  color: rgba(255, 241, 216, 0.61);
  font-size: 0.9rem;
}

.cnc-info__map {
  margin-top: auto;
  padding-top: 2rem;
}

.cnc-info__label {
  margin-bottom: 2.2rem;
  color: var(--premium-orange);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cnc-hours {
  border-top: 1px solid var(--premium-line);
}

.cnc-hours li {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--premium-line);
  font-size: 0.8rem;
}

.cnc-hours li span:first-child {
  color: rgba(255, 241, 216, 0.58);
}

.cnc-hours li span:last-child {
  color: var(--premium-cream);
  font-weight: 700;
}

.cnc-info__addr {
  color: var(--premium-cream);
  font-family: var(--font-family-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.15;
}

.cnc-info__phone {
  display: inline-block;
  margin: 0.7rem 0 2rem;
  color: var(--premium-orange);
  font-size: 1rem;
  font-weight: 800;
}

.cnc-info__btn {
  width: 100%;
}

/* Home final CTA */
.cnc-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 11rem) var(--container-padding);
  background: var(--premium-red);
  color: var(--premium-cream);
}

.cnc-cta::before {
  content: "";
  position: absolute;
  inset: 1.4rem;
  border: 1px solid rgba(255, 241, 216, 0.3);
  pointer-events: none;
}

.cnc-cta__logo {
  position: absolute;
  top: 50%;
  right: clamp(-4rem, -2vw, -1rem);
  width: clamp(22rem, 45vw, 48rem);
  opacity: 0.16;
  transform: translateY(-50%) rotate(8deg);
  filter: grayscale(1) brightness(4);
}

.cnc-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.cnc-cta__eyebrow {
  margin: 0 0 0.6rem;
  color: var(--premium-ink);
  font-family: var(--font-family-accent);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.cnc-cta__title {
  margin: 0;
  color: var(--premium-cream);
  font-size: clamp(4rem, 10vw, 9.5rem);
  font-style: normal;
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.cnc-cta__text {
  max-width: 520px;
  margin: 1.5rem auto 2rem;
  color: rgba(255, 241, 216, 0.8);
}

.cnc-cta .cnc-btn {
  border-color: var(--premium-cream);
  background: var(--premium-cream);
  color: var(--premium-ink);
}

.cnc-sticky {
  min-height: 58px;
  justify-content: space-between;
  padding-right: 1.4rem;
  padding-left: 1.4rem;
  background: var(--premium-orange);
  color: var(--premium-ink);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* Shared page intros */
.page-intro {
  max-width: 880px;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.page-intro h1 {
  margin: 0 0 1rem;
  color: var(--premium-cream);
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.page-intro > p:last-child {
  max-width: 52ch;
  color: rgba(255, 241, 216, 0.58);
}

/* Catalog */
body.page-catalog .main {
  padding-top: clamp(4.5rem, 8vw, 8rem);
}

body.page-catalog .catalog-page {
  max-width: 1360px;
}

body.page-catalog .catalog-header {
  margin: 0 0 clamp(3.3rem, 7vw, 6rem);
  text-align: left;
}

body.page-catalog .catalog-header::after {
  display: none;
}

body.page-catalog .catalog-header .header-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

body.page-catalog .catalog-header h1 {
  max-width: 980px;
  margin: 0;
  color: var(--premium-cream);
  font-size: clamp(3.7rem, 9.6vw, 9rem);
  font-style: normal;
  line-height: 0.79;
  letter-spacing: -0.075em;
  text-align: left;
}

body.page-catalog .catalog-header h1 span {
  display: block;
  color: var(--premium-orange);
}

body.page-catalog .catalog-lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 241, 216, 0.62);
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  line-height: 1.75;
}

body.page-catalog .order-mode-badge {
  min-width: max-content;
  margin-bottom: 0.75rem;
  padding: 0.8rem 0.9rem;
  gap: 0.55rem;
  border: 1px solid var(--premium-line);
  border-radius: 999px;
  background: rgba(255, 241, 216, 0.05);
  color: var(--premium-cream);
  box-shadow: none;
}

body.page-catalog .order-mode-badge .badge-icon {
  font-size: 0.95rem;
}

body.page-catalog .order-mode-badge .badge-text {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.page-catalog .order-mode-badge .badge-action {
  color: var(--premium-orange);
  font-size: 0.65rem;
}

body.page-catalog .sticky-nav {
  position: sticky;
  z-index: 50;
  top: var(--header-height);
  width: calc(100% + (2 * var(--container-padding)));
  margin: 0 calc(-1 * var(--container-padding)) clamp(3rem, 6vw, 5rem);
  padding: 0 var(--container-padding);
  border: solid var(--premium-line);
  border-width: 1px 0;
  background: rgba(22, 10, 4, 0.92);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

body.page-catalog .categories-list {
  display: flex;
  gap: 0;
}

body.page-catalog .category-link {
  display: block;
  padding: 1.1rem 1.35rem;
  border: 0;
  border-right: 1px solid var(--premium-line);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 241, 216, 0.65);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

body.page-catalog .category-link.active,
body.page-catalog .category-link:hover {
  border-color: var(--premium-orange);
  background: var(--premium-orange);
  color: var(--premium-ink);
  box-shadow: none;
}

body.page-catalog .category-accordion {
  margin: 0;
  border-bottom: 1px solid var(--premium-line);
  border-radius: 0;
}

body.page-catalog .category-summary {
  min-height: 130px;
  padding: 2rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.page-catalog .category-summary:hover {
  border-color: transparent;
  background: transparent;
}

body.page-catalog .category-summary-content {
  gap: 1rem;
}

body.page-catalog .category-summary-title {
  margin: 0;
  color: var(--premium-cream);
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  font-style: normal;
  letter-spacing: -0.055em;
  text-shadow: none;
}

body.page-catalog .category-summary-content {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

body.page-catalog .category-summary-meta {
  color: rgba(255, 241, 216, 0.5);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body.page-catalog .category-chevron {
  color: var(--premium-orange);
}

body.page-catalog .category-panel {
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}

body.page-catalog .products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.7rem);
}

body.page-catalog .product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--premium-line);
  border-radius: 0;
  background: var(--premium-ink-2);
  box-shadow: none;
}

body.page-catalog .product-card:hover {
  border-color: var(--premium-orange);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
  transform: translateY(-6px);
}

body.page-catalog .product-index {
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: 1rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 241, 216, 0.36);
  border-radius: 50%;
  background: rgba(22, 10, 4, 0.48);
  color: var(--premium-cream);
  font-size: 0.62rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

body.page-catalog .product-card-body {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  padding: 0;
}

body.page-catalog .product-media {
  grid-row: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  border-radius: 0;
  background: var(--premium-ink-3);
}

body.page-catalog .product-img {
  transition: transform 0.6s var(--premium-ease);
}

body.page-catalog .product-card:hover .product-img {
  transform: scale(1.045);
}

body.page-catalog .product-info {
  grid-row: 2;
  padding: 1.3rem 1.3rem 0.9rem;
}

body.page-catalog .product-title {
  margin: 0 0 0.6rem;
  color: var(--premium-cream);
  font-family: var(--font-family-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-style: normal;
  letter-spacing: -0.035em;
  text-shadow: none;
}

body.page-catalog .product-desc {
  min-height: 2.7em;
  margin: 0 0 1rem;
  color: rgba(255, 241, 216, 0.54);
  font-size: 0.8rem;
  line-height: 1.5;
}

body.page-catalog .product-price {
  margin: 0;
  color: var(--premium-orange);
  font-family: var(--font-family-heading);
  font-size: 1.15rem;
  text-shadow: none;
}

body.page-catalog .product-actions {
  padding: 0 1.3rem 1.3rem;
}

body.page-catalog .product-actions .btn {
  min-height: 48px;
  border-radius: 999px;
}

body.page-catalog .product-actions .btn-outline {
  border: 1px solid rgba(255, 241, 216, 0.25);
  background: transparent;
  color: var(--premium-cream);
}

body.page-catalog .product-actions .btn-outline:hover {
  border-color: var(--premium-cream);
  background: var(--premium-cream);
  color: var(--premium-ink);
}

body.page-catalog .btn-action .action-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

/* Order mode modal */
body.page-catalog .order-mode-modal {
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
}

body.page-catalog .order-mode-backdrop {
  background: rgba(9, 4, 1, 0.82);
  backdrop-filter: blur(18px);
}

body.page-catalog .order-mode-card {
  position: relative;
  width: min(920px, 100%);
  max-width: 920px;
  overflow: hidden;
  border: 1px solid rgba(255, 241, 216, 0.2);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(240, 82, 45, 0.15), transparent 35%),
    var(--premium-ink-2);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.62);
}

body.page-catalog .order-mode-card::before {
  content: "CRAZE";
  position: absolute;
  right: -0.05em;
  bottom: -0.11em;
  color: transparent;
  font-family: var(--font-family-heading);
  font-size: clamp(8rem, 24vw, 16rem);
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(255, 241, 216, 0.045);
  pointer-events: none;
}

body.page-catalog .order-mode-header {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.4rem, 5vw, 4rem) 1.5rem;
  border: 0;
  background: transparent;
  text-align: left;
}

body.page-catalog .order-mode-title {
  margin: 0 0 1rem;
  color: var(--premium-cream);
  font-family: var(--font-family-heading);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-style: normal;
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-shadow: none;
}

body.page-catalog .order-mode-subtitle {
  max-width: 520px;
  color: rgba(255, 241, 216, 0.6);
  font-size: 0.9rem;
}

body.page-catalog .order-mode-options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 0 clamp(1.4rem, 5vw, 4rem);
}

body.page-catalog .order-mode-option {
  min-height: 132px;
  padding: 1.3rem;
  gap: 1rem;
  border: 1px solid var(--premium-line);
  border-radius: 0;
  background: rgba(255, 241, 216, 0.045);
  color: var(--premium-cream);
  text-align: left;
}

body.page-catalog .order-mode-option:hover {
  border-color: var(--premium-orange);
  background: rgba(255, 154, 46, 0.08);
  transform: translateY(-3px);
}

body.page-catalog .order-mode-option.is-active {
  border-color: var(--premium-orange);
  background: var(--premium-orange);
  color: var(--premium-ink);
  box-shadow: none;
}

body.page-catalog .order-mode-icon {
  width: 58px;
  height: 58px;
  display: grid;
  flex: 0 0 58px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

body.page-catalog .order-mode-icon svg {
  width: 30px;
  height: 30px;
}

body.page-catalog .order-mode-name {
  font-family: var(--font-family-heading);
  font-size: 1.1rem;
  letter-spacing: -0.025em;
}

body.page-catalog .order-mode-desc {
  color: currentColor;
  font-size: 0.75rem;
  opacity: 0.62;
}

body.page-catalog .order-mode-check {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
}

body.page-catalog .delivery-address-container {
  position: relative;
  z-index: 2;
  padding: 1.5rem clamp(1.4rem, 5vw, 4rem) 0;
}

body.page-catalog .delivery-label {
  color: var(--premium-orange);
}

body.page-catalog .delivery-input {
  min-height: 58px;
  border-color: var(--premium-line);
  border-radius: 0;
  background: rgba(255, 241, 216, 0.06);
}

body.page-catalog .order-mode-actions {
  position: relative;
  z-index: 1;
  padding: 1.5rem clamp(1.4rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
}

body.page-catalog .order-mode-submit {
  width: 100%;
}

body.page-catalog .address-suggestions {
  border-radius: 0;
  background: var(--premium-cream);
  color: var(--premium-ink);
}

body.page-catalog .info-box {
  border-radius: 0;
}

/* Product detail */
body.page-product .main {
  padding-top: clamp(2.5rem, 5vw, 5rem);
}

body.page-product .product-page {
  max-width: 1360px;
}

body.page-product .product-nav {
  padding: 0 0 2rem;
}

body.page-product .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  color: rgba(255, 241, 216, 0.62);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-product .product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
}

body.page-product .product-detail > .product-media {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  overflow: hidden;
  border: 1px solid var(--premium-line);
  background: var(--premium-ink-2);
}

body.page-product .product-detail > .product-media figure {
  margin: 0;
}

body.page-product .product-detail-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

body.page-product .product-content {
  padding-top: clamp(0.5rem, 3vw, 2rem);
}

body.page-product .product-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--premium-line);
  padding-bottom: 1.7rem;
}

body.page-product .product-eyebrow {
  order: -1;
}

body.page-product .product-header .product-title {
  margin: 0;
  color: var(--premium-cream);
  font-family: var(--font-family-heading);
  font-size: clamp(3.2rem, 6.2vw, 6rem);
  font-style: normal;
  line-height: 0.87;
  letter-spacing: -0.07em;
}

body.page-product .product-header .price.large {
  margin-top: 1.2rem;
  color: var(--premium-orange);
  font-family: var(--font-family-heading);
  font-size: 1.65rem;
  text-shadow: none;
}

body.page-product .description {
  margin-bottom: 2.2rem;
}

body.page-product .description p {
  max-width: 56ch;
  color: rgba(255, 241, 216, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

body.page-product .product-form {
  gap: 0;
}

body.page-product .step-fieldset {
  margin: 0 0 2.3rem;
  padding: 0;
}

body.page-product .step-legend {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  padding: 0 0 0.9rem;
  border-bottom: 1px solid var(--premium-line);
}

body.page-product .step-number {
  color: var(--premium-mint);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body.page-product .step-name {
  color: var(--premium-cream);
  font-family: var(--font-family-heading);
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

body.page-product .badge {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-product .badge-required {
  background: var(--premium-orange);
  color: var(--premium-ink);
}

body.page-product .badge-optional {
  border: 1px solid var(--premium-line);
  color: rgba(255, 241, 216, 0.6);
}

body.page-product .step-instruction {
  width: 100%;
  color: rgba(255, 241, 216, 0.5);
  font-size: 0.72rem;
}

body.page-product .choices-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

body.page-product .choice-card {
  min-height: 76px;
  overflow: hidden;
  border: 1px solid var(--premium-line);
  border-radius: 0;
  background: rgba(255, 241, 216, 0.035);
  color: var(--premium-cream);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

body.page-product .choice-card:hover {
  border-color: rgba(255, 154, 46, 0.68);
  transform: translateY(-2px);
}

body.page-product .choice-card:has(:checked) {
  border-color: var(--premium-orange);
  background: rgba(255, 154, 46, 0.12);
  box-shadow: inset 0 0 0 1px var(--premium-orange);
}

body.page-product .choice-content-wrapper {
  min-height: 76px;
  gap: 0.8rem;
  padding: 0.8rem;
  background: transparent;
}

body.page-product .choice-media {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 50%;
}

body.page-product .choice-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-product .choice-name {
  color: var(--premium-cream);
  font-size: 0.78rem;
  font-weight: 800;
}

body.page-product .choice-price {
  color: var(--premium-orange);
  font-size: 0.72rem;
}

body.page-product .choice-indicator {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255, 241, 216, 0.25);
  border-radius: 50%;
  background: transparent;
}

body.page-product .choice-input:checked + .choice-content-wrapper .choice-indicator {
  border-color: var(--premium-orange);
  background: var(--premium-orange);
  color: var(--premium-ink);
}

body.page-product .quantity-section {
  padding: 1.2rem 0;
  border: solid var(--premium-line);
  border-width: 1px 0;
  background: transparent;
}

body.page-product .quantity-label {
  color: var(--premium-cream);
  font-size: 0.72rem;
}

body.page-product .quantity-control {
  border-color: var(--premium-line);
  border-radius: 999px;
  background: rgba(255, 241, 216, 0.05);
}

body.page-product .btn-quantity {
  color: var(--premium-cream);
}

body.page-product .quantity-input {
  min-height: 44px;
  background: transparent;
  color: var(--premium-cream);
}

body.page-product .product-actions {
  padding: 1.4rem 0 0;
}

body.page-product .product-actions .btn {
  min-height: 60px;
}

/* Cart */
body.page-cart .cart-page {
  max-width: 1360px;
}

body.page-cart .cart-content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

body.page-cart .cart-items {
  border-top: 1px solid var(--premium-line);
}

body.page-cart .cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  margin: 0;
  padding: 1.8rem 0;
  border: 0;
  border-bottom: 1px solid var(--premium-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.page-cart .cart-item:hover {
  border-color: var(--premium-line);
  box-shadow: none;
  transform: none;
}

body.page-cart .item-info h3 {
  margin: 0 0 0.6rem;
  color: var(--premium-cream);
  font-family: var(--font-family-heading);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  letter-spacing: -0.035em;
}

body.page-cart .item-selections {
  margin: 0 0 0.8rem;
  color: rgba(255, 241, 216, 0.5);
  font-size: 0.78rem;
}

body.page-cart .item-price {
  margin: 0;
  color: var(--premium-orange);
  font-family: var(--font-family-heading);
  font-size: 1rem;
}

body.page-cart .item-actions {
  align-items: flex-end;
  gap: 0.6rem;
}

body.page-cart .quantity-form {
  overflow: hidden;
  border: 1px solid var(--premium-line);
  border-radius: 999px;
  background: rgba(255, 241, 216, 0.04);
}

body.page-cart .qty-btn {
  width: 42px;
  height: 42px;
  color: var(--premium-cream);
  border: 0;
  background: transparent;
}

body.page-cart .qty-btn:hover {
  background: var(--premium-orange);
  color: var(--premium-ink);
}

body.page-cart .quantity {
  color: var(--premium-cream);
}

body.page-cart .btn-remove {
  color: rgba(255, 241, 216, 0.45);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.page-cart .btn-remove:hover {
  color: var(--premium-red);
}

body.page-cart .cart-summary {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--premium-line);
  border-top: 5px solid var(--premium-orange);
  border-radius: 0;
  background: var(--premium-ink-2);
  box-shadow: var(--premium-shadow);
}

body.page-cart .summary-row {
  color: rgba(255, 241, 216, 0.64);
  border-color: var(--premium-line);
}

body.page-cart .summary-row.total {
  color: var(--premium-cream);
}

body.page-cart .summary-row.total span:last-child {
  color: var(--premium-orange);
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
}

body.page-cart .cart-summary .btn {
  width: 100%;
}

body.page-cart .empty-cart {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 7rem);
  border: 1px solid var(--premium-line);
  background: var(--premium-ink-2);
  text-align: center;
}

body.page-cart .empty-cart p {
  color: var(--premium-cream);
  font-family: var(--font-family-heading);
  font-size: clamp(2rem, 5vw, 4rem);
}

/* Checkout */
body.page-checkout .checkout-page {
  max-width: 1120px;
}

body.page-checkout .checkout-content {
  max-width: none;
  margin: 0;
}

body.page-checkout .checkout-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1.2rem;
}

body.page-checkout .form-section {
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--premium-line);
  border-radius: 0;
  background: var(--premium-ink-2);
}

body.page-checkout .form-section h2 {
  margin: 0 0 1.8rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--premium-line);
  color: var(--premium-cream);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-style: normal;
  letter-spacing: -0.035em;
}

body.page-checkout .form-group {
  margin-bottom: 1.2rem;
}

body.page-checkout label {
  color: rgba(255, 241, 216, 0.55);
  font-size: 0.67rem;
}

body.page-checkout .choice-label {
  border: 1px solid var(--premium-line);
  border-radius: 0;
  background: rgba(255, 241, 216, 0.04);
}

body.page-checkout .choice-label:has(input:checked) {
  border-color: var(--premium-orange);
  background: rgba(255, 154, 46, 0.1);
}

body.page-checkout .delivery-quote-box {
  border: 1px solid rgba(25, 181, 166, 0.45);
  border-radius: 0;
  background: rgba(25, 181, 166, 0.08);
}

body.page-checkout .order-summary {
  color: rgba(255, 241, 216, 0.66);
}

body.page-checkout .summary-item,
body.page-checkout .summary-row {
  border-color: var(--premium-line);
}

body.page-checkout .summary-row.total {
  color: var(--premium-cream);
}

body.page-checkout .summary-row.total span:last-child {
  color: var(--premium-orange);
  font-family: var(--font-family-heading);
  font-size: 1.45rem;
}

body.page-checkout #payButton {
  grid-column: 1 / -1;
  min-height: 64px;
}

/* Tracking & confirmation pages — override their local legacy white skin */
body.page-track .track-form-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  font-family: var(--font-family);
}

body.page-track .track-card {
  padding: clamp(1.7rem, 5vw, 3.5rem);
  border: 1px solid var(--premium-line);
  border-top: 5px solid var(--premium-orange);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(240, 82, 45, 0.1), transparent 35%),
    var(--premium-ink-2);
  box-shadow: var(--premium-shadow);
}

body.page-track .track-card-head {
  text-align: left;
}

body.page-track .track-card-title {
  margin: 0 0 1rem;
  color: var(--premium-cream);
  font-family: var(--font-family-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

body.page-track .track-card-desc {
  color: rgba(255, 241, 216, 0.58);
}

body.page-track .form-group label {
  color: rgba(255, 241, 216, 0.58);
}

body.page-track .input-icon {
  filter: grayscale(1);
}

body.page-track .form-control {
  min-height: 56px;
  border: 1px solid var(--premium-line);
  border-radius: 0;
  background: rgba(255, 241, 216, 0.05);
  color: var(--premium-cream);
}

body.page-track .form-control:focus {
  border-color: var(--premium-orange);
  background: rgba(255, 241, 216, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 154, 46, 0.14);
}

body.page-track .form-group small {
  color: rgba(255, 241, 216, 0.4);
}

body.page-track .btn-submit {
  min-height: 58px;
  border-radius: 999px;
  background: var(--premium-orange);
  color: var(--premium-ink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-success .success-page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 7rem);
  border: 1px solid var(--premium-line);
  border-top: 5px solid var(--premium-mint);
  border-radius: 0;
  background: var(--premium-ink-2);
  box-shadow: var(--premium-shadow);
}

body.page-success .success-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--premium-mint);
  border-radius: 50%;
  background: transparent;
  color: var(--premium-mint);
}

body.page-success .success-page h1 {
  margin-bottom: 1.5rem;
  color: var(--premium-cream);
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.06em;
}

/* Footer */
.footer {
  padding: clamp(4rem, 8vw, 7rem) 0 2rem;
  border-top: 1px solid var(--premium-line);
  background: #0d0502;
  text-align: left;
}

.footer::before,
.footer::after {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.5fr) minmax(160px, 0.65fr) minmax(200px, 0.85fr);
  gap: clamp(2.5rem, 7vw, 8rem);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.footer-logo {
  width: 110px;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35));
}

.footer-brand strong {
  color: var(--premium-cream);
  font-family: var(--font-family-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 35ch;
  margin: 0.55rem 0 0;
  color: rgba(255, 241, 216, 0.48);
  font-size: 0.8rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 241, 216, 0.56);
  font-size: 0.78rem;
}

.footer-label {
  margin: 0 0 0.8rem;
  color: var(--premium-orange);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer .footer-link {
  color: rgba(255, 241, 216, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.footer .footer-link:hover,
.footer-phone:hover {
  color: var(--premium-orange);
  text-shadow: none;
  transform: none;
}

.footer-phone {
  color: var(--premium-cream);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(3rem, 7vw, 6rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--premium-line);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 241, 216, 0.38);
  font-size: 0.67rem;
}

.footer-signature {
  font-family: var(--font-family-accent);
  font-size: 1rem !important;
  color: var(--premium-orange) !important;
}

/* Motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--premium-ease),
    transform 0.75s var(--premium-ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .header-logo-text,
  .header-track {
    display: none;
  }

  .header-nav {
    gap: 1.4rem;
  }

  .cnc-card {
    grid-column: span 6;
  }

  .cnc-card:first-child,
  .cnc-card:nth-child(2) {
    grid-column: span 6;
  }

  .cnc-info {
    grid-template-columns: 1fr 1fr;
  }

  .cnc-info__intro {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--premium-line);
  }

  body.page-catalog .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .header-nav,
  .header-order {
    display: none;
  }

  .header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-logo .header-logo-img {
    width: 52px;
    height: 52px;
  }

  .header-actions {
    margin-left: auto;
  }

  .cnc-hero {
    min-height: max(720px, 100svh);
    padding-top: calc(var(--header-height) + 4rem);
  }

  .cnc-hero__veil {
    background:
      linear-gradient(90deg, rgba(16, 7, 3, 0.86) 0%, rgba(16, 7, 3, 0.45) 100%),
      linear-gradient(180deg, rgba(16, 7, 3, 0.18) 20%, rgba(16, 7, 3, 0.94) 88%);
  }

  .cnc-hero__note {
    display: none;
  }

  .cnc-hero__title {
    font-size: clamp(4rem, 15vw, 7.5rem);
  }

  .cnc-menu__head {
    grid-template-columns: 1fr;
  }

  .cnc-manifesto {
    grid-template-columns: 1fr;
  }

  body.page-product .product-detail {
    grid-template-columns: 1fr;
  }

  body.page-product .product-detail > .product-media {
    position: static;
  }

  body.page-cart .cart-content {
    grid-template-columns: 1fr;
  }

  body.page-cart .cart-summary {
    position: static;
  }

  body.page-checkout .checkout-form {
    grid-template-columns: 1fr;
  }

  body.page-checkout #payButton {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  :root {
    --container-padding: 1rem;
  }

  .header .nav-btn {
    width: 44px;
    padding: 0;
  }

  .nav-btn__label {
    display: none;
  }

  .header-logo .header-logo-img {
    width: 48px;
    height: 48px;
  }

  .cnc-hero {
    min-height: max(680px, 100svh);
    padding-top: calc(var(--header-height) + 3rem);
  }

  .cnc-hero__frame {
    top: calc(var(--header-height) + 1.4rem);
    bottom: 9rem;
  }

  .cnc-hero__frame span:last-child {
    display: none;
  }

  .cnc-hero__inner {
    margin-bottom: 1.6rem;
  }

  .cnc-hero__eyebrow {
    max-width: 75vw;
    line-height: 1.4;
  }

  .cnc-hero__title {
    font-size: clamp(3.35rem, 15.9vw, 5rem);
  }

  .cnc-hero__sub {
    max-width: 340px;
    font-size: 1.35rem;
  }

  .cnc-hero__actions {
    gap: 0.6rem;
  }

  .cnc-hero__actions .cnc-btn {
    min-height: 52px;
    padding: 0 1.35rem;
  }

  .cnc-hero__assure {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 58px;
  }

  .cnc-hero__assure li {
    min-height: 86px;
    padding: 1.1rem 0.8rem;
  }

  .cnc-hero__assure li:nth-child(2) {
    border-right: 0;
  }

  .cnc-hero__assure li:nth-child(3) {
    display: none;
  }

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

  .cnc-card,
  .cnc-card:first-child,
  .cnc-card:nth-child(2) {
    grid-column: 1;
  }

  .cnc-card__media,
  .cnc-card:first-child .cnc-card__media,
  .cnc-card:nth-child(2) .cnc-card__media {
    aspect-ratio: 5 / 4;
  }

  .cnc-info {
    grid-template-columns: 1fr;
  }

  .cnc-info > div,
  .cnc-info > div:first-child,
  .cnc-info > div:last-child {
    grid-column: 1;
    padding: 3.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--premium-line);
  }

  .cnc-info > div:last-child {
    border-bottom: 0;
  }

  .cnc-cta::before {
    inset: 0.7rem;
  }

  .cnc-cta__title {
    font-size: clamp(3.5rem, 19vw, 6rem);
  }

  body.page-catalog .catalog-header .header-top {
    display: block;
  }

  body.page-catalog .catalog-header h1 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  body.page-catalog .order-mode-badge {
    margin-top: 1.6rem;
  }

  body.page-catalog .products-grid {
    grid-template-columns: 1fr;
  }

  body.page-catalog .category-summary {
    min-height: 96px;
  }

  body.page-catalog .category-summary-title {
    font-size: clamp(1.7rem, 9vw, 2.6rem);
  }

  body.page-catalog .category-product-count {
    display: none;
  }

  body.page-catalog .order-mode-modal {
    align-items: flex-end;
    padding: 0;
  }

  body.page-catalog .order-mode-card {
    width: 100%;
    max-height: 94svh;
    overflow-y: auto;
    border-width: 1px 0 0;
  }

  body.page-catalog .order-mode-header {
    padding-top: 2rem;
  }

  body.page-catalog .order-mode-title {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  body.page-catalog .order-mode-options {
    grid-template-columns: 1fr;
  }

  body.page-catalog .order-mode-option {
    min-height: 96px;
  }

  body.page-catalog .order-mode-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  body.page-catalog .order-mode-icon svg {
    width: 25px;
    height: 25px;
  }

  body.page-product .choices-grid {
    grid-template-columns: 1fr;
  }

  body.page-product .product-header .product-title {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  body.page-cart .cart-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body.page-cart .item-actions {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-logo {
    width: 82px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
