/* ============================================================
   CORE VARIABLES & RESET
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ============================================================
   PALETTES — uncomment ONE block, comment the rest
   ============================================================

── ELECTRIC (active) ── vivid royal blue, matches logo
── STEEL               softer corporate blue
── MIDNIGHT            high-contrast cyan-blue
── EMBER               burnt orange, bold & warm
── GOLD                original gold/luxury
── FOREST              deep green, fresh

   ============================================================ */

/* ── CORPORATE NAVY (active) ── steel blue from logo, deep navy grounds */
:root {
  --black:       #04101E;
  --deep:        #071828;
  --surface:     #0D2238;
  --surface-2:   #122B46;
  --border:      rgba(65, 140, 210, 0.22);
  --gold:        #3E8DCC;
  --gold-light:  #63AADF;
  --gold-dim:    rgba(62, 141, 204, 0.13);
  --white:       #EDF4FF;
  --white-dim:   rgba(210, 228, 255, 0.58);
  --white-faint: rgba(210, 228, 255, 0.1);
}

/* ── STEEL ──
:root {
  --black:       #0D1117;
  --deep:        #111822;
  --surface:     #18222E;
  --surface-2:   #1E2A38;
  --border:      rgba(58, 123, 213, 0.2);
  --gold:        #3A7BD5;
  --gold-light:  #6DA0E8;
  --gold-dim:    rgba(58, 123, 213, 0.12);
  --white:       #EEF2FA;
  --white-dim:   rgba(220, 230, 250, 0.55);
  --white-faint: rgba(220, 230, 250, 0.1);
}
*/

/* ── MIDNIGHT ──
:root {
  --black:       #060810;
  --deep:        #09101C;
  --surface:     #0F1A28;
  --surface-2:   #152234;
  --border:      rgba(27, 127, 232, 0.2);
  --gold:        #1B7FE8;
  --gold-light:  #50AAFF;
  --gold-dim:    rgba(27, 127, 232, 0.12);
  --white:       #F5F8FF;
  --white-dim:   rgba(225, 235, 255, 0.55);
  --white-faint: rgba(225, 235, 255, 0.1);
}
*/

/* ── EMBER ──
:root {
  --black:       #0E0A08;
  --deep:        #160F0A;
  --surface:     #1E1510;
  --surface-2:   #271B14;
  --border:      rgba(224, 92, 32, 0.2);
  --gold:        #E05C20;
  --gold-light:  #F08040;
  --gold-dim:    rgba(224, 92, 32, 0.12);
  --white:       #FFF5EE;
  --white-dim:   rgba(255, 235, 220, 0.55);
  --white-faint: rgba(255, 235, 220, 0.1);
}
*/

/* ── GOLD ──
:root {
  --black:       #0A0A0C;
  --deep:        #111115;
  --surface:     #18181E;
  --surface-2:   #21212A;
  --border:      rgba(196, 151, 58, 0.18);
  --gold:        #C4973A;
  --gold-light:  #DDB96A;
  --gold-dim:    rgba(196, 151, 58, 0.12);
  --white:       #F8F5EF;
  --white-dim:   rgba(248, 245, 239, 0.55);
  --white-faint: rgba(248, 245, 239, 0.12);
}
*/

/* ── FOREST ──
:root {
  --black:       #070D0A;
  --deep:        #0D1610;
  --surface:     #121F16;
  --surface-2:   #18281C;
  --border:      rgba(46, 168, 102, 0.2);
  --gold:        #2EA866;
  --gold-light:  #5CC98A;
  --gold-dim:    rgba(46, 168, 102, 0.12);
  --white:       #EEFAF3;
  --white-dim:   rgba(210, 240, 220, 0.55);
  --white-faint: rgba(210, 240, 220, 0.1);
}
*/

/* ── SHARED (never change these) ── */
:root {
  --red-alert:   #C0392B;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', Helvetica, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  --nav-h: 100px;
  --max-w: 1240px;
  --gutter: clamp(20px, 5vw, 60px);
}

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

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease-out), border-color 0.4s;
}

.nav.scrolled {
  background: rgba(4, 16, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 180px;
  width: auto;
  display: block;
}

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

.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}

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

.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta {
  padding: 9px 22px;
  background: var(--gold);
  color: #ffffff !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s !important;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--deep);
  flex-direction: column;
  padding: 3rem var(--gutter);
  gap: 0;
  overflow-y: auto;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  display: block;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--white-faint);
  font-size: 1.1rem;
  color: var(--white-dim);
  transition: color 0.2s;
}

.nav__mobile a:hover { color: var(--gold); }

.nav__mobile .nav__cta {
  margin-top: 2rem;
  display: inline-block;
  color: var(--black) !important;
  border-bottom: none !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}

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

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

.btn--gold {
  background: var(--gold);
  color: #ffffff;
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(40, 110, 230, 0.28);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(248, 245, 239, 0.3);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 12px 28px;
}

.btn--ghost:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

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

.display-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-heading em {
  font-style: italic;
  color: var(--gold);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-heading em { font-style: italic; color: var(--gold); }

.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--white-dim);
  line-height: 1.8;
  max-width: 560px;
}

.divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: clamp(60px, 8vw, 100px) var(--gutter) 40px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__logo-img {
  height: 180px;
  width: auto;
  display: block;
  margin: 0 auto 1.2rem auto;
}

.footer__brand-desc {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col h4 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.7rem; }

.footer__col ul li a {
  font-size: 0.88rem;
  color: var(--white-dim);
  transition: color 0.2s;
}

.footer__col ul li a:hover { color: var(--white); }

.footer__col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--white-dim);
  margin-bottom: 0.7rem;
}

.footer__col .contact-item svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid var(--white-faint);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__compliance {
  font-size: 0.72rem;
  color: rgba(248, 245, 239, 0.35);
  line-height: 1.8;
  max-width: 900px;
}

.footer__copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(248, 245, 239, 0.3);
}

/* ============================================================
   PAGE HERO SHARED
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(60px, 8vw, 100px));
  padding-bottom: clamp(60px, 8vw, 100px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(40, 110, 230, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.card:hover {
  border-color: rgba(40, 110, 230, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.card__icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.card__icon svg { width: 24px; height: 24px; }

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

.card p {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ============================================================
   STAT BLOCKS
   ============================================================ */
.stat-block {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
}

.stat-block__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-block__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 151, 58, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(248, 245, 239, 0.25);
}

.form-group select option { background: var(--surface); }

.form-group textarea { resize: vertical; min-height: 130px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-check label {
  font-size: 0.82rem;
  color: var(--white-dim);
  cursor: pointer;
  line-height: 1.5;
}

.form-check label a { color: var(--gold); text-decoration: underline; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(196, 151, 58, 0.3);
  border-radius: 30px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   GOLD RULE DIVIDER
   ============================================================ */
.gold-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__copy { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS — SCROLL-DRIVEN HORIZONTAL CAROUSEL
   ============================================================ */
.testimonials-section {
  height: calc(100vh + 3400px);
  background: var(--black);
  position: relative;
}

.testimonials-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

.testimonials-header {
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
  width: 100%;
}

.testimonials-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 1rem;
  opacity: 0.6;
}

.testimonials-scroll-hint svg {
  width: 14px; height: 14px;
  animation: nudge-right 1.8s ease-in-out infinite;
}

@keyframes nudge-right {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(6px); }
}

.testimonials-overflow {
  overflow: hidden;
  padding-left: var(--gutter);
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  will-change: transform;
  padding: 0.5rem 0 1rem;
}

.testimonial-card {
  min-width: 460px;
  max-width: 460px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

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

.testimonial-card:hover {
  border-color: rgba(62,141,204,0.4);
  transform: translateY(-3px);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 1rem;
  font-style: italic;
  user-select: none;
}

.testimonial-card__text {
  font-size: 0.97rem;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

.testimonial-card__detail {
  font-size: 0.73rem;
  color: var(--white-dim);
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

.testimonial-card__stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.testimonials-progress-wrap {
  height: 2px;
  background: var(--white-faint);
  border-radius: 2px;
  overflow: hidden;
  margin: 2rem var(--gutter) 0;
}

.testimonials-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

@media (max-width: 700px) {
  .testimonials-section { height: calc(100vh + 2200px); }
  .testimonial-card { min-width: 300px; max-width: 300px; }
}

/* ============================================================
   BRAND SCROLLER
   ============================================================ */
.brand-scroller-wrap {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--deep);
  overflow: hidden;
}

.brand-scroller-label {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
  padding: 0 var(--gutter);
}

.brand-scroller {
  overflow: hidden;
  position: relative;
}

.brand-scroller::before,
.brand-scroller::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.brand-scroller::before {
  left: 0;
  background: linear-gradient(90deg, var(--deep), transparent);
}

.brand-scroller::after {
  right: 0;
  background: linear-gradient(-90deg, var(--deep), transparent);
}

.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brand-scroll 50s linear infinite;
}

@keyframes brand-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-item {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(210, 228, 255, 0.2);
  white-space: nowrap;
  padding: 0.4rem 2rem;
  transition: color 0.3s;
}

.brand-item:hover { color: var(--gold); }

.brand-sep {
  color: var(--gold);
  opacity: 0.35;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Logo scroller (second row) */
.brand-track--reverse {
  animation-direction: reverse;
  animation-duration: 55s;
}

.brand-logo {
  height: 42px;
  width: auto;
  margin: 0 2.8rem;
  opacity: 0.28;
  filter: brightness(0) invert(1);
  transition: opacity 0.35s;
  flex-shrink: 0;
  display: block;
}

.brand-logo:hover { opacity: 0.75; }

/* ============================================================
   AVATAR CIRCLE (team)
   ============================================================ */
.avatar-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* ============================================================
   DEALERSHIP CARDS
   ============================================================ */
.dealerships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.dealership-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.dealership-card:hover {
  border-color: rgba(62, 141, 204, 0.4);
  transform: translateY(-3px);
}

.dealership-card__logo {
  height: 160px;
  background: linear-gradient(135deg, var(--deep) 0%, var(--surface-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

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

.dealership-card__logo-inner { text-align: center; }

.dealership-logo-text {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.dealership-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.4rem;
}

.dealership-card__body { padding: 1.5rem 1.8rem; }

.dealership-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.dealership-card__tagline {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.dealership-card__desc {
  font-size: 0.83rem;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.dealership-card__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ============================================================
   FOOTER — 4-COLUMN VARIANT & LEGAL LINKS
   ============================================================ */
.footer__grid--4 {
  grid-template-columns: 1.3fr repeat(3, 1fr);
}

.footer__col--brand {
  display: flex;
  flex-direction: column;
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-links a {
  font-size: 0.72rem;
  color: rgba(210, 228, 255, 0.3);
  transition: color 0.2s;
}

.footer__legal-links a:hover { color: rgba(210, 228, 255, 0.7); }

@media (max-width: 900px) {
  .footer__grid--4 { grid-template-columns: 1fr 1fr; }
  .dealerships-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .footer__grid--4 { grid-template-columns: 1fr; }
  .dealerships-grid { grid-template-columns: 1fr; }
}
