:root {
  --c-primary: #14292F;
  /* Deep Metro Teal */
  --c-secondary: #46CDC0;
  /* Bright Mint */
  --c-teal-light: #A3E7DC;
  --c-action: #E24800;
  /* Fire Orange */
  --c-dark: #631B08;
  --c-light: #FFFFFF;
  --c-offwhite: #F4F8F9;
  --f-head: 'Clash Display', sans-serif;
  --f-body: 'General Sans', sans-serif;
  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background-color: var(--c-offwhite);
  color: var(--c-primary);
  font-family: var(--f-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-head);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  text-align: center;
}

.text-caps {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-secondary);
  font-weight: 600;
  display: block;
}

/* Grain Overlay for Texture */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Navigation & Persistent Badge */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s ease;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: #1a2a2f;
  padding: 12px 28px;
  border-radius: 50px;
  transition: 0.3s;
}

.brand-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.brand-text {
  color: white;
  font-weight: 700;
  font-family: var(--f-head);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 3.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #1a2a2f;
  font-weight: 700;
  font-size: 1rem;
  transition: 0.3s;
}

.nav-link:hover {
  color: var(--c-action);
}

.nav-link.active {
  color: var(--c-action);
}

.nav-action {
  display: flex;
  align-items: center;
}

/* Order Now pill (replaces cart icon in header) */
.order-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--c-action), color-mix(in srgb, var(--c-action) 60%, #14292F));
  box-shadow: 0 18px 55px rgba(226, 72, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 250ms var(--ease-lux), box-shadow 250ms var(--ease-lux), filter 250ms var(--ease-lux);
  white-space: nowrap;
}

.order-pill:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 28px 75px rgba(226, 72, 0, 0.32);
  filter: saturate(1.06);
}

.order-pill-badge {
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #14292F;
  font-size: 0.8rem;
  font-weight: 900;
  display: none;
  align-items: center;
  justify-content: center;
}

.order-pill-badge.active {
  display: inline-flex;
}

.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1a2a2f;
  font-size: 1.8rem;
  transition: 0.3s;
}

.cart-icon-wrapper:hover {
  color: var(--c-action);
  transform: scale(1.1);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--c-action);
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.cart-badge.active {
  display: flex;
}

/* Info Section */
.info-section {
  padding: 5rem 0;
  background: #1a2a2f;
  color: white;
  border-top: 5px solid var(--c-secondary);
}

.info-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.info-item {
  padding: 0 1.5rem;
}

.info-item:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--c-secondary);
}

.info-item p {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Cinematic Hero & Sliding Plates */
.hero-pin-wrapper {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero-meta {
  color: var(--c-secondary);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  color: #4a5558;
  margin-bottom: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  color: #8e989a;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 3.5rem;
  text-transform: uppercase;
}

.hero-btn {
  background: var(--c-action);
  padding: 1.2rem 4rem;
  font-size: 1.1rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.overlapping-plates-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(850px, 90vw);
  height: min(850px, 90vw);
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-plate {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s var(--ease-lux);
}

.hero-plate img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.18));
}

.plate-one {
  z-index: 12;
}

.plate-two {
  z-index: 11;
}

.hero-actions {
  pointer-events: all;
  position: relative;
  z-index: 15;
}

/* Hero scroll narrative (JS-driven): start with plates only, reveal text on scroll */
.js .page-home #heroPin .hero-content {
  opacity: 0;
}

/* Circular media (replaces globe) */
.circle-media {
  width: min(520px, 82vw);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(20, 41, 47, 0.10);
  background: rgba(255,255,255,0.6);
}

.circle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Make button clickable */

/* Overlays */
.grain-overlay {
  display: none !important;
}

/* Menu category header */
.menu-category-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.cat-title {
  font-size: 3.5rem;
  color: #1a2a2f;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.items-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.pre-order-tag {
  font-size: 0.75rem;
  font-weight: 900;
  color: #ff4d00;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
  min-height: 1.1em;
}

.menu-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.btn-add-new {
  background: #ff4d00;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-add-new:hover {
  background: #e64600;
  transform: scale(1.05);
}




/* Global Components */
.btn {
  padding: 1.2rem 3.5rem;
  background: var(--c-action);
  color: var(--c-light);
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.4s var(--ease-lux);
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background: var(--c-primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Animated Sections */
.split-section {
  padding: 10rem 0;
  position: relative;
}

.img-mask-tall {
  height: 750px;
  width: 100%;
  border-radius: 350px 350px 0 0;
  overflow: hidden;
}

.parallax-img {
  width: 100%;
  height: 130%;
  object-fit: cover;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  font-family: var(--f-head);
  font-size: 5rem;
  gap: 6rem;
  color: var(--c-teal-light);
}

/* ------------------------------
   Scroll reveal system (varied)
--------------------------------*/
.reveal{
  opacity: 1;
  transform: none;
}

/* Only animate/hide when JS is active */
html.js .reveal{
  opacity: 0;
  transform: none;
  filter: none;
  will-change: transform, opacity, filter;
}

html.js .reveal.in{
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity 820ms var(--ease-lux), transform 980ms var(--ease-lux), filter 1050ms var(--ease-lux);
  transition-delay: var(--d, 0ms);
}


html.js [data-anim="fade-up"].reveal {
  transform: translate3d(0, 18px, 0);
}

html.js [data-anim="slide-left"].reveal {
  transform: translate3d(28px, 0, 0);
}

html.js [data-anim="slide-right"].reveal {
  transform: translate3d(-28px, 0, 0);
}

html.js [data-anim="scale-in"].reveal {
  transform: scale(0.94);
}

html.js [data-anim="rotate-in"].reveal {
  transform: rotate(-2.8deg) translate3d(0, 16px, 0);
}

html.js [data-anim="blur-in"].reveal {
  filter: blur(10px);
  transform: translate3d(0, 14px, 0);
}

html.js [data-anim="blur-in"].reveal.in {
  filter: blur(0);
  transition: opacity 700ms var(--ease-lux), transform 850ms var(--ease-lux), filter 900ms var(--ease-lux);
}

html.js [data-anim="clip-reveal"].reveal {
  clip-path: inset(0 0 100% 0);
  transform: none;
  opacity: 1;
}

html.js [data-anim="clip-reveal"].reveal.in {
  clip-path: inset(0 0 0 0);
  transition: clip-path 900ms var(--ease-lux);
}

/* ------------------------------
   Page hero (menu/track/support)
--------------------------------*/
.page-hero {
  padding: 140px 6vw 40px;
  background: radial-gradient(1200px 500px at 20% 0%, rgba(70, 205, 192, 0.22), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(226, 72, 0, 0.20), transparent 60%),
    linear-gradient(180deg, rgba(20, 41, 47, 0.06), rgba(20, 41, 47, 0.00));
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-title {
  font-family: var(--f-head);
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  letter-spacing: -0.03em;
  color: var(--c-primary);
  margin: 0;
}

.page-subtitle {
  margin-top: 12px;
  max-width: 60ch;
  color: rgba(20, 41, 47, 0.72);
  font-size: 1.05rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6vw;
}

.menu-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.meta-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(20, 41, 47, 0.10);
  backdrop-filter: blur(10px);
  font-weight: 700;
  color: rgba(20, 41, 47, 0.78);
}

/* ------------------------------
   Menu controls & chips
--------------------------------*/
.menu-controls {
  padding: 24px 0 10px;
}

.controls-row {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.controls-title {
  font-weight: 900;
  color: var(--c-primary);
  letter-spacing: 0.02em;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  --chip-accent: #46CDC0;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(20, 41, 47, 0.14);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  font-size: 0.88rem;
  color: rgba(20, 41, 47, 0.85);
  cursor: pointer;
  transition: transform 250ms var(--ease-lux), background 250ms var(--ease-lux), box-shadow 250ms var(--ease-lux), border-color 250ms var(--ease-lux);
}

.chip:hover {
  transform: translateY(-3px) scale(1.03);
  background: color-mix(in srgb, var(--chip-accent) 16%, rgba(255, 255, 255, 0.78));
  border-color: color-mix(in srgb, var(--chip-accent) 55%, rgba(20, 41, 47, 0.14));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.chip.active {
  background: color-mix(in srgb, var(--chip-accent) 22%, rgba(255, 255, 255, 0.78));
  border-color: color-mix(in srgb, var(--chip-accent) 65%, rgba(20, 41, 47, 0.14));
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35) inset, 0 18px 45px rgba(0, 0, 0, 0.10);
}

/* ------------------------------
   Menu grid
--------------------------------*/
.menu-section {
  padding: 18px 0 120px;
}

.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 20px 0;
}

.menu-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 41, 47, 0.10);
  box-shadow: 0 10px 30px rgba(20, 41, 47, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s var(--ease-lux);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(20, 41, 47, 0.14);
}

/* Food image banner at top of each menu card */
.menu-card-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  background: #e8f0f1;
}

.menu-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-lux);
  display: block;
}

.menu-card:hover .menu-card-img-wrap img {
  transform: scale(1.07);
}

.menu-card-img-wrap .menu-cat-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(20, 41, 47, 0.75);
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.menu-body {
  padding: 22px 22px 20px;
}

.menu-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.menu-title {
  margin: 0;
  font-size: 1.15rem;
  color: var(--c-primary);
  letter-spacing: -0.02em;
  font-weight: 800;
}

.menu-price {
  font-weight: 900;
  color: var(--c-action);
  white-space: nowrap;
  font-size: 1.1rem;
}

.menu-desc {
  margin: 10px 0 14px;
  color: rgba(20, 41, 47, 0.72);
  line-height: 1.5;
}

.menu-actions {
  display: flex;
  justify-content: flex-end;
}

.btn-add {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(20, 41, 47, 0.12);
  background: rgba(70, 205, 192, 0.20);
  font-weight: 900;
  cursor: pointer;
  transition: transform 250ms var(--ease-lux), background 250ms var(--ease-lux);
}

.btn-add:hover {
  transform: translateY(-2px);
  background: rgba(226, 72, 0, 0.18);
}

@media (max-width: 640px) {
  .page-hero {
    padding-top: 120px;
  }
}

/* ------------------------------
   Cart panel
--------------------------------*/
.cart-panel {
  position: sticky;
  bottom: 0;
  z-index: 60;
  margin-top: -90px;
  padding: 0 6vw 20px;
}

/* Collapsed state — hides items & footer, shows only header */
.cart-panel.collapsed .cart-items,
.cart-panel.collapsed .cart-foot,
.cart-panel.collapsed .cart-empty {
  display: none !important;
}

/* Toggle arrow button */
.cart-toggle-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.25s, transform 0.35s var(--ease-lux);
  flex-shrink: 0;
}

.cart-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.cart-panel.collapsed .cart-toggle-btn {
  transform: rotate(180deg);
}

.cart-panel-inner {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 26px;
  background: rgba(20, 41, 47, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.cart-head {
  padding: 16px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.cart-head-title {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

.cart-head-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  margin-top: 4px;
}

.cart-head-actions {
  display: flex;
  gap: 10px;
}

.btn-primary,
.btn-ghost {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  background: var(--c-action);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cart-empty {
  padding: 18px 16px;
  color: rgba(255, 255, 255, 0.62);
}

.cart-items {
  max-height: 280px;
  overflow: auto;
  padding: 0 10px 10px;
}

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 18px;
  margin: 10px 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.cart-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.cart-thumb {
  width: 54px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cart-name {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}

.cart-price {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  margin-top: 2px;
}

.cart-row-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  font-size: 1.1rem;
  cursor: pointer;
}

.qty-val {
  min-width: 22px;
  text-align: center;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}

.remove-btn {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(226, 72, 0, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  cursor: pointer;
}

.cart-foot {
  padding: 14px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.cart-total {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.cart-total-value {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.96);
}

.cart-note {
  color: rgba(255, 255, 255, 0.55);
}

/* ------------------------------
   Track / Support
--------------------------------*/
.track-section {
  padding: 28px 0 40px;
}

.track-card {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 41, 47, 0.10);
  box-shadow: 0 18px 60px rgba(20, 41, 47, 0.08);
  padding: 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

.field-label {
  font-weight: 900;
  color: var(--c-primary);
}

.field-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.field-input {
  flex: 1;
  min-width: 240px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(20, 41, 47, 0.14);
  outline: none;
}

.field-hint {
  color: rgba(20, 41, 47, 0.60);
  margin-top: 10px;
}

.track-result {
  border-radius: 22px;
  background: rgba(20, 41, 47, 0.06);
  border: 1px solid rgba(20, 41, 47, 0.10);
  padding: 16px;
  display: flex;
  align-items: center;
  color: rgba(20, 41, 47, 0.78);
}

.track-status {
  line-height: 1.6;
}

@media (max-width: 920px) {
  .track-card {
    grid-template-columns: 1fr;
  }
}

.split-cta {
  padding: 10px 0 60px;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cta-card {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 41, 47, 0.10);
  padding: 20px;
}

.cta-card h3 {
  margin: 0;
  color: var(--c-primary);
}

.cta-card p {
  color: rgba(20, 41, 47, 0.72);
}

@media (max-width: 760px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}

.support-section {
  padding: 28px 0 20px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.support-card {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 41, 47, 0.10);
  padding: 20px;
}

.support-card h3 {
  margin: 0;
  color: var(--c-primary);
}

.support-card p {
  color: rgba(20, 41, 47, 0.72);
}

.mini-note {
  margin-top: 10px;
  color: rgba(20, 41, 47, 0.55);
  font-weight: 700;
}

@media (max-width: 980px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

.faq-section {
  padding: 10px 0 80px;
}

.section-title {
  margin: 0 0 12px;
  font-family: var(--f-head);
  color: var(--c-primary);
}

.faq-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 41, 47, 0.10);
  padding: 14px 16px;
  margin: 10px 0;
}

.faq-item summary {
  font-weight: 900;
  cursor: pointer;
  color: rgba(20, 41, 47, 0.88);
}

.faq-item p {
  margin: 10px 0 0;
  color: rgba(20, 41, 47, 0.70);
}

.plate-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 45px 85px rgba(0, 0, 0, 0.28));
}

/* Extra reveal variants for rich, non-repetitive transitions */
html.js [data-anim="skew-in"].reveal {
  transform: translate3d(0, 18px, 0) skewY(2.2deg);
  opacity: 0;
}

html.js [data-anim="flip-up"].reveal {
  transform: perspective(900px) rotateX(18deg) translate3d(0, 24px, 0);
  opacity: 0;
}

html.js [data-anim="zoom-blur"].reveal {
  transform: scale(0.92);
  filter: blur(18px);
  opacity: 0;
}

html.js [data-anim="zoom-blur"].reveal.in {
  filter: blur(0);
  transition: opacity 750ms var(--ease-lux), transform 850ms var(--ease-lux), filter 900ms var(--ease-lux);
}

html.js [data-anim="wave-rise"].reveal {
  transform: translate3d(0, 26px, 0);
  opacity: 0;
}

html.js [data-anim="split-pop"].reveal {
  transform: translate3d(0, 18px, 0);
  opacity: 0;
}

/* slide-up — gentle upward lift */
html.js [data-anim="slide-up"].reveal {
  transform: translate3d(0, 40px, 0);
  opacity: 0;
}

/* bounce-in — overshoots and settles */
html.js [data-anim="bounce-in"].reveal {
  transform: scale(0.88) translate3d(0, 22px, 0);
  opacity: 0;
}

html.js [data-anim="bounce-in"].reveal.in {
  transition: opacity 700ms var(--ease-lux), transform 900ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* tilt-in — 3D perspective tilt from bottom */
html.js [data-anim="tilt-in"].reveal {
  transform: perspective(1100px) rotateX(12deg) rotateY(-4deg) translate3d(0, 28px, 0);
  opacity: 0;
}

html.js [data-anim="tilt-in"].reveal.in {
  transition: opacity 800ms var(--ease-lux), transform 1000ms var(--ease-lux);
}

/* shimmer-in — fade with a subtle lateral glide */
html.js [data-anim="shimmer-in"].reveal {
  transform: translate3d(-18px, 10px, 0);
  opacity: 0;
  filter: brightness(0.7);
}

html.js [data-anim="shimmer-in"].reveal.in {
  filter: brightness(1);
  transition: opacity 750ms var(--ease-lux), transform 900ms var(--ease-lux), filter 700ms ease;
}

/* stagger-fade — pure opacity, no transform */
html.js [data-anim="stagger-fade"].reveal {
  transform: none;
  opacity: 0;
}

html.js [data-anim="stagger-fade"].reveal.in {
  transition: opacity 1100ms var(--ease-lux);
}

/* pop-scale — zoom from center */
html.js [data-anim="pop-scale"].reveal {
  transform: scale(0.80);
  opacity: 0;
}

html.js [data-anim="pop-scale"].reveal.in {
  transition: opacity 650ms var(--ease-lux), transform 800ms cubic-bezier(0.34, 1.46, 0.64, 1);
}

/* sweep-left — slides in from right edge */
html.js [data-anim="sweep-left"].reveal {
  transform: translate3d(60px, 0, 0);
  opacity: 0;
}

/* sweep-right — slides in from left edge */
html.js [data-anim="sweep-right"].reveal {
  transform: translate3d(-60px, 0, 0);
  opacity: 0;
}

/* Floating spices (site-wide) */
.spice-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  mix-blend-mode: multiply;

  display: none; /* disabled */}

.spice {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 92px;
  height: 92px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.24;
  transform: translate(-50%, -50%) scale(var(--s)) rotate(var(--r));
  filter: blur(0.2px) saturate(1.15);
  animation: spiceFloat var(--t) ease-in-out infinite;
  animation-delay: var(--d);
}

@keyframes spiceFloat {
  0% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(var(--s)) rotate(var(--r));
  }

  50% {
    transform: translate(-50%, -50%) translate3d(22px, -26px, 0) scale(calc(var(--s) * 1.05)) rotate(calc(var(--r) + 18deg));
  }

  100% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(var(--s)) rotate(var(--r));
  }
}

/* Responsive nav */
.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 41, 47, 0.14);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.nav-toggle ion-icon {
  font-size: 22px;
  color: var(--c-primary);
}

@media (max-width: 980px) {
  .nav-fixed {
    padding: 1rem 4%;
  }

  .nav-fixed ul {
    position: absolute;
    top: 86px;
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.2rem 1.2rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(20, 41, 47, 0.12);
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
  }

  body.nav-open .nav-fixed ul {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .brand-wrapper {
    padding: 8px 16px;
  }

  .brand-text {
    display: none;
  }

  .order-pill {
    padding: .78rem 1rem;
  }
}

@media (max-width: 760px) {
  .container {
    padding-left: 6%;
    padding-right: 6%;
  }

  .split-section .container {
    grid-template-columns: 1fr !important;
    gap: 3.5rem !important;
  }

  .img-mask-tall {
    height: 520px;
  }

  .hero-pin-wrapper {
    min-height: 88vh;
  }

  .plate-wrapper {
    width: 300px;
    height: 300px;
  }
}

/* Responsive safety for sections that use inline 2-column grids */
@media (max-width: 980px) {
  .container[style*="grid-template-columns: 1fr 1fr"],
  .container[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2.6rem !important;
  }

  .container[style*="grid-template-columns: 1.1fr 0.9fr"],
  .container[style*="grid-template-columns:1.1fr 0.9fr"] {
    grid-template-columns: 1fr !important;
    gap: 2.6rem !important;
  }

  [style*="height: 600px"][style*="width: 600px"][style*="border-radius: 50%"] {
    height: 320px !important;
    width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Category pills – glow effect */
.chip {
  position: relative;
  will-change: transform, box-shadow;
}

.chip::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  opacity: 0;
  background: radial-gradient(circle at 30% 30%, rgba(46, 205, 132, 0.55), rgba(127, 0, 255, 0.0) 55%),
    radial-gradient(circle at 70% 70%, rgba(70, 205, 192, 0.45), rgba(70, 205, 192, 0.0) 60%);
  filter: blur(10px);
  transition: .35s var(--ease-lux);
  z-index: -1;
}

.chip:hover::after {
  opacity: 1;
}

/* Home added sections */
.bullet-row {
  padding: .9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(20, 41, 47, 0.10);
  font-weight: 700;
  color: var(--c-primary);
}

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

.how-card {
  padding: 2.2rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(20, 41, 47, 0.10);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.06);
}

.how-num {
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--c-action);
  margin-bottom: 1.2rem;
}

.how-card h3 {
  font-size: 1.35rem;
  color: var(--c-primary);
  margin-bottom: .6rem;
}

.how-card p {
  opacity: .78;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

.img-mask-wide {
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.stat-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat {
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: rgba(20, 41, 47, 0.04);
  border: 1px solid rgba(20, 41, 47, 0.10);
  min-width: 140px;
}

.stat-val {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--c-primary);
}

.stat-lbl {
  opacity: .75;
  margin-top: .3rem;
}

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

.review-card {
  padding: 2.2rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.review-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.1rem;
}

.review-name {
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-stars {
  color: var(--c-teal-light);
  letter-spacing: .18em;
}

.review-card p {
  opacity: .9;
  line-height: 1.8;
}

@media (max-width: 980px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

/* Reveal safety: never hide content if JS/observer fails (prevents blank pages on some hosts) */
.reveal{opacity:1 !important;}



/* ─────────────────────────────────────────────────────────────────────────────
   Reveal Animations (safe: only active when <html> has .js)
────────────────────────────────────────────────────────────────────────────── */
.reveal { opacity: 1; transform: none; filter: none; }

/* Cloudflare-safe reveal system (strong + varied)
   - Visible by default
   - When JS is enabled, elements animate in/out on scroll (works scrolling up/down)
*/
.reveal{ opacity: 1; transform: none; filter: none; }

html.js .reveal{
  opacity: 0;
  transform: translate3d(0, 64px, 0);
  filter: blur(0px);
  will-change: opacity, transform, filter;
}

/* "in" state */
html.js .reveal.in{
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 900ms var(--ease-lux),
    transform 1100ms var(--ease-lux),
    filter 1100ms var(--ease-lux);
  transition-delay: var(--d, 0ms);
}

/* Variant initial states (set via JS as .anim-*) */
html.js .anim-slide-up{ transform: translate3d(0, 140px, 0); }
html.js .anim-rise{ transform: translate3d(0, 160px, 0); }
html.js .anim-drop{ transform: translate3d(0, -150px, 0); }
html.js .anim-sweep-left{ transform: translate3d(-140px, 0, 0); }
html.js .anim-sweep-right{ transform: translate3d(140px, 0, 0); }
html.js .anim-tilt-in{ transform: translate3d(0, 72px, 0) rotate(-6deg); }
html.js .anim-tilt-in-r{ transform: translate3d(0, 72px, 0) rotate(6deg); }
html.js .anim-pop-scale{ transform: scale(.88); }
html.js .anim-bounce-in{ transform: translate3d(0, 120px, 0) scale(.98); }
html.js .anim-flip-up{ transform: perspective(1000px) rotateX(22deg) translate3d(0, 44px, 0); transform-origin: 50% 100%; }
html.js .anim-rotate-in{ transform: rotate(-8deg) translate3d(0, 48px, 0); }
html.js .anim-blur-in{ filter: blur(24px); transform: translate3d(0, 74px, 0); }
html.js .anim-shimmer-in{ filter: blur(18px); transform: translate3d(0, 76px, 0) scale(.98); }

/* Stagger helper (optional) */
html.js .anim-stagger-fade > *{ opacity: 0; transform: translate3d(0, 10px, 0); }
html.js .anim-stagger-fade.in > *{
  opacity: 1; transform: none;
  transition: opacity 700ms var(--ease-lux), transform 800ms var(--ease-lux);
}
html.js .anim-stagger-fade.in > *:nth-child(1){ transition-delay: 60ms; }
html.js .anim-stagger-fade.in > *:nth-child(2){ transition-delay: 120ms; }
html.js .anim-stagger-fade.in > *:nth-child(3){ transition-delay: 180ms; }
html.js .anim-stagger-fade.in > *:nth-child(4){ transition-delay: 240ms; }
html.js .anim-stagger-fade.in > *:nth-child(5){ transition-delay: 300ms; }

/* ------------------------------
   Mobile & tablet fixes (Cloudflare-safe)
   - Prevent inline 2-col grids from breaking
   - Reduce oversized gaps/padding
--------------------------------*/
@media (max-width: 980px) {
  /* Many sections use inline grid styles; override to single column on mobile */
  .container[style*="grid-template-columns: 1fr 1fr"]{
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  section[style*="padding: 10rem"]{
    padding: 6.5rem 0 !important;
  }

  /* Huge fixed circles (inline 600x600) */
  [style*="height: 600px"][style*="width: 600px"]{
    width: min(360px, 86vw) !important;
    height: min(360px, 86vw) !important;
    margin: 0 auto;
  }

  .hero-title{ font-size: clamp(3.2rem, 14vw, 6.2rem); }
  .hero-subtitle{ font-size: 0.95rem; margin-bottom: 2.4rem; }
  .hero-btn{ padding: 1rem 2.2rem; }

  .overlapping-plates-wrapper{
    width: min(520px, 92vw);
    height: min(520px, 92vw);
  }
}

@media (max-width: 520px) {
  .hero-pin-wrapper{ padding-top: 74px; }
}
