/*
Theme Name: AHH Consultancy
Theme URI: https://ahhconsultancy.com
Author: AHH Consultancy
Author URI: https://ahhconsultancy.com
Description: Custom theme for AHH Consultancy.
Version: 1.0.0
Text Domain: ahh-theme
*/

:root {
  /* Backgrounds — warm, light */
  --bg: #faf9f7;
  --bg-white: #ffffff;
  --bg-cream: #f3f1ec;
  --bg-soft: #f7f5f0;
  --bg-gold-tint: rgba(184, 148, 30, 0.04);

  /* Text */
  --text-dark: #18181b;
  --text-body: #555568;
  --text-light: #8e8ea0;
  --text-heading: #18181b;

  /* Gold accent — primary brand */
  --gold: #b8941e;
  --gold-light: #d4af37;
  --gold-dark: #9a7a10;
  --gold-pale: rgba(184, 148, 30, 0.08);
  --gold-glow: rgba(212, 175, 55, 0.15);

  /* Supporting accents */
  --blue: #3b6eb5;
  --green: #2a8a6a;
  --purple: #7c52c9;
  --coral: #d4725c;

  /* Neutrals */
  --border: rgba(0, 0, 0, 0.06);
  --border-gold: rgba(184, 148, 30, 0.2);

  /* Typography */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ═══════════════════════════════════
   HEADER — Minimal: Logo + Hamburger
   ═══════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 1.25rem 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.header.scrolled {
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  position: relative;
}

.header .logo {
  z-index: 501;
}

.logo__img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  transition: color 0.4s;
}

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

/* Hamburger */
.hamburger {
  position: relative;
  z-index: 501;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1.5px solid var(--text-light);
  border-radius: 50%;
  background: none;
  transition: border-color 0.3s, transform 0.3s;
}

.hamburger:hover {
  border-color: var(--gold);
  transform: scale(1.05);
}

.hamburger__lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.hamburger__line {
  height: 1.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  transform-origin: center;
}

.hamburger__line:nth-child(2) {
  width: 12px;
  margin-left: auto;
}

.hamburger.active {
  border-color: var(--gold) !important;
}

.hamburger.active .hamburger__line {
  background: #fff !important;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
  width: 18px;
}

.hamburger.active .hamburger__line:nth-child(2) {
  
  width: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
  width: 18px;
}

/* When mega menu is open: match the overlay background so header blends seamlessly */
.header:has(.hamburger.active) {
  background: var(--text-dark) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.header:has(.hamburger.active) .logo__text {
  color: #fff;
}

/* ═══════════════════════════════════
   MEGA NAV OVERLAY
   ═══════════════════════════════════ */

.mega-overlay {
  position: fixed;
  inset: 0;
  z-index: 499;
  background: var(--text-dark);
  display: flex;
  align-items: flex-start;
  
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
  padding-top: 5rem;
  overflow-y: auto;
}

.mega-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mega-overlay .container {
  width: 100%;
}

.mega-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding: 2rem 0;
}

.mega-nav__section h5 {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-nav__link {
  display: block;
  padding: 0.625rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, padding-left 0.3s var(--ease);
  line-height: 1.3;
}

.mega-nav__link:hover {
  color: #fff;
  padding-left: 0.5rem;
}

.mega-nav__desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 0.125rem;
  font-family: var(--font-body);
  font-weight: 400;
}

.mega-nav__contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-nav__contact p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.375rem;
}

.mega-nav__contact a {
  color: var(--gold-light);
  font-size: 0.875rem;
}

.mega-nav__contact a:hover {
  color: #fff;
}

/* Link stagger animation */
.mega-overlay .mega-nav__link {

  
  transition: color 0.3s, padding-left 0.3s var(--ease), transform 0.5s var(--ease), opacity 0.5s var(--ease);
}

.mega-overlay.active .mega-nav__link {
  transform: translateY(0);
  opacity: 1;
}

.mega-overlay.active .mega-nav__link:nth-child(1) {
  transition-delay: 0.1s;
}

.mega-overlay.active .mega-nav__link:nth-child(2) {
  transition-delay: 0.15s;
}

.mega-overlay.active .mega-nav__link:nth-child(3) {
  transition-delay: 0.2s;
}

.mega-overlay.active .mega-nav__link:nth-child(4) {
  transition-delay: 0.25s;
}

.mega-overlay.active .mega-nav__link:nth-child(5) {
  transition-delay: 0.3s;
}

/* ═══════════════════════════════════
   BUTTONS
   ═══════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  letter-spacing: 0.01em;
}

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

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 148, 30, 0.25);
}

.btn--dark {
  background: var(--text-dark);
  color: #fff;
}

.btn--dark:hover {
  background: #2a2a44;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn--outline-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn--large {
  padding: 0.875rem 2.25rem;
  font-size: 0.875rem;
}

/* ═══════════════════════════════════
   HERO — Light, editorial, warm
   ═══════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

/* Soft gradient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: orb-drift 25s ease-in-out infinite alternate;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: rgba(212, 175, 55, 0.1);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 450px;
  height: 450px;
  background: rgba(59, 110, 181, 0.06);
  bottom: -20%;
  left: -5%;
  animation-delay: -8s;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: rgba(124, 82, 201, 0.04);
  top: 50%;
  left: 35%;
  animation-delay: -16s;
}

@keyframes orb-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -50px) scale(1.08);
  }

  66% {
    transform: translate(-30px, 30px) scale(0.95);
  }

  100% {
    transform: translate(10px, -20px) scale(1.03);
  }
}

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

.hero__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.hero__layout--centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.hero__layout--centered .hero__tagline {
  justify-content: center;
}

.hero__layout--centered .hero__subtitle {
  margin: 0 auto 2.5rem;
  max-width: 580px;
}

.hero__layout--centered .hero__actions {
  justify-content: center;
}

.hero__globe-area {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__globe-simple {
  width: 420px;
  filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.2));
  animation: gentle-float 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.hero__globe-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle 120px at var(--gx, 50%) var(--gy, 50%),
      rgba(212, 175, 55, 0.25) 0%,
      rgba(212, 175, 55, 0.08) 40%,
      transparent 70%);
  
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.hero__globe-area:hover .hero__globe-glow {
  opacity: 1;
}

.hero__globe-area:hover .hero__globe-simple {
  filter: drop-shadow(0 0 60px rgba(212, 175, 55, 0.35));
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__tagline::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
}

/* Hero branded graphic — orbital globe */
.hero__graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__globe-wrap {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__globe-img {
  width: 140px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.25));
  animation: gentle-float 6s ease-in-out infinite;
}

/* Orbital rings */
.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  animation: spin-slow 30s linear infinite;
}

.hero__ring--1 {
  inset: 0;
  border-color: rgba(212, 175, 55, 0.12);
  animation-duration: 35s;
}

.hero__ring--2 {
  inset: 30px;
  border-color: rgba(212, 175, 55, 0.08);
  border-style: dashed;
  animation-duration: 25s;
  animation-direction: reverse;
}

.hero__ring--3 {
  inset: 65px;
  border-color: rgba(19, 47, 70, 0.3);
  animation-duration: 40s;
}

/* Glowing nodes on rings */
.hero__node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  z-index: 3;
}

.hero__node--1 {
  background: var(--gold-light);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
  top: 12%;
  right: 18%;
  animation: node-pulse 3s ease-in-out infinite;
}

.hero__node--2 {
  background: rgba(19, 47, 70, 0.8);
  box-shadow: 0 0 10px rgba(19, 47, 70, 0.3);
  bottom: 20%;
  left: 10%;
  width: 6px;
  height: 6px;
  animation: node-pulse 3s ease-in-out infinite 1s;
}

.hero__node--3 {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
  top: 50%;
  right: 2%;
  width: 5px;
  height: 5px;
  animation: node-pulse 3s ease-in-out infinite 2s;
}

.hero__node--4 {
  background: rgba(19, 47, 70, 0.6);
  box-shadow: 0 0 10px rgba(19, 47, 70, 0.2);
  bottom: 8%;
  right: 35%;
  width: 7px;
  height: 7px;
  animation: node-pulse 3s ease-in-out infinite 0.5s;
}

@keyframes node-pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gentle-float {

  0%,
  100% {
    transform: translateY(0);
  }

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

/* ═══════════════════════════════════
   SECTIONS
   ═══════════════════════════════════ */

.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.section--cream {
  background: var(--bg-cream);
}

.section--white {
  background: var(--bg-white);
}

.section--soft {
  background: var(--bg-soft);
}

.section--gold-tint {
  background: var(--bg-gold-tint);
}

/* Gold accent band section */
.section--accent {
  background: linear-gradient(135deg, #fdf8ec 0%, #faf5e4 50%, #f5eed8 100%);
}

/* Section headers */
.sh {
  margin-bottom: 4rem;
}

.sh--center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sh__label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sh__label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.sh--center .sh__label {
  justify-content: center;
}

.sh--center .sh__label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.sh__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-dark);
}

.sh__desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 1rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════
   EDITORIAL SERVICE BLOCKS
   ═══════════════════════════════════ */

.services-editorial {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  transition: background 0.4s var(--ease);
  cursor: pointer;
  position: relative;
}

.service-row:hover {
  background: var(--bg-white);
  margin: 0 -2.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  border-radius: 16px;
  border-color: transparent;
}

.service-row__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--bg-cream);
  line-height: 1;
  transition: color 0.4s;
}

.service-row:hover .service-row__num {
  color: var(--gold);
}

.service-row__content {
  max-width: 700px;
}

.service-row__content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  transition: color 0.3s;
}

.service-row:hover .service-row__content h3 {
  color: var(--gold-dark);
}

.service-row__content p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.service-row__arrow {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  
  transition: all 0.4s var(--ease);
  color: var(--gold);
}

.service-row:hover .service-row__arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ═══════════════════════════════════
   WHY US — Gold-tinted cards
   ═══════════════════════════════════ */

.why-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-block {
  padding: 2.5rem 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.4s var(--ease);
  text-align: center;
}

.why-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(184, 148, 30, 0.08);
  border-color: var(--border-gold);
}

.why-block__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.why-block h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  margin-bottom: 0.625rem;
  color: var(--text-dark);
}

.why-block p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ═══════════════════════════════════
   CTA CARD
   ═══════════════════════════════════ */

.cta-card {
  background: linear-gradient(135deg, var(--text-dark) 0%, #2a2a4a 100%);
  border-radius: 24px;
  padding: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  top: -40%;
  right: -5%;
  pointer-events: none;
}

.cta-card h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
}

.cta-card p {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.cta-card .btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   PAGE HEADERS — Light with gold accent
   ═══════════════════════════════════ */

.page-hero {
  background: var(--bg-cream);
  padding: 10rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  right: -10px;
  top: 45%;
  transform: translateY(-40%);
  background: url('https://ahhconsultancy.com/wp-content/uploads/2026/04/AHH_Globe.png') no-repeat center/contain;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.page-hero__orb {
  display: none;
}

.page-hero__crumb {
  display: none;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--text-dark);
  letter-spacing: -0.03em;
  position: relative;
  font-weight: 700;
  padding-left: 1.5rem;
  border-left: 4px solid var(--gold);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.7;
  padding-left: 1.75rem;
}

/* ═══════════════════════════════════
   CONTENT CARDS
   ═══════════════════════════════════ */

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

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

.content-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.35s var(--ease);
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--border-gold);
}

.content-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.content-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content-card li {
  font-size: 0.8125rem;
  color: var(--text-body);
  padding-left: 1.125rem;
  position: relative;
  line-height: 1.55;
}

.content-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ═══════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  transition: all 0.3s var(--ease);
}

.contact-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border-color: var(--border-gold);
}

.contact-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card h4 {
  font-size: 0.9375rem;
  font-family: var(--font-display);
  color: var(--text-dark);
}

.contact-card p,
.contact-card a {
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.65;
}

.contact-card a {
  color: var(--gold);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--gold-dark);
}

.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.contact-form h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 1.125rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 0.375rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

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

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

/* ═══════════════════════════════════
   ABOUT
   ═══════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h4 {
  color: var(--gold);
  font-size: 1.0625rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
}

.about-text p {
  color: var(--text-body);
  margin-bottom: 1.25rem;
  line-height: 1.85;
  font-size: 0.9375rem;
}

/* ═══════════════════════════════════
   FOOTER — Expanded
   ═══════════════════════════════════ */

.footer {
  background: var(--text-dark);
  padding: 0;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
}

/* CTA band at top of footer — full-width viewport strip */
.footer__cta {
  background: linear-gradient(135deg, #27272a 0%, var(--text-dark) 50%, #111113 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 0;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  /* Break out of container to fill viewport */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 0 80px rgba(212, 175, 55, 0.04);
}

.footer__cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer__cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 65%);
  top: -50%;
  right: -5%;
  pointer-events: none;
}

.footer__cta::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(59, 110, 181, 0.06) 0%, transparent 65%);
  bottom: -40%;
  left: 10%;
  pointer-events: none;
}

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

.footer__cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.footer__cta-content p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 440px;
  line-height: 1.7;
}

.footer__cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Main footer grid */
.footer__main {
  padding: 4rem 0 0;
}

.footer__grid-big {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr 1.5fr;
  gap: 3rem;
  grid-template-areas:
    "brand financial business company"
    "brand financial business addresses";
}

.footer__area-brand {
  grid-area: brand;
}

.footer__area-financial {
  grid-area: financial;
}

.footer__area-business {
  grid-area: business;
}

.footer__area-company {
  grid-area: company;
}

.footer__area-addresses {
  grid-area: addresses;
}

.footer__brand-big {
  max-width: 300px;
}

.footer__brand-big .logo {
  margin-bottom: 1.25rem;
}

.footer__brand-big .logo__text {
  color: #fff;
}

.footer__brand-big>p {
  font-size: 0.8125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Social links */
.footer__social {
  display: flex;
  gap: 0.625rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s var(--ease);
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
}

/* Old grid for pages that haven't been updated */
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 2.5rem;
}

.footer__brand {
  max-width: 260px;
}

.footer__brand .logo {
  margin-bottom: 1rem;
}

.footer__brand .logo__text {
  color: #fff;
}

.footer__brand p {
  font-size: 0.8125rem;
  line-height: 1.7;
}

.footer h5 {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.footer__links {
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s, padding-left 0.2s;
}

.footer__links a:hover {
  color: #fff;
  padding-left: 3px;
}

.footer__contact-item {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
}

.footer__contact-icon {
  width: 16px;
  color: var(--gold-light);
  flex-shrink: 0;
  padding-top: 3px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 3rem;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

/* ═══════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════ */

.reveal { /*   */
  
  
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

.reveal-d1 {
  transition-delay: 0.06s;
}

.reveal-d2 {
  transition-delay: 0.12s;
}

.reveal-d3 {
  transition-delay: 0.18s;
}

.reveal-d4 {
  transition-delay: 0.24s;
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

@media (max-width:1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__tagline {
    justify-content: center;
  }

  .hero__subtitle {
    margin: 0 auto 2.5rem;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__globe-area {
    margin: 2rem auto 0;
  }

  .hero__globe-simple {
    width: 200px;
  }

  .mega-nav {
    grid-template-columns: 1fr 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

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

  .footer__grid-big {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    grid-template-areas:
      "brand brand"
      "business company"
      "financial addresses";
  }

  .footer__brand-big {
    max-width: 100%;
  }

  .footer__cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__cta-actions {
    justify-content: center;
    width: 100%;
  }

  .footer__cta-content p {
    max-width: 100%;
  }

  .footer__cta-btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
  }

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

  .why-strip {
    grid-template-columns: 1fr;
  }

  .service-row:hover {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .service-row__arrow {
    display: none;
  }
}

@media (max-width:768px) {
  .mega-nav {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mega-nav__link {
    font-size: 1.25rem;
  }

  .hero {
    padding: 7rem 0 4rem;
  }

  .hero__title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .service-row {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .service-row__num {
    font-size: 2rem;
  }

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

  .footer__grid-big {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    grid-template-areas:
      "brand brand"
      "business company"
      "financial addresses";
  }

  .footer__brand-big {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .page-hero {
    padding: 8rem 0 3.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

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

  .content-grid--2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width:480px) {
  .container {
    padding: 0 1rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 2.5rem 1.5rem;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-cream);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}
