@import url('https://fonts.googleapis.com/css2?family=Anton&family=Space+Grotesk:wght@400;500;700&display=swap');

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

:root {
  --charcoal: #1A1A1A;
  --smoke-dark: #232323;
  --concrete: #4A4A4A;
  --ash: #7A7A7A;
  --bone: #E8E0D4;
  --ember: #C4503A;
  --fire: #A33525;
  --brick: #8B3A2A;
  --brick-light: #B54E3A;
  --brick-dark: #6B2A1E;
  --mortar: #3D3530;
  --amber: #C4953A;
  --char: #3D2B1F;
  --ease-slam: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-heavy: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-crack: cubic-bezier(0.4, 0, 0.2, 1);
}

::selection { background: var(--brick-light); color: var(--bone); }

html { scroll-behavior: smooth; }

body {
  background: var(--charcoal);
  color: var(--bone);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

#cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--ember);
  border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--ember), 0 0 30px rgba(255,107,53,0.3);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
#cursor.hovering {
  width: 28px; height: 28px;
  background: transparent;
  border: 2px solid var(--ember);
  box-shadow: 0 0 20px var(--ember), 0 0 40px rgba(255,107,53,0.4);
}
.cursor-trail {
  position: fixed; width: 5px; height: 5px;
  background: var(--ember); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

#scroll-progress {
  position: fixed; right: 0; top: 0;
  width: 3px; height: 100vh;
  background: var(--mortar); z-index: 9998;
}
#scroll-fill {
  width: 100%; height: 0%;
  background: var(--brick-light);
  box-shadow: 0 0 8px var(--brick-light), -2px 0 12px rgba(163,74,56,0.4);
  transition: height 0.05s linear;
}

#crack-overlay {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9996;
}
#crack-overlay path {
  fill: none; stroke: rgba(139,58,42,0.7);
  stroke-width: 1.2;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
  transition: stroke-dashoffset 2s cubic-bezier(0.25, 0.1, 0.25, 1);
  filter: drop-shadow(0 0 3px rgba(139,58,42,0.4));
}
#crack-overlay path.visible { stroke-dashoffset: 0; }
#crack-overlay .crack-branch {
  stroke: rgba(139,58,42,0.35);
  stroke-width: 0.7;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

#shatter-overlay {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9995;
  opacity: 0; transition: opacity 0.3s;
}
#shatter-overlay.active { opacity: 1; pointer-events: all; }
.shatter-shard {
  position: fixed;
  background: var(--charcoal);
  border: 1px solid rgba(139,58,42,0.2);
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 1s ease 0.2s;
  will-change: transform, opacity;
}
.shatter-shard.fall { opacity: 0; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 20px 40px; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.01s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(26,26,26,0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  animation: navSlam 0.15s var(--ease-slam);
}
@keyframes navSlam {
  0% { transform: translateY(-100%); }
  70% { transform: translateY(3px); }
  100% { transform: translateY(0); }
}
.nav-logo {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(139,58,42,0.5));
}
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  color: var(--bone); text-decoration: none;
  font-family: 'Anton', sans-serif;
  font-size: 14px; letter-spacing: 3px;
  position: relative; display: inline-flex;
  cursor: none;
}
.nav-links a .char {
  display: inline-block;
  transition: transform 0.3s var(--ease-snap), opacity 0.3s;
}

/* HERO */
#hero {
  height: 100vh; display: flex;
  flex-direction: column; justify-content: center; align-items: center;
  position: relative; overflow: visible;
  background: radial-gradient(ellipse at 50% 60%, rgba(139,58,42,0.08) 0%, transparent 60%),
              var(--charcoal);
}

#hero-logo {
  position: absolute;
  top: -110vh;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: clamp(320px, 50vw, 660px);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 0 60px rgba(139,58,42,1)) drop-shadow(0 0 120px rgba(196,80,58,0.5));
}
#hero-logo.fly-in {
  animation: logoFlyIn 2s forwards;
}
@keyframes logoFlyIn {
  0%   {
    opacity: 0; top: -110vh;
    width: clamp(320px, 50vw, 660px);
    transform: translateX(-50%) translateY(-50%);
    animation-timing-function: cubic-bezier(0.6, 0, 0.9, 0.1);
  }
  6%   { opacity: 1; }
  /* SLAM into center */
  38%  {
    top: 50%;
    width: clamp(320px, 50vw, 660px);
    transform: translateX(-50%) translateY(-50%) scale(0.72);
    filter: drop-shadow(0 0 100px rgba(196,80,58,1)) drop-shadow(0 0 220px rgba(196,80,58,0.7));
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  /* Bounce up */
  52%  {
    top: 44%;
    width: clamp(320px, 50vw, 660px);
    transform: translateX(-50%) translateY(-50%) scale(1.14);
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  /* Settle at center, begin glide */
  63%  {
    top: 50%;
    width: clamp(320px, 50vw, 660px);
    transform: translateX(-50%) translateY(-50%) scale(1);
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  /* Shrink and slide to resting position simultaneously */
  100% {
    top: 4vh;
    width: clamp(300px, 38vw, 540px);
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(139,58,42,0.6));
  }
}

.screen-shake-hard { animation: shakeHard 0.3s ease; }
@keyframes shakeHard {
  0%, 100% { transform: translate(0); }
  15% { transform: translate(-6px, 4px); }
  30% { transform: translate(7px, -5px); }
  50% { transform: translate(-5px, 6px); }
  70% { transform: translate(6px, -4px); }
  85% { transform: translate(-3px, 3px); }
}

#hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18vh;
}

.hero-char.discombobulate {
  animation: none !important;
  transition: transform 0.03s ease, opacity 0.03s !important;
}
.hero-char.settle {
  animation: none !important;
  transition: transform 1s var(--ease-snap), opacity 0.8s !important;
}

.smoke {
  position: absolute; width: 100%; height: 100%;
  pointer-events: none; overflow: hidden;
}
.smoke-particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  animation: smokeRise linear infinite;
}
@keyframes smokeRise {
  0% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0; }
  100% { transform: translateY(-100vh) scale(3) rotate(180deg); opacity: 0; }
}

.cracked-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 8vw, 90px);
  letter-spacing: 6px;
  text-align: center;
  color: var(--bone);
  position: relative;
}
.cracked-heading .char-wrapper {
  display: inline-block; position: relative; cursor: none;
}
.cracked-heading .char-wrapper .char {
  display: inline-block;
  transition: transform 0.3s var(--ease-snap), filter 0.3s;
}

.hero-char {
  opacity: 0; transform: translateY(-80px) scale(1.1);
}
.hero-char.slammed {
  animation: charSlam 0.5s var(--ease-slam) forwards;
}
@keyframes charSlam {
  0% { opacity: 0; transform: translateY(-80px) scale(1.1); }
  60% { opacity: 1; transform: translateY(4px) scale(0.98); }
  80% { transform: translateY(-2px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 20px);
  color: var(--ash);
  letter-spacing: 6px;
  margin-top: 20px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
}
.hero-subtitle.visible { opacity: 1; }
.typed-cursor {
  display: inline-block; width: 2px; height: 1em;
  background: var(--brick-light); margin-left: 4px;
  animation: blink 0.8s step-end infinite;
  vertical-align: text-bottom;
}
@keyframes blink { 50% { opacity: 0; } }

/* CTA BUTTON */
.cta-btn {
  margin-top: 40px; position: relative;
  display: inline-flex; cursor: none;
  background: none; border: none;
}
.cta-inner {
  position: relative;
  background: transparent;
  color: var(--charcoal);
  font-family: 'Anton', sans-serif;
  font-size: 16px; letter-spacing: 4px;
  padding: 16px 40px;
  overflow: hidden;
  transition: overflow 0s 0s;
}
.cta-btn:hover .cta-inner {
  overflow: visible;
  transition: overflow 0s 0.05s;
}
.cta-ghost {
  position: absolute; inset: 0;
  border: 1px solid var(--brick);
  opacity: 0;
  transition: opacity 0.35s 0.05s;
  pointer-events: none; z-index: 0;
  box-shadow: 0 0 20px rgba(139,58,42,0.15);
}
.cta-btn:hover .cta-ghost { opacity: 0.35; }
.cta-text-layer {
  position: relative; z-index: 3;
  font-family: 'Anton', sans-serif;
  font-size: 16px; letter-spacing: 4px;
  color: var(--charcoal);
  pointer-events: none;
  transition: color 0.3s, text-shadow 0.3s;
}
.cta-btn:hover .cta-text-layer {
  color: var(--bone);
  text-shadow: 0 0 12px rgba(139,58,42,0.5);
}
.cta-brick {
  position: absolute;
  background: var(--brick);
  transition: transform 0.5s var(--ease-slam), opacity 0.5s;
  z-index: 1;
  will-change: transform, opacity;
  box-shadow: inset 1px 1px 0 rgba(163,74,56,0.3), inset -1px -1px 0 rgba(107,42,30,0.4);
}
.cta-btn:hover .cta-brick {
  transform: var(--brick-fall);
  opacity: var(--brick-opacity, 0.7);
}
.cta-mortar-line {
  position: absolute;
  background: var(--mortar);
  z-index: 1; pointer-events: none;
  transition: opacity 0.2s;
}
.cta-btn:hover .cta-mortar-line { opacity: 0; }

.impact-particle {
  position: fixed; border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 6px 2px var(--ember), 0 0 12px var(--fire);
  animation: particleBurst 0.9s var(--ease-heavy) forwards;
}
@keyframes particleBurst {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  60%  { opacity: 0.8; }
  100% { transform: var(--particle-end); opacity: 0; }
}

/* CRACK DIVIDER */
.crack-divider {
  position: relative; height: 40px; overflow: visible;
  margin: 0 -20px;
}
.crack-divider svg {
  width: calc(100% + 40px); height: 40px;
  position: absolute; top: 0; left: 0;
}
.crack-path {
  stroke: var(--brick-light); stroke-width: 2;
  fill: none; filter: drop-shadow(0 0 6px rgba(139,58,42,0.5));
  stroke-dasharray: 2000; stroke-dashoffset: 2000;
  transition: stroke-dashoffset 1.2s var(--ease-crack);
}
.crack-divider.visible .crack-path { stroke-dashoffset: 0; }
.crack-glow {
  stroke: var(--brick); stroke-width: 6;
  fill: none; opacity: 0.15;
  stroke-dasharray: 2000; stroke-dashoffset: 2000;
  transition: stroke-dashoffset 1.2s var(--ease-crack);
}
.crack-divider.visible .crack-glow { stroke-dashoffset: 0; }

/* SECTIONS */
section {
  padding: 80px 40px;
  position: relative;
}
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  letter-spacing: 4px;
  margin-bottom: 40px;
  color: var(--bone);
}
.section-title .char-wrapper { display: inline-block; }
.section-title .char-wrapper .char {
  display: inline-block;
  opacity: 0; transform: translateY(40px);
  transition: transform 0.5s var(--ease-heavy), opacity 0.4s;
}
.section-title.revealed .char-wrapper .char {
  opacity: 1; transform: translateY(0);
}

/* MENU CARDS */
.menu-tabs {
  display: flex; gap: 0; margin-bottom: 40px;
  border-bottom: 2px solid var(--mortar);
}
.menu-tab {
  padding: 12px 28px;
  font-family: 'Anton', sans-serif;
  font-size: 15px; letter-spacing: 3px;
  color: var(--ash);
  background: none; border: none;
  position: relative; cursor: none;
  transition: color 0.3s;
}
.menu-tab.active { color: var(--brick-light); }
.menu-tab::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; width: 100%; height: 2px;
  background: var(--brick-light);
  box-shadow: 0 0 10px rgba(139,58,42,0.4);
  transform: scaleX(0); transition: transform 0.3s var(--ease-slam);
}
.menu-tab.active::after { transform: scaleX(1); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.menu-card {
  background: var(--smoke-dark);
  border: 1px solid var(--mortar);
  padding: 0; overflow: hidden;
  position: relative; cursor: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(0deg) rotateY(0deg);
}
.menu-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(139,58,42,0.14) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none; z-index: 1;
}
.menu-card:hover {
  border-color: var(--brick);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px rgba(139,58,42,0.12);
}
.menu-card:hover::before { opacity: 1; }

.card-img {
  width: 100%; height: 180px;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.8);
  transition: filter 0.4s;
}
.menu-card:hover .card-img { filter: saturate(1.1) brightness(1); }
.card-body { padding: 20px; position: relative; z-index: 2; }
.card-title {
  font-family: 'Anton', sans-serif;
  font-size: 20px; letter-spacing: 2px;
  margin-bottom: 8px;
}
.card-desc {
  font-size: 13px; color: var(--ash);
  line-height: 1.5; margin-bottom: 12px;
}
.card-price {
  font-family: 'Anton', sans-serif;
  font-size: 22px; color: var(--brick-light);
  text-shadow: 0 0 10px rgba(139,58,42,0.3);
}

.menu-card {
  opacity: 0; transform: translateY(60px);
}
.menu-card.entered {
  animation: cardSlam 0.5s var(--ease-slam) forwards;
}
@keyframes cardSlam {
  0% { opacity: 0; transform: translateY(60px); }
  70% { opacity: 1; transform: translateY(-3px); }
  100% { opacity: 1; transform: translateY(0); }
}
.menu-card.crumble-out {
  animation: crumbleOut 0.4s ease-in forwards;
}
@keyframes crumbleOut {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(40px) scale(0.9) rotate(2deg); }
}

/* FEATURED */
#featured {
  background: var(--smoke-dark);
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 28px,
    rgba(61,53,48,0.3) 28px,
    rgba(61,53,48,0.3) 30px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 58px,
    rgba(61,53,48,0.15) 58px,
    rgba(61,53,48,0.15) 60px
  );
}
.featured-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.featured-img-wrap {
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
  border: 2px solid var(--brick-dark);
}
.featured-img {
  width: 100%; height: 400px; object-fit: cover;
  filter: saturate(0.7);
  transition: filter 0.5s;
}
.featured-img-wrap:hover .featured-img {
  filter: saturate(1.2);
  animation: heatShimmer 0.8s ease infinite;
}
@keyframes heatShimmer {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.003) translateX(0.5px); }
  75% { transform: scale(0.998) translateX(-0.5px); }
}
.featured-text h3 {
  font-family: 'Anton', sans-serif;
  font-size: 36px; letter-spacing: 3px;
  margin-bottom: 16px;
}
.featured-text p {
  color: var(--ash); line-height: 1.7;
  font-size: 15px; margin-bottom: 20px;
}
.featured-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid var(--brick);
  color: var(--brick-light);
  font-family: 'Anton', sans-serif;
  letter-spacing: 3px; font-size: 13px;
  box-shadow: 0 0 15px rgba(139,58,42,0.2);
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--charcoal);
  border: 1px solid var(--mortar);
  padding: 30px; position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  opacity: 0; transform: translateY(-50px);
  /* Subtle brick texture */
  background-image:
    linear-gradient(135deg, rgba(139,58,42,0.03) 25%, transparent 25%),
    linear-gradient(225deg, rgba(139,58,42,0.03) 25%, transparent 25%);
}
.testimonial-card.dropped {
  animation: dropIn 0.5s var(--ease-slam) forwards;
}
@keyframes dropIn {
  0% { opacity: 0; transform: translateY(-50px); }
  65% { opacity: 1; transform: translateY(3px); }
  100% { opacity: 1; transform: translateY(0); }
}
.testimonial-card .quote-mark {
  position: absolute; top: 10px; left: 15px;
  font-family: 'Anton', sans-serif;
  font-size: 80px; color: var(--brick);
  opacity: 0.12; line-height: 1; pointer-events: none;
}
.testimonial-card .quote-text {
  font-size: 15px; line-height: 1.7;
  color: var(--bone); margin-bottom: 16px;
  position: relative; z-index: 1;
}
.testimonial-card .quote-author {
  font-family: 'Anton', sans-serif;
  font-size: 14px; letter-spacing: 2px;
  color: var(--brick-light);
}

/* CONTACT */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.form-group { margin-bottom: 24px; position: relative; }
.form-label {
  display: block; font-size: 11px;
  letter-spacing: 3px; color: var(--ash);
  text-transform: uppercase; margin-bottom: 8px;
  transition: color 0.3s;
}
.form-input {
  width: 100%; background: transparent;
  border: none; border-bottom: 2px solid var(--mortar);
  padding: 10px 0; color: var(--bone);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; outline: none;
  transition: border-color 0.3s;
  cursor: none;
}
.form-input:focus {
  border-color: var(--brick-light);
  box-shadow: 0 2px 10px rgba(139,58,42,0.2);
}
.form-input:focus + .input-flare {
  opacity: 1; transform: scaleX(1);
}
.input-flare {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--brick-light);
  box-shadow: 0 0 15px rgba(139,58,42,0.4);
  opacity: 0; transform: scaleX(0);
  transition: transform 0.4s var(--ease-slam), opacity 0.3s;
  transform-origin: left;
}
.info-block {
  display: flex; flex-direction: column; gap: 24px;
  justify-content: center;
}
.info-item {
  padding: 20px;
  background: var(--smoke-dark);
  border-left: 3px solid var(--brick);
  box-shadow: -3px 0 15px rgba(139,58,42,0.1);
}
.info-item h4 {
  font-family: 'Anton', sans-serif;
  letter-spacing: 2px; margin-bottom: 6px;
  font-size: 15px;
}
.info-item p { color: var(--ash); font-size: 14px; }

/* FOOTER */
footer {
  padding: 50px 40px 30px;
  text-align: center;
  border-top: 1px solid var(--mortar);
  position: relative;
  /* Brick wall pattern in footer */
  background:
    linear-gradient(rgba(26,26,26,0.92), rgba(26,26,26,0.92)),
    repeating-linear-gradient(
      0deg,
      var(--brick-dark) 0px,
      var(--brick-dark) 20px,
      var(--mortar) 20px,
      var(--mortar) 22px
    );
}
footer::before {
  content: ''; position: absolute;
  top: -1px; left: 0; width: 100%; height: 2px;
  background: var(--brick-light);
  box-shadow: 0 0 15px rgba(139,58,42,0.5);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.footer-logo {
  font-family: 'Anton', sans-serif;
  font-size: 32px; letter-spacing: 5px;
  color: var(--brick-light);
  text-shadow: 0 0 20px rgba(139,58,42,0.4);
  margin-bottom: 20px;
}
.social-links { display: flex; gap: 20px; justify-content: center; margin-bottom: 24px; }
.social-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--mortar);
  color: var(--ash); font-size: 16px;
  transition: all 0.3s; cursor: none;
  text-decoration: none;
}
.social-link:hover {
  color: var(--brick-light); border-color: var(--brick);
  box-shadow: 0 0 15px rgba(139,58,42,0.3);
  transform: translateY(-2px);
}
.footer-copy { color: var(--ash); font-size: 12px; letter-spacing: 2px; }

.screen-shake { animation: shake 0.15s ease; }
@keyframes shake {
  0%, 100% { transform: translate(0); }
  25% { transform: translate(-2px, 1px); }
  50% { transform: translate(2px, -1px); }
  75% { transform: translate(-1px, 2px); }
}

/* EMBER FLOATING PARTICLES (these stay orange!) */
.ember-particles {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9997;
  overflow: hidden;
}
.ember {
  position: absolute; border-radius: 50%;
  background: var(--ember);
  animation: emberFloat linear infinite;
  box-shadow: 0 0 6px var(--ember);
}
@keyframes emberFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0; }
  100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

@media (max-width: 768px) {
  .featured-grid, .contact-grid { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
  nav { padding: 15px 20px; }
  .nav-links { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
}

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