/* ============================================================
   GILA BURGER — Main Stylesheet
   Stack: Vanilla CSS, mobile-first, CSS custom properties
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:   #111111;
  --yellow:  #F5A623;
  --cream:   #FAF7F0;
  --grey:    #888888;
  --light:   #F2F2F2;
  --white:   #FFFFFF;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.18);

  --nav-height: 80px;
  --max-width: 1200px;
  --gutter: 1.25rem;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::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(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utilities ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-pad { padding: 4rem 0; }
.section-pad-lg { padding: 6rem 0; }

.text-yellow { color: var(--yellow); }
.text-grey { color: var(--grey); }
.text-center { text-align: center; }

.display-heading {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn:active { transform: translateY(0); }

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}
.btn-yellow:hover { background: #ffb83d; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 2px solid #333;
}
.btn-dark:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--black);
  border-bottom: 1px solid #222;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(17,17,17,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img {
  height: 62px;
  width: auto;
}
.nav-links {
  display: none;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--yellow); }

.nav-cta { display: none; }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--black);
  border-top: 1px solid #222;
  padding: 1.5rem var(--gutter) 2rem;
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.5rem 0;
  border-bottom: 1px solid #222;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; gap: 0.75rem; }
  .nav-hamburger { display: none; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.45);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17,17,17,0.85) 0%,
    rgba(17,17,17,0.4) 60%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.hero-title span { color: var(--yellow); }
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.hero-ctas .btn img {
  height: 20px;
  width: auto;
  display: inline;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* ── Order Banner ───────────────────────────────────────────── */
.order-banner {
  background: var(--yellow);
  padding: 1rem 0;
}
.order-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.order-banner p {
  font-weight: 600;
  color: var(--black);
  font-size: 1rem;
}
.order-banner-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.order-banner-btns .btn {
  background: var(--black);
  color: var(--white);
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
}
.order-banner-btns .btn:hover { background: #222; }

@media (min-width: 600px) {
  .order-banner-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ── Section Headers ────────────────────────────────────────── */
.section-header { margin-bottom: 2.5rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
}
.section-header p {
  color: var(--grey);
  font-size: 1rem;
  margin-top: 0.75rem;
  max-width: 520px;
}

/* ── Menu Category Cards ────────────────────────────────────── */
.menu-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.category-card:hover { transform: translateY(-4px); }
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover img { transform: scale(1.05); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.category-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--white);
}
.category-card-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}
.category-card-arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--black);
  font-weight: 700;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}
.category-card:hover .category-card-arrow { opacity: 1; transform: translateY(0); }

@media (min-width: 600px) { .menu-categories { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .menu-categories { grid-template-columns: repeat(4, 1fr); } }

/* ── Quality Strip ──────────────────────────────────────────── */
.quality-strip {
  background: #1a1a1a;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
.quality-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.quality-item {
  padding: 2rem 1.25rem;
  border-right: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  text-align: center;
}
.quality-item:nth-child(even) { border-right: none; }
.quality-item:nth-last-child(-n+2) { border-bottom: none; }
.quality-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.quality-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.quality-item p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .quality-items { grid-template-columns: repeat(4, 1fr); }
  .quality-item { border-bottom: none; }
  .quality-item:nth-child(even) { border-right: 1px solid #2a2a2a; }
  .quality-item:last-child { border-right: none; }
}

/* ── Story Section ──────────────────────────────────────────── */
.story-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.story-content .section-label { margin-bottom: 0.75rem; }
.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.story-content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}
.story-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #1a1a1a;
  border-left: 3px solid var(--yellow);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}
.story-highlight p {
  margin: 0;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

@media (min-width: 768px) {
  .story-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Reviews Strip ──────────────────────────────────────────── */
.reviews-strip {
  background: var(--yellow);
  padding: 3rem 0;
  text-align: center;
}
.reviews-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--black);
  margin-bottom: 0.5rem;
}
.reviews-strip p {
  color: rgba(0,0,0,0.65);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.reviews-stars {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
.reviews-strip .btn {
  background: var(--black);
  color: var(--white);
}
.reviews-strip .btn:hover { background: #222; }

/* ── Menu Page ──────────────────────────────────────────────── */
.menu-page-hero {
  background: var(--black);
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
  text-align: center;
  border-bottom: 1px solid #222;
}
.menu-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
}
.menu-page-hero p {
  color: var(--grey);
  font-size: 1rem;
  margin-top: 0.75rem;
}

.menu-tabs {
  position: sticky;
  top: var(--nav-height);
  background: var(--black);
  border-bottom: 1px solid #222;
  z-index: 100;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  padding: 0 var(--gutter);
  min-width: max-content;
  max-width: var(--max-width);
  margin: 0 auto;
}
.menu-tab {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.menu-tab:hover { color: var(--yellow); border-bottom-color: var(--yellow); }
.menu-tab.active { color: var(--yellow); border-bottom-color: var(--yellow); }

.menu-section { padding: 3rem 0; border-bottom: 1px solid #1e1e1e; }
.menu-section:last-child { border-bottom: none; }
.menu-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.4rem;
}
.menu-section-sub {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 1.75rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 540px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-item {
  background: #1a1a1a;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #2a2a2a;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.menu-item:hover { border-color: var(--yellow); transform: translateY(-3px); }
.menu-item-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #222;
}
.menu-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.menu-item:hover .menu-item-img img { transform: scale(1.06); }
.menu-item-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-item-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.menu-item-desc {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.5;
  flex: 1;
}
.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid #2a2a2a;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--yellow);
}
.menu-item-price span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--grey);
  font-weight: 500;
  margin-right: 2px;
}

.combo-badge {
  display: inline-block;
  background: #222;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid #333;
}

.combo-callout {
  background: #1a1a1a;
  border: 1px solid var(--yellow);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.combo-callout-icon { font-size: 1.75rem; flex-shrink: 0; }
.combo-callout p { font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.combo-callout strong { color: var(--yellow); }

/* ── About Page ─────────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,1) 0%, transparent 60%);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}
.about-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
}

.values-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.value-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.value-card:hover { border-color: var(--yellow); }
.value-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.9rem; color: var(--grey); line-height: 1.6; }

@media (min-width: 600px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Contact Page ───────────────────────────────────────────── */
.contact-hero {
  background: var(--black);
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
  border-bottom: 1px solid #222;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
}
.contact-hero p { color: var(--grey); margin-top: 0.5rem; }

.contact-grid {
  display: grid;
  gap: 2.5rem;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail h2,
.contact-detail h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
}
.contact-detail a:hover { color: var(--yellow); }

.hours-table { width: 100%; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #1e1e1e;
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--grey); }
.hours-row .time { color: var(--white); font-weight: 500; }
.hours-row.closed .time { color: #555; }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid #2a2a2a;
}
.map-container iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(1) invert(1) contrast(0.85);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--yellow); color: var(--yellow); }

@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #0a0a0a;
  border-top: 1px solid #1e1e1e;
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand img { height: 70px; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.9rem;
  color: var(--grey);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-col p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #444;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  display: flex;
  align-items: center;
  color: #444;
  transition: color 0.2s;
}
.footer-bottom-links a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-bottom-links a:hover { color: var(--yellow); }

@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ── Animations ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ── Offline Page ───────────────────────────────────────────── */
.offline-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.offline-page h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: 1rem;
}
.offline-page p { color: var(--grey); margin-bottom: 2rem; }

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* ── WhatsApp Floating Widget ───────────────────────────────── */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wa-widget__tooltip {
  background: #111111;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.wa-widget:hover .wa-widget__tooltip,
.wa-widget:focus .wa-widget__tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-widget__btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-widget:hover .wa-widget__btn,
.wa-widget:focus .wa-widget__btn {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
  animation: none;
}

.wa-widget__btn svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.75); }
}

@media (max-width: 480px) {
  .wa-widget { bottom: 20px; right: 16px; }
  .wa-widget__btn { width: 50px; height: 50px; }
  .wa-widget__btn svg { width: 26px; height: 26px; }
}

/* ── Article / Blog Page ─────────────────────────────────────── */
.article-page { padding-top: var(--nav-height); background: var(--black); color: var(--white); }
.container-narrow { max-width: 760px; margin: 0 auto; }

.article-hero { padding: 4rem 0 2rem; }
.article-breadcrumb {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.article-breadcrumb a { color: var(--yellow); }
.article-breadcrumb a:hover { text-decoration: underline; }

.article-hero h1.display-heading {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.article-lede {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #ddd;
  max-width: 720px;
  margin-bottom: 1.25rem;
}
.article-meta {
  font-size: 0.85rem;
  color: var(--grey);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.article-hero-img {
  margin: 2rem auto 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body { padding: 1rem 0 5rem; }
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--white);
  margin: 3rem 0 1rem;
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #ddd;
  margin-bottom: 1.25rem;
}
.article-body ul {
  margin: 0 0 1.5rem 1.25rem;
  list-style: disc;
  color: #ddd;
}
.article-body ul li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.article-body a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover { color: #ffc15a; }
.article-body strong { color: var(--white); }

.article-inline-img {
  margin: 2rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.article-inline-img img {
  width: 100%;
  border-radius: var(--radius-md);
}
.article-inline-img figcaption {
  font-size: 0.85rem;
  color: var(--grey);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

.article-cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.faq-item {
  background: #1a1a1a;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  border: 1px solid #2a2a2a;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--yellow);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: #ccc;
}

.article-info-box {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0 2rem;
}
.article-info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid #262626;
  font-size: 0.95rem;
  color: #ddd;
}
.article-info-label {
  min-width: 90px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.article-info-row a { color: var(--yellow); text-decoration: underline; }

@media (max-width: 640px) {
  .article-hero { padding: 2rem 0 1rem; }
  .article-hero-img { aspect-ratio: 4/3; margin: 1.5rem auto 2rem; }
  .article-body h2 { margin: 2rem 0 0.75rem; }
  .article-info-row { flex-direction: column; gap: 0.25rem; }
  .article-info-label { min-width: unset; }
}
