/* ============================================
   NEW WORLD BUFFET — Main Stylesheet
   Elegant, rich, international buffet aesthetic
   Deep navy + warm gold + cream
   ============================================ */

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

:root {
  --color-navy: #0D1B2A;
  --color-navy-2: #162235;
  --color-navy-3: #1E2F42;
  --color-gold: #C9A84C;
  --color-gold-light: #E8C97A;
  --color-gold-pale: #FDF8EE;
  --color-cream: #FAFAF7;
  --color-white: #FFFFFF;
  --color-text: #1A1A2E;
  --color-text-muted: #5A5E6E;
  --color-border: #E4E1D8;
  --color-border-dark: #2E3F54;
  --color-accent: #C9A84C;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --nav-height: 70px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 4px rgba(13,27,42,0.08);
  --shadow-md: 0 4px 20px rgba(13,27,42,0.12);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }

.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;
}

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--color-gold); color: var(--color-navy);
  padding: 0.5rem 1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999; font-size: 14px; font-weight: 500;
}
.skip-link:focus { top: 0; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-navy);
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 500; }
p { color: var(--color-text-muted); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 540px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7A6520;
  background: #F5ECC8;
  border: 1px solid #E2D08A;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.section-cta { text-align: center; margin-top: 2.5rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 3px; }

.btn-primary {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}
.btn-primary:hover { background: var(--color-navy-2); }

.btn-gold {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
  font-weight: 600;
}
.btn-gold:hover { background: var(--color-gold-light); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-white {
  background: #fff;
  color: var(--color-navy);
  border-color: #fff;
  font-weight: 600;
}
.btn-white:hover { background: #f0f0f0; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

.btn-full-mobile { margin-top: 1rem; }

/* ---- HEADER ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,247,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-navy);
}
.logo strong { color: var(--color-gold); font-weight: 700; }
.logo-icon { font-size: 1.3rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-muted);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--color-navy);
  background: #EEEBE0;
}
.nav-links a.active { font-weight: 500; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(201,168,76,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(30,47,66,0.8) 0%, transparent 60%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 5rem 1.25rem;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.hero-tags span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 5px 14px;
}

/* ---- INFO STRIP ---- */
.info-strip {
  background: var(--color-gold);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1rem;
  text-align: center;
}
.info-item--div { border-left: 1px solid rgba(0,0,0,0.1); }
.info-item strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.info-item span { font-size: 12px; font-weight: 500; color: rgba(0,0,0,0.55); letter-spacing: 0.04em; }

/* ---- HIGHLIGHTS ---- */
.highlights { background: var(--color-cream); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.highlight-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.highlight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.highlight-card--featured { border-color: var(--color-gold); border-width: 2px; }

.highlight-icon { font-size: 1.9rem; margin-bottom: 0.75rem; display: block; }
.highlight-card h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 0.5rem; color: var(--color-navy); }
.highlight-card p { font-size: 14px; line-height: 1.7; flex: 1; }
.hl-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7A6520;
  background: #F5ECC8;
  padding: 3px 10px;
  border-radius: 100px;
  align-self: flex-start;
}

/* ---- WHY US ---- */
.why-us { background: var(--color-gold-pale); }
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.why-text .section-tag { margin-bottom: 0.75rem; }
.why-text h2 { margin-bottom: 1.25rem; }
.why-text > p { font-size: 15px; margin-bottom: 1rem; }

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.why-feature {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
}
.why-feature span { color: var(--color-gold); font-weight: 700; }

.why-quote-stack { display: flex; flex-direction: column; gap: 1rem; }
.mini-quote {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
}
.mini-quote--accent {
  background: var(--color-navy);
  border: none;
  border-left: 3px solid var(--color-gold);
}
.mini-quote p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.mini-quote--accent p { color: rgba(255,255,255,0.75); }
.mini-quote cite {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  color: var(--color-text-muted);
}
.mini-quote--accent cite { color: rgba(255,255,255,0.4); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--color-navy);
  text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner > .cta-inner > p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.cta-address { font-size: 13px; color: rgba(255,255,255,0.4); }
.cta-address a { color: var(--color-gold); }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--color-navy);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201,168,76,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; }

/* ---- PRICING ---- */
.pricing { background: var(--color-gold-pale); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.price-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.price-card--featured { border-color: var(--color-gold); border-width: 2px; }
.price-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}
.price-desc { font-size: 14px; font-weight: 500; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.price-note { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; }
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
}
.pricing-note a { color: var(--color-navy); text-decoration: underline; }

/* ---- MENU SECTIONS ---- */
.menu-section { padding: 3.5rem 0 2rem; background: var(--color-cream); }
.menu-section:nth-child(even) { background: var(--color-white); }

.menu-cat-header { margin-bottom: 1.75rem; }
.menu-cat-header h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.75rem;
  margin-bottom: 0.4rem;
}
.menu-cat-header p { font-size: 14px; }

.menu-items-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.menu-items-grid--sm { margin-top: 0.5rem; }

.menu-item-chip {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  transition: var(--transition);
}
.menu-item-chip:hover { border-color: var(--color-gold); }
.menu-item-chip--highlight {
  background: var(--color-gold-pale);
  border-color: #E2D08A;
  color: var(--color-navy);
  font-weight: 500;
}
.menu-item-chip--more {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

.hibachi-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}
.hibachi-section h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.menu-divider { height: 1px; background: var(--color-border); }

.menu-note-section { background: var(--color-gold-pale); padding: 2.5rem 0; }
.menu-note-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 720px;
}
.menu-note-card a { color: var(--color-navy); text-decoration: underline; }

/* ---- ABOUT PAGE ---- */
.about-story { background: var(--color-white); }
.about-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.about-text .section-tag { margin-bottom: 0.75rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { font-size: 15px; margin-bottom: 1rem; }

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 5.5rem;
}
.stat-card {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.stat-card--accent { background: var(--color-navy); }
.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-card--accent strong { color: var(--color-gold-light); }
.stat-card span { font-size: 13px; color: var(--color-text-muted); font-weight: 500; }
.stat-card--accent span { color: rgba(255,255,255,0.5); }

.values { background: var(--color-cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: box-shadow var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-sm); }
.value-card--featured { border-color: var(--color-gold); border-width: 2px; }
.value-icon { font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }
.value-card h3 { margin-bottom: 0.5rem; color: var(--color-navy); }
.value-card p { font-size: 14px; }

.atmosphere { background: var(--color-gold-pale); }
.atm-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.atm-text .section-tag { margin-bottom: 0.75rem; }
.atm-text h2 { margin-bottom: 1.25rem; }
.atm-text p { font-size: 15px; margin-bottom: 1rem; }
.amenities-list {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.amenities-list h3 { font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 1rem; font-family: var(--font-body); font-weight: 600; }
.amenities-list ul { display: flex; flex-direction: column; gap: 0.6rem; }
.amenities-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
}
.amenities-list li span { color: var(--color-gold); font-weight: 700; }

/* ---- CONTACT PAGE ---- */
.contact-section { background: var(--color-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}
.info-block { margin-bottom: 2rem; }
.info-block h3 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-block address, .info-block p { font-size: 15px; line-height: 1.75; }
.info-block address a, .info-block p a { color: var(--color-navy); font-weight: 500; }
.info-block a:hover { text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border);
}
.hours-table td:first-child { font-weight: 500; color: var(--color-navy); width: 120px; }
.hours-table td:last-child { color: var(--color-text-muted); }
.weekend-row td { color: var(--color-gold) !important; font-weight: 600 !important; }
.hours-note { font-size: 13px; margin-top: 0.5rem; color: var(--color-text-muted); }

.order-options { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.35rem; }
.order-chip {
  font-size: 13px;
  font-weight: 500;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  color: var(--color-navy);
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.map-wrapper iframe { display: block; }

.good-to-know { background: var(--color-gold-pale); padding: 3.5rem 0; }
.gk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gk-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.gk-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.gk-card h3 { font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--color-navy); }
.gk-card p { font-size: 13px; line-height: 1.65; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--color-navy);
  padding: 3.5rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border-dark);
}
.footer-brand .logo { margin-bottom: 0.75rem; color: #fff; }
.footer-brand .logo strong { color: var(--color-gold); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.65; }

.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-nav a:hover { color: #fff; }

.footer-contact p { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 0.4rem; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact a:hover { color: #fff; }
.footer-hours { color: var(--color-gold) !important; font-weight: 500; }

.footer-bottom { text-align: center; padding: 1.25rem; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    display: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { width: 100%; padding: 0.6rem 0.85rem; font-size: 16px; }

  .hero { min-height: 75vh; }
  .hero-content { padding: 3rem 1.25rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }

  .info-grid { grid-template-columns: 1fr 1fr; }
  .info-item--div:nth-child(3) { border-left: none; border-top: 1px solid rgba(0,0,0,0.1); }
  .info-item--div:nth-child(4) { border-top: 1px solid rgba(0,0,0,0.1); }

  .why-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { position: static; }
  .atm-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .highlights-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gk-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-full-mobile { width: 100%; justify-content: center; }

  .hibachi-card { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
}

/* ---- ANIMATIONS ---- */
@media (prefers-reduced-motion: no-preference) {
  .highlight-card, .value-card, .mini-quote {
    opacity: 0;
    transform: translateY(14px);
    animation: fadeUp 0.5s ease forwards;
  }
  .highlight-card:nth-child(1) { animation-delay: 0.05s; }
  .highlight-card:nth-child(2) { animation-delay: 0.1s; }
  .highlight-card:nth-child(3) { animation-delay: 0.15s; }
  .highlight-card:nth-child(4) { animation-delay: 0.2s; }
  .highlight-card:nth-child(5) { animation-delay: 0.25s; }
  .highlight-card:nth-child(6) { animation-delay: 0.3s; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
