/* ============================================================
   HADRA BUSINESS CONSULTANT — Premium Stylesheet
   Palette: Deep Navy #0A1628 | Gold #C9A84C | Ivory #F8F5EF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0A1628;
  --navy-mid:  #112240;
  --navy-light:#1A3358;
  --gold:      #C9A84C;
  --gold-light:#E2C47A;
  --gold-pale: #F5EDD6;
  --ivory:     #F8F5EF;
  --white:     #FFFFFF;
  --gray-100:  #F1EEE8;
  --gray-400:  #9A9080;
  --gray-600:  #6B6258;
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--ivory);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Selection ── */
::selection { background: var(--gold); color: var(--navy); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.loader-bar {
  width: 180px; height: 1px;
  background: rgba(201,168,76,0.2);
  position: relative; overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: loadBar 1.6s var(--ease-in-out) forwards;
}
@keyframes loadBar { to { left: 0; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  transition: background 0.4s var(--ease-out), height 0.4s var(--ease-out),
              box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(16px);
  height: 68px;
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}

.nav-logo {
  display: flex; flex-direction: column; gap: 1px;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-logo-tag {
  font-size: 0.6rem; font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 40px;
}
.nav-link {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(248,245,239,0.75);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--ivory);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: var(--navy);
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile .nav-link {
  font-size: 2.2rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.06em;
  color: var(--ivory);
}

/* ============================================================
   HERO — Editorial Split Layout
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  position: relative;
  overflow: hidden;
}

/* ── Left panel ── */
.hero-left {
  position: relative; z-index: 1;
  padding: 160px 72px 80px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--navy);
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-left > * { position: relative; z-index: 1; }

/* Tag row */
.hero-tag-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 44px;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 10px rgba(201,168,76,0.6);
}
.hero-tag-text {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(248,245,239,0.5);
}
.hero-tag-sep {
  width: 28px; height: 1px; background: rgba(201,168,76,0.35);
}

/* Headline */
.hero-headline {
  display: flex; flex-direction: column;
  margin-bottom: 36px;
}
.hero-hl-thin {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.6rem, 5.5vw, 6rem);
  font-weight: 300;
  color: rgba(248,245,239,0.55);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.hero-hl-bold {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.2rem, 6.5vw, 7.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.hero-hl-bold em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-hl-thin:last-child {
  font-size: clamp(3.6rem, 5.5vw, 6rem);
  font-weight: 300;
  color: rgba(248,245,239,0.55);
}

.hero-desc {
  font-size: 1rem; font-weight: 300;
  color: rgba(248,245,239,0.60);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 52px;
}
.hero-done {
  display: block;
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  font-style: normal;
  color: var(--ivory);
  letter-spacing: 0.01em;
}
.hero-done em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
}
.atoz-inline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15em;
  font-weight: 500;
  color: var(--ivory);
}
.atoz-inline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,0.4);
  text-underline-offset: 4px;
}

.hero-actions {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 40px; left: 72px;
  display: flex; align-items: center; gap: 14px;
  color: rgba(248,245,239,0.25);
  font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.hero-scroll-line {
  width: 48px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 0.9; transform: translateX(6px); }
}

/* ── Right panel ── */
.hero-right {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  border-left: 1px solid rgba(201,168,76,0.18);
  overflow: hidden;
}
.hero-right-bg {
  position: absolute; inset: 0;
  background: var(--navy-mid);
}
.hero-right-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 80% at 60% 20%, rgba(201,168,76,0.07) 0%, transparent 65%);
}

/* Stats panel */
.hero-stat-panel {
  position: relative; z-index: 1;
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 52px;
  gap: 0;
}

.hero-stat-item {
  padding: 36px 0;
  position: relative;
}

.hero-stat-divider {
  width: 100%; height: 1px;
  background: rgba(201,168,76,0.14);
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex; align-items: flex-start;
  margin-bottom: 12px;
}
.hero-stat-suf {
  font-size: 2.8rem;
  color: var(--gold);
  margin-top: 10px;
  margin-left: 4px;
}

.hero-stat-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(248,245,239,0.42);
  line-height: 1.6;
}

.hero-stat-bar {
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 1.2s var(--ease-out);
}
.hero-stat-bar.animated { width: 100%; }

/* Bottom label strip */
.hero-right-label {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 4px;
  padding: 24px 52px;
  border-top: 1px solid rgba(201,168,76,0.14);
  background: rgba(10,22,40,0.4);
}
.hero-right-label span:first-child {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}
.hero-right-label span:last-child {
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(248,245,239,0.3);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { box-shadow: 0 8px 32px rgba(201,168,76,0.35); transform: translateY(-2px); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(248,245,239,0.7);
  border-bottom: 1px solid rgba(248,245,239,0.2);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 120px 60px; position: relative; }
.section-sm { padding: 80px 60px; }

.section-label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.section-label-line { width: 32px; height: 1px; background: var(--gold); }
.section-label-text {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold-light); }

.section-subtitle {
  font-size: 1rem; font-weight: 300;
  color: rgba(248,245,239,0.6);
  max-width: 560px;
  line-height: 1.8;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 18px 0;
  background: rgba(201,168,76,0.03);
}
.marquee-track {
  display: flex; gap: 60px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 20px; white-space: nowrap;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(248,245,239,0.4);
}
.marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES SECTION (Home)
   ============================================================ */
.services-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 80px;
}

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(201,168,76,0.12);
}

.service-card {
  background: var(--navy);
  padding: 48px 40px;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: background 0.4s var(--ease-out);
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover { background: var(--navy-mid); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300;
  color: rgba(201,168,76,0.12);
  line-height: 1; margin-bottom: 24px;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(201,168,76,0.25); }

.service-icon {
  width: 44px; height: 44px; margin-bottom: 24px;
  color: var(--gold);
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 0.875rem; font-weight: 300;
  color: rgba(248,245,239,0.55);
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 14px; }

/* ============================================================
   ABOUT STRIP (Home)
   ============================================================ */
.about-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-frame {
  aspect-ratio: 4/5;
  background: var(--navy-mid);
  position: relative; overflow: hidden;
}
.about-img-frame::after {
  content: '';
  position: absolute; bottom: -2px; right: -2px;
  width: 70%; height: 70%;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  pointer-events: none;
}
.about-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  color: rgba(201,168,76,0.3);
}
.about-placeholder svg { width: 64px; height: 64px; }
.about-placeholder span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }

.about-badge {
  position: absolute; bottom: 40px; left: -40px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 28px;
  text-align: center;
}
.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 600;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600;
  margin-top: 4px;
}

.about-content {}
.about-values {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 24px;
}
.about-value {
  display: flex; gap: 20px; align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.about-value:last-child { border-bottom: none; }
.about-value-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.about-value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--white);
  margin-bottom: 6px;
}
.about-value-text { font-size: 0.85rem; color: rgba(248,245,239,0.5); line-height: 1.7; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 80px;
  border: 1px solid rgba(201,168,76,0.35);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.08),
    0 0 40px rgba(201,168,76,0.12),
    0 0 80px rgba(201,168,76,0.07),
    inset 0 0 60px rgba(201,168,76,0.04);
}

/* Running gold light — top edge */
.process-steps::before {
  content: '';
  position: absolute; top: 0; left: -30%;
  width: 30%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  filter: blur(1px);
  animation: runTop 3s ease-in-out infinite;
  z-index: 2;
}

/* Running gold light — bottom edge */
.process-steps::after {
  content: '';
  position: absolute; bottom: 0; right: -30%;
  width: 30%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  filter: blur(1px);
  animation: runBottom 3s ease-in-out infinite;
  animation-delay: 1.5s;
  z-index: 2;
}

@keyframes runTop {
  0%   { left: -30%; }
  100% { left: 130%; }
}
@keyframes runBottom {
  0%   { right: -30%; }
  100% { right: 130%; }
}

.process-step {
  padding: 40px 36px 48px;
  border-right: 1px solid rgba(201,168,76,0.28);
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.process-step:last-child { border-right: none; }
.process-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.process-step-text {
  font-size: 0.92rem;
  color: rgba(248,245,239,0.65);
  line-height: 1.8;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--gold);
  padding: 80px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-band-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  font-weight: 500;
  max-width: 600px;
}
.btn-dark {
  display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0;
  padding: 16px 36px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.3s, transform 0.3s;
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: rgba(5, 12, 22, 0.98);
  padding: 80px 60px 40px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand {}
.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-brand-tag {
  font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-brand-desc {
  font-size: 0.85rem; font-weight: 300;
  color: rgba(248,245,239,0.45);
  line-height: 1.8; max-width: 280px;
}

.footer-col-title {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(248,245,239,0.45);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--ivory); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span {
  font-size: 0.85rem; color: rgba(248,245,239,0.45); line-height: 1.6;
}
.footer-contact-link {
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.footer-contact-link:hover { opacity: 0.75; }
.footer-contact-link:hover span { color: rgba(248,245,239,0.7); }
.footer-contact-link:hover svg { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(248,245,239,0.06);
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy {
  font-size: 0.75rem; color: rgba(248,245,239,0.25);
  letter-spacing: 0.05em;
}
.footer-bottom-links {
  display: flex; gap: 28px;
}
.footer-bottom-links a {
  font-size: 0.72rem; color: rgba(248,245,239,0.25);
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 36px; right: 36px; z-index: 990;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: floatPop 0.6s var(--ease-out) 2s both;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}
@keyframes floatPop {
  from { transform: scale(0) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.whatsapp-float svg { color: white; }

/* ============================================================
   SERVICES PAGE HERO — Full Bleed Image
   ============================================================ */
.svc-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Background image */
.svc-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.svc-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.svc-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.75) 50%, rgba(10,22,40,0.45) 100%);
}

/* Text content */
.svc-hero-content {
  position: relative; z-index: 1;
  padding: 160px 72px 100px;
  max-width: 720px;
}

.svc-hero-actions {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-top: 48px;
}

/* Photo credit */
.svc-hero-credit {
  position: absolute; bottom: 24px; right: 32px; z-index: 2;
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(248,245,239,0.2);
}

@media (max-width: 900px) {
  .svc-hero-content { padding: 140px 28px 80px; }
  .svc-hero-overlay {
    background: rgba(10,22,40,0.82);
  }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
/* ============================================================
   ABOUT HERO — Framed Statement
   ============================================================ */
.au-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 60px 110px;
  background:
    radial-gradient(circle at 18% 20%, rgba(201,168,76,0.08) 0%, transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(201,168,76,0.05) 0%, transparent 20%),
    linear-gradient(180deg, #0b1730 0%, #091427 100%);
  overflow: hidden;
}

.au-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.55;
  pointer-events: none;
}

.au-hero-frame {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(201,168,76,0.12);
  pointer-events: none;
}

.au-hero-frame::before,
.au-hero-frame::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-color: rgba(201,168,76,0.45);
  pointer-events: none;
}

.au-hero-frame::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid rgba(201,168,76,0.45);
  border-left: 2px solid rgba(201,168,76,0.45);
}

.au-hero-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid rgba(201,168,76,0.45);
  border-bottom: 2px solid rgba(201,168,76,0.45);
}

.au-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.55;
}

.au-hero-orb-1 {
  width: 220px;
  height: 220px;
  top: 12%;
  left: 8%;
  background: radial-gradient(circle, rgba(201,168,76,0.16) 0%, rgba(201,168,76,0) 72%);
}

.au-hero-orb-2 {
  width: 180px;
  height: 180px;
  right: 10%;
  bottom: 14%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0) 74%);
}

.au-hero-watermark {
  position: absolute;
  inset: auto 0 10%;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16vw, 20vw, 300px);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(248,245,239,0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.au-hero-meta {
  position: absolute;
  top: 112px;
  left: 60px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.au-hero-meta-line {
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.au-hero-meta-text {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.52);
  font-weight: 600;
}

.au-hero-stage {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  text-align: center;
  padding: 64px 56px 58px;
  background: linear-gradient(180deg, rgba(14,26,47,0.72) 0%, rgba(8,18,35,0.8) 100%);
  border: 1px solid rgba(201,168,76,0.14);
  box-shadow:
    0 20px 48px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(248,245,239,0.04);
}

.au-hero-stage::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201,168,76,0.08);
  pointer-events: none;
}

.au-hero-kicker {
  display: inline-block;
  margin-bottom: 26px;
  padding: 9px 16px;
  border: 1px solid rgba(201,168,76,0.16);
  background: rgba(201,168,76,0.05);
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}

.au-hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.au-hl-dim {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: rgba(248,245,239,0.36);
}

.au-hl-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5.4rem, 10vw, 10.5rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--white);
  text-shadow: 0 12px 36px rgba(0,0,0,0.2);
}

.au-hl-main em {
  font-style: italic;
  color: var(--white);
}

.au-hl-gold {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.3rem, 5.8vw, 6.3rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--gold);
  text-shadow: 0 0 26px rgba(201,168,76,0.14);
}

.au-hero-desc {
  max-width: 620px;
  margin: 0 auto 18px;
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 300;
  color: rgba(248,245,239,0.58);
}

.au-hero-people {
  margin-bottom: 38px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(248,245,239,0.78);
}

.au-hero-people em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}

.au-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.au-hero-note {
  position: absolute;
  right: 60px;
  bottom: 48px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(201,168,76,0.12);
  background: rgba(10,22,40,0.42);
  color: rgba(248,245,239,0.42);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.au-hero-note-dot {
  color: var(--gold);
  opacity: 0.5;
}

.au-hero-scroll {
  position: absolute;
  left: 60px;
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(248,245,239,0.25);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@media (max-width: 900px) {
  .au-hero {
    padding: 130px 28px 90px;
  }

  .au-hero-meta {
    top: 98px;
    left: 28px;
  }

  .au-hero-stage {
    padding: 44px 26px 40px;
  }

  .au-hero-note,
  .au-hero-scroll {
    position: static;
    margin-top: 28px;
  }

  .au-hero {
    justify-content: center;
    gap: 0;
  }

  .au-hero-note {
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .au-hero-scroll {
    display: none;
  }

  .au-hero-frame {
    inset: 16px;
  }
}

/* ============================================================
   PAGE HERO — Generic (Contact, etc.)
   ============================================================ */
.page-hero {
  padding: 180px 60px 100px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300; color: var(--white);
  margin-bottom: 24px;
}
.page-hero-sub {
  font-size: 1.1rem; font-weight: 300;
  color: rgba(248,245,239,0.6); max-width: 560px; line-height: 1.8;
}


.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.team-card {
  background: var(--navy-mid);
  padding: 48px 36px;
  text-align: center;
  transition: background 0.3s;
}
.team-card:hover { background: var(--navy-light); }
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 2px solid rgba(201,168,76,0.3);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 6px; }
.team-role { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.team-bio { font-size: 0.85rem; color: rgba(248,245,239,0.5); line-height: 1.7; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  margin-top: 60px;
}
.service-page-card {
  background: var(--navy-mid);
  padding: 56px 52px;
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.service-page-card:hover { background: var(--navy-light); }
.service-page-card::after {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 2px; background: transparent;
  transition: background 0.4s;
}
.service-page-card:hover::after { background: var(--gold); }

.service-page-header { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 28px; }
.service-page-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.service-page-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  animation: namePulse 2.4s ease-in-out infinite;
  letter-spacing: 0.02em;
}
@keyframes namePulse {
  0%, 100% {
    color: var(--gold);
    text-shadow: 0 0 12px rgba(201,168,76,0.5), 0 0 28px rgba(201,168,76,0.2);
  }
  50% {
    color: #f0d078;
    text-shadow: 0 0 20px rgba(240,208,120,0.8), 0 0 48px rgba(201,168,76,0.4);
  }
}
.service-page-tagline { font-size: 0.8rem; color: rgba(248,245,239,0.4); margin-top: 4px; }
.service-page-desc { font-size: 0.9rem; color: rgba(248,245,239,0.6); line-height: 1.8; margin-bottom: 28px; }

.service-what {
  background: rgba(201,168,76,0.05);
  border-left: 2px solid rgba(201,168,76,0.35);
  padding: 16px 18px;
  border-radius: 0 4px 4px 0;
  font-size: 0.875rem;
  color: rgba(248,245,239,0.6);
  line-height: 1.8;
  margin-bottom: 4px;
}
.service-what strong { color: var(--ivory); font-weight: 500; }
.service-what em { color: rgba(248,245,239,0.5); font-style: italic; }
.service-what-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}
.service-page-list { display: flex; flex-direction: column; gap: 10px; }
.service-page-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: rgba(248,245,239,0.55);
}
.service-page-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0; margin-top: 7px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 0;
  min-height: 600px;
}
.contact-info {
  background: var(--navy-mid);
  padding: 72px 56px;
}
.contact-detail {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 32px;
}
.contact-detail-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-detail-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-detail-label {
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.contact-detail-value { font-size: 0.95rem; color: var(--ivory); line-height: 1.6; }

.contact-form-wrap {
  background: var(--navy);
  padding: 72px 56px;
  border: 1px solid rgba(201,168,76,0.08);
}
.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; color: var(--white); margin-bottom: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem; font-weight: 300;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select option { background: var(--navy); }

.form-submit {
  width: 100%; padding: 18px;
  background: var(--gold); color: var(--navy);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  font-family: 'Inter', sans-serif;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

.map-embed {
  margin-top: 2px;
  height: 320px; overflow: hidden;
  filter: grayscale(50%) contrast(1.1);
  opacity: 0.8;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   UTILITY & ANIMATIONS
   ============================================================ */
.divider {
  width: 100%; height: 1px;
  background: rgba(201,168,76,0.1);
}

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: rgba(248,245,239,0.5); }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   ABOUT PAGE — STRONG ANIMATIONS
   ============================================================ */

/* Image credit */
.about-img-credit {
  position: absolute; bottom: 12px; right: 12px;
  font-size: 0.55rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(248,245,239,0.2);
  pointer-events: none;
}

/* Story section — left/right directional reveals */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Image frame: float + pulsing gold corner accent ── */
@keyframes floatFrame {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(0.3deg); }
  66%       { transform: translateY(-6px) rotate(-0.2deg); }
}
.about-img-frame {
  animation: floatFrame 7s ease-in-out infinite;
}

/* Gold corner border animates too */
@keyframes cornerGlow {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; filter: drop-shadow(0 0 8px rgba(201,168,76,0.7)); }
}
.about-img-frame::after {
  animation: cornerGlow 3s ease-in-out infinite;
}

/* ── Badge: persistent gold pulse ring ── */
@keyframes badgePulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.7), 4px 4px 24px rgba(0,0,0,0.35); }
  50%  { box-shadow: 0 0 0 18px rgba(201,168,76,0), 4px 4px 24px rgba(0,0,0,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0), 4px 4px 24px rgba(0,0,0,0.35); }
}
.about-badge {
  animation: badgePulse 2.4s ease-out infinite;
}

/* ── Section label line: draw-in ── */
@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to   { width: 32px; opacity: 1; }
}
.section-label-line {
  animation: lineGrow 0.9s var(--ease-out) both;
}

/* ── Value cards: clean hover-only animation ── */
.about-value-card {
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.4s ease;
  cursor: default;
  overflow: visible;
  box-shadow: 0 1px 0 rgba(201,168,76,0.08);
}

.about-value-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 44px rgba(0,0,0,0.26),
    0 0 0 1px rgba(201,168,76,0.24),
    0 0 28px rgba(201,168,76,0.08);
  background: rgba(201,168,76,0.025) !important;
  z-index: 2;
}

/* Icon on hover */
.about-value-icon {
  transition: border-color 0.3s ease, color 0.3s ease;
}
.about-value-card:hover .about-value-icon {
  border-color: rgba(201,168,76,0.55);
  color: var(--gold-light);
}

/* Heading on hover */
.about-value-card h4 {
  transition: color 0.3s ease;
}
.about-value-card:hover h4 {
  color: var(--gold-light);
}

/* ── Mission / Vision panels ── */
.about-mv-panel {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s ease,
    background 0.35s ease;
  border: 1px solid rgba(201,168,76,0.08);
}
.about-mv-panel::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201,168,76,0);
  transition: border-color 0.35s ease, inset 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.about-mv-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 84px;
  border-top: 2px solid rgba(201,168,76,0);
  border-left: 2px solid rgba(201,168,76,0);
  transition: border-color 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  z-index: 2;
}

.about-mv-panel:nth-child(2)::after {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  border-top: none;
  border-left: none;
  border-right: 2px solid rgba(201,168,76,0);
  border-bottom: 2px solid rgba(201,168,76,0);
}

.about-mv-panel:hover {
  transform: translateY(-8px);
  box-shadow:
    0 18px 42px rgba(0,0,0,0.24),
    0 0 0 1px rgba(201,168,76,0.16);
  border-color: rgba(201,168,76,0.18);
  background: linear-gradient(180deg, rgba(201,168,76,0.02) 0%, rgba(201,168,76,0.035) 100%) !important;
}
.about-mv-panel:hover::before {
  inset: 10px;
  border-color: rgba(201,168,76,0.14);
}
.about-mv-panel:hover::after {
  border-top-color: rgba(201,168,76,0.45);
  border-left-color: rgba(201,168,76,0.45);
  transform: translate(10px, 10px);
}
.about-mv-panel:nth-child(2):hover::after {
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: rgba(201,168,76,0.45);
  border-bottom-color: rgba(201,168,76,0.45);
  transform: translate(-10px, -10px);
}
.about-mv-panel h3 em {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.about-mv-panel:hover h3 em {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(201,168,76,0.18);
}

/* ── CTA band ── */

/* ── Page hero: animated gradient ── */
@keyframes heroSweep {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
.page-hero-bg {
  animation: heroSweep 12s ease infinite;
  background-size: 200% 200%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-bottom: 1px solid rgba(201,168,76,0.12); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1200px) {
  .hero { grid-template-columns: 1fr 380px; }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 340px; }
  .hero-left { padding: 140px 48px 80px; }
  .hero-stat-panel { padding: 60px 36px; }
  .hero-right-label { padding: 20px 36px; }
  .hero-stat-num { font-size: 4.8rem; }
  .hero-stat-suf { font-size: 2.2rem; }
}

@media (max-width: 900px) {
  .nav { padding: 0 28px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .hero-left { padding: 140px 28px 60px; }
  .hero-scroll { display: none; }
  .hero-right { border-left: none; border-top: 1px solid rgba(201,168,76,0.18); }
  .hero-stat-panel { flex-direction: row; padding: 40px 28px; gap: 0; justify-content: space-around; }
  .hero-stat-divider { display: none; }
  .hero-stat-item { padding: 0 20px; text-align: center; }
  .hero-stat-num { font-size: 3.8rem; justify-content: center; }
  .hero-stat-suf { font-size: 1.8rem; }
  .hero-right-label { display: none; }

  .section { padding: 80px 28px; }
  .section-sm { padding: 60px 28px; }

  .services-intro { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; gap: 60px; }
  .about-badge { left: 0; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; }

  .cta-band { flex-direction: column; text-align: center; padding: 60px 28px; }
  .footer { padding: 60px 28px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .page-hero { padding: 140px 28px 80px; }
  .team-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info, .contact-form-wrap { padding: 48px 28px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-title, .hero-title-sub { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .whatsapp-float { bottom: 24px; right: 24px; }
}
