/* ==========================================================================
   FoodCraft Hospitality — Static replica
   Design tokens, components, animations, responsive rules.
   Mirrors tailwind.config.js + src/index.css exactly.
   ========================================================================== */

:root {
  color-scheme: dark;

  /* Colors */
  --ink-900: #0A0A0A;
  --ink-800: #111111;
  --ink-700: #161616;
  --ink-600: #1C1C1C;
  --gold: #C9A063;
  --gold-light: #D4AF7A;
  --gold-deep: #A9824B;
  --gold-soft: #E3CBA0;
  --cream: #F5F5F0;

  /* Shadows */
  --shadow-gold: 0 0 40px -12px rgba(201, 160, 99, 0.35);
  --shadow-card: 0 18px 50px -25px rgba(0, 0, 0, 0.9);

  /* Fonts */
  --font-display: 'Orbitron', sans-serif;
  --font-script: 'Playfair Display', serif;
  --font-body: 'Poppins', 'Inter', sans-serif;

  /* Backgrounds */
  --radial-gold: radial-gradient(circle at 50% 0%, rgba(201, 160, 99, 0.16), rgba(10, 10, 10, 0) 55%);
  --radial-gold-bl: radial-gradient(circle at 0% 100%, rgba(201, 160, 99, 0.10), rgba(10, 10, 10, 0) 50%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--ink-900);
  color: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: rgba(201, 160, 99, 0.3);
  color: #f5f5f0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #c9a063;
}

/* App shell (mirrors React root wrapper) */
.app-shell {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow-x: hidden;
}
.app-main {
  flex: 1 1 auto;
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.container-px {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
  padding-left: 1.5rem;  /* px-6 */
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .container-px {
    padding-left: 2.5rem; /* md:px-10 */
    padding-right: 2.5rem;
  }
}

/* --------------------------------------------------------------------------
   Typography components
   -------------------------------------------------------------------------- */
.heading-display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em; /* tracking-tight */
  color: var(--cream);
}

.font-script {
  font-family: var(--font-script);
  font-style: italic;
}

/* gold label (SectionLabel) */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label.center {
  justify-content: center;
}
.section-label .label-rule {
  height: 1px;
  width: 2rem;
  background: rgba(201, 160, 99, 0.6);
  flex: none;
}
.section-label .label-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em; /* tracking-label */
  color: var(--gold);
}

/* gold divider line */
.gold-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 160, 99, 0.4),
    transparent
  );
}

/* Animated gold sheen sweeping through text */
.text-gold-gradient {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(
    100deg,
    #a9824b 20%,
    #f3dcae 38%,
    #d4af7a 55%,
    #a9824b 75%
  );
  background-size: 200% auto;
  animation: sheen 6s linear infinite;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-gold,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem; /* py-3 px-7 */
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em; /* tracking-wider */
  transition: all 0.3s ease;
}

.btn-gold {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--ink-900);
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%) skewX(-20deg);
  background: rgba(255, 255, 255, 0.35);
  transition: transform 0.7s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover::after {
  transform: translateX(100%) skewX(-20deg);
}
.btn-gold:focus-visible,
.btn-ghost:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--ink-900), 0 0 0 4px var(--gold);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(201, 160, 99, 0.5);
  color: var(--gold);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(201, 160, 99, 0.1);
  box-shadow: var(--shadow-gold);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card-surface {
  border-radius: 1rem; /* rounded-2xl */
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.7); /* ink-800/70 */
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-card);
  transition: all 0.5s ease;
}

.card-lift {
  transition: all 0.5s ease;
}
.card-lift:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 160, 99, 0.4);
  box-shadow: var(--shadow-gold);
}

/* --------------------------------------------------------------------------
   Background-effect utilities
   -------------------------------------------------------------------------- */
.bg-radial-gold {
  background-image: var(--radial-gold);
}
.bg-radial-gold-bl {
  background-image: var(--radial-gold-bl);
}

/* --------------------------------------------------------------------------
   Scroll progress bar
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  height: 3px;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(
    to right,
    var(--gold-deep),
    var(--gold),
    var(--gold-light)
  );
}

/* --------------------------------------------------------------------------
   Ambient glow (fixed floating gold orbs)
   -------------------------------------------------------------------------- */
.ambient-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
}
.ambient-glow .orb {
  position: absolute;
  border-radius: 9999px;
}
.ambient-glow .orb-1 {
  left: -8rem;
  top: 8%;
  height: 18rem;
  width: 18rem;
  background: rgba(201, 160, 99, 0.1);
  filter: blur(120px);
  animation: float 14s ease-in-out infinite;
}
.ambient-glow .orb-2 {
  right: -6rem;
  top: 40%;
  height: 24rem;
  width: 24rem;
  background: rgba(201, 160, 99, 0.07);
  filter: blur(140px);
  animation: float-slow 18s ease-in-out infinite;
}
.ambient-glow .orb-3 {
  bottom: 6%;
  left: 30%;
  height: 20rem;
  width: 20rem;
  background: rgba(169, 130, 75, 0.06);
  filter: blur(130px);
  animation: float 14s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 10, 0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.site-header.scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.4);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  backdrop-filter: blur(24px) saturate(1.5);
}

.nav-bar {
  display: flex;
  height: 6rem; /* h-24 */
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .nav-bar {
    height: 7rem; /* md:h-28 */
  }
}

.nav-logo {
  display: flex;
  flex: none;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo .fc-icon {
  height: 2.25rem; /* h-9 */
  width: auto;
  transition: transform 0.3s ease;
}
.nav-logo .fc-icon:hover {
  transform: scale(1.05);
}
.nav-logo .logo-divider {
  height: 1.75rem; /* h-7 */
  width: 1px;
  background: rgba(201, 160, 99, 0.3);
}
.nav-logo .wordmark {
  height: 2.25rem;
  width: auto;
}
@media (min-width: 640px) {
  .nav-logo .fc-icon,
  .nav-logo .wordmark { height: 2.5rem; } /* sm:h-10 */
  .nav-logo .logo-divider { height: 2rem; } /* sm:h-8 */
}
@media (min-width: 768px) {
  .nav-logo .fc-icon,
  .nav-logo .wordmark { height: 2.75rem; } /* md:h-11 */
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem; /* gap-7 */
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}
.nav-links a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: rgba(245, 245, 240, 0.75);
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -0.375rem;
  left: 0;
  height: 1px;
  width: 100%;
  background: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-ig-desktop {
  display: none;
}
@media (min-width: 640px) {
  .nav-ig-desktop {
    display: block;
  }
}

/* Instagram icon button */
.ig-btn {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(201, 160, 99, 0.4);
  color: var(--gold);
  transition: all 0.3s ease;
}
.ig-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 160, 99, 0.1);
  color: var(--gold-light);
}
.ig-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--gold);
}

/* Hamburger */
.hamburger {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--cream);
  transition: all 0.2s ease;
}
.hamburger:hover {
  border-color: rgba(201, 160, 99, 0.5);
  color: var(--gold);
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}
.hamburger .bars {
  position: relative;
  height: 1rem;
  width: 1.25rem;
}
.hamburger .bars span {
  position: absolute;
  left: 0;
  height: 2px;
  width: 1.25rem;
  background: currentColor;
  transition: all 0.3s ease;
}
.hamburger .bars span:nth-child(1) { top: 0; }
.hamburger .bars span:nth-child(2) { top: 0.375rem; }
.hamburger .bars span:nth-child(3) { top: 0.75rem; }
.hamburger.open .bars span:nth-child(1) {
  top: 0.375rem;
  transform: rotate(45deg);
}
.hamburger.open .bars span:nth-child(2) {
  opacity: 0;
}
.hamburger.open .bars span:nth-child(3) {
  top: 0.375rem;
  transform: rotate(-45deg);
}

/* Mobile drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}
.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1024px) {
  .drawer-overlay,
  .drawer {
    display: none;
  }
}

.drawer {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
  display: flex;
  height: 100%;
  width: 78%;
  max-width: 20rem; /* max-w-xs */
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink-800);
  padding: 7rem 1.75rem 2.5rem; /* pt-28 px-7 pb-10 */
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.drawer.open {
  transform: translateX(0);
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.drawer-links a {
  display: block;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: rgba(245, 245, 240, 0.8);
  transition: all 0.2s ease;
}
.drawer-links a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
}
.drawer-links a.active {
  background: rgba(201, 160, 99, 0.1);
  color: var(--gold);
}
.drawer-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
}
.drawer-foot span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 245, 240, 0.5);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--ink-800);
}
.site-footer .footer-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: var(--radial-gold-bl);
  opacity: 0.6;
}
.footer-inner {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.footer-wordmark {
  height: 2rem;
  width: auto;
}
.footer-tagline {
  margin-top: 1.25rem;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-light);
}
.footer-desc {
  margin-top: 0.75rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.55);
}
.footer-ig {
  margin-top: 1.5rem;
}
.footer-col h4 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
}
.footer-col ul {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col a,
.footer-col li {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.65);
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-contact a.break {
  word-break: break-all;
}
.footer-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-address {
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.55) !important;
}
.footer-divider {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.5;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(245, 245, 240, 0.45);
}
.footer-bottom p.est {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* --------------------------------------------------------------------------
   Reveal (scroll entrance)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal[data-direction='down'] { transform: translateY(-28px); }
.reveal[data-direction='left'] { transform: translateX(28px); }
.reveal[data-direction='right'] { transform: translateX(-28px); }
.reveal[data-blur='true'] { filter: blur(8px); }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0);
}

/* --------------------------------------------------------------------------
   Parallax
   -------------------------------------------------------------------------- */
.parallax {
  overflow: hidden;
}
.parallax .parallax-inner {
  height: 120%;
  width: 100%;
  will-change: transform;
}

/* --------------------------------------------------------------------------
   StatCard
   -------------------------------------------------------------------------- */
.stat-card {
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.stat-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem; /* text-4xl */
  font-weight: 800;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.stat-card:hover .stat-value {
  transform: scale(1.1);
}
.stat-card .stat-underline {
  margin: 0.75rem auto 0;
  height: 1px;
  width: 0;
  background: rgba(201, 160, 99, 0.5);
  transition: width 0.5s ease;
}
.stat-card:hover .stat-underline {
  width: 2.5rem; /* w-10 */
}
.stat-card .stat-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 245, 240, 0.6);
}
@media (min-width: 640px) {
  .stat-card .stat-value {
    font-size: 3rem; /* sm:text-5xl */
  }
}

/* --------------------------------------------------------------------------
   Marquee ticker
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track .marquee-item {
  display: inline-flex;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Generic section / utility helpers used across pages
   -------------------------------------------------------------------------- */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
}
.hero-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.25;
  animation: hero-zoom 2.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-bg .hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.8),
    rgba(10, 10, 10, 0.7),
    var(--ink-900)
  );
}
.hero-radial {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: var(--radial-gold);
}
.hero-content {
  position: relative;
  padding-top: 7rem;
  text-align: center;
}
.hero-wordmark {
  margin: 0 auto;
  height: 3rem; /* h-12 */
  width: auto;
  opacity: 0;
  animation: hero-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-tagline {
  margin-top: 2rem;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 2.25rem; /* text-4xl */
  opacity: 0;
  animation: hero-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.hero-sub {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  font-size: 1rem;
  color: rgba(245, 245, 240, 0.75);
  opacity: 0;
  animation: fade-in 0.8s ease 0.3s both;
}
.hero-est {
  margin-top: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(201, 160, 99, 0.8);
  opacity: 0;
  animation: fade-in 0.8s ease 0.4s both;
}
.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  animation: hero-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll .mouse {
  height: 2.5rem;
  width: 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(201, 160, 99, 0.4);
  padding: 0.25rem;
  opacity: 0;
  animation: fade-in 0.8s ease 1s both;
}
.hero-scroll .wheel {
  margin: 0 auto;
  display: block;
  height: 0.5rem;
  width: 0.25rem;
  border-radius: 9999px;
  background: var(--gold);
  animation: scroll-hint 1.6s ease-in-out infinite;
}
@media (min-width: 640px) {
  .hero-wordmark { height: 4rem; } /* sm:h-16 */
  .hero-tagline { font-size: 3rem; } /* sm:text-5xl */
  .hero-sub { font-size: 1.125rem; }
}
@media (min-width: 768px) {
  .hero-wordmark { height: 5rem; } /* md:h-20 */
  .hero-tagline { font-size: 3.75rem; } /* md:text-6xl */
}

@keyframes hero-zoom {
  0% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
@keyframes hero-rise {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   PageHero (interior pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 9rem; /* pt-36 */
  padding-bottom: 3rem; /* pb-12 */
}
@media (min-width: 768px) {
  .page-hero {
    padding-top: 11rem; /* md:pt-44 */
    padding-bottom: 4rem; /* md:pb-16 */
  }
}
.page-hero-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.page-hero-bg .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.7),
    rgba(10, 10, 10, 0.85),
    var(--ink-900)
  );
}
.page-hero-radial {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: var(--radial-gold);
}
.page-hero-inner {
  position: relative;
}
.page-hero h1 {
  margin: 1rem 0 0;
  font-size: 2.25rem; /* text-4xl */
  line-height: 1.1;
}
.page-hero .page-hero-sub {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.7);
}
@media (min-width: 640px) {
  .page-hero h1 { font-size: 3rem; } /* sm:text-5xl */
}
@media (min-width: 768px) {
  .page-hero h1 { font-size: 3.75rem; } /* md:text-6xl */
  .page-hero .page-hero-sub { font-size: 1.125rem; }
}

/* --------------------------------------------------------------------------
   SectionHeading
   -------------------------------------------------------------------------- */
.section-heading {
  max-width: 48rem; /* max-w-3xl */
}
.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading h2 {
  margin: 1rem 0 0;
  font-size: 1.875rem; /* text-3xl */
  line-height: 1.2;
}
.section-heading .support {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.7);
}
@media (min-width: 640px) {
  .section-heading h2 { font-size: 2.25rem; } /* sm:text-4xl */
}
@media (min-width: 768px) {
  .section-heading h2 { font-size: 3rem; } /* md:text-5xl */
  .section-heading .support { font-size: 1.125rem; }
}

/* --------------------------------------------------------------------------
   CTA Band
   -------------------------------------------------------------------------- */
.cta-band {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.cta-card {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 2rem; /* py-14 px-8 */
  text-align: center;
}
.cta-card .cta-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: var(--radial-gold);
  opacity: 0.8;
}
.cta-card .cta-inner {
  position: relative;
}
.cta-card .cta-tagline {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.875rem; /* text-3xl */
}
.cta-card h2 {
  margin: 1rem auto 0;
  max-width: 42rem;
  font-size: 1.5rem; /* text-2xl */
  line-height: 1.2;
}
.cta-card .cta-btn-wrap {
  margin-top: 2.25rem;
}
@media (min-width: 640px) {
  .cta-card h2 { font-size: 1.875rem; } /* sm:text-3xl */
}
@media (min-width: 768px) {
  .cta-band { padding-top: 7rem; padding-bottom: 7rem; }
  .cta-card { padding: 5rem 4rem; } /* md:py-20 md:px-16 */
  .cta-card .cta-tagline { font-size: 2.25rem; } /* md:text-4xl */
  .cta-card h2 { font-size: 2.25rem; } /* md:text-4xl */
}

/* --------------------------------------------------------------------------
   Home — stats strip
   -------------------------------------------------------------------------- */
.stats-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.6);
}
.stats-strip .stats-inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.stats-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}
.stats-quote {
  margin-top: 3rem;
  text-align: center;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-light);
}
@media (min-width: 768px) {
  .stats-strip .stats-inner { padding-top: 5rem; padding-bottom: 5rem; }
  .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .stats-quote { font-size: 1.5rem; }
}

/* --------------------------------------------------------------------------
   Home — about teaser
   -------------------------------------------------------------------------- */
.about-teaser .grid2 {
  display: grid;
  align-items: center;
  gap: 3rem;
}
.about-teaser .media {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.about-teaser .media img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.about-teaser .media:hover img {
  transform: scale(1.05);
}
.about-teaser h2 {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  line-height: 1.2;
}
.about-teaser p {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.7);
}
.about-teaser .btn-wrap {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .about-teaser .grid2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-teaser h2 { font-size: 2.25rem; }
  .about-teaser p { font-size: 1.125rem; }
}

/* --------------------------------------------------------------------------
   Numbered card grid (Why FoodCraft, verticals, etc.)
   -------------------------------------------------------------------------- */
.num-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .num-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.num-card {
  height: 100%;
  padding: 2rem;
  transition: all 0.3s ease;
}
.num-card:hover {
  border-color: rgba(201, 160, 99, 0.3);
  box-shadow: var(--shadow-gold);
}
.num-card .num {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  color: rgba(201, 160, 99, 0.4);
}
.num-card h3 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.375;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.num-card .num-divider {
  margin: 1rem 0;
  opacity: 0.6;
}
.num-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.65);
}
.center-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* helper: pull a section's top padding only */
.pb-only {
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .pb-only { padding-bottom: 4rem; }
}

/* --------------------------------------------------------------------------
   Interior content sections (py-16 md:py-24)
   -------------------------------------------------------------------------- */
.sec {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .sec {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* tonal bands */
.band {
  background: rgba(17, 17, 17, 0.5); /* ink-800/50 */
}
.band-y {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.band-t {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --------------------------------------------------------------------------
   Generic responsive grids
   -------------------------------------------------------------------------- */
.grid-1 {
  display: grid;
  gap: 1.5rem;
}
.gap-5 { gap: 1.25rem; }
.gap-4 { gap: 1rem; }
.gap-10 { gap: 2.5rem; }
@media (min-width: 768px) {
  .md-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 640px) {
  .sm-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .lg-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* num-card size variants */
.num-card.v-xl h3 { font-size: 1.25rem; } /* text-xl verticals */
.num-card.v-sm .num {
  font-size: 2.25rem; /* text-4xl */
  color: rgba(201, 160, 99, 0.3); /* gold/30 */
}
.num-card.v-sm h3 { font-size: 1rem; } /* text-base */

/* --------------------------------------------------------------------------
   Cuisine cards
   -------------------------------------------------------------------------- */
.cuisine-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-radius: 0.75rem; /* rounded-xl */
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 10, 0.6); /* ink-900/60 */
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.cuisine-card:hover {
  border-color: rgba(201, 160, 99, 0.3);
}
.cuisine-card .abbr {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.cuisine-card:hover .abbr {
  transform: scale(1.1);
}
.cuisine-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.cuisine-card p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.6);
}

/* --------------------------------------------------------------------------
   Signature ticker
   -------------------------------------------------------------------------- */
.signature-ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.signature-ticker .marquee-track {
  gap: 2rem;
}
.signature-ticker .sig-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: rgba(201, 160, 99, 0.9);
}
.signature-ticker .sig-item .star {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Creative kiosks
   -------------------------------------------------------------------------- */
.media-2col {
  display: grid;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 768px) {
  .media-2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.media-frame {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.media-frame img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.media-frame.tall img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 320px;
}
.media-frame:hover img {
  transform: scale(1.05);
}

.kiosk-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.kiosk-list li {
  border-radius: 0.5rem;
  border: 1px solid rgba(201, 160, 99, 0.2);
  background: rgba(17, 17, 17, 0.6);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245, 245, 240, 0.8);
}
.kiosk-list li .bullet {
  margin-right: 0.5rem;
  color: var(--gold);
}
.kiosk-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.6);
}

/* --------------------------------------------------------------------------
   Venue (Elegant Banquets)
   -------------------------------------------------------------------------- */
.venue-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .venue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.fact-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.fact-card {
  height: 100%;
  padding: 1.25rem;
}
.fact-card .fact-label,
.address-card .fact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
}
.fact-card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.75);
}
.address-card {
  border-radius: 0.75rem;
  border: 1px solid rgba(201, 160, 99, 0.2);
  background: rgba(17, 17, 17, 0.6);
  padding: 1.25rem;
}
.address-card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.8);
}
.span-2-sm {
  grid-column: 1 / -1;
}
@media (max-width: 639.98px) {
  .span-2-sm { grid-column: auto; }
}

/* --------------------------------------------------------------------------
   About — Mission / Vision cards
   -------------------------------------------------------------------------- */
.mv-card {
  height: 100%;
  padding: 2rem;
}
@media (min-width: 768px) {
  .mv-card { padding: 2.5rem; }
}
.mv-card .mv-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
}
.mv-card .mv-primary {
  margin: 1.25rem 0 0;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.85);
}
.mv-card .mv-divider {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}
.mv-card .mv-support {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.6);
}

/* --------------------------------------------------------------------------
   About — Core values
   -------------------------------------------------------------------------- */
.value-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
}
.value-card {
  height: 100%;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
}
.value-card:hover {
  border-color: rgba(201, 160, 99, 0.3);
  box-shadow: var(--shadow-gold);
}
.value-card .value-icon {
  font-size: 1.5rem;
  color: var(--gold);
}
.value-card h3 {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.value-card .value-underline {
  margin: 1rem auto;
  height: 1px;
  width: 2.5rem;
  background: rgba(201, 160, 99, 0.5);
}
.value-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.65);
}

/* --------------------------------------------------------------------------
   Founder cards
   -------------------------------------------------------------------------- */
.founder-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 2rem;
}
.founder-card .corner-glow {
  pointer-events: none;
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  height: 10rem;
  width: 10rem;
  border-radius: 9999px;
  background-image: var(--radial-gold);
  opacity: 0.6;
}
.founder-card .founder-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.founder-card .avatar {
  display: flex;
  height: 4rem;
  width: 4rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(201, 160, 99, 0.4);
  background: var(--ink-900);
}
.founder-card .avatar img {
  height: 2.25rem;
  width: 2.25rem;
  object-fit: contain;
}
.founder-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.founder-card .founder-role {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.founder-card .founder-divider {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.founder-card .founder-points {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.founder-card .founder-points li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.75);
}
.founder-card .founder-points .bullet {
  margin-top: 0.25rem;
  color: var(--gold);
  flex: none;
}

/* heading offset helper (mt-12 grids) */
.mt-14 { margin-top: 3.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-6 { margin-top: 1.5rem; }

/* --------------------------------------------------------------------------
   Contact — business card
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}
.biz-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
.biz-card .corner-glow {
  pointer-events: none;
  position: absolute;
  right: -3rem;
  top: -3rem;
  height: 11rem;
  width: 11rem;
  border-radius: 9999px;
  background-image: var(--radial-gold);
  opacity: 0.7;
}
.biz-card .biz-inner {
  position: relative;
  display: flex;
  gap: 1.5rem;
}
.biz-card .biz-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.biz-card .biz-rail img {
  height: 3.5rem;
  width: 3.5rem;
  object-fit: contain;
}
.biz-card .biz-rail .rail-line {
  margin-top: 1rem;
  width: 1px;
  flex: 1 1 auto;
  background: linear-gradient(to bottom, rgba(201, 160, 99, 0.6), transparent);
}
.biz-card .biz-body {
  flex: 1 1 auto;
}
.biz-card h2 {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.biz-card .biz-role {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.biz-card .biz-divider {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.biz-card dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}
.biz-card dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 245, 240, 0.45);
}
.biz-card dd {
  margin: 0.25rem 0 0;
}
.biz-card dd a {
  display: block;
  color: rgba(245, 245, 240, 0.85);
  transition: color 0.2s ease;
}
.biz-card dd a + a {
  margin-top: 0.125rem;
}
.biz-card dd a:hover {
  color: var(--gold);
}
.biz-card dd a.break {
  word-break: break-all;
}
.biz-card dd.addr {
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.75);
}
.biz-card .biz-ig {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.biz-card .biz-ig span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 245, 240, 0.5);
}
@media (min-width: 768px) {
  .biz-card { padding: 2.5rem; }
}

/* --------------------------------------------------------------------------
   Contact — form
   -------------------------------------------------------------------------- */
.contact-form {
  padding: 2rem;
}
.contact-form h2 {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.form-fields {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .form-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.field {
  display: block;
}
.field.col-span-2 {
  grid-column: 1 / -1;
}
.field .field-label {
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 245, 240, 0.6);
}
.field .field-label .req {
  color: var(--gold);
}
.field input,
.field textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.7);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 245, 240, 0.3);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(201, 160, 99, 0.6);
  box-shadow: 0 0 0 1px rgba(201, 160, 99, 0.4);
}
.field textarea {
  resize: vertical;
}
.form-submit {
  margin-top: 2rem;
  width: 100%;
}
@media (min-width: 640px) {
  .form-submit {
    width: auto;
  }
}
@media (min-width: 768px) {
  .contact-form { padding: 2.5rem; }
}

/* Map */
.map-frame {
  margin-top: 3rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.3) contrast(1.1);
}

/* --------------------------------------------------------------------------
   Toast
   -------------------------------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  z-index: 50;
  transform: translateX(-50%) translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.toast .toast-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(201, 160, 99, 0.4);
  background: var(--ink-800);
  padding: 0.75rem 1.5rem;
  box-shadow: var(--shadow-gold);
}
.toast .toast-check {
  color: var(--gold);
}
.toast .toast-msg {
  font-size: 0.875rem;
  color: var(--cream);
}

/* --------------------------------------------------------------------------
   Award card
   -------------------------------------------------------------------------- */
.award-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
.award-card .award-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: var(--radial-gold);
  opacity: 0.7;
}
.award-card .award-inner {
  position: relative;
}
.award-card .award-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.award-card .award-trophy {
  font-size: 2.25rem;
}
.award-card .award-location {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
}
.award-card h3 {
  margin: 1.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.award-card .award-honor {
  margin: 1rem 0 0;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-light);
}
.award-card .award-divider {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.award-card .award-body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.75);
}
.award-card .award-body strong {
  font-weight: 600;
  color: var(--cream);
}
@media (min-width: 768px) {
  .award-card { padding: 3rem; }
  .award-card .award-trophy { font-size: 3rem; }
  .award-card h3 { font-size: 2.25rem; }
  .award-card .award-honor { font-size: 1.875rem; }
}

/* --------------------------------------------------------------------------
   Media wall cards
   -------------------------------------------------------------------------- */
.media-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 1.75rem;
  transition: all 0.3s ease;
}
.media-card:hover {
  border-color: rgba(201, 160, 99, 0.3);
  box-shadow: var(--shadow-gold);
}
.media-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--gold);
}
.media-card .media-divider {
  margin: 1rem 0;
  opacity: 0.6;
}
.media-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.7);
}

/* --------------------------------------------------------------------------
   Timeline
   -------------------------------------------------------------------------- */
.timeline {
  max-width: 48rem;
}
.timeline-item {
  position: relative;
  padding-left: 3rem; /* pl-12 */
}
.timeline-item .tl-line {
  position: absolute;
  left: 14px;
  top: 0.75rem;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(201, 160, 99, 0.5), rgba(201, 160, 99, 0));
}
.timeline-item .tl-node {
  position: absolute;
  left: 0;
  top: 0.25rem;
  display: flex;
  height: 1.75rem;
  width: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(201, 160, 99, 0.6);
  background: var(--ink-900);
}
.timeline-item .tl-dot {
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 9999px;
  background: var(--gold);
  box-shadow: var(--shadow-gold);
}
.timeline-item .tl-content {
  padding-bottom: 3rem;
}
.timeline-item .tl-year {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: var(--gold);
}
.timeline-item .tl-title {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.timeline-item .tl-body {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.7);
}
@media (min-width: 640px) {
  .timeline-item { padding-left: 4rem; } /* sm:pl-16 */
  .timeline-item .tl-line { left: 18px; }
  .timeline-item .tl-node { height: 2.25rem; width: 2.25rem; }
  .timeline-item .tl-year { font-size: 1.25rem; }
  .timeline-item .tl-title { font-size: 1.5rem; }
  .timeline-item .tl-body { font-size: 1rem; }
}

/* --------------------------------------------------------------------------
   Footprint cards
   -------------------------------------------------------------------------- */
.footprint-card {
  height: 100%;
  padding: 1.75rem;
  transition: all 0.3s ease;
}
.footprint-card:hover {
  border-color: rgba(201, 160, 99, 0.3);
  box-shadow: var(--shadow-gold);
}
.footprint-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--gold);
}
.footprint-card .fp-note {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 245, 240, 0.5);
}
.footprint-card .fp-divider {
  margin: 1rem 0;
  opacity: 0.6;
}
.footprint-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footprint-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.75);
}
.footprint-card li .dot {
  height: 0.375rem;
  width: 0.375rem;
  flex: none;
  border-radius: 9999px;
  background: var(--gold);
}

/* --------------------------------------------------------------------------
   Partner cards + chip cloud
   -------------------------------------------------------------------------- */
.partner-card {
  height: 100%;
  padding: 1.5rem;
}
.partner-card .partner-region {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(201, 160, 99, 0.8);
}
.partner-card h3 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.375;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.partner-card .partner-divider {
  margin: 1rem 0;
  opacity: 0.6;
}
.partner-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245, 245, 240, 0.65);
}

.chip-cloud {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.chip {
  border-radius: 9999px;
  border: 1px solid rgba(201, 160, 99, 0.3);
  background: rgba(10, 10, 10, 0.6);
  padding: 0.625rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: rgba(245, 245, 240, 0.85);
  transition: all 0.3s ease;
}
.chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   404 — Not Found
   -------------------------------------------------------------------------- */
.notfound {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.notfound .notfound-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: var(--radial-gold);
}
.notfound .notfound-inner {
  position: relative;
}
.notfound .nf-code {
  margin: 0;
  font-family: var(--font-display);
  font-size: 4.5rem; /* text-7xl */
  font-weight: 800;
  color: rgba(201, 160, 99, 0.4);
}
.notfound h1 {
  margin: 1rem 0 0;
  font-size: 1.875rem; /* text-3xl */
  line-height: 1.2;
}
.notfound .nf-text {
  margin: 1.25rem auto 0;
  max-width: 28rem; /* max-w-md */
  color: rgba(245, 245, 240, 0.65);
}
.notfound .nf-btn-wrap {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .notfound .nf-code { font-size: 8rem; } /* md:text-9xl */
  .notfound h1 { font-size: 2.25rem; } /* md:text-4xl */
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes sheen {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-24px) translateX(12px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(26px) translateX(-16px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}
@keyframes scroll-hint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

.animate-pulse-glow { animation: pulse-glow 6s ease-in-out infinite; }
.animate-float { animation: float 14s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 18s ease-in-out infinite; }
.animate-marquee { animation: marquee 28s linear infinite; }

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .stat-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
