/* ==========================================================================
   The Intellectual Summit — Design System
   Brand: Navy #1B2A4A · Gold #C9A44C · Cream #F5F1E6 · Paper #FBFAF5
   ========================================================================== */

:root {
  /* Brand */
  --navy: #1b2a4a;
  --navy-deep: #101c33;
  --navy-soft: #33456b;
  --gold: #c9a44c;
  --gold-bright: #e6bc5c;
  --gold-soft: #f3e6c6;
  --cream: #f5f1e6;
  --paper: #fbfaf5;
  --white: #ffffff;

  /* Bright complementary accents (used sparingly) */
  --accent: #2f5bd7;
  --accent-soft: #e7edfd;
  --teal: #0f9b8e;
  --teal-soft: #e2f5f2;

  /* Text */
  --ink: #16202f;
  --body: #4a5568;
  --muted: #7b8697;
  --line: #e7e3d7;

  /* System */
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(16, 28, 51, 0.06);
  --shadow: 0 12px 30px -14px rgba(16, 28, 51, 0.18);
  --shadow-lg: 0 30px 60px -28px rgba(16, 28, 51, 0.32);
  --shadow-gold: 0 14px 30px -14px rgba(201, 164, 76, 0.55);
  --container: 1180px;
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-display: "Fraunces", "Georgia", serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* -------------------------------------------------- reset & base */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.6em;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}

h1 { font-size: clamp(2.5rem, 6.2vw, 4.4rem); }
h2 { font-size: clamp(1.95rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

h1 em, h2 em, h3 em {
  font-style: italic;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  color: var(--gold);
}

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--navy); }

ul { margin: 0; padding: 0; list-style: none; }

strong { color: var(--ink); font-weight: 700; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: var(--white); }

/* -------------------------------------------------- layout helpers */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container-narrow { max-width: 800px; }

.section { padding-block: var(--section-y); position: relative; }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-navy {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(255, 255, 255, 0.78);
}
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy a { color: var(--gold-bright); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}
.section-navy .eyebrow { color: var(--gold-bright); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--body); line-height: 1.65; }
.section-navy .lead { color: rgba(255, 255, 255, 0.8); }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* -------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  white-space: nowrap;
  min-height: 52px;
  padding: 0.9rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { color: var(--navy-deep); box-shadow: 0 20px 38px -16px rgba(201, 164, 76, 0.7); }

.btn-navy { background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.btn-navy:hover { background: var(--navy-deep); color: var(--white); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { background: var(--white); border-color: var(--navy); color: var(--navy); box-shadow: var(--shadow-sm); }

.section-navy .btn-outline { color: var(--white); border-color: rgba(255, 255, 255, 0.35); }
.section-navy .btn-outline:hover { background: rgba(255, 255, 255, 0.1); color: var(--white); border-color: var(--white); }

.btn-ghost { padding-inline: 0; min-height: auto; background: none; color: var(--accent); }
.btn-ghost:hover { color: var(--navy); transform: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn-block { width: 100%; }

/* -------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 245, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(16, 28, 51, 0.45);
  background: rgba(255, 255, 255, 0.94);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--navy), var(--navy-deep));
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { white-space: nowrap; font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; letter-spacing: -0.02em; }
.brand-tag { font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 0.1rem; }
.nav-cta-mobile { display: none; }
.nav-link {
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}
.nav-link:hover { color: var(--accent); background: var(--accent-soft); }
.nav-link[aria-current="page"] { color: var(--navy); }
.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.3rem;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

.has-dropdown { position: relative; }
.dropdown-toggle .chev { transition: transform 0.25s var(--ease); }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  translate: -50% 0;
  min-width: 268px;
  padding: 0.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .chev, .has-dropdown:focus-within .chev { transform: rotate(180deg); }
.dropdown a {
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}
.dropdown a span { display: block; font-weight: 500; font-size: 0.8rem; color: var(--muted); }
.dropdown a:hover { background: var(--cream); color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 0.6rem; }
.header-cta .btn { min-height: 46px; padding: 0.6rem 1.25rem; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------- hero */
.hero { position: relative; overflow: hidden; padding-block: clamp(4rem, 9vw, 7.5rem); }
.hero-home {
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(47, 91, 215, 0.1), transparent 62%),
    radial-gradient(760px 420px at 6% 4%, rgba(201, 164, 76, 0.22), transparent 60%),
    linear-gradient(180deg, var(--white), var(--paper) 68%, var(--cream));
}
.hero-inner { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: 1.1rem; }
.hero .lead { max-width: 34rem; font-size: clamp(1.08rem, 1.7vw, 1.3rem); }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto;
  height: 5px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--accent));
}
.hero-card h3 { margin-bottom: 0.3rem; }
.fact-list { display: grid; gap: 0.85rem; margin-top: 1.35rem; }
.fact {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.fact:last-child { border-bottom: 0; padding-bottom: 0; }
.fact dt { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; }
.fact dd { margin: 0; font-weight: 700; color: var(--ink); text-align: right; }

/* page hero (inner pages) */
.hero-page {
  background:
    radial-gradient(900px 420px at 88% 0%, rgba(47, 91, 215, 0.09), transparent 60%),
    linear-gradient(180deg, var(--white), var(--paper));
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.hero-page h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); }
.hero-page .lead { max-width: 48rem; }
.breadcrumb { display: flex; gap: 0.5rem; font-size: 0.82rem; color: var(--muted); margin-bottom: 1.25rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--accent); }

/* -------------------------------------------------- marquee */
.marquee {
  overflow: hidden;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding-block: 0.95rem;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}
.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 2.5rem; }
.marquee-track span::after { content: "◆"; color: var(--gold); font-size: 0.6rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------------------------------------------------- cards */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.4vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.98rem; }
.card-foot { margin-top: auto; padding-top: 1.25rem; }
.card-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.card-flat { box-shadow: none; background: transparent; border-color: transparent; padding: 0; }
.card-flat:hover { transform: none; box-shadow: none; }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  background: linear-gradient(140deg, var(--gold-soft), var(--cream));
  color: var(--navy);
  border: 1px solid var(--gold-soft);
}
.icon-badge svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.icon-badge.blue { background: var(--accent-soft); border-color: #cfdcfa; color: var(--accent); }
.icon-badge.teal { background: var(--teal-soft); border-color: #c6ece7; color: var(--teal); }

/* check lists */
.check-list { display: grid; gap: 0.7rem; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.97rem; }
.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b2a4a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.section-navy .check-list li::before { background-color: rgba(201, 164, 76, 0.9); }

/* process steps */
.steps { counter-reset: step; display: grid; gap: 1.25rem; }
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.6rem 4.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.step p { font-size: 0.97rem; margin: 0; }

/* pricing / tiers */
.tier { position: relative; }
.tier.featured { border-color: var(--gold); box-shadow: var(--shadow); }
.tier-flag {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  translate: -50% 0;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
}
.tier-name { font-family: var(--font-display); font-size: 1.45rem; color: var(--ink); margin-bottom: 0.5rem; }
.tier-price { display: flex; align-items: baseline; gap: 0.15rem; margin-bottom: 0.75rem; }
.tier-price .price-currency { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--gold); }
.tier-price .price-amount { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--ink); line-height: 1; }
.tier.featured .tier-price .price-amount { color: var(--navy); }
.tier-price::after { content: 'NGN'; font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-left: 0.4rem; align-self: center; }

/* stat / highlight blocks */
.highlight {
  border-left: 3px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* founder portrait / monogram block */
.founder-monogram {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-lg);
}
.founder-monogram::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 76, 0.4), transparent 68%);
}
.founder-monogram span { position: relative; z-index: 1; }

/* CTA banner */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 5vw, 3.75rem);
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-deep) 70%);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
}
.cta-banner::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -90px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 76, 0.35), transparent 68%);
}
.cta-banner h2, .cta-banner h3 { color: var(--white); }
.cta-banner .lead { color: rgba(255, 255, 255, 0.78); }
.cta-inner { position: relative; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2rem; align-items: center; }

/* FAQ accordion (CSS only) */
.faq-list { display: grid; gap: 0.85rem; }
details.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.35rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
details.faq[open] { border-color: var(--gold-soft); box-shadow: var(--shadow); }
details.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
details.faq[open] summary::after { content: "–"; background: var(--gold-soft); transform: rotate(180deg); }
details.faq .faq-body { padding: 0 0 1.25rem; font-size: 0.98rem; animation: fade-in 0.35s var(--ease); }
@keyframes fade-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* forms */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
}
.field { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  min-height: 50px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.field-hint { font-size: 0.82rem; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

/* contact info list */
.info-list { display: grid; gap: 1.1rem; }
.info-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-item .icon-badge { margin: 0; width: 44px; height: 44px; border-radius: 12px; }
.info-item h4 { margin: 0 0 0.15rem; font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.info-item p { margin: 0; font-weight: 700; color: var(--ink); }

/* -------------------------------------------------- footer */
.site-footer {
  background: linear-gradient(160deg, var(--navy-deep), #0a1424);
  color: rgba(255, 255, 255, 0.66);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.95rem;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.site-footer .brand { color: var(--white); }
.site-footer .brand-tag { color: rgba(255, 255, 255, 0.5); }
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-links { display: grid; gap: 0.6rem; }
.footer-links a { color: rgba(255, 255, 255, 0.68); font-weight: 500; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.social-row { display: flex; gap: 0.6rem; }
.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
}
.social-row a:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; fill: currentColor; }

/* -------------------------------------------------- scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

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