/* ============================================================
   KHAYMAT SEFAR — style.css
   Tokens: dark #1A1209 · gold #E8A020 · cream #F5EDE0 · terracotta #8B4A2A
   Signature motif: "khayma corners" (tent-peg brackets) + Tassili diamond divider
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,500&family=Lato:wght@300;400;700;900&family=Amiri:wght@400;700&display=swap');

:root {
  color-scheme: dark;
  --c-dark: #1A1209;
  --c-dark-2: #221808;
  --c-dark-3: #2B1F0E;
  --c-gold: #E8A020;
  --c-gold-deep: #B8791C;
  --c-gold-soft: rgba(232, 160, 32, 0.16);
  --c-cream: #F5EDE0;
  --c-cream-dim: #DCD2BC;
  --c-terracotta: #8B4A2A;
  --c-white: #FFFFFF;

  --f-display: 'Playfair Display', serif;
  --f-body: 'Lato', sans-serif;
  --f-arabic: 'Amiri', serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 86px;
  --container: 1180px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--f-body);
  background: var(--c-dark);
  color: var(--c-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ---------- RTL / Arabic ---------- */
body.rtl { direction: rtl; }
body.rtl [data-fr] { font-family: var(--f-arabic); }
body.rtl .brand-word, body.rtl .price, body.rtl .dotted-row .price, body.rtl .lang-switch, body.rtl .price-big { font-family: var(--f-body); }
body.rtl .dotted-row { direction: rtl; }
body.rtl .hero-eyebrow, body.rtl .eyebrow { letter-spacing: 0.06em; }

/* ---------- Section heading / signature divider ---------- */
.section-head { text-align: center; margin-bottom: 56px; }
.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.section-head .title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 48px);
  color: var(--c-cream);
}
.apropos .section-head .title,
.section-head.on-cream .title { color: var(--c-dark); }

.motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 0;
  width: 130px;
}
.motif::before, .motif::after { content: ''; height: 1px; flex: 1; background: var(--c-gold); opacity: 0.55; }
.motif svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---------- Khayma corner brackets (signature) ---------- */
.khayma-corners { position: relative; }
.khayma-corners::before, .khayma-corners::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--c-gold);
  opacity: 0.7;
  transition: all 0.4s var(--ease);
  pointer-events: none;
}
.khayma-corners::before {
  top: -9px; left: -9px;
  border-right: none; border-bottom: none;
}
.khayma-corners::after {
  bottom: -9px; right: -9px;
  border-left: none; border-top: none;
}
.khayma-corners:hover::before, .khayma-corners:hover::after { width: 34px; height: 34px; opacity: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.35s var(--ease);
}
.btn-gold {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-deep));
  color: var(--c-dark);
  box-shadow: 0 4px 18px rgba(232, 160, 32, 0.28);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(232, 160, 32, 0.42); }
.btn-outline {
  border: 1.5px solid var(--c-gold);
  color: var(--c-gold);
  background: transparent;
}
.btn-outline:hover { background: var(--c-gold); color: var(--c-dark); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.45s var(--ease), backdrop-filter 0.45s var(--ease), box-shadow 0.45s var(--ease), height 0.35s var(--ease);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.navbar.scrolled {
  height: 72px;
  background: rgba(26, 18, 9, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(232, 160, 32, 0.12);
}
@supports not (backdrop-filter: blur(1px)) {
  .navbar.scrolled { background: rgba(20, 14, 7, 0.96); }
}

.brand-word {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--c-white);
  transition: color 0.4s var(--ease);
}
.navbar.scrolled .brand-word { color: var(--c-gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 6px 2px;
  transition: color 0.3s var(--ease);
}
.navbar:not(.scrolled) .nav-links a:not(:hover):not(.active) { color: #FFFFFF !important; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--c-gold);
  transition: right 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--c-gold); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.navbar.scrolled .nav-links a { color: var(--c-cream); }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color: var(--c-gold); }

.nav-right { display: flex; align-items: center; gap: 22px; }

.lang-switch { display: flex; align-items: center; gap: 4px; border: 1px solid rgba(255,255,255,0.45); border-radius: 999px; padding: 4px; }
.navbar.scrolled .lang-switch { border-color: rgba(232,160,32,0.4); }
.lang-switch button {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  padding: 5px 10px;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.navbar.scrolled .lang-switch button { color: #E8A020; }
.lang-switch button.active { background: #E8A020; color: #1A1209 !important; }

.nav-cta { padding: 10px 24px; font-size: 12.5px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1100;
}
.hamburger span { display: block; height: 2px; width: 100%; background: var(--c-white); border-radius: 2px; transition: all 0.35s var(--ease); }
.navbar.scrolled .hamburger span { background: var(--c-cream); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(10,6,2,0.42) 0%, rgba(10,6,2,0.30) 40%, rgba(10,6,2,0.58) 100%), url('image/hero-bg.jpg') center / cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(10,6,2,0) 0%, rgba(10,6,2,0.32) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; padding: 0 24px; }
.hero-eyebrow {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #E8A020 !important;
  margin-bottom: 22px;
}
.hero-title-1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 36px);
  color: #FFFFFF !important;
  letter-spacing: 0.06em;
}
.hero-title-2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 96px);
  line-height: 1.05;
  color: #E8A020 !important;
  text-shadow: 0 4px 40px rgba(232,160,32,0.25);
  margin: 4px 0 24px;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.80) !important;
  max-width: 460px;
  margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }

.delivery-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.delivery-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}
.delivery-badge:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); border-color: rgba(232,160,32,0.5); }
.delivery-badge svg { width: 22px; height: 22px; }
.delivery-badge span { font-size: 14px; font-weight: 700; color: var(--c-white); }

.scroll-indicator {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2;
}
.scroll-indicator span {
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,237,224,0.7);
}
.scroll-line { width: 1px; height: 36px; background: linear-gradient(180deg, var(--c-gold), transparent); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 50%;
  background: var(--c-gold);
  animation: scrollDrop 2.2s var(--ease) infinite;
}
@keyframes scrollDrop { 0% { top: -50%; } 60% { top: 100%; } 100% { top: 100%; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.hero-eyebrow.reveal, .hero-title-1.reveal, .hero-title-2.reveal, .hero-sub.reveal, .hero-actions.reveal, .delivery-row.reveal { transition-delay: var(--d, 0s); }

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section { background: var(--c-dark); padding: 120px 0; position: relative; }
.menu-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(232,160,32,0.06), transparent 45%), radial-gradient(circle at 85% 80%, rgba(139,74,42,0.08), transparent 45%);
  pointer-events: none;
}

.menu-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
}
.menu-tab {
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
  border: 1px solid rgba(232,160,32,0.28);
  border-radius: 999px;
  transition: all 0.35s var(--ease);
}
.menu-tab:hover { color: var(--c-gold); border-color: var(--c-gold); }
.menu-tab.active {
  background: var(--c-gold);
  color: var(--c-dark);
  border-color: var(--c-gold);
  box-shadow: 0 6px 20px rgba(232,160,32,0.3);
}

.menu-panel { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.menu-panel-inner { display: none; }
.menu-panel-inner.active { display: block; animation: fadeUp 0.55s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.menu-note { text-align: center; font-size: 13px; font-style: italic; color: var(--c-gold); opacity: 0.85; margin-bottom: 28px; }

.menu-list { display: grid; gap: 4px; }
.dotted-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 13px 6px;
  border-bottom: 1px solid rgba(245,237,224,0.08);
  transition: background 0.3s var(--ease);
}
.dotted-row:hover { background: rgba(232,160,32,0.05); }
.dotted-row .name {
  font-family: var(--f-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--c-cream);
  white-space: nowrap;
}
.dotted-row .leader {
  flex: 1;
  border-bottom: 1.5px dotted rgba(232,160,32,0.4);
  height: 0;
  transform: translateY(-5px);
}
.dotted-row .price {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-gold);
  white-space: nowrap;
}

.family-wrap { display: flex; justify-content: center; }
.family-card {
  width: 100%;
  max-width: 480px;
  text-align: center;
  padding: 48px 38px;
  border: 1.5px solid var(--c-gold);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(232,160,32,0.08), rgba(139,74,42,0.06));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.family-card .price-big {
  font-family: var(--f-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--c-gold);
  margin-bottom: 6px;
}
.family-card .price-big sup { font-size: 22px; }
.family-card .family-name { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-cream-dim); margin-bottom: 22px; }
.family-card .family-items { font-size: 16px; line-height: 1.9; color: var(--c-cream); }
.family-card .family-items b { color: var(--c-gold); font-weight: 700; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--c-dark-2); padding: 120px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  grid-template-rows: 230px 230px 250px;
  grid-template-areas:
    "img1 img2 img2"
    "img1 img3 img3"
    "img4 vid1 vid2";
  gap: 14px;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}
.g-item img, .g-item video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.g-item:hover img, .g-item:hover video { transform: scale(1.07); }
.g-item.area-1 { grid-area: img1; }
.g-item.area-2 { grid-area: img2; }
.g-item.area-3 { grid-area: img3; }
.g-item.area-4 { grid-area: img4; }
.g-item.area-v1 { grid-area: vid1; }
.g-item.area-v2 { grid-area: vid2; }

.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,18,9,0) 45%, rgba(26,18,9,0.88) 100%);
  display: flex; align-items: flex-end; padding: 18px;
}
.g-label {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-cream);
  letter-spacing: 0.02em;
  transform: translateY(130%);
  transition: transform 0.45s var(--ease);
}
.g-item:hover .g-label { transform: translateY(0); }

.g-play {
  position: absolute; top: 50%; left: 50%;
  width: 52px; height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(26,18,9,0.55);
  border: 1.5px solid var(--c-gold);
  display: flex; align-items: center; justify-content: center;
  opacity: 1;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.g-item:hover .g-play { opacity: 0; transform: translate(-50%,-50%) scale(0.7); }
.g-play svg { width: 18px; height: 18px; fill: var(--c-gold); }

/* ============================================================
   ABOUT
   ============================================================ */
.apropos { background: var(--c-cream); color: var(--c-dark); padding: 120px 0; }
.apropos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.apropos-img-wrap { position: relative; }
.apropos-img-wrap::before {
  content: '';
  position: absolute;
  top: -22px; left: -22px;
  width: 100%; height: 100%;
  border: 2px solid var(--c-gold);
  border-radius: 14px;
  z-index: 0;
}
.apropos-img-wrap img {
  position: relative; z-index: 1;
  border-radius: 14px;
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(26,18,9,0.18);
}
.apropos-text .eyebrow { color: var(--c-terracotta); }
.apropos-text .title { font-family: var(--f-display); font-weight: 700; font-size: clamp(30px, 4vw, 42px); color: var(--c-dark); margin-bottom: 18px; }
.apropos-text .motif { margin: 0 0 26px; justify-content: flex-start; width: 110px; }
.apropos-text .motif::before { display: none; }
.apropos-text p { font-size: 16px; color: #4a3f30; margin-bottom: 18px; max-width: 480px; }
.apropos-stats { display: flex; gap: 38px; margin-top: 34px; }
.apropos-stats .stat-num { font-family: var(--f-display); font-size: 30px; font-weight: 700; color: var(--c-terracotta); }
.apropos-stats .stat-label { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #6b5d47; margin-top: 4px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--c-dark); padding: 120px 0; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.contact-card {
  padding: 34px 26px;
  background: rgba(245,237,224,0.04);
  border: 1px solid rgba(232,160,32,0.22);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.contact-card:hover { transform: translateY(-6px); border-color: rgba(232,160,32,0.55); background: rgba(245,237,224,0.07); }
@supports not (backdrop-filter: blur(1px)) {
  .contact-card { background: rgba(34, 24, 8, 0.92); }
}
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-gold-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.contact-icon svg { width: 22px; height: 22px; stroke: var(--c-gold); }
.contact-card h3 { font-family: var(--f-display); font-size: 18px; font-weight: 700; color: var(--c-cream); margin-bottom: 10px; }
.contact-card p { font-size: 14.5px; color: var(--c-cream-dim); line-height: 1.65; }
.contact-card .small-note { font-size: 12.5px; color: var(--c-gold); margin-top: 6px; opacity: 0.85; }
.contact-card .map-btn { display: inline-flex; margin-top: 16px; padding: 9px 16px; font-size: 11px; letter-spacing: 0.02em; white-space: nowrap; }

.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(232,160,32,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.social-circle svg { width: 19px; height: 19px; fill: var(--c-cream); transition: fill 0.3s var(--ease); }
.social-circle.instagram:hover { background: linear-gradient(45deg,#833AB4,#C13584,#E1306C,#FD1D1D,#F77737); border-color: transparent; box-shadow: 0 6px 22px rgba(225,48,108,0.45); transform: scale(1.08); }
.social-circle.facebook:hover { background: #1877F2; border-color: transparent; box-shadow: 0 6px 22px rgba(24,119,242,0.45); transform: scale(1.08); }
.social-circle.tiktok:hover { background: #010101; border-color: transparent; box-shadow: 0 0 24px rgba(105,201,208,0.6); transform: scale(1.08); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--c-dark-2); padding: 64px 0 32px; text-align: center; border-top: 1px solid rgba(232,160,32,0.12); }
.footer .brand-word { font-size: 28px; display: block; margin-bottom: 10px; }
.footer .tagline { font-style: italic; color: var(--c-cream-dim); font-size: 14.5px; margin-bottom: 26px; }
.footer .social-row { justify-content: center; margin: 0 0 30px; }
.footer .copyright { font-size: 12.5px; color: rgba(245,237,224,0.45); padding-top: 26px; border-top: 1px solid rgba(245,237,224,0.08); }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .apropos-grid { grid-template-columns: 1fr; gap: 50px; }
  .apropos-img-wrap img { height: 360px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px 200px; grid-template-areas: "img1 img2" "img1 img3" "img4 vid1" "vid2 vid2"; }
}

@media (max-width: 768px) {
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: 78%; max-width: 320px;
    background: rgba(20,14,7,0.97); backdrop-filter: blur(18px);
    flex-direction: column; justify-content: center; gap: 30px;
    transform: translateX(100%); transition: transform 0.45s var(--ease);
    z-index: 1050;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--c-cream) !important; font-size: 16px; }
  .nav-right .lang-switch { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  body.nav-open { overflow: hidden; }

  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 200px); grid-template-areas: "img1" "img2" "img3" "img4" "vid1" "vid2"; }
  .menu-tabs { gap: 8px; }
  .menu-tab { padding: 9px 16px; font-size: 12px; }
  .dotted-row .name { font-size: 14.5px; }
  .hero-actions, .delivery-row { gap: 10px; }
  .delivery-badge { padding: 8px 14px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .menu-section, .gallery-section, .apropos, .contact-section { padding: 84px 0; }
  .family-card { padding: 36px 22px; }
  .apropos-stats { flex-wrap: wrap; gap: 26px; }
}

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible, .menu-tab:focus-visible, .social-circle:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
