@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg: #0A0A0A;
  --color-surface: #111111;
  --color-surface-2: #181818;
  --color-border: #2a2a2a;
  --color-text: #D4CFC8;
  --color-text-muted: #888880;
  --color-gold: #D4A030;
  --color-gold-hover: #e8b84a;
  --color-gold-dim: #9A7A3A;
  --color-purple: #6B2D9E;
  --color-purple-hover: #8B3DBE;
  --color-purple-dim: #4a1f70;
  --color-white: #F5F5F5;

  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-default: 1100px;
  --content-narrow: 720px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { cursor: pointer; font: inherit; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; text-wrap: balance; }

/* =================== NAVIGATION =================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 160, 48, 0.15);
}

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

.nav-links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--color-gold); }
.nav-links a.active { color: var(--color-gold); }

.nav-cta {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-6);
  background: var(--color-gold);
  color: #000;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: background var(--transition);
}

.nav-cta:hover { background: var(--color-gold-hover); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  transition: all var(--transition);
}

/* =================== MOBILE NAV =================== */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: #0a0a0a;
    padding: var(--space-8);
    gap: var(--space-6);
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links.open .nav-cta-mobile {
    display: block;
    text-align: center;
    padding: var(--space-3) var(--space-6);
    background: var(--color-gold);
    color: #000;
    font-weight: 700;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
}

/* =================== BUTTONS =================== */
.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: var(--space-4) var(--space-10);
  background: var(--color-gold);
  color: #000;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--color-gold-hover); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: var(--space-4) var(--space-10);
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--color-gold); color: #000; transform: translateY(-2px); }

/* =================== SECTION LAYOUT =================== */
.section {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-8);
}

.container {
  max-width: var(--content-default);
  margin: 0 auto;
}

.container-narrow {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

/* =================== SECTION LABELS =================== */
.section-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.section-title {
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.section-title span { color: var(--color-gold); }

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  line-height: 1.8;
}

/* =================== DIVIDER =================== */
.gold-divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold-dim));
}

.gold-divider::after {
  background: linear-gradient(to left, transparent, var(--color-gold-dim));
}

.gold-divider-gem {
  width: 10px;
  height: 10px;
  background: var(--color-purple);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* =================== HERO =================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-24) var(--space-8) var(--space-16);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 45, 158, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 160, 48, 0.08) 0%, transparent 50%),
    #0A0A0A;
  z-index: 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 160, 48, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 160, 48, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-default);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-gold);
}

.hero-title {
  font-size: var(--text-hero);
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: var(--space-4);
  line-height: 1.05;
}

.hero-title .gold { color: var(--color-gold); }
.hero-title .outline {
  -webkit-text-stroke: 1px var(--color-gold-dim);
  color: transparent;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 52ch;
  line-height: 1.8;
  margin-bottom: var(--space-10);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-12);
  margin-top: var(--space-16);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(212, 160, 48, 0.15);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-1);
}

/* =================== SERVICES CARDS =================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-purple), var(--color-gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover { border-color: rgba(212, 160, 48, 0.3); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(107, 45, 158, 0.2);
  border: 1px solid rgba(107, 45, 158, 0.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  font-size: 22px;
}

.service-card h3 {
  font-size: var(--text-lg);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* =================== ABOUT SECTION =================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

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

.about-image-inner {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-image-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(107, 45, 158, 0.15), transparent 70%);
}

.about-crown {
  font-size: 80px;
  line-height: 1;
  margin-bottom: var(--space-4);
  position: relative;
}

.about-tagline {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-gold);
  position: relative;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.about-value {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.about-value-dot {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 8px;
}

.about-value-text h4 {
  font-size: var(--text-base);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.about-value-text p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* =================== DUAL AGENCY BANNER =================== */
.dual-agency {
  background: var(--color-surface);
  border: 1px solid rgba(212, 160, 48, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-12) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dual-agency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(107, 45, 158, 0.15), transparent 60%);
}

.dual-agency-title {
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-4);
  position: relative;
}

.dual-agency-subtitle {
  color: var(--color-text-muted);
  max-width: 60ch;
  margin: 0 auto var(--space-8);
  position: relative;
}

.dual-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
}

@media (max-width: 600px) {
  .dual-columns { grid-template-columns: 1fr; }
  .dual-vs { display: none; }
}

.dual-column {
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}

.dual-column h3 {
  color: var(--color-gold);
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

.dual-column p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.dual-vs {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-purple);
  font-weight: 700;
}

/* =================== FORM STYLES =================== */
.form-section {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-label .required { color: var(--color-gold); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-4);
  transition: border-color var(--transition);
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-text-muted); opacity: 0.5; }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

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

.form-submit {
  grid-column: 1 / -1;
  padding: var(--space-4) var(--space-12);
  background: var(--color-gold);
  color: #000;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}

.form-submit:hover { background: var(--color-gold-hover); transform: translateY(-2px); }

/* =================== FOOTER =================== */
.footer {
  background: var(--color-surface);
  border-top: 1px solid rgba(212, 160, 48, 0.15);
  padding: var(--space-12) var(--space-8) var(--space-8);
}

.footer-inner {
  max-width: var(--content-default);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-10);
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-logo img { height: 48px; margin-bottom: var(--space-4); }

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 36ch;
  line-height: 1.8;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* =================== PAGE HERO =================== */
.page-hero {
  padding: calc(var(--space-24) + 72px) var(--space-8) var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(107, 45, 158, 0.2), transparent 60%);
  z-index: 0;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-title {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.page-hero-title span { color: var(--color-gold); }

.page-hero-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin: 0 auto;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
  .hero-stats { gap: var(--space-8); }
  .hero-stat-number { font-size: var(--text-xl); }
  .services-grid { grid-template-columns: 1fr; }
}

/* =================== ANIMATIONS =================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
.fade-up-5 { animation-delay: 0.5s; }

/* =================== PLATFORM BADGES =================== */
.platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.platform-badge {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  padding: var(--space-1) var(--space-4);
  border: 1px solid rgba(212, 160, 48, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-gold);
  background: rgba(212, 160, 48, 0.05);
}

/* =================== TESTIMONIAL =================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.testimonial-quote {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-6);
}

.testimonial-quote::before { content: '"'; color: var(--color-gold); font-size: 1.5em; }

.testimonial-author {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--color-gold);
  letter-spacing: 0.08em;
}

/* =================== CTA SECTION =================== */
.cta-section {
  text-align: center;
  padding: var(--space-20) var(--space-8);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(107, 45, 158, 0.15), transparent 70%);
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-title span { color: var(--color-gold); }

.cta-sub {
  color: var(--color-text-muted);
  max-width: 50ch;
  margin: 0 auto var(--space-8);
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* =================== NOTICE =================== */
.wp-notice {
  background: rgba(107, 45, 158, 0.1);
  border: 1px solid rgba(107, 45, 158, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-6);
}

/* ── Real Logo Images ── */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  /* The crown wordmark has a dark background — blend it seamlessly */
  mix-blend-mode: normal;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Hero Lion Logo Centerpiece ── */
.hero-logo-centerpiece {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-8);
}

.hero-lion-logo {
  width: clamp(200px, 40vw, 380px);
  height: auto;
  border-radius: 50%;
  border: 2px solid rgba(212, 160, 48, 0.3);
  box-shadow:
    0 0 40px rgba(107, 45, 158, 0.4),
    0 0 80px rgba(107, 45, 158, 0.15),
    0 0 4px rgba(212, 160, 48, 0.5);
}

/* ═══════════════════════════════════════════
   VISUAL POP OVERHAUL
   ═══════════════════════════════════════════ */

/* ── Hero layout fix — lion left, text right ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-20) 0 var(--space-16);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(107,45,158,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(212,160,48,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  width: 100%;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-logo-side {
    order: -1;
    display: flex;
    justify-content: center;
  }
}

.hero-logo-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-lion-logo {
  width: clamp(260px, 38vw, 440px);
  height: auto;
  border-radius: 50%;
  border: 2px solid rgba(212,160,48,0.35);
  box-shadow:
    0 0 0 1px rgba(107,45,158,0.2),
    0 0 50px rgba(107,45,158,0.45),
    0 0 100px rgba(107,45,158,0.2),
    0 0 6px rgba(212,160,48,0.4);
  transition: box-shadow 0.4s ease;
}

.hero-lion-logo:hover {
  box-shadow:
    0 0 0 1px rgba(212,160,48,0.4),
    0 0 60px rgba(107,45,158,0.6),
    0 0 120px rgba(107,45,158,0.3),
    0 0 8px rgba(212,160,48,0.6);
}

/* ── Glow on gold buttons ── */
.btn-primary {
  background: linear-gradient(135deg, #D4A030, #F0C040, #C4850A);
  color: #0A0A0A;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(212,160,48,0.35), 0 0 0 1px rgba(212,160,48,0.2);
  transition: all 0.25s ease;
}
.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(212,160,48,0.6), 0 0 0 1px rgba(212,160,48,0.4);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #F0C040, #FFD966, #D4A030);
}

.btn-secondary {
  border: 1px solid rgba(212,160,48,0.5);
  color: #D4A030;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  text-transform: uppercase;
  transition: all 0.25s ease;
  background: transparent;
}
.btn-secondary:hover {
  background: rgba(212,160,48,0.08);
  border-color: rgba(212,160,48,0.8);
  box-shadow: 0 4px 20px rgba(212,160,48,0.15);
  transform: translateY(-2px);
}

/* ── Service cards — hover glow ── */
.service-card {
  background: var(--color-surface);
  border: 1px solid rgba(107,45,158,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6B2D9E, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-color: rgba(107,45,158,0.5);
  box-shadow: 0 8px 32px rgba(107,45,158,0.2), 0 0 0 1px rgba(107,45,158,0.1);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

/* ── Section backgrounds — more depth ── */
.section-dark-glow {
  position: relative;
  overflow: hidden;
}

.section-dark-glow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(107,45,158,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-8);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,45,158,0.25);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ── Nav logo — tighter crop since it has black bg ── */
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Footer logo ── */
.footer-logo-img {
  height: 55px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.9;
}

/* ── About page shield image ── */
.about-shield-img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(107,45,158,0.3);
  box-shadow:
    0 0 40px rgba(107,45,158,0.3),
    0 0 80px rgba(107,45,158,0.1);
}

/* ── Gold divider gem ── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,48,0.4), transparent);
}

/* ── Platform badges ── */
.platform-badge {
  border: 1px solid rgba(107,45,158,0.4);
  background: rgba(107,45,158,0.08);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.platform-badge:hover {
  border-color: rgba(212,160,48,0.5);
  color: #D4A030;
  background: rgba(212,160,48,0.05);
}

/* ── Stats ── */
.hero-stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  background: linear-gradient(135deg, #F0C040, #D4A030);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ── Form inputs ── */
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(107,45,158,0.3);
  color: var(--color-text);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: rgba(212,160,48,0.6);
  background: rgba(212,160,48,0.04);
  box-shadow: 0 0 0 3px rgba(212,160,48,0.1);
}

/* ── CTA sections ── */
.cta-section {
  background:
    radial-gradient(ellipse 80% 100% at 50% 100%, rgba(107,45,158,0.15) 0%, transparent 70%),
    var(--color-bg);
  border-top: 1px solid rgba(107,45,158,0.2);
  border-bottom: 1px solid rgba(107,45,158,0.2);
}

/* Services page primary grid responsive */
@media (max-width: 768px) {
  .services-primary {
    grid-template-columns: 1fr !important;
  }
}
