/* =========================================================
   GÄRTEN Lake Town — Premium European Cafe
   Design system: Forest green + cream + gold + charcoal
   Typography: Playfair Display (headings), Inter (body), Cairo (Arabic)
   ========================================================= */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', 'Source Sans 3', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html[lang="ar"] body { font-family: 'Cairo', 'Inter', sans-serif; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* ---------- Tokens ---------- */
:root {
  --green: #2d5a3d;
  --green-dark: #22432d;
  --green-light: #3d7a52;
  --cream: #f5f1e8;
  --cream-soft: #faf7ef;
  --gold: #c9a050;
  --gold-dark: #a8843d;
  --charcoal: #1f1f1f;
  --ink: #2a2a2a;
  --muted: #6b6b6b;
  --line: rgba(31,31,31,0.10);
  --line-soft: rgba(31,31,31,0.06);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.08);
  --shadow-lg: 0 18px 40px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1240px;
  --header-h: 78px;
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-ar: 'Cairo', 'Inter', sans-serif;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--charcoal); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 { font-family: var(--font-ar); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .8em;
}
html[lang="ar"] .eyebrow { letter-spacing: .1em; }

.lede { font-size: 1.12rem; color: var(--ink); max-width: 56ch; }
html[lang="ar"] .lede { font-size: 1.18rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
@media (min-width: 720px) { .container { padding-inline: 36px; } }
@media (min-width: 1024px) { .container { padding-inline: 48px; } }
.section { padding-block: clamp(56px, 8vw, 110px); }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }
.section--cream { background: var(--cream-soft); }
.section--green { background: var(--green); color: var(--cream); }
.section--green h1, .section--green h2, .section--green h3 { color: var(--cream); }
.section--green .eyebrow { color: var(--gold); }

.divider {
  width: 56px; height: 2px; background: var(--gold);
  margin: 0 auto 1.6em; border: 0;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,241,232,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 700;
  color: var(--green);
}
html[lang="ar"] .brand { font-family: var(--font-ar); font-weight: 800; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green); color: var(--cream);
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
}
.brand-mark span { transform: translateY(-1px); }
.brand-name small { display: block; font-size: .68rem; font-weight: 500; color: var(--muted); letter-spacing: .25em; text-transform: uppercase; margin-top: 2px; }
html[lang="ar"] .brand-name small { letter-spacing: .05em; }

.nav-toggle {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid var(--line);
}
.nav-toggle svg { width: 22px; height: 22px; }
@media (min-width: 960px) { .nav-toggle { display: none; } }

.nav-list {
  list-style: none; padding: 0; margin: 0;
  display: none; gap: 4px;
}
.nav-list a {
  display: inline-block; padding: 10px 14px; border-radius: 8px;
  font-weight: 500; font-size: .96rem; color: var(--ink);
  transition: background .2s, color .2s;
}
.nav-list a:hover, .nav-list a[aria-current="page"] {
  color: var(--green); background: rgba(45,90,61,0.08);
}
@media (min-width: 960px) { .nav-list { display: inline-flex; align-items: center; } }

.nav-actions { display: inline-flex; align-items: center; gap: 10px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600; font-size: .85rem;
  background: #fff;
  transition: border-color .2s, color .2s;
}
.lang-toggle:hover { border-color: var(--green); color: var(--green); }
.lang-toggle .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* Mobile drawer */
.nav-drawer {
  position: fixed; inset: var(--header-h) 0 auto 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--line-soft);
  padding: 16px 24px 24px;
  transform: translateY(-110%);
  transition: transform .3s ease;
  z-index: 40;
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.nav-drawer a {
  display: block; padding: 14px 12px; border-radius: 10px;
  font-weight: 500; border-bottom: 1px solid var(--line-soft);
}
.nav-drawer a:last-child { border-bottom: 0; }
@media (min-width: 960px) { .nav-drawer { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .15s, background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--green); color: var(--cream); }
.btn--primary:hover { background: var(--green-dark); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(245,241,232,0.6); }
.btn--ghost:hover { background: rgba(245,241,232,0.1); }
.btn--outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline:hover { background: var(--green); color: var(--cream); }
.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--gold-dark); color: var(--cream); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: grid; align-items: center;
  color: var(--cream);
  background: var(--green-dark);
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(31,31,31,0.55) 0%, rgba(31,31,31,0.25) 40%, rgba(31,31,31,0.7) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1900&q=80');
  background-size: cover; background-position: center;
  z-index: -1;
}
.hero__inner { padding-block: 110px 90px; max-width: 760px; }
.hero h1 { color: var(--cream); margin-bottom: .35em; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p.lede { color: rgba(245,241,232,0.92); font-size: 1.18rem; }
.hero .eyebrow { color: var(--gold); }
.hero__cta { display: inline-flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 42px; padding-top: 24px;
  border-top: 1px solid rgba(245,241,232,0.2);
  font-size: .9rem; color: rgba(245,241,232,0.9);
}
.hero__meta strong { display: block; color: var(--cream); font-size: 1.2rem; font-family: var(--font-display); }
html[lang="ar"] .hero__meta strong { font-family: var(--font-ar); }

/* ---------- Section heading ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head--left { text-align: start; margin-inline: 0; }
.section-head p { color: var(--muted); }

/* ---------- Highlight cards ---------- */
.grid-3 { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--cream); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 24px 24px 28px; }
.card__body h3 { margin-bottom: .25em; }
.card__body p { color: var(--muted); margin: 0; }

.icon-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 28px 24px; border: 1px solid var(--line-soft);
  text-align: start;
}
.icon-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(45,90,61,0.1); color: var(--green);
  margin-bottom: 14px;
}
.icon-card .icon svg { width: 24px; height: 24px; }
.icon-card h3 { font-size: 1.2rem; margin-bottom: .35em; }
.icon-card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- Signature dish grid ---------- */
.dish-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .dish-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dish-grid { grid-template-columns: repeat(3, 1fr); } }
.dish {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
}
.dish__img { aspect-ratio: 4/3; overflow: hidden; }
.dish__img img { width: 100%; height: 100%; object-fit: cover; }
.dish__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.dish__title { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.dish__title h3 { font-size: 1.15rem; margin: 0; }
.dish__ar { color: var(--muted); font-family: var(--font-ar); font-size: 1.05rem; direction: rtl; }
.dish__desc { color: var(--muted); font-size: .92rem; margin: 4px 0 0; }
.dish__tag {
  display: inline-block; align-self: flex-start;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 700;
  margin-top: 4px;
}
html[lang="ar"] .dish__tag { letter-spacing: .04em; }

/* ---------- Menu page sections ---------- */
.menu-section { padding-block: 56px; border-bottom: 1px solid var(--line-soft); }
.menu-section:last-child { border-bottom: 0; }
.menu-section__head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.menu-section__head h2 { margin: 0; }
.menu-section__head .de { color: var(--muted); font-family: var(--font-display); font-style: italic; font-size: 1.1rem; }
html[lang="ar"] .menu-section__head .de { font-family: var(--font-display); }
.menu-section__head .ar { color: var(--muted); font-family: var(--font-ar); font-size: 1.1rem; direction: rtl; }
.menu-list { display: grid; gap: 8px 32px; }
@media (min-width: 720px) { .menu-list { grid-template-columns: repeat(2, 1fr); } }
.menu-item {
  display: grid; grid-template-columns: 1fr auto; gap: 12px 18px;
  padding: 14px 0; border-bottom: 1px dashed var(--line-soft);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: 0; }
.menu-item__name { font-weight: 600; color: var(--ink); }
.menu-item__name .ar { display: block; color: var(--muted); font-family: var(--font-ar); font-weight: 500; font-size: .94rem; direction: rtl; }
.menu-item__desc { grid-column: 1 / -1; color: var(--muted); font-size: .9rem; margin-top: -2px; }
.menu-item__price { color: var(--green); font-weight: 600; white-space: nowrap; font-family: var(--font-display); }
html[lang="ar"] .menu-item__price { font-family: var(--font-ar); font-weight: 700; }
.menu-item__price .small { display: block; font-size: .75rem; color: var(--muted); font-weight: 500; font-family: var(--font-body); }

.menu-nav {
  position: sticky; top: var(--header-h);
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line-soft);
  z-index: 20;
  padding-block: 12px;
  margin-bottom: 24px;
}
.menu-nav__list { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding-block: 4px; }
.menu-nav__list::-webkit-scrollbar { display: none; }
.menu-nav__list a {
  flex: 0 0 auto; padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); font-size: .88rem; font-weight: 500;
  color: var(--ink); white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.menu-nav__list a:hover { border-color: var(--green); color: var(--green); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid .tile {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius-md);
  overflow: hidden; background: var(--cream);
}
.gallery-grid .tile--tall { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-grid .tile--wide { aspect-ratio: 4/3; grid-column: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid .tile:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(31,31,31,0.7); color: var(--cream);
  font-size: .78rem; padding: 4px 10px; border-radius: 999px;
  letter-spacing: .04em;
}
html[dir="rtl"] .gallery-grid figcaption { left: auto; right: 12px; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: #fff; border-radius: var(--radius-md);
  padding: 28px 26px 30px; border: 1px solid var(--line-soft);
  position: relative;
}
.testimonial .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; font-size: .9rem; }
.testimonial blockquote {
  margin: 0 0 18px; font-size: 1rem; color: var(--ink);
  font-family: var(--font-display); font-style: italic; line-height: 1.55;
}
html[lang="ar"] .testimonial blockquote { font-family: var(--font-ar); font-style: normal; }
.testimonial cite { font-style: normal; font-weight: 600; color: var(--charcoal); display: block; }
.testimonial .source { font-size: .8rem; color: var(--muted); }
.testimonial::before {
  content: '"'; position: absolute; top: 8px; left: 18px;
  font-family: var(--font-display); font-size: 4rem; line-height: 1;
  color: var(--gold); opacity: .35;
}
html[dir="rtl"] .testimonial::before { left: auto; right: 18px; }

/* ---------- About ---------- */
.about-grid { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 960px) { .about-grid { grid-template-columns: 1.05fr 1fr; gap: 64px; } }
.about-media {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 { margin-top: 0; }
.about-stats { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line-soft); }
.stat { text-align: start; }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--green); }
html[lang="ar"] .stat strong { font-family: var(--font-ar); }
.stat span { color: var(--muted); font-size: .9rem; }

.values { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value {
  padding: 24px 22px; background: var(--cream-soft);
  border-radius: var(--radius-md); border: 1px solid var(--line-soft);
}
.value h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 6px; }
html[lang="ar"] .value h4 { font-family: var(--font-ar); }
.value p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; } }
.contact-info { display: grid; gap: 22px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row .icon {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(45,90,61,0.1); color: var(--green);
  display: grid; place-items: center;
}
.contact-row .icon svg { width: 22px; height: 22px; }
.contact-row h4 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 4px; font-weight: 600; }
html[lang="ar"] .contact-row h4 { letter-spacing: .04em; }
.contact-row p { margin: 0; color: var(--ink); font-weight: 500; }
.contact-row a:hover { color: var(--green); text-decoration: underline; }

.map-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.social-row { display: inline-flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line);
  color: var(--ink);
  transition: background .2s, color .2s, border-color .2s;
}
.social-row a:hover { background: var(--green); color: var(--cream); border-color: var(--green); }
.social-row svg { width: 18px; height: 18px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal); color: rgba(245,241,232,0.85);
  padding-block: 56px 28px;
}
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; } }
.site-footer h4 {
  font-family: var(--font-body); font-size: .82rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 14px;
}
html[lang="ar"] .site-footer h4 { letter-spacing: .05em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a { color: rgba(245,241,232,0.85); }
.site-footer a:hover { color: var(--gold); }
.site-footer p { color: rgba(245,241,232,0.7); font-size: .92rem; }
.footer-bottom {
  margin-top: 36px; padding-top: 20px;
  border-top: 1px solid rgba(245,241,232,0.12);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .82rem; color: rgba(245,241,232,0.55);
}

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  background: var(--green);
  color: var(--cream);
  padding-block: clamp(70px, 10vw, 130px) clamp(48px, 7vw, 90px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 80% 20%, rgba(201,160,80,0.18), transparent 50%);
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--cream); margin: 0 0 .35em; max-width: 18ch; }
.page-hero p { color: rgba(245,241,232,0.85); max-width: 60ch; font-size: 1.08rem; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(245,241,232,0.7);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 14px; height: 14px; }
html[dir="rtl"] .breadcrumb svg { transform: scaleX(-1); }

/* ---------- Rating badge ---------- */
.rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px; border-radius: 999px;
  color: var(--cream); font-size: .9rem;
}
.rating-badge strong { color: var(--gold); font-family: var(--font-display); font-size: 1.1rem; }
.rating-badge svg { width: 18px; height: 18px; color: var(--gold); }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-4 { margin-top: 24px; }
.mt-6 { margin-top: 36px; }
.tag-row { display: inline-flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  font-size: .8rem; font-weight: 600;
  background: rgba(45,90,61,0.1); color: var(--green);
}
.section--green .tag { background: rgba(201,160,80,0.18); color: var(--gold); }

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Focus ---------- */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
