/* ============================================================
   مدينة قرطاج السياحية — أنماط الموقع
   ثيم فاتح متوسطي: كريمي + أزرق بحري + ذهب قرطاجي
   التخطيط من اليمين لليسار (RTL)
   ============================================================ */

:root {
  --bg:        #FBF8F1;   /* خلفية كريمية دافية */
  --surface:   #FFFFFF;   /* البطاقات والأسطح */
  --surface-2: #F3EFE6;   /* أسطح ثانوية / أقسام tint */
  --primary:   #0E4D6B;   /* أزرق بحري عميق */
  --primary-d: #0A3A54;   /* أزرق أعمق */
  --primary-l: #E7F0F5;   /* أزرق فاتح جداً للخلفيات */
  --accent:    #C9A24B;   /* ذهب قرطاجي */
  --accent-d:  #A8863A;   /* ذهب أعمق */
  --accent-l:  #F6EFD9;   /* ذهب فاتح */
  --text:      #1F2A33;   /* نص أساسي */
  --muted:     #5C6B75;   /* نص ثانوي */
  --border:    #E4DDD0;   /* حدود */
  --white:     #FFFFFF;
  --shadow:    0 10px 30px -12px rgba(14, 77, 107, 0.18);
  --shadow-sm: 0 4px 14px -6px rgba(14, 77, 107, 0.14);
  --radius:    16px;
  --radius-sm: 10px;
  --container: 1200px;
  --header-h:  72px;
  --font: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
  --font-display: 'Tajawal', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.85;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; font-size: 1rem; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* ===== الحركات عند الظهور ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== الأزرار ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  transition: all .25s ease; cursor: pointer; white-space: nowrap; line-height: 1;
}
.btn--primary { background: var(--primary); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--primary-d); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn--ghost:hover { background: var(--primary); color: var(--white); }
.btn--gold { background: var(--accent); color: var(--primary-d); }
.btn--gold:hover { background: var(--accent-d); color: var(--white); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ===== الشريط العلوي ===== */
.topbar { background: var(--primary-d); color: rgba(255,255,255,.85); font-size: .82rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 36px; flex-wrap: wrap; gap: 4px; }
.topbar__item--accent { color: var(--accent); font-weight: 700; }

/* ===== الهيدر ===== */
.header { position: sticky; top: 0; z-index: 100; background: rgba(251, 248, 241, .92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); transition: box-shadow .3s ease; }
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 16px; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--primary); }
.brand__mark { display: grid; place-items: center; color: var(--primary); }
.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__text strong { font-size: 1.12rem; font-weight: 800; color: var(--primary); }
.brand__text small { font-size: .76rem; color: var(--muted); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link { padding: 9px 14px; border-radius: 999px; font-weight: 600; font-size: .96rem; color: var(--text); transition: all .2s ease; }
.nav__link:hover { color: var(--primary); background: var(--primary-l); }
.nav__link.active { color: var(--primary); background: var(--primary-l); }
.nav__link--cta { background: var(--primary); color: var(--white); }
.nav__link--cta:hover { background: var(--primary-d); color: var(--white); }
.nav__link--cta.active { background: var(--primary-d); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--primary); border-radius: 2px; transition: all .3s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== الهيرو ===== */
.hero { padding: 64px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(circle at 85% 10%, rgba(201,162,75,.10), transparent 45%),
  radial-gradient(circle at 5% 90%, rgba(14,77,107,.08), transparent 40%); pointer-events: none; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; }

.eyebrow { display: inline-block; padding: 6px 16px; background: var(--accent-l); color: var(--accent-d); border-radius: 999px; font-weight: 700; font-size: .85rem; margin-bottom: 20px; }
.hero__title { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.15; color: var(--primary); margin-bottom: 18px; }
.hero__lead { font-size: 1.12rem; color: var(--muted); max-width: 540px; margin-bottom: 28px; }

.hero__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 30px; max-width: 480px; }
.hero__stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; text-align: center; box-shadow: var(--shadow-sm); }
.hero__stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1.2; }
.hero__stat span { font-size: .82rem; color: var(--muted); }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__media { position: relative; }
.hero__frame { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); border: 6px solid var(--white); }
.hero__frame img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.hero__frame::after { content: ""; position: absolute; inset: 0; border: 2px solid var(--accent); border-radius: 18px; pointer-events: none; opacity: .55; }
.hero__badge { position: absolute; bottom: -22px; inset-inline-start: -22px; background: var(--primary); color: var(--white); padding: 16px 22px; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.hero__badge strong { display: block; font-size: 1.45rem; font-weight: 800; color: var(--accent); }
.hero__badge span { font-size: .78rem; opacity: .9; }

/* ===== الأقسام العامة ===== */
.section { padding: 84px 0; }
.section--tint { background: var(--surface-2); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section__kicker { display: inline-block; color: var(--accent-d); font-weight: 700; font-size: .88rem; letter-spacing: .5px; margin-bottom: 10px; position: relative; padding-inline: 0; }
.section__kicker::before, .section__kicker::after { content: "—"; color: var(--accent); margin-inline: 8px; opacity: .6; }
.section__title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--primary); line-height: 1.25; }
.section__sub { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.section__kicker--light { color: var(--accent); }
.section__title--light { color: var(--white); }

/* ===== تخطيط split (نص + صورة) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split--reverse .split__media { order: -1; }
.split__text p { margin-bottom: 16px; color: var(--text); }
.split__text p strong { color: var(--primary); font-weight: 700; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; aspect-ratio: 4/3; border: 5px solid var(--white); }
.split__media figcaption { margin-top: 12px; text-align: center; color: var(--muted); font-size: .9rem; font-weight: 500; }

.ticks { margin-top: 8px; }
.ticks li { position: relative; padding-inline-start: 32px; margin-bottom: 12px; color: var(--text); }
.ticks li::before { content: "✓"; position: absolute; inset-inline-start: 0; top: 0; width: 22px; height: 22px; background: var(--accent-l); color: var(--accent-d); border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 800; }

/* ===== بطاقات الإحصاء ===== */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; border-top: 3px solid var(--accent); }
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stat-card strong { display: block; font-size: 2.1rem; font-weight: 800; color: var(--primary); line-height: 1.1; margin-bottom: 8px; }
.stat-card span { color: var(--muted); font-size: .95rem; }

/* ===== من نحن ===== */
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 24px 0 18px; }
.about-cols h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 12px; font-weight: 700; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { background: var(--primary-l); color: var(--primary); padding: 6px 14px; border-radius: 999px; font-size: .86rem; font-weight: 600; }
.chairman { color: var(--muted); font-size: 1rem; }
.chairman strong { color: var(--primary); }

/* ===== شبكة بطاقات المميزات ===== */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cards-grid--two { grid-template-columns: 1fr 1fr; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; position: relative; overflow: hidden; }
.feature-card::before { content: ""; position: absolute; inset-block-start: 0; inset-inline-start: 0; width: 4px; height: 0; background: var(--accent); transition: height .3s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-card:hover::before { height: 100%; }
.feature-card h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 10px; font-weight: 700; }
.feature-card p { color: var(--muted); font-size: .95rem; line-height: 1.7; }

/* ===== الرؤية والرسالة ===== */
.vision-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 30px; box-shadow: var(--shadow-sm); text-align: center; position: relative; }
.vision-card__icon { font-size: 2rem; color: var(--accent); display: block; margin-bottom: 14px; }
.vision-card h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 14px; font-weight: 800; }
.vision-card p { color: var(--muted); }

/* ===== الأهداف ===== */
.objectives { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.objective { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform .25s ease; }
.objective:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.objective span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: var(--accent); font-weight: 800; font-size: 1.2rem; margin-bottom: 14px; }
.objective p { color: var(--muted); font-size: .95rem; }

/* ===== المكونات ===== */
.components-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.component-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 20px; text-align: center; box-shadow: var(--shadow-sm); transition: all .25s ease; }
.component-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent); }
.component-card__icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 18px; background: var(--primary-l); color: var(--primary); transition: all .25s ease; }
.component-card:hover .component-card__icon { background: var(--primary); color: var(--accent); }
.component-card__icon svg { width: 32px; height: 32px; }
.component-card h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 8px; font-weight: 700; }
.component-card p { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ===== المعرض ===== */
.gallery { columns: 3; column-gap: 18px; }
.gallery__item { break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; position: relative; box-shadow: var(--shadow-sm); background: var(--surface-2); }
.gallery__item img { width: 100%; display: block; transition: transform .5s ease; }
.gallery__item::after { content: "⤢"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--white); font-size: 1.6rem; background: rgba(14,77,107,.45); opacity: 0; transition: opacity .3s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item:hover::after { opacity: 1; }

/* ===== Timeline المراحل ===== */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 26px; inset-inline: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--primary)); opacity: .3; }
.phase { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); position: relative; z-index: 1; transition: transform .25s ease; }
.phase:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.phase__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.phase__num { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: var(--accent); font-weight: 800; font-size: 1.4rem; flex-shrink: 0; box-shadow: 0 0 0 6px var(--surface-2); }
.phase h3 { font-size: 1.1rem; color: var(--primary); font-weight: 700; line-height: 1.3; }
.phase p { color: var(--muted); font-size: .92rem; }

/* ===== الأثر الاقتصادي ===== */
.impact-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.impact-stat { background: var(--primary); color: var(--white); border-radius: var(--radius); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm); }
.impact-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--accent); margin-bottom: 6px; }
.impact-stat span { font-size: .9rem; opacity: .9; }
.impact-stat:nth-child(2) { background: var(--primary-d); }
.impact-stat:nth-child(3) { background: var(--accent); }
.impact-stat:nth-child(3) strong { color: var(--primary-d); }
.impact-stat:nth-child(4) { background: var(--accent-d); }
.impact-stat:nth-child(4) strong { color: var(--white); }

/* ===== العلاقات ===== */
.relations { max-width: 880px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); border-inline-start: 4px solid var(--accent); }
.relations p { margin-bottom: 18px; color: var(--text); }
.relations p:last-child { margin-bottom: 0; }
.relations strong { color: var(--primary); font-weight: 700; }

/* ===== الخاتمة ===== */
.conclusion { padding: 84px 0; }
.conclusion__card { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%); color: var(--white); border-radius: 24px; padding: 60px 48px; text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.conclusion__card::before { content: ""; position: absolute; top: -60px; inset-inline-end: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(201,162,75,.15); }
.conclusion__card::after { content: ""; position: absolute; bottom: -80px; inset-inline-start: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(201,162,75,.1); }
.conclusion__card .section__kicker { position: relative; }
.conclusion__card h2 { position: relative; margin-bottom: 18px; }
.conclusion__card p { position: relative; max-width: 760px; margin: 0 auto 28px; color: rgba(255,255,255,.92); font-size: 1.08rem; }
.conclusion__card .btn { position: relative; }

/* ===== التواصل ===== */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact__info { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); }
.contact__info h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 20px; font-weight: 800; }
.contact__list li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px dashed var(--border); }
.contact__list li:last-child { border-bottom: none; }
.contact__label { color: var(--muted); font-weight: 600; flex-shrink: 0; }
.contact__note { margin-top: 16px; font-size: .82rem; color: var(--accent-d); }

.contact__form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text); font-size: .95rem; }
.field input, .field textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); color: var(--text); transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,77,107,.12); }
.field textarea { resize: vertical; min-height: 110px; }
.form-status { margin-top: 14px; text-align: center; font-weight: 600; min-height: 1.2em; }
.form-status.success { color: #2a7a4a; }
.form-status.error { color: #b53030; }

/* ===== الفوتر ===== */
.footer { background: var(--primary-d); color: rgba(255,255,255,.85); padding-top: 50px; }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; padding-bottom: 32px; }
.footer__brand strong { display: block; font-size: 1.2rem; color: var(--white); margin-bottom: 6px; }
.footer__brand p { font-size: .92rem; opacity: .8; max-width: 360px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__nav a { color: rgba(255,255,255,.8); font-size: .95rem; transition: color .2s ease; }
.footer__nav a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; font-size: .85rem; text-align: center; color: rgba(255,255,255,.7); }

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(15, 35, 45, .94); display: none; place-items: center; padding: 30px; backdrop-filter: blur(4px); }
.lightbox.open { display: grid; }
.lightbox__figure { max-width: 90vw; max-height: 88vh; text-align: center; }
.lightbox__figure img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__figure figcaption { color: rgba(255,255,255,.85); margin-top: 14px; font-size: .95rem; }
.lightbox__close { position: absolute; top: 22px; inset-inline-end: 28px; color: var(--white); font-size: 2.6rem; line-height: 1; width: 48px; height: 48px; border-radius: 50%; transition: background .2s ease; }
.lightbox__close:hover { background: rgba(255,255,255,.15); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); font-size: 2.6rem; width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; transition: background .2s ease; }
.lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__nav--prev { inset-inline-start: 24px; }
.lightbox__nav--next { inset-inline-end: 24px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__media { max-width: 460px; margin: 0 auto; }
  .cards-grid, .components-grid, .objectives { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { columns: 3; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
}

@media (max-width: 860px) {
  .nav { position: fixed; inset: 0 0 0 auto; top: var(--header-h); width: 280px; max-width: 80vw; background: var(--surface); flex-direction: column; align-items: stretch; gap: 4px; padding: 20px; box-shadow: -8px 0 30px rgba(0,0,0,.1); transform: translateX(100%); transition: transform .3s ease; border-top: 1px solid var(--border); height: calc(100vh - var(--header-h)); overflow-y: auto; }
  .nav.open { transform: translateX(0); }
  .nav__link { padding: 14px 16px; border-radius: var(--radius-sm); }
  .nav-toggle { display: flex; }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
  .contact { grid-template-columns: 1fr; }
  .cards-grid, .components-grid, .objectives { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .about-cols { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding-inline: 18px; }
  .section { padding: 60px 0; }
  .hero { padding: 40px 0 64px; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero__badge { inset-inline-start: 0; bottom: -16px; padding: 12px 16px; }
  .hero__badge strong { font-size: 1.2rem; }
  .hero__actions .btn { flex: 1; }
  .cards-grid, .components-grid, .objectives, .stats-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .relations { padding: 26px 20px; }
  .conclusion__card { padding: 40px 24px; }
  .topbar__item:first-child { display: none; }
  .topbar__inner { justify-content: center; }
  .brand__text strong { font-size: 1rem; }
  .lightbox__nav { width: 44px; height: 44px; font-size: 2rem; }
  .lightbox__nav--prev { inset-inline-start: 8px; }
  .lightbox__nav--next { inset-inline-end: 8px; }
}
