/* =========================================================
   CHAR Smash Burgers — style.css  (v2)
   Mobile-first. All colours via CSS custom properties.
   ========================================================= */

/* === RESET & BASE ======================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.15s ease; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-text);
}
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* === CURSOR GLOW ======================================== */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,66,10,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
}

/* === SCROLL PROGRESS BAR ================================ */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  z-index: 9999; width: 0;
  transition: width 0.05s linear;
  pointer-events: none;
}

/* === LAYOUT ============================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.section { padding-block: var(--section-y); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 { font-size: clamp(30px, 4vw, 50px); margin-block: 12px 0; }
.section-header p { color: var(--color-muted); font-size: 17px; line-height: 1.78; margin-top: 16px; }
.section-cta { text-align: center; margin-top: 48px; }

/* === EYEBROW ============================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

/* === BUTTONS ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover { background: #cc3508; border-color: #cc3508; transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-outline { background: transparent; color: var(--color-text); border-color: rgba(245,242,236,0.2); }
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--color-text); border-color: rgba(255,255,255,0.14); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

/* === NAV ================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,8,0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s ease;
}
.site-nav.scrolled { background: rgba(10,10,8,0.96); }
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.nav-logo:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 4px; border-radius: 3px; }
.logo-flame { flex-shrink: 0; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.nav-logo:hover .logo-flame { transform: scaleY(1.14) translateY(-1px); }
.logo-wordmark {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.logo-dot { color: var(--color-primary); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: rgba(245,242,236,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--color-primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.nav-cta:hover { background: #cc3508; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,66,10,0.4); }
.nav-cta:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }
.nav-toggle { display: none; color: var(--color-text); padding: 8px; border-radius: var(--radius-md); }
.nav-toggle:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 12px 24px 28px; gap: 2px;
}
.mobile-menu a {
  display: block; padding: 12px 0;
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 600;
  color: rgba(245,242,236,0.75);
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu a:last-child { border: none; margin-top: 12px; }
.mobile-menu.open { display: flex; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* === HERO =============================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 88px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  will-change: transform;
  top: -10%; height: 120%;
}
.hero-bg img, .hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,8,0.97) 0%,
    rgba(10,10,8,0.65) 38%,
    rgba(10,10,8,0.20) 100%
  );
}
.hero-content { position: relative; z-index: 1; }
.hero-content .eyebrow { color: var(--color-secondary); }
.hero-content h1 {
  font-size: clamp(60px, 10.5vw, 128px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-block: 16px 26px;
  color: #fff;
}
.hero-sub {
  font-size: 18px;
  color: rgba(245,242,236,0.68);
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.76;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 600;
  color: rgba(245,242,236,0.5);
}
.badge svg { color: var(--color-primary); flex-shrink: 0; }

/* === ICON TAGS ========================================== */
.icon-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  background: rgba(232,66,10,0.13); color: var(--color-primary);
  padding: 4px 10px; border-radius: var(--radius-pill);
  border: 1px solid rgba(232,66,10,0.26);
  white-space: nowrap; flex-shrink: 0;
}
.icon-tag.secondary {
  background: rgba(245,200,66,0.13); color: var(--color-secondary);
  border-color: rgba(245,200,66,0.26);
}
.icon-tag svg { flex-shrink: 0; }

/* === BURGER GRID ======================================== */
.burger-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.burger-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), border-color 0.2s ease, box-shadow 0.2s ease;
}
.burger-card:hover { transform: translateY(-6px) scale(1.01); border-color: rgba(232,66,10,0.38); box-shadow: var(--shadow-lg), var(--shadow-glow); }
.burger-img { height: 240px; overflow: hidden; }
.burger-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.burger-card:hover .burger-img img { transform: scale(1.08); }
.burger-info { padding: 24px; }
.burger-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.burger-top h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.price { font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: var(--color-primary); flex-shrink: 0; }
.burger-info > p { color: var(--color-muted); font-size: 14px; line-height: 1.66; margin-bottom: 16px; }
@media (max-width: 640px) { .burger-grid { grid-template-columns: 1fr; } }
@media (min-width: 641px) and (max-width: 1024px) { .burger-grid { grid-template-columns: repeat(2, 1fr); } }

/* === METHOD ============================================= */
.method-section { background: var(--color-surface); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-text-side h2 { font-size: clamp(30px, 4vw, 50px); margin-block: 12px 24px; }
.split-text-side > p { color: var(--color-muted); font-size: 16px; line-height: 1.84; margin-bottom: 16px; }
.method-list { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.method-list li {
  display: flex; gap: 20px; align-items: flex-start;
  padding-block: 20px; border-bottom: 1px solid var(--color-border);
}
.method-list li:last-child { border-bottom: none; }
.method-num {
  font-family: var(--font-heading); font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; color: var(--color-primary);
  padding-top: 3px; flex-shrink: 0; width: 28px;
}
.method-list strong { display: block; font-family: var(--font-heading); font-size: 15px; font-weight: 700; margin-bottom: 3px; color: var(--color-text); }
.method-list span { font-size: 13px; color: var(--color-muted); line-height: 1.62; }
.split-img-side figure { border-radius: var(--radius-xl); overflow: hidden; height: 580px; }
.split-img-side img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) {
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .split-img-side figure { height: 300px; }
}

/* === STATS ============================================== */
.stats-section { background: var(--color-primary); padding-block: 72px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 68px); font-weight: 900;
  color: #fff; line-height: 1; letter-spacing: -0.04em;
}
.stat-label {
  display: block; font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.58); margin-top: 8px;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* === PRESS ============================================== */
.press-section { background: var(--color-surface-2); }
.press-header { text-align: center; margin-bottom: 48px; }
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.press-quote {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.22s ease, border-top-color 0.22s ease;
}
.press-quote:hover { transform: translateY(-4px); border-top-color: var(--color-secondary); }
.press-quote p { font-family: var(--font-heading); font-size: 17px; font-weight: 600; line-height: 1.52; color: var(--color-text); margin-bottom: 18px; font-style: italic; }
.press-quote cite { font-size: 11px; color: var(--color-primary); font-style: normal; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
@media (max-width: 768px) { .press-grid { grid-template-columns: 1fr; } }

/* === CTA BAND =========================================== */
.cta-band { background: var(--color-surface); border-top: 1px solid var(--color-border); padding-block: 96px; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.cta-inner h2 { font-size: clamp(30px, 4.5vw, 58px); line-height: 1.06; }
.cta-inner p { color: var(--color-muted); margin-top: 14px; font-size: 16px; }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
@media (max-width: 768px) { .cta-inner { flex-direction: column; text-align: center; } .cta-actions { justify-content: center; } }

/* === FOOTER ============================================= */
.site-footer { background: var(--color-dark); border-top: 1px solid var(--color-border); padding-block: 56px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.footer-brand > p { font-size: 14px; color: var(--color-muted); line-height: 1.72; }
.footer-col h4 { font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(245,242,236,0.65); }
.footer-col a:hover { color: var(--color-primary); }
.hours-list li { display: flex; justify-content: space-between; font-size: 13px; color: rgba(245,242,236,0.55); padding-block: 2px; }
.footer-bottom { border-top: 1px solid var(--color-border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--color-muted); }
.footer-bottom a { color: var(--color-muted); }
.footer-bottom a:hover { color: var(--color-primary); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1 / -1; } .footer-bottom { flex-direction: column; text-align: center; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* === PAGE HERO (inner pages) ============================ */
.page-hero { padding-top: calc(68px + 72px); padding-bottom: 72px; background: var(--color-surface); border-bottom: 1px solid var(--color-border); text-align: center; }
.page-hero h1 { font-size: clamp(40px, 6.5vw, 78px); margin-block: 12px 0; }
.page-hero p { color: var(--color-muted); margin-top: 16px; font-size: 17px; line-height: 1.75; max-width: 520px; margin-inline: auto; }

/* Compact video hero — menu page header */
.menu-hero {
  position: relative;
  height: clamp(320px, 42vh, 480px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.menu-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.menu-hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.menu-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,8,0.96) 0%,
    rgba(10,10,8,0.55) 45%,
    rgba(10,10,8,0.18) 100%
  );
}
.menu-hero-content {
  position: relative; z-index: 1;
  padding-bottom: 52px;
  text-align: center;
  width: 100%;
}
.menu-hero-content .eyebrow { color: var(--color-secondary); }
.menu-hero-content h1 { font-size: clamp(40px, 6.5vw, 78px); margin-block: 10px 0; }
.menu-hero-content p { color: var(--color-muted); margin-top: 14px; font-size: 17px; line-height: 1.75; max-width: 520px; margin-inline: auto; }

/* === MENU BOOK ========================================== */
.menu-book-page {
  background: var(--color-background);
  padding-block: 64px 100px;
  min-height: calc(100vh - 68px);
  position: relative;
}
.menu-book-page::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 12% 65%, rgba(232,66,10,0.055) 0%, transparent 100%),
    radial-gradient(ellipse 40% 40% at 88% 18%, rgba(245,200,66,0.035) 0%, transparent 100%);
  pointer-events: none; z-index: 0;
}
.menu-card {
  position: relative; z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid rgba(245,242,236,0.1);
  border-radius: var(--radius-xl);
  box-shadow: 0 0 0 1px rgba(232,66,10,0.07), 0 48px 128px rgba(0,0,0,0.78), 0 4px 24px rgba(0,0,0,0.5);
  overflow: hidden;
}
.menu-card-top-rule {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--color-primary) 25%, var(--color-secondary) 50%, var(--color-primary) 75%, transparent 100%);
}
.menu-card-inner { padding: 64px 72px; }
.menu-book-header {
  text-align: center;
  padding-bottom: 48px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.menu-book-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 3px;
  background: var(--color-primary);
}
.menu-book-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
.menu-book-logo .logo-wordmark { font-size: 36px; }
.menu-book-subtitle {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--color-muted);
}
.menu-divider {
  display: flex; align-items: center; gap: 20px;
  margin: 56px 0 24px;
}
.menu-divider-line { flex: 1; height: 1px; background: var(--color-border); }
.menu-divider-content {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--color-primary);
  white-space: nowrap;
}
.menu-divider-gem {
  width: 5px; height: 5px;
  background: var(--color-primary);
  transform: rotate(45deg); flex-shrink: 0;
}
.menu-section-desc {
  text-align: center;
  font-size: 13px; color: var(--color-muted);
  font-style: italic;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  line-height: 1.65;
}
.menu-item-row {
  display: flex; align-items: baseline; gap: 0;
  padding-block: 18px;
  border-bottom: 1px solid rgba(245,242,236,0.055);
  transition: background 0.15s ease;
  border-radius: 4px;
}
.menu-item-row:last-child { border-bottom: none; }
.menu-item-row:hover {
  background: rgba(232,66,10,0.04);
  padding-inline: 12px;
  margin-inline: -12px;
}
.menu-item-stack { flex: 1; min-width: 0; }
.menu-item-name {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.menu-item-desc {
  font-size: 13px; color: var(--color-muted);
  line-height: 1.62; font-style: italic;
  letter-spacing: 0.01em; margin-top: 3px;
}
.menu-item-leaders {
  flex-shrink: 0;
  width: 48px;
  height: 1px;
  margin-inline: 16px;
  background: repeating-linear-gradient(
    90deg,
    rgba(245,242,236,0.16) 0, rgba(245,242,236,0.16) 3px,
    transparent 3px, transparent 7px
  );
  position: relative; top: -3px;
  align-self: baseline;
}
.menu-item-price {
  font-family: var(--font-heading);
  font-size: 17px; font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  letter-spacing: -0.02em;
  padding-top: 2px;
}
.menu-note-book {
  background: rgba(232,66,10,0.065);
  border: 1px solid rgba(232,66,10,0.16);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  font-size: 13px; color: var(--color-muted);
  margin-top: 52px; text-align: center;
  line-height: 1.72;
}
.menu-note-book strong { color: var(--color-text); }
@media (max-width: 768px) {
  .menu-card-inner { padding: 36px 24px; }
  .menu-item-name { font-size: 14px; }
  .menu-item-price { font-size: 15px; }
  .menu-item-leaders { width: 24px; }
}
@media (max-width: 480px) {
  .menu-item-row { flex-wrap: wrap; }
  .menu-item-stack { width: 100%; }
  .menu-item-leaders { display: none; }
  .menu-item-price { margin-left: auto; margin-top: 6px; }
}

/* === ABOUT PAGE ========================================= */
.about-hero { overflow: hidden; }
.about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: calc(100vh - 68px); }
.about-text-side { display: flex; flex-direction: column; justify-content: flex-end; padding: 72px 56px 72px var(--container-padding); max-width: 680px; margin-left: auto; }
.about-text-side h1 { font-size: clamp(36px, 5vw, 64px); margin-block: 12px 24px; }
.about-text-side .lead { font-size: 18px; line-height: 1.82; color: var(--color-muted); }
.about-img-side { position: relative; min-height: 500px; }
.about-img-side img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,10,8,0.52) 0%, transparent 50%); }
.about-story { background: var(--color-surface); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.story-body h2 { font-size: clamp(26px, 3vw, 40px); margin-block: 12px 24px; }
.story-body p { color: var(--color-muted); font-size: 16px; line-height: 1.88; margin-bottom: 20px; }
.story-body p:last-child { margin-bottom: 0; }
.story-pull { position: sticky; top: 100px; }
.pull-quote { border-left: 3px solid var(--color-primary); padding-left: 28px; margin-bottom: 36px; }
.pull-quote p { font-family: var(--font-heading); font-size: clamp(20px, 2.5vw, 30px); font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; color: var(--color-text); }
.story-img { border-radius: var(--radius-lg); overflow: hidden; height: 300px; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.philosophy-card { background: var(--color-surface-2); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 32px 28px; transition: border-color 0.2s ease, transform 0.22s cubic-bezier(0.34,1.56,0.64,1); }
.philosophy-card:hover { border-color: rgba(232,66,10,0.35); transform: translateY(-4px); }
.philosophy-icon { width: 44px; height: 44px; background: rgba(232,66,10,0.13); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--color-primary); }
.philosophy-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.philosophy-card p { font-size: 14px; color: var(--color-muted); line-height: 1.68; }
@media (max-width: 768px) {
  .about-hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .about-text-side { padding: calc(68px + 48px) var(--container-padding) 48px; margin-left: 0; max-width: none; }
  .about-img-side { height: 280px; min-height: 0; }
  .about-img-overlay { background: linear-gradient(to bottom, rgba(10,10,8,0.35) 0%, transparent 40%); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-pull { position: static; }
  .philosophy-grid { grid-template-columns: 1fr; }
}

/* === CONTACT PAGE ======================================= */
.contact-hero { background: var(--color-surface); }
.contact-hero h1 { font-size: clamp(34px, 5.5vw, 66px); }
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.location-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 32px; transition: border-color 0.2s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1); }
.location-card:hover { border-color: rgba(232,66,10,0.38); transform: translateY(-4px); }
.location-num { font-family: var(--font-heading); font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 16px; }
.location-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.location-addr { font-size: 14px; color: var(--color-muted); line-height: 1.65; margin-bottom: 24px; }
.location-hours h4 { font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 10px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { font-size: 13px; color: rgba(245,242,236,0.65); padding: 3px 0; vertical-align: top; }
.hours-table td:last-child { text-align: right; }
.contact-form-section { background: var(--color-surface); }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(26px, 3.5vw, 44px); margin-block: 12px 20px; }
.contact-info p { color: var(--color-muted); line-height: 1.82; margin-bottom: 28px; font-size: 16px; }
.contact-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; font-size: 14px; color: var(--color-muted); line-height: 1.6; }
.contact-detail-icon { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.form-card { background: var(--color-surface-2); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 40px; }
.form-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 28px; letter-spacing: -0.02em; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 12px 16px; font-size: 15px; color: var(--color-text); transition: border-color 0.15s ease, box-shadow 0.15s ease; outline: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(232,66,10,0.12); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(245,242,236,0.4)' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; padding: 15px; font-size: 15px; margin-top: 4px; }
.thank-you { display: none; text-align: center; padding: 40px 24px; }
.thank-you-icon { width: 56px; height: 56px; background: rgba(232,66,10,0.13); border-radius: var(--radius-pill); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--color-primary); }
.thank-you strong { display: block; font-size: 20px; font-family: var(--font-heading); margin-bottom: 8px; }
.thank-you p { color: var(--color-muted); font-size: 15px; }
.form-hidden .contact-form { display: none; }
.form-hidden .thank-you { display: block; }
.form-note { font-size: 12px; color: var(--color-muted); text-align: center; margin-top: 16px; }
@media (max-width: 768px) { .locations-grid { grid-template-columns: 1fr; } .contact-split { grid-template-columns: 1fr; gap: 40px; } .form-card { padding: 28px 20px; } }

/* === ANIMATIONS ========================================= */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.in-view, .reveal-right.in-view { opacity: 1; transform: translateX(0); }

.reveal-scale { opacity: 0; transform: scale(0.93); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.reveal-scale.in-view { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-bar, .cursor-glow { display: none; }
}
