/* ─────────────────────────────────────────────
   Moncef Elkorchi · v2 — premium freeflow design
   ───────────────────────────────────────────── */

:root {
  /* palette */
  --ink-0: #03070f;
  --ink-1: #060d1c;
  --ink-2: #0a172e;
  --ink-3: #122642;
  --gold-1: #f5d68d;
  --gold-2: #d4a24c;
  --gold-3: #a47527;
  --emerald: #34c4a1;
  --blue: #6ba8ff;
  --red: #ff7a50;
  --white: #ffffff;
  --soft: #cfdbe9;
  --muted: #8aa0bb;

  /* design tokens */
  --container: 1180px;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-sm: 0 4px 14px -4px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 40px -12px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 40px 80px -20px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 24px 50px -14px rgba(212, 162, 76, 0.45);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
  --gold-border: rgba(212, 162, 76, 0.32);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* fonts */
  --font-display: "Tajawal", "Cairo", system-ui, sans-serif;
  --font-body: "Cairo", "Tajawal", system-ui, sans-serif;
}

* { box-sizing: border-box; }
*::selection { background: var(--gold-2); color: var(--ink-0); }

html { scroll-behavior: smooth; background: var(--ink-0); }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  background: var(--ink-1);
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.2;
}

p { margin: 0; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* ─── Aurora background ─── */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.aurora::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: drift 22s ease-in-out infinite;
}

.orb-gold {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.7), transparent 70%);
  top: -200px; right: -150px;
}

.orb-blue {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(107, 168, 255, 0.55), transparent 70%);
  top: 30%; left: -180px;
  animation-delay: -7s;
}

.orb-emerald {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(52, 196, 161, 0.35), transparent 70%);
  bottom: -150px; right: 20%;
  animation-delay: -14s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -50px) scale(1.08); }
  66%      { transform: translate(-30px, 30px) scale(0.95); }
}

/* ─── Nav ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.9rem 0;
  background: rgba(6, 13, 28, 0.6);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  background: rgba(6, 13, 28, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  direction: ltr;
}

.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: none;
  gap: 1.6rem;
  direction: rtl;
}

.nav-links a {
  color: var(--soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.18s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-3));
  transition: width 0.25s var(--ease);
}

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

@media (min-width: 880px) {
  .nav-links { display: flex; }
}

/* ─── Buttons ─── */
.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2) 50%, var(--gold-3));
  color: var(--ink-0);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  overflow: hidden;
  transition: transform 0.18s var(--ease), box-shadow 0.22s var(--ease);
  box-shadow: 0 6px 20px -6px rgba(212, 162, 76, 0.55);
}

.btn-cta svg { transition: transform 0.22s var(--ease); }

.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}

.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-cta:hover::before { transform: translateX(100%); }
.btn-cta:hover svg { transform: translateX(-3px); }

.btn-cta-lg {
  padding: 1.1rem 2rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.6rem;
  color: var(--soft);
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-ghost:hover {
  background: var(--glass-strong);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ─── HERO ─── */
.hero {
  padding: clamp(2.5rem, 8vw, 5rem) 0 clamp(3rem, 8vw, 5rem);
  position: relative;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.3rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(52, 196, 161, 0.2);
  animation: liveDot 1.6s ease-in-out infinite;
}

@keyframes liveDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(52, 196, 161, 0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(52, 196, 161, 0); }
}

.hero-title {
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.grad {
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 50%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grad-red {
  background: linear-gradient(135deg, #ffb18f, #ff7a50 60%, #d44a1c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  color: var(--soft);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  max-width: 56ch;
  margin: 0 0 1rem;
}

.hero-sub strong {
  color: var(--white);
  background: linear-gradient(transparent 60%, rgba(212, 162, 76, 0.32) 60%);
  padding: 0 0.2em;
  font-weight: 700;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.trust-row {
  list-style: none;
  padding: 1.6rem 0 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(1.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--glass-border);
  width: 100%;
  max-width: 720px;
  justify-content: center;
}

.trust-row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
}

.trust-row strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.trust-row span {
  color: var(--gold-2);
  font-size: 1.1rem;
  font-weight: 700;
  margin-inline-start: 0.15rem;
}

.trust-row small {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.2rem;
}

/* ─── Hero media (big centered video) ─── */
.hero-media {
  position: relative;
  width: 100%;
  max-width: 1020px;
  margin: 1rem auto 0.6rem;
  aspect-ratio: 16 / 9;
}

.video-card {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-lg), 0 0 90px rgba(212, 162, 76, 0.22);
  background: var(--ink-3);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 120px rgba(212, 162, 76, 0.32);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.floating-badge {
  position: absolute;
  background: rgba(10, 23, 46, 0.85);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.badge-rating {
  bottom: -22px;
  right: clamp(-12px, 2vw, 24px);
  padding: 0.6rem 0.9rem;
}

.badge-rating img { height: 28px; width: auto; }

.badge-clients {
  top: -22px;
  left: clamp(-12px, 2vw, 24px);
  animation-delay: -2.5s;
}

@media (max-width: 560px) {
  .floating-badge { display: none; }
}

.badge-clients strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-1);
  line-height: 1;
}

.badge-clients small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.badge-clients .pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(52, 196, 161, 0.6);
  animation: pulseDot 1.6s infinite;
}

@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(52, 196, 161, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(52, 196, 161, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 196, 161, 0); }
}

/* ─── Featured / marquee ─── */
.featured {
  padding: 2.4rem 0;
  border-block: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.015);
}

.featured-label {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.marquee {
  overflow: hidden;
  width: min(100%, 560px);
  margin-inline: auto;
  mask-image: linear-gradient(90deg, transparent 0%, black 14%, black 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 14%, black 86%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--soft);
  opacity: 0.7;
}

.marquee-logo {
  height: 70px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 18px;
  margin-inline-end: clamp(2rem, 5vw, 3.5rem);
  flex-shrink: 0;
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.marquee-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px -6px rgba(212, 162, 76, 0.4);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}

/* ─── Section heads ─── */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
  display: grid;
  gap: 0.8rem;
  justify-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  background: rgba(212, 162, 76, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  color: var(--gold-1);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  max-width: 22ch;
}

.section-head p {
  color: var(--soft);
  max-width: 56ch;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
}

/* ─── Process ─── */
.process { padding: clamp(3rem, 8vw, 6rem) 0; }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 820px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
  position: relative;
  padding: 2rem 1.6rem 1.8rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(212, 162, 76, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
}

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

.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
  position: relative;
}

.step h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  position: relative;
}

.step p {
  color: var(--soft);
  font-size: 0.98rem;
  line-height: 1.85;
  position: relative;
}

/* ─── About ─── */
.about { padding: clamp(3rem, 8vw, 6rem) 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 920px) {
  .about-grid { grid-template-columns: 0.95fr 1.15fr; }
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-lg);
}

.about-image-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 70% 30%, rgba(212, 162, 76, 0.25), transparent 60%);
  z-index: -1;
  filter: blur(40px);
}

.about-content .kicker { margin-bottom: 0.8rem; }

.about-content h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.about-content p {
  color: var(--soft);
  font-size: 1.05rem;
  line-height: 1.95;
  margin-bottom: 1rem;
}

.about-content p strong { color: var(--gold-1); font-weight: 700; }

.credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.cred {
  padding: 1.1rem 0.8rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.25s var(--ease), border-color 0.25s ease;
}

.cred:hover { transform: translateY(-3px); border-color: var(--gold-border); }

.cred-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cred-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.2rem;
  display: block;
}

/* ─── Testimonials ─── */
.testimonials {
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.rating-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--soft);
  font-size: 0.95rem;
}

.rating-line img { height: 24px; }

.masonry {
  column-count: 1;
  column-gap: 1.1rem;
}

@media (min-width: 640px) { .masonry { column-count: 2; } }
@media (min-width: 980px) { .masonry { column-count: 3; } }

.t-card {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.t-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
}

.t-card img { width: 100%; display: block; }

/* ─── FAQ ─── */
.faq { padding: clamp(3rem, 8vw, 6rem) 0; }

.accordion {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
}

.accordion details {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.accordion details[open] {
  border-color: var(--gold-border);
  background: rgba(212, 162, 76, 0.04);
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s ease;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-2);
  transition: transform 0.25s var(--ease);
}

.accordion details[open] summary::after { content: "−"; transform: rotate(180deg); }

.accordion details p {
  padding: 0 1.3rem 1.2rem;
  color: var(--soft);
  line-height: 1.9;
  margin: 0;
}

/* ─── Booking ─── */
.book-section { padding: clamp(3rem, 8vw, 6rem) 0; }

.book-head { margin-bottom: 2rem; }

.calendly-card {
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 0.4rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.calendly-inline-widget {
  border-radius: calc(var(--radius-lg) - 4px);
  min-width: 320px;
  width: 100%;
  height: 1180px;
}

@media (min-width: 720px) {
  .calendly-inline-widget { height: 820px; }
}

/* ─── Mobile sticky CTA ─── */
.mobile-cta {
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.4rem;
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 50%, var(--gold-3) 100%);
  color: var(--ink-0);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 18px 36px -10px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transition: transform 0.18s var(--ease);
}

.mobile-cta:active { transform: scale(0.96); }

@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 84px; }
  .nav-cta { display: none; }
}

/* ─── Footer ─── */
.footer {
  margin-top: 2rem;
  padding-top: 3rem;
  background: rgba(3, 7, 15, 0.65);
  border-top: 1px solid var(--glass-border);
  position: relative;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1.3fr 1fr 1fr; }
}

.footer-brand img { height: 38px; margin-bottom: 0.9rem; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 32ch; }

.footer nav h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-1);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer nav a {
  display: block;
  color: var(--soft);
  text-decoration: none;
  padding: 0.3rem 0;
  font-size: 0.95rem;
  transition: color 0.18s ease;
}

.footer nav a:hover { color: var(--gold-1); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--muted);
}

@media (min-width: 720px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.in { opacity: 1; transform: none; }

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

/* ─── Focus states ─── */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold-1);
  outline-offset: 3px;
  border-radius: 6px;
}
