/* ================================================================
   LLAHH — PREMIUM REDESIGN
   Aesthetic: Luxury editorial NGO — deep midnight + warm gold
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ================================================================ */

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

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --ink:        #2c3445;
  --ink-2:      #3a4260;
  --ink-3:      #455074;
  --silver:     #f5f4f0;
  --silver-2:   #ede9e3;
  --silver-3:   #d6cfc5;
  --gold:       #c9a84c;
  --gold-light: #e8cc80;
  --gold-soft:  rgba(201,168,76,0.12);
  --teal:       #2eb8a0;
  --teal-soft:  rgba(46,184,160,0.12);
  --crimson:    #c0392b;
  --text:       #5a6073;
  --muted:      #7b8394;
  --surface:    #ffffff;
  --border:     #e8e4de;
  --shadow-sm:  0 2px 8px rgba(131, 145, 222, 0.06);
  --shadow-md:  0 8px 32px rgba(13,15,26,0.10);
  --shadow-lg:  0 24px 60px rgba(13,15,26,0.14);
  --shadow-xl:  0 40px 80px rgba(13,15,26,0.18);
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--silver);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
.font-heading, h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-feature-settings: "liga" 1, "kern" 1;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.1; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.2; }

/* ── UTILITY ─────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--gold), #f0c060 40%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-warm {
  background: linear-gradient(135deg, var(--gold), #e07b3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-green {
  background: linear-gradient(135deg, var(--teal), #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-section {
  scroll-margin-top: 110px;
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
#navbar {
  background: rgba(13,15,26,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: border-color var(--transition), box-shadow var(--transition);
}

#navbar.shadow-md {
  border-bottom-color: rgba(201,168,76,0.3);
  box-shadow: 0 8px 40px rgba(13,15,26,0.4);
}

/* Top info bar */
#navbar .bg-gray-900 {
  background: var(--ink) !important;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* Nav links */
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65) !important;
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: width var(--transition), left var(--transition);
  transform: none;
}

.nav-link:hover {
  color: rgba(255,255,255,0.95) !important;
}

.nav-link.active,
.nav-link:hover {
  color: #fff !important;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: calc(100% - 1.75rem);
  left: 0.875rem;
}

/* Mobile links */
.mobile-link {
  color: rgba(255,255,255,0.7) !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition);
}
.mobile-link:hover {
  background: rgba(201,168,76,0.1) !important;
  color: var(--gold-light) !important;
}
.mobile-link.active {
  color: var(--gold-light) !important;
  background: rgba(201,168,76,0.08) !important;
}

/* Override dark nav background for mobile menu */
#mobileMenu {
  background: var(--ink-2);
  border-top: 1px solid rgba(201,168,76,0.1);
}

/* Donate button */
.btn-accent {
  background: linear-gradient(135deg, var(--gold), #b8892e) !important;
  color: var(--ink) !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition) !important;
  border: none !important;
}
.btn-accent:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(201,168,76,0.45) !important;
  background: linear-gradient(135deg, #d4b054, var(--gold)) !important;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero-gradient {
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(46,184,160,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 75% 60%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #060810 0%, #0d1525 35%, #0f1e1a 70%, #080d12 100%);
  position: relative;
}

.hero-gradient-2 {
  background: linear-gradient(160deg, #060810 0%, #0d1525 35%, #0f1e1a 70%, #080d12 100%);
  position: relative;
}

/* Dot grid texture */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

/* Hero text overrides */
.hero-gradient .text-yellow-300 {
  color: var(--gold-light) !important;
  text-shadow: 0 0 60px rgba(201,168,76,0.35);
}

/* Glass card */
.glass-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
}

/* Card radius helper for common card components */
.card-lift,
.glass-card,
.project-card,
.campaign-card,
.donate-card,
.gallery-item,
.team-card {
  border-radius: var(--radius);
}

/* ── WAVE DIVIDER ─────────────────────────────────────────────── */
.wave-divider {
  position: relative;
}
.wave-divider::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70'%3E%3Cpath fill='%23f5f4f0' d='M0,35 C240,70 480,0 720,35 C960,70 1200,10 1440,35 L1440,70 L0,70 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  pointer-events: none;
}

/* ── SECTION BADGES ───────────────────────────────────────────── */
/* Override the colorful inline badges with a refined gold version */
[class*="bg-purple-100"] .text-purple-600,
[class*="bg-orange-100"] .text-orange-600,
[class*="bg-blue-50"] .text-blue-600,
[class*="bg-blue-100"] .text-blue-600 {
  letter-spacing: 0.1em;
}

/* ── STAT CARDS ───────────────────────────────────────────────── */
.stat-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity var(--transition);
}
.stat-card:nth-child(1)::before { background: linear-gradient(90deg, var(--teal), #3b82f6); }
.stat-card:nth-child(2)::before { background: linear-gradient(90deg, var(--gold), #e07b3a); }
.stat-card:nth-child(3)::before { background: linear-gradient(90deg, var(--teal), #059669); }
.stat-card:nth-child(4)::before { background: linear-gradient(90deg, #9333ea, var(--gold)); }

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}
.stat-card:hover::before {
  opacity: 1;
}

/* ── SECTION BACKGROUNDS ─────────────────────────────────────── */
.bg-white   { background: var(--surface) !important; }
.bg-gray-50 { background: var(--silver) !important; }

/* ── CARDS ────────────────────────────────────────────────────── */
.card-lift {
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.card-lift:hover {
  transform: translateY(-8px) scale(1.005);
  box-shadow: var(--shadow-xl);
  border-color: rgba(201,168,76,0.25);
}

.project-card-img {
  overflow: hidden;
}
.project-card-img img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-lift:hover .project-card-img img {
  transform: scale(1.08);
}

/* ── ROUNDED CARDS ────────────────────────────────────────────── */
.bg-white.rounded-3xl {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.bg-white.rounded-3xl:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.2);
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(201,168,76,0.3);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-soft), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.25);
  border-color: rgba(201,168,76,0.6);
}
.btn-primary:hover::after { opacity: 1; }

.btn-success {
  background: linear-gradient(135deg, var(--teal), #1a9e89);
  transition: all var(--transition);
}
.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(46,184,160,0.4);
}

/* ── ICON BLOBS ───────────────────────────────────────────────── */
.icon-blob {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-blob::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 40% 60% 55% 45%/50% 45% 55% 50%;
  opacity: 0.12;
  animation: blobMorph 7s ease-in-out infinite;
}
.icon-blob-primary::before  { background: var(--teal); }
.icon-blob-accent::before   { background: var(--gold); }
.icon-blob-green::before    { background: var(--teal); }
.icon-blob-purple::before   { background: #9333ea; }

/* ── FILTERS ──────────────────────────────────────────────────── */
.filter-btn, .gallery-filter {
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: var(--surface);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  transition: all 0.25s;
}
.filter-btn:hover, .gallery-filter:hover {
  border-color: var(--gold);
  color: var(--ink);
}
.filter-btn.active, .gallery-filter.active {
  background: var(--ink);
  color: var(--gold-light);
  border-color: var(--ink);
  box-shadow: 0 6px 20px rgba(13,15,26,0.25);
}

/* ── PROGRESS BARS ────────────────────────────────────────────── */
.progress-bar {
  transition: width 1.5s cubic-bezier(.22, .68, 0, 1.2);
}

/* ── GALLERY ──────────────────────────────────────────────────── */
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item img {
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

.masonry {
  columns: 3;
  column-gap: 16px;
}
@media(max-width:768px) { .masonry { columns: 2; } }
@media(max-width:480px) { .masonry { columns: 1; } }
.masonry > * {
  break-inside: avoid;
  margin-bottom: 16px;
}

/* ── DONATE CARDS ─────────────────────────────────────────────── */
.donate-card {
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid var(--border);
  border-radius: var(--radius);
}
.donate-card.selected {
  border-color: var(--gold);
  background: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 340px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  line-height: 1;
  color: var(--gold-soft);
  font-family: 'Cormorant Garamond', Georgia, serif;
  pointer-events: none;
  color: rgba(201,168,76,0.2);
}

@media(max-width:640px) { .testimonial-card { flex: 0 0 90vw; } }

/* ── IMPACT SECTION ───────────────────────────────────────────── */
.impact-bg {
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(46,184,160,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
    linear-gradient(135deg, #070910 0%, #0e1826 50%, #0a1810 100%);
  position: relative;
  overflow: hidden;
}
.impact-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ── MOBILE MENU ─────────────────────────────────────────────── */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}
.mobile-menu.open {
  max-height: 600px;
}

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all var(--transition);
  cursor: pointer;
  animation: whatsappPulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}

.whatsapp-tooltip {
  position: fixed;
  bottom: 92px;
  left: 24px;
  z-index: 999;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: all 0.3s cubic-bezier(.22, .68, 0, 1.2);
  pointer-events: none;
}
.whatsapp-tooltip.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 28px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
}

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 40;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(.22, .68, 0, 1.2);
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-3px) scale(1.08);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

/* ── MARQUEE ──────────────────────────────────────────────────── */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee 32s linear infinite;
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up   { animation: fadeInUp 0.7s ease forwards; }
.fade-in-up-1 { animation: fadeInUp 0.7s 0.15s ease forwards; opacity: 0; }
.fade-in-up-2 { animation: fadeInUp 0.7s 0.30s ease forwards; opacity: 0; }
.fade-in-up-3 { animation: fadeInUp 0.7s 0.45s ease forwards; opacity: 0; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.float-anim       { animation: float 5s ease-in-out infinite; }
.float-anim-delay { animation: float 5s ease-in-out 1.2s infinite; }

@keyframes blobMorph {
  0%, 100% { border-radius: 40% 60% 55% 45%/50% 45% 55% 50%; }
  33%       { border-radius: 55% 45% 40% 60%/45% 55% 50% 50%; }
  66%       { border-radius: 50% 50% 60% 40%/60% 40% 55% 45%; }
}

@keyframes whatsappPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes shimmer {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(220%) skewX(-15deg); }
}

/* ── SHIMMER / AD CARDS ──────────────────────────────────────── */
.ad-card {
  position: relative;
  overflow: hidden;
}
.ad-card::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-15deg);
  animation: shimmer 3.5s ease-in-out infinite;
}

/* ── LIVE DOT ────────────────────────────────────────────────── */
.live-dot { animation: livePulse 1.5s ease-in-out infinite; }
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── COUNTERS ────────────────────────────────────────────────── */
.counter-value { font-variant-numeric: tabular-nums; }

/* ── SECTION HEADING BADGES ───────────────────────────────────── */
/* Refined gold pill badges to replace the colorful ones */
.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 99px;
  padding: 0.375rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8852e;
}

/* ── DIVIDER LINE ────────────────────────────────────────────── */
.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
  border: none;
  margin: 0;
}

/* ── PERFORMANCE ─────────────────────────────────────────────── */
img[loading="lazy"] {
  transition: opacity 0.4s ease;
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
h2:not(.no-reveal) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left {
  transform: translateX(-32px);
}
.reveal-right {
  transform: translateX(32px);
}
.reveal-scale {
  transform: scale(0.94);
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
h2:not(.no-reveal).visible {
  opacity: 1;
  transform: none;
}

.card-lift, .whatsapp-float, .back-to-top, .animate-fade-in {
  will-change: transform;
}

@media (max-width: 768px) {
  img:not([alt*="Logo"]):not([alt*="LLAHH"]):not([src*="logo"]) {
    width: 100%;
    height: auto !important;
    aspect-ratio: 2 / 3 !important;
    object-fit: cover;
  }
}

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

/* ── SCROLLBAR ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--silver); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), var(--teal));
  border-radius: 3px;
}

/* ── SELECTION ────────────────────────────────────────────────── */
::selection {
  background: rgba(201,168,76,0.25);
  color: var(--ink);
}

/* ── FOCUS RING ───────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── FORM INPUTS ─────────────────────────────────────────────── */
input, textarea, select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  outline: none;
}

