/* ===================================================================
   AVEN_IQ Psychometry — Design System
   Aesthetic: refined editorial luxury · psychology / human-centred
   Palette: Deep Navy · Gold · Cream · Charcoal
   Type: Playfair Display (display) · Montserrat (body)
   =================================================================== */

:root {
  /* Brand */
  --navy: #0b1f3a;
  --navy-700: #112a4d;
  --navy-600: #1a3866;
  --gold: #c89b3c;
  --gold-soft: #d8b461;
  --gold-deep: #a87f28;
  --cream: #f8f5ef;
  --cream-deep: #efe9dd;
  --charcoal: #333333;
  --charcoal-soft: #5a5a55;

  /* Functional */
  --ink: var(--charcoal);
  --paper: var(--cream);
  --line: rgba(11, 31, 58, 0.12);
  --line-gold: rgba(200, 155, 60, 0.35);
  --shadow-sm: 0 1px 2px rgba(11, 31, 58, 0.06), 0 6px 18px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 12px 34px rgba(11, 31, 58, 0.12);
  --shadow-lg: 0 28px 70px rgba(11, 31, 58, 0.20);

  /* Type scale */
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --body: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.5rem, 1.6rem + 4.2vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.7rem); }
p { margin: 0 0 1.1rem; }
.lead { font-size: clamp(1.12rem, 1rem + 0.6vw, 1.4rem); color: var(--charcoal-soft); line-height: 1.7; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
}
.eyebrow.center { justify-content: center; }
.serif-accent { font-family: var(--display); font-style: italic; color: var(--gold-deep); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 3rem + 6vw, 8rem); }
.section-head { max-width: 640px; margin-bottom: clamp(2.2rem, 1.5rem + 2vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 10px 26px rgba(200, 155, 60, 0.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(200, 155, 60, 0.45); background: var(--gold-soft); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--gold-deep); }
.btn-light { background: rgba(248, 245, 239, 0.08); color: var(--cream); border-color: rgba(248, 245, 239, 0.3); }
.btn-light:hover { transform: translateY(-3px); background: rgba(248, 245, 239, 0.16); border-color: var(--gold); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 245, 239, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 24px rgba(11, 31, 58, 0.06); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.35rem; color: var(--navy); letter-spacing: 0.01em; }
.brand-name b { color: var(--gold-deep); font-weight: 700; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--charcoal-soft); margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--navy); position: relative; padding: 0.4rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-deep); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none; background: none; border: none; width: 44px; height: 44px;
  position: relative; flex: none;
}
.nav-toggle span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--navy); transition: 0.3s var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: 0; background: var(--cream); padding: 1rem var(--gutter) 2rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform 0.45s var(--ease); z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.95rem 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-cta .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 2rem + 6vw, 6rem) clamp(3.5rem, 2rem + 6vw, 7rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.hero-copy { max-width: 640px; }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 .em { color: var(--gold-deep); font-style: italic; }
.hero .lead { margin-bottom: 2rem; max-width: 30em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem 2.2rem; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--charcoal-soft); font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; color: var(--gold-deep); flex: none; }

/* Hero collage */
.hero-art { position: relative; }
.collage { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 16px; }
.collage figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-md); background: var(--navy-600); }
.collage figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.collage figure:hover img { transform: scale(1.06); }
.collage .c1 { grid-row: span 2; }
.collage .c2 { grid-row: span 1; margin-top: 28px; }
.collage .c3 { grid-row: span 2; margin-top: -16px; }
.collage .c4 { grid-row: span 1; }
.collage-badge {
  position: absolute; left: -22px; bottom: 34px; z-index: 3;
  background: var(--navy); color: var(--cream); padding: 1rem 1.3rem; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.85rem;
  border: 1px solid rgba(200, 155, 60, 0.35);
}
.collage-badge .num { font-family: var(--display); font-size: 1.9rem; color: var(--gold); line-height: 1; }
.collage-badge .lbl { font-size: 0.72rem; letter-spacing: 0.04em; line-height: 1.3; color: rgba(248,245,239,0.85); }

/* Decorative atmosphere */
.glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; pointer-events: none; z-index: 0; }
.glow-gold { width: 420px; height: 420px; background: radial-gradient(circle, rgba(200,155,60,0.4), transparent 70%); }
.glow-navy { width: 480px; height: 480px; background: radial-gradient(circle, rgba(26,56,102,0.25), transparent 70%); }
.hero .glow-gold { top: -120px; right: -80px; }
.hero .glow-navy { bottom: -160px; left: -160px; }
.hero > .wrap { position: relative; z-index: 1; }

/* ---------- Backgrounds ---------- */
.bg-navy { background: var(--navy); color: var(--cream); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--cream); }
.bg-navy .lead { color: rgba(248, 245, 239, 0.78); }
.bg-navy .eyebrow { color: var(--gold-soft); }
.bg-navy .eyebrow::before { background: var(--gold-soft); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-pattern { position: relative; }
.bg-pattern::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(rgba(11,31,58,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.bg-pattern > * { position: relative; z-index: 1; }
.bg-navy.bg-pattern::before { background-image: radial-gradient(rgba(200,155,60,0.10) 1px, transparent 1px); opacity: 1; }

/* ---------- Mission band ---------- */
.mission { text-align: center; }
.mission .statement {
  font-family: var(--display); font-size: clamp(1.7rem, 1.2rem + 2.4vw, 3rem); line-height: 1.28;
  color: var(--cream); max-width: 17em; margin-inline: auto; font-weight: 500;
}
.mission .statement b { color: var(--gold); font-weight: 600; }

/* ---------- Feature / about split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; background: var(--navy-600); }
.split-media .frame {
  position: absolute; inset: 16px -16px -16px 16px; border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg); z-index: -1;
}
.pillars { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 1.1rem; }
.pillars li { display: flex; gap: 1rem; align-items: flex-start; }
.pillars .ico { width: 44px; height: 44px; flex: none; border-radius: 12px; background: rgba(200,155,60,0.14); display: grid; place-items: center; color: var(--gold-deep); }
.pillars .ico svg { width: 22px; height: 22px; }
.pillars h4 { margin: 0 0 0.2rem; font-size: 1.05rem; }
.pillars p { margin: 0; font-size: 0.92rem; color: var(--charcoal-soft); }

/* ---------- Service cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem; position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.service-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--line-gold); }
.service-card:hover::after { transform: scaleX(1); }
.service-card .ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--navy); color: var(--gold); margin-bottom: 1.3rem;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .ico { transform: rotate(-6deg) scale(1.05); }
.service-card .ico svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.28rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--charcoal-soft); font-size: 0.94rem; margin: 0 0 1.3rem; }
.service-card .audience { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--navy-600); background: var(--cream-deep); padding: 0.3rem 0.7rem; border-radius: 100px;
}
.service-card .idx { position: absolute; right: 1.4rem; top: 1.3rem; font-family: var(--display); font-size: 1rem; color: var(--line); font-weight: 700; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; counter-reset: step; }
.step {
  position: relative; padding: 2.2rem 1.6rem 1.8rem; border-radius: var(--radius-lg);
  background: rgba(248,245,239,0.04); border: 1px solid rgba(248,245,239,0.12);
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease);
}
.bg-cream-deep .step, .section:not(.bg-navy) .step { background: #fff; border-color: var(--line); }
.step:hover { transform: translateY(-8px); border-color: var(--line-gold); }
.step .num {
  font-family: var(--display); font-size: 2.4rem; font-weight: 700; color: var(--gold);
  line-height: 1; display: block; margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.bg-navy .step h3 { color: var(--cream); }
.step p { font-size: 0.9rem; color: var(--charcoal-soft); margin: 0; }
.bg-navy .step p { color: rgba(248,245,239,0.72); }
.step .connector { position: absolute; top: 3.1rem; right: -0.9rem; color: var(--gold); z-index: 2; width: 24px; height: 24px; }
.step:last-child .connector { display: none; }
@media (max-width: 760px) { .step .connector { display: none; } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; text-align: center; }
.stat .figure { font-family: var(--display); font-size: clamp(2.4rem, 1.8rem + 2.4vw, 3.6rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat .label { font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(248,245,239,0.78); margin-top: 0.5rem; }
.bg-cream-deep .stat .figure { color: var(--gold-deep); }
.bg-cream-deep .stat .label { color: var(--charcoal-soft); }

/* ---------- Testimonial carousel ---------- */
.carousel { position: relative; max-width: 820px; margin-inline: auto; }
.carousel-track { position: relative; min-height: 280px; }
.quote {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; text-align: center;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transform: translateY(14px);
}
.quote.active { opacity: 1; visibility: visible; transform: translateY(0); position: relative; }
.quote .mark { font-family: var(--display); font-size: 4rem; color: var(--gold); line-height: 0.6; height: 32px; display: block; }
.quote blockquote {
  font-family: var(--display); font-size: clamp(1.25rem, 1rem + 1.2vw, 1.7rem); line-height: 1.5;
  color: var(--cream); margin: 0 auto 1.6rem; max-width: 24em; font-weight: 500; font-style: italic;
}
.quote .who { display: flex; flex-direction: column; gap: 0.2rem; }
.quote .who .name { font-weight: 600; color: var(--gold-soft); letter-spacing: 0.02em; }
.quote .who .role { font-size: 0.82rem; color: rgba(248,245,239,0.65); }
.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 2rem; }
.carousel-dots { display: flex; gap: 0.55rem; }
.carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0;
  background: rgba(248,245,239,0.28); transition: 0.4s var(--ease);
}
.carousel-dots button.active { background: var(--gold); width: 28px; border-radius: 100px; }
.carousel-arrow {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(248,245,239,0.25);
  background: transparent; color: var(--cream); display: grid; place-items: center; transition: 0.4s var(--ease);
}
.carousel-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.carousel-arrow svg { width: 20px; height: 20px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; padding: 1.5rem 3rem 1.5rem 0;
  font-family: var(--display); font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem); color: var(--navy);
  position: relative; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .sign { position: relative; width: 22px; height: 22px; flex: none; }
.faq-q .sign::before, .faq-q .sign::after {
  content: ""; position: absolute; background: var(--gold-deep); border-radius: 2px;
  top: 50%; left: 50%; transition: transform 0.4s var(--ease);
}
.faq-q .sign::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq-q .sign::after { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .sign::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.45s var(--ease); }
.faq-a .inner { padding: 0 3rem 1.5rem 0; color: var(--charcoal-soft); }
.faq-item.open .faq-q { color: var(--gold-deep); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band .glow-gold { top: -160px; left: 50%; transform: translateX(-50%); opacity: 0.4; }
.cta-band h2 { max-width: 16em; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-block: clamp(3rem, 2rem + 5vw, 6rem) clamp(2.5rem, 2rem + 3vw, 4rem); position: relative; overflow: hidden; }
.page-hero .glow-gold { top: -140px; right: -60px; opacity: 0.4; }
.page-hero-inner { max-width: 720px; }
.breadcrumb { font-size: 0.8rem; color: rgba(248,245,239,0.6); margin-bottom: 1.2rem; letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { color: var(--gold-soft); }

/* ---------- Founder ---------- */
.founder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: start; }
.founder-photo { position: relative; }
.founder-photo img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 3/4; object-fit: cover; box-shadow: var(--shadow-lg); background: var(--navy-600); }
.founder-photo .frame { position: absolute; inset: -16px -16px 24px 24px; border: 1px solid var(--line-gold); border-radius: var(--radius-lg); z-index: -1; }
.founder-photo .credential-chip {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); white-space: nowrap;
  background: var(--navy); color: var(--cream); padding: 0.7rem 1.2rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,155,60,0.4); display: flex; align-items: center; gap: 0.5rem;
}
.founder-photo .credential-chip svg { width: 16px; height: 16px; color: var(--gold); }
.cred-list { list-style: none; padding: 0; margin: 1.6rem 0; display: grid; gap: 0.9rem; }
.cred-list li { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1rem 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.cred-list .ico { color: var(--gold-deep); flex: none; margin-top: 2px; }
.cred-list .ico svg { width: 20px; height: 20px; }
.cred-list strong { display: block; color: var(--navy); font-size: 0.98rem; }
.cred-list span { font-size: 0.85rem; color: var(--charcoal-soft); }
.reg-box { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.6rem; }
.reg-card { flex: 1 1 180px; padding: 1.2rem 1.4rem; border-radius: var(--radius); background: var(--navy); color: var(--cream); }
.reg-card .k { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); }
.reg-card .v { font-family: var(--display); font-size: 1.3rem; margin-top: 0.3rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start; }
.contact-info { display: grid; gap: 1rem; }
.info-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.info-card:hover { transform: translateX(4px); border-color: var(--line-gold); }
.info-card .ico { width: 46px; height: 46px; flex: none; border-radius: 12px; background: rgba(200,155,60,0.14); color: var(--gold-deep); display: grid; place-items: center; }
.info-card .ico svg { width: 22px; height: 22px; }
.info-card .k { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal-soft); }
.info-card .v { font-weight: 600; color: var(--navy); font-size: 1.02rem; word-break: break-word; }
.info-card a.v:hover { color: var(--gold-deep); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 1rem + 2vw, 2.6rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em; color: var(--navy); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--body); font-size: 0.95rem; color: var(--ink); background: var(--cream);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(200,155,60,0.16);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.8rem; color: var(--charcoal-soft); margin-top: 1rem; }
.form-status { display: none; padding: 0.9rem 1.1rem; border-radius: 10px; font-size: 0.9rem; font-weight: 500; margin-bottom: 1.2rem; }
.form-status.ok { display: block; background: rgba(45,120,70,0.12); color: #2d7846; border: 1px solid rgba(45,120,70,0.3); }
.form-status.err { display: block; background: rgba(170,50,50,0.1); color: #aa3232; border: 1px solid rgba(170,50,50,0.3); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 380px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.2) contrast(1.02); }
.calendly-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: #fff; min-height: 640px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 14px 36px rgba(37,211,102,0.6); }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366;
  animation: wa-pulse 2.4s var(--ease) infinite;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(248,245,239,0.74); padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 2rem; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(248,245,239,0.12); }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { margin: 1rem 0 0; font-size: 0.9rem; max-width: 28ch; }
.footer-col h4 { color: var(--gold-soft); font-family: var(--body); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: 0.9rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-col .with-ico { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-col .with-ico svg { width: 16px; height: 16px; color: var(--gold-soft); flex: none; margin-top: 3px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 2rem; font-size: 0.8rem; color: rgba(248,245,239,0.55); }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }

/* ---------- Image fallback ---------- */
.img-fallback {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-600) 55%, var(--gold-deep) 140%) !important;
  position: relative;
}
.img-fallback::after {
  content: attr(data-fallback); position: absolute; inset: 0; display: grid; place-items: center;
  text-align: center; padding: 1.5rem; font-family: var(--display); font-style: italic;
  color: rgba(248,245,239,0.9); font-size: 1.05rem; line-height: 1.4;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 520px; margin-inline: auto; order: -1; }
  .split, .founder-grid, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .founder-photo { max-width: 380px; margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .collage-badge { left: 8px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}
