:root {
  --ink:       #0a0b0f;
  --paper:     #f5f3ee;
  --gold:      #c9a84c;
  --gold-lt:   #e8d49a;
  --slate:     #1b2333;
  --mist:      #eceae4;
  --text-muted:#6b6760;
  --radius:    0.5rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.6;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.02em;
}

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

.alert {
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: .95rem;
}

.alert-success {
  background: #d4edda;
  color: #155724;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
}

/* ── NAV ── */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(245,243,238,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: box-shadow 0.3s;
}
.nav-wrap.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.nav-inner {
  padding: 1.1rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img { height: 34px; }
.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--slate);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--ink); }

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(0,0,0,0.06); }
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.nav-hamburger span:nth-child(2) { width: 70%; margin-left: auto; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: rgba(245,243,238,0.98);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(.4,0,.2,1), padding 0.3s;
}
.nav-drawer.open {
  max-height: 400px;
  padding: 1rem 0 1.5rem;
}
.nav-drawer a {
  display: block;
  padding: 0.85rem 6vw;
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.2s, color 0.2s;
}
.nav-drawer a:hover { background: rgba(201,168,76,0.1); color: var(--gold); }
.nav-drawer .drawer-login {
  margin: 1rem 6vw 0;
  display: inline-block;
  background: var(--ink);
  color: var(--paper) !important;
  text-align: center;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.95rem !important;
  border-bottom: none !important;
}
.nav-drawer .drawer-login:hover { background: var(--slate) !important; color: var(--paper) !important; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.65rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  letter-spacing: 0.02em;
}
.btn-gold:hover { background: var(--slate); transform: translateY(-1px); color: var(--paper); }
.btn-gold-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--ink); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 10rem 4vw 6rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  right: -8vw; top: 50%;
  transform: translateY(-50%);
  width: 56vw; height: 56vw;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #8a6f28;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.03;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

/* hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 340px;
  height: 420px;
}
.hcard {
  position: absolute;
  border-radius: 1.25rem;
  padding: 2rem;
  transition: transform 0.5s cubic-bezier(.34,1.56,.64,1);
}
.hcard-1 {
  background: var(--slate);
  color: white;
  width: 300px;
  bottom: 0; left: 0;
  transform: rotate(-4deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  animation: floatA 6s ease-in-out infinite;
}
.hcard-2 {
  background: var(--ink);
  color: white;
  width: 300px;
  top: 0; right: 0;
  transform: rotate(3deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  animation: floatB 5s ease-in-out infinite;
}
.hcard-3 {
  background: linear-gradient(135deg,#c9a84c,#e8c85d);
  color: var(--ink);
  width: 260px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 40px rgba(201,168,76,0.35);
  z-index: 2;
  animation: floatC 7s ease-in-out infinite;
}
@keyframes floatA { 0%,100%{transform:rotate(-4deg) translateY(0)} 50%{transform:rotate(-4deg) translateY(-10px)} }
@keyframes floatB { 0%,100%{transform:rotate(3deg) translateY(0)} 50%{transform:rotate(3deg) translateY(8px)} }
@keyframes floatC { 0%,100%{transform:translate(-50%,-50%) translateY(0)} 50%{transform:translate(-50%,-50%) translateY(-12px)} }

.hcard-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.5rem;
  font-family: 'Syne', sans-serif;
}
.hcard-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}
.hcard-up {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 500;
  background: rgba(255,255,255,0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  margin-top: 0.5rem;
}
.hcard-3 .hcard-up { background: rgba(0,0,0,0.12); }
.hcard-circle {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.hcard-3 .hcard-circle { background: rgba(0,0,0,0.1); }

/* ── SECTION SHARED ── */
section { padding: 7rem 4vw; }

.sec-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  margin-bottom: 0.75rem;
}
.sec-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1rem;
}
.sec-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
}

/* ── SERVICES ── */
.services-section { background: var(--slate); }

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.services-head .sec-title { color: #fff; }
.services-head .sec-tag { color: var(--gold-lt); }
.services-head .sec-sub { color: rgba(255,255,255,0.5); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border-radius: 1.25rem;
  overflow: hidden;
}

.svc-card {
  background: rgba(255,255,255,0.03);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.svc-card:hover { background: rgba(255,255,255,0.07); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.15);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.svc-card:hover .svc-icon { background: rgba(201,168,76,0.25); }

.svc-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.svc-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  font-weight: 300;
}

/* ── WHY US ── */
.why-section { background: var(--mist); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-graphic {
  position: relative;
}
.why-ring {
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.why-ring::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.15);
}
.why-ring-center {
  width: 160px; height: 160px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1;
}
.why-ring-center .big-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.why-ring-center .big-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
  text-align: center;
  margin-top: 0.25rem;
}

/* orbit dots */
.orbit-dot {
  position: absolute;
  width: 42px; height: 42px;
  background: var(--paper);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.orbit-dot:nth-child(1) { top: -20px; left: 50%; transform: translateX(-50%); }
.orbit-dot:nth-child(2) { right: -20px; top: 50%; transform: translateY(-50%); }
.orbit-dot:nth-child(3) { bottom: -20px; left: 50%; transform: translateX(-50%); }
.orbit-dot:nth-child(4) { left: -20px; top: 50%; transform: translateY(-50%); }

.advantage-list { list-style: none; margin-top: 2.5rem; }
.advantage-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.advantage-list li:last-child { border-bottom: none; }
.adv-check {
  width: 28px; height: 28px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.adv-text strong {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.2rem;
}
.adv-text span { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; }

/* ── TEAM ── */
.team-section { background: var(--paper); }

.team-head { text-align: center; margin-bottom: 3.5rem; }
.team-head .sec-sub { margin: 0.75rem auto 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.member-card {
  background: var(--mist);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s;
}
.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.member-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #d4cfc6;
  position: relative;
}
.member-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.member-card:hover .member-img-wrap img { transform: scale(1.05); }

.member-info {
  padding: 1.25rem 1.5rem;
}
.member-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.member-role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

/* ── TESTIMONIALS ── */
.testi-section { background: var(--ink); }
.testi-head { text-align: center; margin-bottom: 3.5rem; }
.testi-head .sec-title { color: #fff; }
.testi-head .sec-tag { color: var(--gold); }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1.25rem;
  padding: 2.5rem;
  position: relative;
  transition: background 0.3s;
}
.testi-card:hover { background: rgba(255,255,255,0.07); }
.testi-card::before {
  content: '\201C';
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 1rem; left: 1.5rem;
  line-height: 1;
}
.testi-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  flex-shrink: 0;
}
.testi-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.testi-title { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ── FAQ ── */
.faq-section { background: var(--paper); }

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.faq-list { margin-top: 0; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  gap: 1rem;
}
.faq-btn .faq-ico {
  width: 28px; height: 28px;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--text-muted);
}
.faq-btn[aria-expanded="true"] .faq-ico {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer.open { max-height: 200px; padding-bottom: 1.25rem; }
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
}

/* ── CTA ── */
.cta-section {
  background: var(--gold);
  padding: 6rem 4vw;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section p {
  font-size: 1rem;
  color: rgba(10,11,15,0.65);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.btn-dark-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2.25rem;
  border-radius: 9999px;
  transition: transform 0.25s, box-shadow 0.25s;
  letter-spacing: 0.01em;
}
.btn-dark-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  color: var(--paper);
}

/* ── FOOTER ── */
.site-footer {
  background: #070809;
  color: rgba(255,255,255,0.45);
  padding: 5rem 4vw 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 1rem;
  font-weight: 300;
}
.footer-brand .logo-txt {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact p { font-size: 0.88rem; margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom span { color: rgba(255,255,255,0.25); }
/* ACTIVE BUTTON STATE */
.btn-gold.active,
.btn-gold:active {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(0);
}

.btn-gold-outline.active,
.btn-gold-outline:active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* ACTIVE NAV LINK */
.nav-links a.active {
  color: var(--ink);
  font-weight: 700;
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* MOBILE DRAWER ACTIVE */
.nav-drawer a.active {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }


/* CONTACT FORM LAYOUT */
.contact-form-card {
  background: var(--paper);
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

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

/* FIELDS */
.contact-field-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid #ddd;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.35);
}

.contact-textarea {
  resize: vertical;
  min-height: 140px;
}

/* Contact Section Layout */
.contact-section {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.contact-inner {
  gap: 4rem;
}

/* Contact Info */
.contact-title {
  color: white;
}

.contact-sub {
  color: rgba(255,255,255,0.6);
}

.contact-list {
  margin-top: 2rem;
}

.contact-strong {
  color: white;
}

.contact-email {
  color: var(--gold);
}

/* Contact Form */
.contact-form-card {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-title {
  margin-bottom: 1rem;
}

.contact-success {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.contact-form {
  margin-top: 1rem;
}

.contact-submit {
  width: 100%;
  margin-top: 1.25rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}
/* GLOBAL PAGE TOP SPACING BELOW NAV */
.page-section {
  padding-top: 8rem; /* Desktop */
}

@media (max-width: 768px) {
  .page-section {
    padding-top: 6.5rem; /* Mobile */
  }
}
/* LOGIN PAGE */
.login-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.login-left {
  position: relative;
  background-size: cover;
  background-position: center;
}

.login-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
}

.login-left-content {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  color: white;
  max-width: 360px;
}

.login-left-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.1;
}

.login-right {
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.login-card {
  width: 100%;
  max-width: 380px;
}

.login-card .logo {
  height: 60px;
  margin-bottom: 1.5rem;
}

.login-card .login-title {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.login-card .login-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* MOBILE */
@media (max-width: 900px) {
  .login-wrapper {
    grid-template-columns: 1fr;
  }

  .login-left {
    height: 40vh;
  }

  .login-left-content {
    bottom: 2rem;
    left: 2rem;
  }

  .login-right {
    padding: 3rem 2rem;
  }
}
/* SPLIT SCREEN AUTH LAYOUT */
.auth-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.auth-left {
  position: relative;
  background-size: cover;
  background-position: center;
}

.auth-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
}

.auth-left-content {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  color: white;
  max-width: 360px;
}

.auth-left-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.1;
}

.auth-right {
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.auth-card {
  width: 100%;
  max-width: 420px;
}

.auth-card .logo {
  height: 60px;
  margin-bottom: 1.5rem;
}

/* MOBILE */
@media (max-width: 900px) {
  .auth-wrapper {
    grid-template-columns: 1fr;
  }

  .auth-left {
    height: 40vh;
  }

  .auth-left-content {
    bottom: 2rem;
    left: 2rem;
  }

  .auth-right {
    padding: 3rem 2rem;
  }
}
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.revenue-card {
  background: var(--paper);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all .3s ease;
}

.revenue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.revenue-icon i {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  stroke-width: 1.8;
  margin-bottom: 1rem;
}

.revenue-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--ink);
}

.revenue-list {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}

.revenue-list li {
  display: flex;
  justify-content: space-between;
  padding: .4rem 0;
  font-size: .95rem;
  color: var(--ink);
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.revenue-list li:last-child {
  border-bottom: none;
}
.referral-section {
  padding: 5rem 0;
  background: var(--paper);
}

.referral-section .container {
  max-width: 1200px;   /* same width as your other sections */
  margin: 0 auto;
  padding: 0 1.5rem;   /* prevents touching edges on mobile */
}

.referral-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}
.referral-text {
  flex: 1;
  min-width: 320px;
}

.referral-graphic {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.referral-card {
  background: var(--ink);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  color: var(--paper);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all .3s ease;
}

.referral-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}

.ref-icon i {
  width: 42px;
  height: 42px;
  stroke: var(--gold);
  stroke-width: 1.8;
  margin-bottom: 1rem;
}

.ref-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.ref-desc {
  font-size: .9rem;
  opacity: .8;
}
.svc-icon i {
  width: 42px;
  height: 42px;
  stroke: var(--gold-lt);
  stroke-width: 1.8;
  margin-bottom: 1rem;
}

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 8rem 4vw 5rem; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 2rem; }
  .why-graphic { display: none; }
  .faq-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 4rem 5vw; }

  /* ── Nav mobile ── */
  .nav-inner { padding: 0.85rem 4vw; }
  .nav-links { display: none; }
  .btn-gold.nav-login-desktop { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }
  .nav-logo-text {
    font-size: 1rem;
    white-space: nowrap;
  }
  .nav-logo img { height: 28px; }

  /* ── Hero mobile ── */
  .hero {
    padding: 5.5rem 5vw 3rem;
    min-height: auto;
    gap: 1.5rem;
    overflow: hidden;
  }
  .hero-eyebrow {
    font-size: 0.68rem;
    padding: 0.28rem 0.75rem;
    margin-bottom: 0.85rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
    margin-bottom: 1rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-sub {
    font-size: 0.92rem;
    margin-bottom: 1.75rem;
    padding: 0 0.5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-actions .btn-gold {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
  }
  .hero-stats > div {
    padding: 0 0.5rem;
    border-right: 1px solid rgba(0,0,0,0.08);
  }
  .hero-stats > div:last-child { border-right: none; }
  .stat-num { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .stat-label { font-size: 0.68rem; margin-top: 0.2rem; }

  /* ── Other sections ── */
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 1.65rem; }
  .team-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 1.1rem; }
  .stat-label { font-size: 0.62rem; }
}