/* ============================================================
   ADAONAI INSURANCE ADVISORY - MAIN STYLESHEET
   ------------------------------------------------------------
   Table of Contents

   01. Design Tokens
   02. Global Reset / Base Typography
   03. Shared Buttons / Links
   04. Header / Hero Banner
   05. Top Navigation
   06. Sticky Page Identifier Bar
   07. Focus Band / Trust Band
   08. Generic Page Layout
   09. Homepage Intro / CTA
   10. Tree of Life / Honeycomb Map
   11. About Page / Philosophy / Bios
   12. Services Page
   13. Contact Page
   14. Footer / Compliance
   15. Motion Effects
   16. Responsive Design
============================================================ */


/* ============================================================
   01. DESIGN TOKENS
============================================================ */

:root {
  --purple-black: #09020f;
  --purple-deep: #16051f;
  --purple-card: #1d0829;
  --purple-royal: #4b176d;

  --navy-deep: #081426;
  --navy-mid: #10203a;

  --scarlet-deep: #4b0c14;
  --scarlet-mid: #7b1824;

  --gold: #d4af37;
  --gold-light: #f5d77b;
  --gold-dark: #8a5d10;

  --white-soft: rgba(255,255,255,0.88);
  --white-muted: rgba(255,255,255,0.68);
  --white-faint: rgba(255,255,255,0.52);

  --border-gold-soft: rgba(212,175,55,0.25);
  --border-gold-mid: rgba(212,175,55,0.45);
  --border-gold-strong: rgba(212,175,55,0.65);

  --shadow-soft: 0 0 24px rgba(0,0,0,0.28);
  --shadow-card: 0 0 28px rgba(0,0,0,0.35);
  --shadow-gold: 0 0 18px rgba(212,175,55,0.35);

  --radius-card: 22px;
  --radius-soft: 18px;

  --max-content: 1200px;
}


/* ============================================================
   02. GLOBAL RESET / BASE TYPOGRAPHY
============================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  line-height: 1.6;

  background: var(--purple-deep);
  color: white;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

p {
  margin-top: 0;
}

.content-card p,
.bio-content p,
.contact-card p,
.intro-card p,
.cta-box p,
.service-card p,
.contact-info-card p,
.contact-form-card p {
  line-height: 1.75;
}


/* ============================================================
   03. SHARED BUTTONS / LINKS
============================================================ */

.cta-button {
  display: inline-block;

  padding: 12px 26px;

  border: 1px solid rgba(245,215,123,0.8);
  border-radius: 999px;

  color: var(--purple-deep);

  background:
    linear-gradient(
      to bottom,
      var(--gold-light),
      var(--gold)
    );

  text-decoration: none;
  font-weight: bold;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 0 18px rgba(212,175,55,0.45);
}


/* ============================================================
   04. HEADER / HERO BANNER
============================================================ */

.hero {
  position: relative;

  padding: 20px 0 40px;

  background: var(--purple-deep);

  overflow: hidden;
}

.menu-wrapper {
  position: relative;

  width: 100%;
  max-width: 1500px;
  height: 300px;

  margin: 0 auto;
}

.menu-border {
  position: absolute;

  left: 50%;
  top: -200px;

  width: 102%;
  max-width: 1500px;

  transform: translateX(-50%);

  z-index: 1;
}

.top-contact {
  position: absolute;

  top: 235px;
  right: 50px;

  z-index: 20;

  text-align: right;
  line-height: 1.35;
}

.top-contact p {
  margin: 0;

  color: rgba(255,255,255,0.92);

  font-size: 0.95rem;
  font-weight: 600;

  text-shadow:
    0 0 8px rgba(0,0,0,0.45);
}

.top-contact p:first-child {
  color: var(--gold-light);
}

.top-contact p:last-child {
  margin-top: 4px;

  color: rgba(255,255,255,0.75);

  font-size: 0.9rem;
  font-style: italic;
}


/* ============================================================
   04A. CENTER LOGO / AMBIENT GLOW
============================================================ */

.hero-logo-wrap {
  position: absolute;

  left: 50%;
  top: -40px;

  width: 360px;

  transform: translateX(-50%);

  z-index: 5;

  animation:
    logo-float 7s ease-in-out infinite,
    logo-glow 6s ease-in-out infinite;
}

.hero-logo {
  display: block;

  width: 100%;

  filter:
    drop-shadow(0 0 12px rgba(0,0,0,0.45))
    drop-shadow(0 0 24px rgba(0,0,0,0.35));
}

@keyframes logo-float {
  0% {
    transform:
      translateX(-50%)
      translateY(0);
  }

  50% {
    transform:
      translateX(-50%)
      translateY(-3px);
  }

  100% {
    transform:
      translateX(-50%)
      translateY(0);
  }
}

@keyframes logo-glow {
  0% {
    filter:
      drop-shadow(0 0 10px rgba(212,175,55,0.10))
      drop-shadow(0 0 18px rgba(212,175,55,0.08));
  }

  50% {
    filter:
      drop-shadow(0 0 18px rgba(212,175,55,0.22))
      drop-shadow(0 0 34px rgba(212,175,55,0.16));
  }

  100% {
    filter:
      drop-shadow(0 0 10px rgba(212,175,55,0.10))
      drop-shadow(0 0 18px rgba(212,175,55,0.08));
  }
}


/* ============================================================
   05. TOP NAVIGATION
============================================================ */

.top-nav {
  position: absolute;

  inset: 0;

  z-index: 10;
}

.nav-btn {
  position: absolute;

  color: var(--gold-light);

  text-decoration: none;

  font-weight: bold;
  font-size: 1.15rem;
  letter-spacing: 0.03em;

  text-shadow:
    0 0 6px rgba(0,0,0,0.45),
    0 0 12px rgba(0,0,0,0.35);

  transition:
    color 0.25s ease,
    transform 0.25s ease,
    text-shadow 0.25s ease;
}

.nav-btn:hover {
  color: white;

  transform: translateY(-2px);

  text-shadow:
    0 0 8px rgba(212,175,55,0.45),
    0 0 18px rgba(212,175,55,0.35);
}

/* Desktop nav placement */

.nav-home {
  left: 3%;
  top: 170px;
}

.nav-about {
  left: 3%;
  top: 210px;
}

.nav-services {
  left: 3%;
  top: 250px;
}

.nav-contact {
  left: 3%;
  top: 290px;
}


/* ============================================================
   05A. ACTIVE NAV STATE
============================================================ */

.active-nav {
  color: white !important;

  text-shadow:
    0 0 8px rgba(212,175,55,0.55),
    0 0 18px rgba(212,175,55,0.35);
}

.top-nav .active-nav::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: -4px;

  height: 1px;

  background: rgba(245,215,123,0.75);

  box-shadow:
    0 0 8px rgba(212,175,55,0.55);
}


/* ============================================================
   06. STICKY PAGE IDENTIFIER BAR
============================================================ */

.subhero-banner {
  --sticky-tools-opacity: 0;

  position: relative;

  min-height: 58px;
  padding: 12px 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--purple-deep);

  border-top: 1px solid rgba(212,175,55,0.18);
  border-bottom: 1px solid rgba(212,175,55,0.35);

  box-shadow:
    0 4px 18px rgba(0,0,0,0.35);

  z-index: 1000;
}

.subhero-banner.is-fixed {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;
}

.subhero-content h1 {
  margin: 0;

  color: var(--gold);

  font-size: 1.35rem;
  font-weight: 700;

  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.subhero-content p {
  display: none;
}

.sticky-menu-btn,
.sticky-logo {
  opacity: var(--sticky-tools-opacity);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;

  pointer-events: none;
}

.subhero-banner.tools-active .sticky-menu-btn,
.subhero-banner.tools-active .sticky-logo {
  pointer-events: auto;
}

.sticky-menu-btn {
  position: absolute;

  left: 24px;

  background: none;
  border: none;

  color: var(--gold-light);

  font-family: inherit;
  font-size: 1rem;
  font-weight: bold;

  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.sticky-menu-btn:hover {
  color: white;
}

.sticky-menu-btn.menu-is-open,
.sticky-menu-btn.menu-is-open:focus,
.sticky-menu-btn.menu-is-open:active {
  color: white;

  text-shadow:
    0 0 8px rgba(212,175,55,0.45),
    0 0 18px rgba(212,175,55,0.35);
}

.sticky-logo {
  position: absolute;

  right: 24px;

  height: 42px;
  width: auto;

  filter:
    drop-shadow(0 0 8px rgba(0,0,0,0.45));
}

.sticky-dropdown {
  position: absolute;

  top: 58px;
  left: 20px;

  min-width: 180px;

  display: none;
  flex-direction: column;

  padding: 14px;

  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 12px;

  background:
    linear-gradient(
      to bottom,
      rgba(30,8,42,0.98),
      rgba(10,2,15,0.98)
    );

  box-shadow:
    0 10px 28px rgba(0,0,0,0.45);
}

.sticky-dropdown.is-open {
  display: flex;
}

.sticky-dropdown a {
  padding: 10px 12px;

  color: var(--gold-light);

  text-decoration: none;
  font-weight: bold;
}

.sticky-dropdown a:hover {
  color: white;
}


/* ============================================================
   07. SCARLET FOCUS BAND
============================================================ */

.focus-band {
  position: relative;

  padding: 18px 25px;

  background:
    linear-gradient(
      to bottom,
      var(--scarlet-mid),
      var(--scarlet-deep)
    );

  border-top: 1px solid rgba(212,175,55,0.45);
  border-bottom: 1px solid rgba(212,175,55,0.45);

  text-align: center;
}

.focus-content {
  max-width: 1100px;

  margin: auto;
}

.focus-content h2 {
  margin: 0 0 6px;

  color: var(--gold-light);

  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focus-content p {
  margin: 0;

  color: rgba(255,255,255,0.9);

  font-size: 0.98rem;
  line-height: 1.5;
}


/* ============================================================
   07A. BLUE TRUST BAND
============================================================ */

.trust-band {
  position: relative;

  padding: 30px 30px;

  background:
    linear-gradient(
      to bottom,
      var(--navy-deep),
      var(--navy-mid)
    );

  border-top: 1px solid rgba(212,175,55,0.55);
  border-bottom: 1px solid rgba(212,175,55,0.55);

  overflow: hidden;
}

.trust-band::before {
  content: "";

  position: absolute;

  inset: 0;

  background-image:
    radial-gradient(
      rgba(255,255,255,0.03) 1px,
      transparent 1px
    );

  background-size: 24px 24px;

  opacity: 0.35;

  pointer-events: none;
}

.trust-grid {
  position: relative;

  z-index: 2;

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns:
    1fr auto 1fr auto 1fr;

  align-items: center;

  gap: 30px;
}

.trust-item {
  text-align: center;

  color: rgba(255,255,255,0.92);
}

.trust-icon {
  margin-bottom: 10px;

  color: var(--gold);

  font-size: 2.2rem;

  filter:
    drop-shadow(0 0 6px rgba(212,175,55,0.3));
}

.trust-item h3 {
  margin-bottom: 8px;

  color: var(--gold);

  font-size: 1.25rem;
  letter-spacing: 0.03em;
}

.trust-item p {
  max-width: 300px;

  margin: auto;

  font-size: 0.92rem;
  line-height: 1.45;
}

.trust-divider {
  width: 1px;
  height: 85px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(212,175,55,0.65),
      transparent
    );
}


/* ============================================================
   08. GENERIC PAGE LAYOUT
============================================================ */

.page-hero {
  padding: 80px 25px 50px;

  text-align: center;

  background:
    radial-gradient(
      circle at top,
      rgba(75,23,109,0.35),
      rgba(22,5,31,0.96) 72%
    );
}

.page-hero h1 {
  margin-bottom: 18px;

  color: var(--gold);

  font-size: 3rem;
}

.page-hero p {
  max-width: 800px;

  margin: auto;

  color: var(--white-soft);

  font-size: 1.15rem;
  line-height: 1.7;
}

.content-section {
  padding: 70px 25px;
}

.content-card {
  max-width: 950px;

  margin: auto;
  padding: 40px 35px;

  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-soft);

  background:
    radial-gradient(
      circle at top,
      rgba(75,23,109,0.35),
      rgba(18,4,28,0.96)
    );
}

.content-card h2 {
  color: var(--gold);
}


/* ============================================================
   09. HOMEPAGE INTRO / CTA
============================================================ */

.intro-section {
  padding: 70px 25px 40px;

  background:
    linear-gradient(
      to bottom,
      var(--purple-deep),
      var(--purple-card)
    );

  text-align: center;
}

.intro-card {
  max-width: 950px;

  margin: auto;
  padding: 40px 35px;

  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-soft);

  background:
    radial-gradient(
      circle at top,
      rgba(75,23,109,0.45),
      rgba(18,4,28,0.95)
    );

  box-shadow:
    0 0 28px rgba(0,0,0,0.25);
}

.intro-card h2 {
  margin-top: 0;
  margin-bottom: 18px;

  color: var(--gold);

  font-size: 2rem;
}

.intro-card p {
  max-width: 780px;

  margin: 12px auto;

  color: var(--white-soft);

  font-size: 1.05rem;
  line-height: 1.65;
}

.cta-section {
  padding: 35px 25px 70px;

  background: var(--purple-card);

  text-align: center;
}

.cta-box {
  max-width: 850px;

  margin: auto;
  padding: 38px 30px;

  border: 1px solid rgba(212,175,55,0.45);
  border-radius: var(--radius-card);

  background:
    linear-gradient(
      to bottom,
      rgba(12,20,38,0.92),
      rgba(8,12,24,0.96)
    );

  box-shadow:
    0 0 30px rgba(0,0,0,0.35);
}

.cta-box h2 {
  margin-top: 0;
  margin-bottom: 14px;

  color: var(--gold);

  font-size: 1.9rem;
}

.cta-box p {
  max-width: 650px;

  margin: 0 auto 25px;

  color: var(--white-soft);
}


/* ============================================================
   10. TREE OF LIFE / HONEYCOMB MAP
============================================================ */

.tree-section {
  position: relative;

  padding: 50px 20px 90px;

  text-align: center;

  background:
    radial-gradient(
      circle at 50% 12%,
      rgba(212,175,55,0.18) 0%,
      rgba(120,40,160,0.22) 18%,
      rgba(75,23,109,0.35) 32%,
      rgba(22,5,31,0.96) 72%
    );

  overflow: hidden;

  --mouse-x: 50%;
  --mouse-y: 12%;
}

.tree-section::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at var(--mouse-x) var(--mouse-y),
      rgba(212,175,55,0.12),
      transparent 28%
    );

  opacity: 0.75;

  pointer-events: none;

  transition: opacity 0.3s ease;
}

.tree-section > * {
  position: relative;

  z-index: 2;
}

.tree-section h2 {
  margin-bottom: 40px;

  color: var(--gold);

  font-size: 2rem;
}

.tree-map {
  position: relative;

  width: 700px;
  height: 1680px;

  margin: auto;

  overflow: hidden;

  perspective: 1200px;
}


/* ============================================================
   10A. BASE HEXAGON STYLE
============================================================ */

.hex {
  position: absolute;

  width: 220px;
  height: 250px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      145deg,
      var(--gold),
      var(--gold-dark)
    );

  clip-path:
    polygon(
      50% 0%,
      100% 25%,
      100% 75%,
      50% 100%,
      0% 75%,
      0% 25%
    );

  cursor: pointer;

  transform-style: preserve-3d;

  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease;

  box-shadow:
    0 0 18px rgba(212,175,55,0.25),
    inset 0 0 18px rgba(255,255,255,0.12);
}

.hex:hover {
  transform: scale(1.05);

  filter: brightness(1.18);

  box-shadow:
    0 0 28px rgba(212,175,55,0.55),
    inset 0 0 20px rgba(255,255,255,0.18);
}

.hex-content {
  width: 92%;
  height: 92%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 20px;

  text-align: center;

  background:
    radial-gradient(
      circle at top,
      rgba(70,25,95,0.96),
      rgba(20,5,30,0.98)
    );

  clip-path: inherit;

  transition: all 0.25s ease;
}


/* ============================================================
   10B. IMAGE HEXES
============================================================ */

.image-hex {
  position: relative;

  overflow: hidden;

  padding: 0;
}

.hex-image {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.03);

  filter:
    saturate(0.92)
    contrast(0.94)
    brightness(0.96)
    blur(0.5px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    filter 0.3s ease;
}

.image-hex::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.03) 0%,
      rgba(0,0,0,0.18) 100%
    );

  pointer-events: none;
}

.hex:hover .hex-image {
  opacity: 0.25;

  transform: scale(1.08);

  filter:
    blur(1px)
    brightness(0.9);
}

.hex-text {
  position: absolute;

  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 20px;

  text-align: center;

  background: rgba(20,5,30,0.78);

  opacity: 0;

  transition: opacity 0.3s ease;
}

.hex:hover .hex-text {
  opacity: 1;
}

.hex-text h3 {
  margin: 0 0 8px;

  color: var(--gold-light);

  font-size: 1.05rem;
  line-height: 1.1;
}

.hex-text p {
  margin: 0;

  color: white;

  font-size: 0.78rem;
  line-height: 1.25;
}


/* ============================================================
   10C. HEXAGON MAP POSITIONS
============================================================ */

.crown {
  left: 240px;
  top: 0;
}

.understanding {
  left: 125px;
  top: 190px;
}

.wisdom {
  left: 355px;
  top: 190px;
}

.daat {
  left: 240px;
  top: 380px;

  z-index: 15;
}

.strength {
  left: 125px;
  top: 570px;
}

.mercy {
  left: 355px;
  top: 570px;
}

.beauty {
  left: 240px;
  top: 760px;
}

.glory {
  left: 125px;
  top: 950px;
}

.victory {
  left: 355px;
  top: 950px;
}

.foundation {
  left: 240px;
  top: 1140px;
}

.kingdom {
  left: 240px;
  top: 1400px;
}


/* ============================================================
   10D. PROVERBS / DA'AT HEX
============================================================ */

.daat .hex-content {
  background:
    radial-gradient(
      circle at top,
      rgba(12,12,18,0.98),
      rgba(0,0,0,0.98)
    );
}

.daat p {
  margin: 0;

  color: var(--gold-light);

  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.25;
}

.daat span {
  display: block;

  margin-top: 10px;

  color: white;

  font-size: 0.8rem;
  font-style: normal;
}


/* ============================================================
   10E. DECORATIVE BLANK HONEYCOMBS
============================================================ */

.blank {
  z-index: 1;

  opacity: 0.55;

  cursor: default;

  pointer-events: none;
}

.blank:hover {
  transform: none;

  filter: none;

  box-shadow:
    0 0 18px rgba(212,175,55,0.18),
    inset 0 0 18px rgba(255,255,255,0.08);
}

.blank::before {
  content: "";

  width: 92%;
  height: 92%;

  background:
    radial-gradient(
      circle at top,
      rgba(50,18,70,0.72),
      rgba(15,4,24,0.88)
    );

  clip-path: inherit;
}

.blank-daat-left {
  left: 10px;
  top: 380px;
}

.blank-daat-right {
  left: 470px;
  top: 380px;
}

.blank-beauty-left {
  left: 10px;
  top: 760px;
}

.blank-beauty-right {
  left: 470px;
  top: 760px;
}

.blank-foundation-left {
  left: 10px;
  top: 1140px;
}

.blank-foundation-right {
  left: 470px;
  top: 1140px;
}

.edge-left-strength {
  left: -105px;
  top: 570px;
}

.edge-right-mercy {
  left: 585px;
  top: 570px;
}

.edge-left-glory {
  left: -105px;
  top: 950px;
}

.edge-right-victory {
  left: 585px;
  top: 950px;
}


/* ============================================================
   11. ABOUT PAGE / PHILOSOPHY
============================================================ */

.philosophy-card {
  max-width: 1100px;
}

.philosophy-pillars {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

  margin: 35px 0;
}

.pillar {
  padding: 28px 22px;

  border: 1px solid rgba(212,175,55,0.22);
  border-radius: var(--radius-soft);

  background:
    linear-gradient(
      to bottom,
      rgba(75,23,109,0.22),
      rgba(10,2,15,0.35)
    );
}

.pillar span {
  display: inline-flex;

  width: 42px;
  height: 42px;

  align-items: center;
  justify-content: center;

  margin-bottom: 14px;

  border-radius: 50%;

  background:
    linear-gradient(
      to bottom,
      var(--gold-light),
      var(--gold)
    );

  color: var(--purple-deep);

  font-weight: bold;

  box-shadow:
    0 0 12px rgba(212,175,55,0.25);
}

.pillar h3 {
  margin: 0 0 10px;

  color: var(--gold-light);
}

.pillar p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.philosophy-closing {
  margin-top: 30px;
  padding-top: 25px;

  border-top: 1px solid rgba(212,175,55,0.18);

  color: rgba(255,255,255,0.9);

  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
}


/* ============================================================
   11A. ABOUT PAGE / BIOS
============================================================ */

.bio-section {
  padding: 80px 25px;

  text-align: center;

  background:
    linear-gradient(
      to bottom,
      var(--purple-deep),
      var(--purple-black)
    );
}

.bio-section h2 {
  margin-bottom: 45px;

  color: var(--gold);

  font-size: 2.4rem;
}

.bio-grid {
  max-width: 1150px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 35px;
}

.bio-card {
  overflow: hidden;

  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 24px;

  background:
    radial-gradient(
      circle at top,
      rgba(75,23,109,0.38),
      rgba(10,2,15,0.96)
    );

  box-shadow:
    0 0 28px rgba(0,0,0,0.35);
}

.bio-photo {
  display: block;

  width: 100%;
  height: 420px;

  object-fit: cover;

  filter:
    saturate(0.92)
    contrast(0.95)
    brightness(0.92);
}

.bio-content {
  padding: 30px;
}

.bio-content h3 {
  margin: 0 0 8px;

  color: var(--gold-light);

  font-size: 1.6rem;
}

.bio-title {
  margin: 0 0 8px;

  color: var(--gold);

  font-weight: bold;
}

.license {
  margin-bottom: 20px;

  color: rgba(255,255,255,0.72);

  font-size: 0.9rem;
  font-style: italic;
}

.bio-content p {
  color: rgba(255,255,255,0.86);

  line-height: 1.65;
}

.bio-email {
  margin-top: -8px;
  margin-bottom: 22px;
}

.bio-email a {
  color: var(--gold-light);

  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 600;

  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}

.bio-email a:hover {
  color: white;

  text-shadow:
    0 0 8px rgba(212,175,55,0.35);
}


/* ============================================================
   12. SERVICES PAGE
============================================================ */

.services-section {
  padding: 75px 25px;

  background:
    linear-gradient(
      to bottom,
      var(--purple-deep),
      var(--purple-card)
    );

  text-align: center;
}

.services-section h2 {
  margin-top: 0;
  margin-bottom: 20px;

  color: var(--gold);

  font-size: 2.3rem;
}

.section-intro {
  max-width: 800px;

  margin: 0 auto 40px;

  color: rgba(255,255,255,0.86);

  font-size: 1.05rem;
  line-height: 1.7;
}

.services-grid {
  max-width: 1200px;

  margin: 40px auto 0;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

.service-card {
  padding: 32px 26px;

  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 20px;

  background:
    radial-gradient(
      circle at top,
      rgba(75,23,109,0.34),
      rgba(10,2,15,0.95)
    );

  box-shadow:
    0 0 24px rgba(0,0,0,0.28);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);

  border-color: rgba(212,175,55,0.55);

  box-shadow:
    0 0 28px rgba(212,175,55,0.16);
}

.service-icon {
  margin-bottom: 18px;

  color: var(--gold);

  font-size: 2.2rem;

  text-shadow:
    0 0 12px rgba(212,175,55,0.25);

  opacity: 0.95;

  transition:
    transform 0.25s ease,
    text-shadow 0.25s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.08);

  text-shadow:
    0 0 18px rgba(212,175,55,0.45);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 14px;

  color: var(--gold-light);

  font-size: 1.35rem;
}

.service-card p {
  margin: 0;

  color: rgba(255,255,255,0.84);

  font-size: 0.98rem;
  line-height: 1.7;
}

.business-services {
  background:
    linear-gradient(
      to bottom,
      var(--navy-deep),
      var(--navy-mid)
    );

  border-top: 1px solid rgba(212,175,55,0.35);
  border-bottom: 1px solid rgba(212,175,55,0.35);
}


/* ============================================================
   13. CONTACT PAGE
============================================================ */

.contact-section {
  padding: 80px 25px;

  background:
    linear-gradient(
      to bottom,
      var(--purple-deep),
      var(--purple-black)
    );

  text-align: center;
}

.contact-card {
  max-width: 800px;

  margin: auto;
  padding: 42px 32px;

  border: 1px solid rgba(212,175,55,0.35);
  border-radius: var(--radius-card);

  background:
    radial-gradient(
      circle at top,
      rgba(75,23,109,0.38),
      rgba(10,2,15,0.96)
    );
}

.contact-card h2 {
  margin-top: 0;
  margin-bottom: 14px;

  color: var(--gold);

  font-size: 2rem;
}

.contact-card p {
  color: rgba(255,255,255,0.86);
}

.contact-lines {
  margin-top: 22px;
}

.contact-lines strong {
  color: var(--gold-light);
}


/* ============================================================
   13A. CONTACT PAGE FORM
============================================================ */

.contact-page-section {
  padding: 80px 25px;

  background:
    linear-gradient(
      to bottom,
      var(--purple-deep),
      var(--purple-black)
    );
}

.contact-page-grid {
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 35px;
}

.contact-info-card,
.contact-form-card {
  padding: 42px 34px;

  border: 1px solid rgba(212,175,55,0.35);
  border-radius: var(--radius-card);

  background:
    radial-gradient(
      circle at top,
      rgba(75,23,109,0.38),
      rgba(10,2,15,0.96)
    );

  box-shadow:
    0 0 28px rgba(0,0,0,0.35);
}

.contact-info-card h2,
.contact-form-card h2 {
  margin-top: 0;

  color: var(--gold);

  font-size: 2rem;
}

.contact-info-card p,
.contact-form-card p {
  color: rgba(255,255,255,0.86);
}

.contact-detail {
  margin-top: 28px;
  padding-top: 20px;

  border-top: 1px solid rgba(212,175,55,0.18);
}

.contact-detail h3 {
  margin-bottom: 6px;

  color: var(--gold-light);
}

.contact-detail a {
  color: var(--gold-light);

  text-decoration: none;
  font-weight: 600;
}

.contact-detail a:hover {
  color: white;

  text-shadow:
    0 0 8px rgba(212,175,55,0.35);
}

.contact-form {
  display: flex;
  flex-direction: column;

  gap: 14px;
}

.contact-form label {
  color: var(--gold-light);

  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  padding: 12px 14px;

  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 10px;

  background: rgba(255,255,255,0.08);

  color: white;

  font-family: inherit;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.contact-form select {
  background:
    linear-gradient(
      to bottom,
      rgba(40,10,55,0.96),
      rgba(20,5,30,0.96)
    );

  color: var(--gold-light);
}

.contact-form option {
  background: var(--purple-deep);

  color: var(--gold-light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;

  border-color: rgba(245,215,123,0.8);

  box-shadow:
    0 0 12px rgba(212,175,55,0.22);
}

.contact-form button {
  margin-top: 12px;
}


/* ============================================================
   14. FOOTER / COMPLIANCE
============================================================ */

.site-footer {
  padding: 50px 25px;

  text-align: center;

  background:
    linear-gradient(
      to bottom,
      rgba(30,8,42,0.95),
      rgba(10,2,15,1)
    );

  border-top: 1px solid rgba(212,175,55,0.25);
}

.footer-content {
  max-width: 1000px;

  margin: auto;
}

.footer-disclaimer {
  margin-bottom: 28px;

  color: var(--white-faint);

  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.6;
}

.compliance-disclaimer {
  max-width: 1050px;

  margin: 38px auto 0;
  padding-top: 30px;

  border-top: 1px solid rgba(212,175,55,0.12);

  text-align: center;
}

.compliance-disclaimer p {
  margin: 0 auto 16px;

  color: var(--white-faint);

  font-size: 0.74rem;
  font-style: italic;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.compliance-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-copyright {
  margin-top: 34px;

  color: rgba(212,175,55,0.78);

  font-size: 0.82rem;
  letter-spacing: 0.04em;
}


/* ============================================================
   15. MOTION EFFECTS
============================================================ */

.reveal {
  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}


/* ============================================================
   16. RESPONSIVE DESIGN - TABLET
============================================================ */

@media (max-width: 1000px) {

  .top-contact {
    position: static;

    margin: 10px 0 15px;

    text-align: center;
  }

  .menu-wrapper {
    height: 280px;
  }

  .hero-logo-wrap {
    width: 290px;
  }

  .nav-btn {
    font-size: 0.95rem;
  }

  .nav-home {
    left: 14%;
    top: 175px;
  }

  .nav-about {
    left: 27%;
    top: 195px;
  }

  .nav-services {
    right: 27%;
    top: 195px;
  }

  .nav-contact {
    right: 13%;
    top: 175px;
  }

  .trust-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .trust-divider {
    display: none;
  }

  .trust-band {
    padding: 45px 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   16A. RESPONSIVE DESIGN - MOBILE
============================================================ */

@media (max-width: 760px) {

  /* -------------------------
     Mobile Header
  ------------------------- */

  .hero {
    min-height: 215px;
    padding: 0;

    overflow: hidden;
  }

  .menu-wrapper {
    height: 215px;
    max-width: 100%;
  }

  .menu-border {
    top: -150px;
    left: 50%;

    width: 220%;
    max-width: none;

    transform: translateX(-50%);

    opacity: 0.85;
  }

  .hero-logo-wrap {
    width: 210px;
    top: 0px;
  }

  .top-contact,
  .top-nav {
    display: none;
  }

  /* -------------------------
     Mobile Sticky Page Bar
  ------------------------- */

  .subhero-banner {
    min-height: 52px;
    padding: 10px 48px;
  }

  .subhero-content h1 {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    line-height: 1.25;
  }

  .sticky-menu-btn {
    left: 12px;

    font-size: 0;

    opacity: 1;

    pointer-events: auto;
  }

  .sticky-menu-btn::before {
    content: "☰";

    color: var(--gold-light);

    font-size: 1.25rem;
  }

  .sticky-menu-btn,
  .sticky-menu-btn:visited,
  .sticky-menu-btn:focus,
  .sticky-menu-btn:active {
    color: var(--gold-light);
  }

  .sticky-menu-btn.menu-is-open,
  .sticky-menu-btn.menu-is-open::before {
    color: white;

    text-shadow:
      0 0 8px rgba(212,175,55,0.45),
      0 0 18px rgba(212,175,55,0.35);
  }

  .sticky-logo {
    right: 12px;

    height: 32px;

    opacity: var(--sticky-tools-opacity);
  }

  .sticky-dropdown {
    top: 52px;
    left: 10px;

    min-width: 170px;
  }

  /* -------------------------
     Mobile Focus / Trust Bands
  ------------------------- */

  .focus-band {
    padding: 18px 18px;
  }

  .focus-content h2 {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .focus-content p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .trust-band {
    padding: 32px 20px;
  }

  .trust-grid {
    gap: 28px;
  }

  .trust-item h3 {
    font-size: 1.1rem;
  }

  .trust-item p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  /* -------------------------
     Mobile Page Sections
  ------------------------- */

  .page-hero {
    padding: 50px 22px 35px;
  }

  .page-hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .page-hero p {
    font-size: 0.98rem;
  }

  .content-section,
  .services-section,
  .bio-section,
  .contact-page-section,
  .contact-section {
    padding: 55px 20px;
  }

  .content-card,
  .intro-card,
  .cta-box,
  .contact-card,
  .contact-info-card,
  .contact-form-card {
    padding: 28px 22px;

    border-radius: var(--radius-soft);
  }

  .services-section h2,
  .bio-section h2,
  .contact-card h2,
  .contact-info-card h2,
  .contact-form-card h2 {
    font-size: 1.75rem;
  }

  /* -------------------------
     Mobile Services
  ------------------------- */

  .services-grid {
    grid-template-columns: 1fr;

    gap: 22px;
  }

  .service-card {
    padding: 28px 22px;
  }

  /* -------------------------
     Mobile About Bios
  ------------------------- */

  .philosophy-pillars,
  .bio-grid {
    grid-template-columns: 1fr;
  }

  .bio-grid {
    gap: 28px;
  }

  .bio-photo {
    height: 320px;
  }

  /* -------------------------
     Mobile Contact Page
  ------------------------- */

  .contact-page-grid {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 1rem;
  }

  /* -------------------------
     Mobile Honeycomb Map
  ------------------------- */

  .tree-section {
    padding: 50px 16px 75px;
  }

  .tree-section h2 {
    margin-bottom: 35px;

    font-size: 1.55rem;
    line-height: 1.25;
  }

  .tree-map {
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    overflow: visible;
  }

  .hex {
    position: static;

    width: 235px;
    height: 265px;

    margin-top: -24px;
  }

  .hex:first-child {
    margin-top: 0;
  }

  .blank {
    display: none;
  }

  .hex:hover {
    transform: none;
  }

  .hex .hex-image {
    opacity: 1;

    transition:
      opacity 1.05s ease-in-out,
      filter 1.05s ease-in-out,
      transform 1.05s ease-in-out;
  }

  .hex .hex-text {
    opacity: 0;

    transition:
      opacity 1.05s ease-in-out,
      background 1.05s ease-in-out;
  }

  .hex.mobile-active .hex-image {
    opacity: 0.28;

    filter:
      blur(0.8px)
      brightness(0.72)
      saturate(0.85)
      contrast(0.95);
  }

  .hex.mobile-active .hex-text {
    opacity: 1;

    background: rgba(20,5,30,0.58);
  }

  .hex-text h3 {
    font-size: 1rem;
  }

  .hex-text p {
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .daat .hex-content {
    background:
      radial-gradient(
        circle at top,
        rgba(12,12,18,0.98),
        rgba(0,0,0,0.98)
      );
  }

  .daat p,
  .daat span {
    opacity: 1;
  }

  /* -------------------------
     Mobile Footer
  ------------------------- */

  .site-footer {
    padding: 42px 22px;
  }

  .footer-disclaimer,
  .compliance-disclaimer p {
    font-size: 0.72rem;
    line-height: 1.7;
  }
}


/* ============================================================
   16B. ACCESSIBILITY - REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .reveal,
  .hex,
  .hex-image,
  .nav-btn,
  .cta-button,
  .hero-logo-wrap,
  .service-card {
    animation: none !important;
    transition: none !important;
  }
}