/* ════════════════════════════════════════════════
   Xiang Xiang Food Court — Stylesheet
   Theme: Warm & Appetizing
   ════════════════════════════════════════════════ */

/* ── 1. Design Tokens ─────────────────────────── */
:root {
  --color-primary:   #C0392B;
  --color-primary-dark: #96281B;
  --color-accent:    #E67E22;
  --color-accent-light: #F39C12;
  --color-bg:        #FDF6EC;
  --color-bg-warm:   #FEF9F4;
  --color-surface:   #FFFFFF;
  --color-text:      #2C1A0E;
  --color-text-light:#5A3E2B;
  --color-muted:     #8C7B6E;
  --color-border:    #EDE0D0;
  --color-shadow:    rgba(44, 26, 14, 0.10);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

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

  --max-width: 1140px;
  --header-height: 68px;

  --transition: 0.2s ease;
}

/* ── 2. Reset & Base ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-primary-dark); text-decoration: underline; }

ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}

address { font-style: normal; }

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

.section {
  padding: var(--space-2xl) 0;
}
.section--cream {
  background: var(--color-bg);
}
.section:not(.section--cream) {
  background: var(--color-surface);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  color: var(--color-text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: var(--space-lg);
}

/* ── 4. Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

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

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

.btn--full { width: 100%; justify-content: center; }

/* ── 5. Header ────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(253, 246, 236, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 12px var(--color-shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
.logo:hover { text-decoration: none; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.main-nav a {
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.main-nav a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  text-decoration: none;
}

.nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
}
.nav-cta:hover {
  background: var(--color-primary-dark) !important;
  border-bottom: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── 6. Hero ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-bg--placeholder {
  background: linear-gradient(135deg, #8B2318 0%, #C0392B 40%, #E67E22 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 8, 4, 0.45) 0%,
    rgba(20, 8, 4, 0.65) 60%,
    rgba(20, 8, 4, 0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 680px;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-xs);
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  color: #fff;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ── 7. About Section ─────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-text h2 { margin-bottom: var(--space-sm); }
.about-description {
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.about-meta {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.about-badges {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.badge {
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.about-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 4px 24px var(--color-shadow);
}

.about-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.info-list { margin-bottom: var(--space-md); }
.info-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}
.info-list li:last-child { border-bottom: none; }
.info-icon { flex-shrink: 0; font-size: 1rem; margin-top: 0.1rem; }

/* ── 8. Stalls Grid ───────────────────────────── */
.stalls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.stall-card {
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}
.stall-card:hover {
  box-shadow: 0 8px 32px var(--color-shadow);
  transform: translateY(-3px);
}

.stall-emoji {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.stall-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.3rem;
}

.stall-name {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.stall-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ── 9. Delivery / Order Online ─────────────── */
.section.section--delivery {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  text-align: center;
}

.section.section--delivery .section-eyebrow {
  color: rgba(255,255,255,0.6);
}

.section.section--delivery h2 {
  color: #fff;
}

.section.section--delivery .section-subtitle {
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.delivery-btns {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.delivery-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  min-width: 260px;
  position: relative;
  overflow: hidden;
}

.delivery-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
}

.delivery-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  filter: brightness(1.08);
}

.delivery-btn:hover::before {
  background: rgba(255,255,255,0.08);
}

.delivery-btn:active {
  transform: translateY(-1px);
}

.delivery-btn--foodpanda {
  background: #D70F64;
  color: #fff;
  box-shadow: 0 6px 20px rgba(215,15,100,0.4);
}

.delivery-btn--grabfood {
  background: #00B14F;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,177,79,0.4);
}

.delivery-btn__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.delivery-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.delivery-btn__label {
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.delivery-btn__brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.delivery-btn__arrow {
  margin-left: auto;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.delivery-btn:hover .delivery-btn__arrow {
  transform: translateX(4px);
  opacity: 1;
}

@media (max-width: 640px) {
  .delivery-btn {
    min-width: 100%;
    max-width: 360px;
  }
}

/* ── 10. Hours Table ───────────────────────────── */
.hours-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hours-text h2 { margin-bottom: var(--space-sm); }
.hours-text p { color: var(--color-text-light); margin-bottom: var(--space-lg); line-height: 1.7; }

.hours-table-wrap {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--color-shadow);
  border: 1px solid var(--color-border);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table thead {
  background: var(--color-primary);
  color: #fff;
}

.hours-table thead th {
  padding: 0.75rem 1.25rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours-table tbody tr {
  border-bottom: 1px solid var(--color-border);
}
.hours-table tbody tr:last-child { border-bottom: none; }
.hours-table tbody tr:hover { background: var(--color-bg); }

.hours-table th[scope="row"],
.hours-table td {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
}

.hours-table th[scope="row"] {
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-body);
  text-align: left;
}

.hours-table td {
  color: var(--color-text-light);
}

.hours-row--highlight td,
.hours-row--highlight th {
  color: var(--color-muted);
  font-style: italic;
}

.hours-note {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.hours-note-icon { flex-shrink: 0; }

.closed-badge {
  background: #fee2e2;
  color: #dc2626;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ── 10. Gallery ──────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-border);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  padding: 1rem 0.75rem 0.6rem;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item {
  position: relative;
}
.gallery-item:hover figcaption { opacity: 1; }

.gallery-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ── 11. FAQ / Accordion ──────────────────────── */
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.faq-wrap h2 { margin-bottom: var(--space-lg); }

.faq-list { display: flex; flex-direction: column; gap: var(--space-xs); }

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] {
  box-shadow: 0 4px 16px var(--color-shadow);
  border-color: var(--color-accent);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--color-primary); }

.faq-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 var(--space-md) var(--space-sm);
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── 12. Contact & Map ────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-lg);
}

.contact-address h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.contact-address > p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.contact-row {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}
.contact-row:last-child { border-bottom: none; }

.contact-label {
  font-weight: 700;
  color: var(--color-text);
  min-width: 80px;
}

.contact-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--color-shadow);
  border: 1px solid var(--color-border);
  background: var(--color-border);
}

.map-wrap iframe { display: block; }

/* ── 13. Footer ───────────────────────────────── */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--space-md);
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
}

.site-footer h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: rgba(255,255,255,0.5); }
.hours-list .time { color: rgba(255,255,255,0.85); }

.footer-contact address p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.footer-contact a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}
.footer-contact a:hover { color: var(--color-accent-light); text-decoration: underline; }

.directions-link {
  display: inline-block;
  margin-top: var(--space-sm);
  color: var(--color-accent-light) !important;
  font-weight: 700;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-sm) var(--space-md);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p { font-size: 0.8rem; }

.footer-credit a {
  color: var(--color-accent-light);
  font-weight: 700;
  font-size: 0.8rem;
}
.footer-credit a:hover { text-decoration: underline; }

/* ── 14. Responsive — Tablet (≤ 900px) ──────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .stalls-grid { grid-template-columns: repeat(2, 1fr); }
  .hours-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── 15. Responsive — Mobile (≤ 640px) ──────── */
@media (max-width: 640px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
  }

  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 24px var(--color-shadow);
    padding: var(--space-sm) var(--space-md);
  }

  .main-nav.is-open { display: block; }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .main-nav li { width: 100%; }

  .main-nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
  }
  .main-nav li:last-child a { border-bottom: none; }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    border-radius: var(--radius-sm) !important;
  }

  .hero { min-height: 90svh; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stalls-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); padding: var(--space-lg) var(--space-md); }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .contact-actions { flex-direction: column; }
  .contact-actions .btn { width: 100%; justify-content: center; }
}

/* ── 16. Accessibility ────────────────────────── */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

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