/* ─────────────────────────────────────────────
   IMPORTS
───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─────────────────────────────────────────────
   ROOT VARIABLES
───────────────────────────────────────────── */
:root {
  --bg:          #f5f3ee;
  --bg-warm:     #ede9e1;
  --surface:     #ffffff;
  --surface-2:   #f9f7f3;
  --ink:         #0e1117;
  --ink-soft:    #3d4350;
  --ink-light:   #7a8091;
  --navy:        #0d1b2e;
  --navy-mid:    #162338;
  --gold:        #b8902e;
  --gold-light:  #d4aa55;
  --gold-muted:  rgba(184,144,46,0.15);
  --border:      #e0dbd0;
  --border-dark: rgba(255,255,255,0.08);
  --radius:      4px;
  --radius-lg:   10px;
  --shadow-sm:   0 2px 12px rgba(14,17,23,0.06);
  --shadow-md:   0 8px 40px rgba(14,17,23,0.10);
  --shadow-lg:   0 20px 60px rgba(14,17,23,0.14);
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width:   1240px;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle grain overlay for depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

section { padding: 8rem 2rem; }

/* ─────────────────────────────────────────────
   CONTAINERS
───────────────────────────────────────────── */
.hero-inner,
.about-grid,
.services-wrapper,
.formation-wrapper,
.team-wrapper,
.contact-wrapper,
.nav-container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
}

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 243, 238, 0.88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: color 0.2s;
}

.logo span { color: var(--gold); }
.logo:hover { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding: 0 2rem;
}

/* Decorative background elements */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,144,46,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(22,35,56,0.9) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, rgba(184,144,46,0.04) 0%, transparent 60%);
  border-left: 1px solid rgba(184,144,46,0.1);
  pointer-events: none;
}

/* Decorative line art */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(184,144,46,0.35);
  border-radius: 2px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  background: rgba(184,144,46,0.05);
}

.hero-badge::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 600;
  line-height: 1.06;
  color: #f0ede6;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-qual {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-qual::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.hero p {
  max-width: 600px;
  font-size: 1rem;
  color: rgba(240,237,230,0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(240,237,230,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.85); }
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s;
  background: rgba(255,255,255,0.08);
}

.btn:hover::before { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(184,144,46,0.35);
}

.btn-gold:hover {
  background: #a07e28;
  box-shadow: 0 6px 28px rgba(184,144,46,0.45);
  transform: translateY(-1px);
}

.btn-gold:active { transform: translateY(0); }

.btn-outline {
  border: 1px solid rgba(240,237,230,0.25);
  color: rgba(240,237,230,0.8);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Light variant (for non-hero sections) */
.btn-outline-dark {
  border: 1px solid var(--border);
  color: var(--ink-soft);
  background: transparent;
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─────────────────────────────────────────────
   SECTION COMMON
───────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--ink);
}

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.section-intro {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
#about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.about-description {
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2.25rem;
  font-size: 1.0125rem;
}

.about-card {
  background: var(--navy);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: #f0ede6;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.about-card > p {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.about-degree {
  margin-top: 0.5rem;
  color: rgba(240,237,230,0.45) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.04em;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

.stat {
  padding: 1.25rem 1rem;
  background: rgba(22,35,56,0.6);
  text-align: center;
  transition: background 0.2s;
}

.stat:hover {
  background: rgba(184,144,46,0.08);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.4);
}

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
#services {
  background: var(--bg-warm);
}

.services-wrapper { text-align: left; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184,144,46,0.2);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--gold-muted);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s var(--ease);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-4deg);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: var(--ink);
}

.service-card p {
  color: var(--ink-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ─────────────────────────────────────────────
   FORMATION
───────────────────────────────────────────── */
#formation {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#formation::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,144,46,0.06) 0%, transparent 70%);
  pointer-events: none;
}

#formation .section-title { color: #f0ede6; }

#formation .section-intro  { color: rgba(240,237,230,0.55); }

.formation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.formation-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: #f0ede6;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.formation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.formation-card:hover {
  background: rgba(184,144,46,0.06);
  border-color: rgba(184,144,46,0.2);
  transform: translateY(-4px);
}

.formation-card:hover::before { opacity: 1; }

.formation-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.formation-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #f0ede6;
}

.formation-card p {
  color: rgba(240,237,230,0.5);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   TEAM
───────────────────────────────────────────── */
#team {
  background: var(--bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.team-photo-wrap {
  position: relative;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s var(--ease);
  filter: grayscale(15%);
}

.team-card:hover .team-photo {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.team-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(13,27,46,0.5), transparent);
}

.team-info {
  padding: 1.75rem;
  border-top: 3px solid transparent;
  transition: border-color 0.3s;
}

.team-card:hover .team-info {
  border-top-color: var(--gold);
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.team-role {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.team-qual {
  color: var(--ink-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.team-phone {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
#contact {
  background: var(--bg-warm);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-details,
.contact-map {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-map h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.contact-map > p {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-light);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.contact-value {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hours-item {
  padding: 1.25rem;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.hours-period {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.hours-time {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: #f0ede6;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.footer-logo span { color: var(--gold); }

footer > p {
  color: rgba(240,237,230,0.4);
  font-size: 0.875rem;
  font-weight: 300;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.7;
}

.footer-copy {
  margin-top: 1.5rem;
  color: rgba(240,237,230,0.25) !important;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.services-grid    .service-card,
.formation-cards  .formation-card,
.team-grid        .team-card {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}

.services-grid.visible    .service-card,
.formation-cards.visible  .formation-card,
.team-grid.visible        .team-card {
  opacity: 1;
  transform: translateY(0);
}

/* nth-child delays */
.service-card:nth-child(1),
.formation-card:nth-child(1),
.team-card:nth-child(1)    { transition-delay: 0.05s; }

.service-card:nth-child(2),
.formation-card:nth-child(2),
.team-card:nth-child(2)    { transition-delay: 0.12s; }

.service-card:nth-child(3),
.formation-card:nth-child(3),
.team-card:nth-child(3)    { transition-delay: 0.19s; }

.service-card:nth-child(4),
.formation-card:nth-child(4) { transition-delay: 0.26s; }

.service-card:nth-child(n+5)  { transition-delay: 0.33s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid   { gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 760px) {
  section { padding: 5.5rem 1.25rem; }

  .nav-links    { display: none; }
  .mobile-toggle { display: block; }

  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero p   { font-size: 0.9375rem; }

  .hero-scroll { display: none; }

  .about-stats  { grid-template-columns: repeat(2, 1fr); }
  .hours-grid   { grid-template-columns: 1fr; }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn { text-align: center; }

  .about-card { padding: 2rem 1.5rem; }

  .contact-details,
  .contact-map { padding: 1.75rem 1.5rem; }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero-badge { font-size: 0.65rem; }
}

/* ─────────────────────────────────────────────
   MOBILE NAV (open state)
───────────────────────────────────────────── */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(245,243,238,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.nav-links.open a {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────
   SELECTION & FOCUS
───────────────────────────────────────────── */
::selection {
  background: rgba(184,144,46,0.2);
  color: var(--ink);
}

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