/* Font swap */
.display, .heading, h1, h2, h3, h4 { font-display: swap; }

/* ── DESIGN SYSTEM ── */
:root {
  --navy:        #0f2d5e;
  --navy-deep:   #080f1e;
  --navy-mid:    #1a4080;
  --gold:        #c9a84c;
  --gold-light:  #e0c070;
  --white:       #ffffff;
  --off-white:   #f4f4f0;
  --text:        #1a1a2e;
  --muted:       #6b7280;
  --border:      rgba(201,168,76,0.18);
  --border-light: rgba(15,45,94,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.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; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── TYPOGRAPHY ── */
.display { font-family: 'Cormorant Garamond', serif; font-weight: 300; letter-spacing: 0.01em; line-height: 1.05; }
.heading { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.1; }
.label { font-family: 'Outfit', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 56px;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
#navbar.hero-mode { background: transparent; border-color: transparent; }
#navbar.scrolled { background: rgba(8,15,30,0.96); backdrop-filter: blur(16px); border-color: var(--border); }

.nav-logo { display: flex; align-items: center; cursor: pointer; text-decoration: none; flex-shrink: 0; }

.nav-links {
  display: flex; align-items: center; gap: 40px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-cta {
  background: var(--gold); color: var(--navy-deep);
  font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 11px 24px;
  border: none; cursor: pointer; text-decoration: none;
  transition: background 0.2s; border-radius: 0; display: inline-block;
}
.nav-cta:hover { background: var(--gold-light); }

.nav-join {
  font-family: 'Outfit', sans-serif; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 9px 18px;
  border: 1px solid var(--gold); color: var(--gold); background: transparent;
  text-decoration: none; transition: background 0.2s, color 0.2s; display: inline-block;
  margin-left: auto; margin-right: 12px;
}
.nav-join:hover { background: var(--gold); color: var(--navy-deep); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 14px 32px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.2s; border-radius: 0;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); }

/* ── GOLD RULES ── */
.gold-rule { width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); opacity: 0.5; }
.gold-rule-short { width: 48px; height: 1px; background: var(--gold); margin-bottom: 20px; }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 56px; }
.section-header .label { color: var(--gold); margin-bottom: 14px; display: block; }
.section-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--navy); margin-bottom: 16px; }
.section-header p { font-size: 0.95rem; color: var(--muted); max-width: 560px; line-height: 1.8; }
.section-sub { font-size: 0.92rem; color: var(--muted); max-width: 520px; line-height: 1.85; }

/* ── HOME: HERO ── */
.hero { position: relative; min-height: 100vh; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-grid { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-grid svg { width: 100%; height: 100%; opacity: 0.045; }
.hero-dots { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.35) 1px, transparent 1px); background-size: 36px 36px; opacity: 0.04; animation: drift 40s linear infinite; }
@keyframes drift { 0% { transform: translate(0,0); } 50% { transform: translate(18px,18px); } 100% { transform: translate(0,0); } }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; padding: 0 40px; max-width: 900px; }
.hero-wordmark { width: min(600px, 80vw); margin-bottom: 40px; animation: fadeUp 1s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-tagline { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 300; font-style: italic; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; margin-bottom: 48px; animation: fadeUp 1s 0.2s ease both; }
.hero-cta { animation: fadeUp 1s 0.4s ease both; }
.hero-scroll-hint { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; animation: fadeUp 1s 0.8s ease both; }
.hero-scroll-hint span { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.1); } }

/* ── HOME: SERVICES STRIP ── */
.services-strip { background: var(--off-white); padding: 88px 56px; }
.services-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border-light); }
.svc-card-home { padding: 40px 32px; border-right: 1px solid var(--border-light); position: relative; transition: background 0.25s; }
.svc-card-home:last-child { border-right: none; }
.svc-card-home:hover { background: #fff; }
.svc-card-home::after { content: ''; position: absolute; bottom: 0; left: 32px; right: 32px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.svc-card-home:hover::after { transform: scaleX(1); }
.svc-icon { width: 36px; height: 36px; margin-bottom: 20px; color: var(--gold); }
.svc-card-home h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
.svc-card-home p { font-size: 0.83rem; color: var(--muted); line-height: 1.75; }

/* ── HOME: WHY DREXENN ── */
.why-section { background: var(--navy); padding: 100px 56px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; }
.why-card { padding: 48px 40px; border-right: 1px solid rgba(255,255,255,0.07); border-top: 1px solid rgba(255,255,255,0.07); }
.why-card:last-child { border-right: none; }
.why-card-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: rgba(201,168,76,0.25); line-height: 1; margin-bottom: 20px; }
.why-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: #fff; margin-bottom: 14px; }
.why-card p { font-size: 0.87rem; color: rgba(255,255,255,0.45); line-height: 1.85; }

/* ── HOME: PROCESS ── */
.process-section { background: var(--off-white); padding: 100px 56px; }
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; position: relative; }
.process-timeline::before { content: ''; position: absolute; top: 28px; left: 0; right: 0; height: 1px; background: var(--border-light); }
.process-step { padding: 0 32px 0 0; position: relative; }
.process-num { width: 56px; height: 56px; background: var(--navy); color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; position: relative; z-index: 1; }
.process-step h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
.process-step p { font-size: 0.83rem; color: var(--muted); line-height: 1.8; }

/* ── HOME: TRUSTED / CTA ── */
.trusted-strip { background: #fff; padding: 56px; text-align: center; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.trusted-strip p { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 300; font-style: italic; color: var(--muted); letter-spacing: 0.02em; }
.cta-banner { background: var(--navy); padding: 100px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -80px; left: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(201,168,76,0.04); }
.cta-banner::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(201,168,76,0.04); }
.cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; color: #fff; margin-bottom: 40px; position: relative; z-index: 1; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding-top: 72px; background: var(--navy); padding-bottom: 88px; padding-left: 56px; padding-right: 56px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); opacity: 0.4; }
.page-hero-inner { max-width: 800px; padding-top: 64px; }
.page-hero .label { color: rgba(201,168,76,0.8); margin-bottom: 16px; display: block; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5vw, 5rem); font-weight: 300; color: #fff; line-height: 1.05; margin-bottom: 24px; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.5); max-width: 580px; line-height: 1.85; }

/* ── SERVICES PAGE ── */
.svc-block { padding: 88px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.svc-block:nth-child(even) { background: #fff; }
.svc-block:nth-child(odd) { background: var(--off-white); }
.svc-block.reverse { direction: rtl; }
.svc-block.reverse > * { direction: ltr; }
.svc-block-label { color: var(--gold); margin-bottom: 12px; display: block; }
.svc-block h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; color: var(--navy); margin-bottom: 20px; line-height: 1.1; }
.svc-block p { font-size: 0.92rem; color: var(--muted); line-height: 1.9; margin-bottom: 28px; }
.svc-scope { border-top: 1px solid var(--border-light); padding-top: 24px; margin-bottom: 28px; }
.svc-scope h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; }
.svc-scope ul { list-style: none; }
.svc-scope li { font-size: 0.85rem; color: var(--text); padding: 6px 0; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; gap: 10px; }
.svc-scope li::before { content: '—'; color: var(--gold); font-size: 0.8rem; }
.svc-turnaround { display: inline-flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--muted); margin-bottom: 28px; }
.svc-turnaround strong { color: var(--navy); font-weight: 500; }
.svc-visual { background: var(--navy); padding: 48px 40px; position: relative; overflow: hidden; }
.svc-visual::before { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(201,168,76,0.05); }
.svc-visual-label { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 24px; }
.svc-visual-icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.svc-visual h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: #fff; margin-bottom: 16px; }
.svc-visual p { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.8; }
.svc-tag { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; padding: 6px 14px; border: 1px solid rgba(201,168,76,0.3); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

/* ── METHODOLOGY PAGE ── */
.meth-section { padding: 88px 56px; }
.meth-section:nth-child(even) { background: #fff; }
.meth-section:nth-child(odd) { background: var(--off-white); }
.meth-inner { max-width: 1100px; margin: 0 auto; }
.meth-intro { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 300; font-style: italic; color: var(--navy); line-height: 1.6; max-width: 800px; border-left: 3px solid var(--gold); padding-left: 28px; margin-top: 40px; }
.source-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-light); margin-top: 48px; }
.source-card { background: var(--off-white); padding: 36px 32px; transition: background 0.2s; }
.source-card:hover { background: #fff; }
.source-card-icon { font-size: 1.4rem; margin-bottom: 14px; display: block; }
.source-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.source-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.75; }
.qa-pipeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; position: relative; }
.qa-pipeline::before { content: ''; position: absolute; top: 28px; left: 0; right: 0; height: 1px; background: var(--border-light); }
.qa-step { padding-right: 40px; position: relative; }
.qa-num { width: 56px; height: 56px; background: var(--gold); color: var(--navy-deep); font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; z-index: 1; }
.qa-step h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
.qa-step p { font-size: 0.83rem; color: var(--muted); line-height: 1.8; }

/* ── ABOUT PAGE ── */
.about-body-text { max-width: 720px; padding: 80px 56px; }
.about-body-text p { font-size: 1rem; color: var(--text); line-height: 2; margin-bottom: 24px; }
.values-grid-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-light); margin: 0 56px 80px; }
.value-card { background: var(--off-white); padding: 48px 44px; transition: background 0.2s; }
.value-card:hover { background: #fff; }
.value-card-icon { font-size: 1.5rem; margin-bottom: 16px; display: block; }
.value-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.value-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.85; }
.coverage-section { background: var(--navy); padding: 88px 56px; }
.coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); margin-top: 48px; }
.coverage-region { background: var(--navy); padding: 36px 32px; border: 1px solid rgba(255,255,255,0.05); }
.coverage-region h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: #fff; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.coverage-region h4 span { font-size: 1.3rem; }
.coverage-region p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.8; }

/* ── CONTACT PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; min-height: 70vh; }
.contact-left { background: var(--navy); padding: 80px 56px; }
.contact-left .label { color: rgba(201,168,76,0.8); margin-bottom: 20px; display: block; }
.contact-detail { margin-bottom: 28px; }
.contact-detail .detail-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(201,168,76,0.7); margin-bottom: 6px; }
.contact-detail p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.contact-detail a { color: rgba(255,255,255,0.8); text-decoration: none; }
.contact-detail a:hover { color: var(--gold); }
.contact-right { background: #fff; padding: 80px 56px; }
.contact-right .label { color: var(--gold); margin-bottom: 20px; display: block; }
.contact-right h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--navy); margin-bottom: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--border-light); background: var(--off-white); font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 300; color: var(--text); outline: none; border-radius: 0; transition: border-color 0.2s; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.75rem; color: var(--muted); margin-top: 20px; font-style: italic; }
.success-state { display: none; text-align: center; padding: 48px 0; }
.success-state.visible { display: block; }
.success-icon { width: 56px; height: 56px; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; }
.success-state h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--navy); margin-bottom: 12px; }
.success-state p { font-size: 0.88rem; color: var(--muted); }

/* ── FOOTER ── */
footer { background: var(--navy-deep); border-top: 1px solid rgba(201,168,76,0.2); }
.footer-inner { padding: 72px 56px 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand-text { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-style: italic; color: rgba(255,255,255,0.35); line-height: 1.7; margin-top: 16px; margin-bottom: 8px; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); margin-top: 12px; }
.footer-col h5 { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.3); text-decoration: none; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.75); }
.footer-gdpr { font-size: 0.72rem; color: rgba(255,255,255,0.2); line-height: 1.7; margin-top: 12px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; color: rgba(255,255,255,0.2); }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.6); }
.linkedin-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 8px 16px; border: 1px solid rgba(201,168,76,0.3); color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.2s; }
.linkedin-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; z-index: 600; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: #fff; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--navy-deep); z-index: 400; flex-direction: column; align-items: center; justify-content: center; gap: 36px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: rgba(255,255,255,0.8); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta { font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; background: var(--gold); color: var(--navy-deep); padding: 14px 32px; margin-top: 12px; }

/* ── TABLET ── */
@media (max-width: 1024px) {
  #navbar { padding: 0 32px; }
  .services-grid-4 { grid-template-columns: 1fr 1fr; }
  .svc-card-home:nth-child(2) { border-right: none; }
  .svc-card-home:nth-child(3) { border-top: 1px solid var(--border-light); }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none; border-top: 1px solid rgba(255,255,255,0.07); }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .process-timeline::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .svc-block { gap: 48px; }
  .source-grid { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .values-grid-2x2 { margin: 0 32px 60px; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  #navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 100svh; }
  .hero-wordmark { width: min(320px, 88vw); }
  .hero-tagline { font-size: 1rem; padding: 0 20px; }
  .services-strip { padding: 60px 20px; }
  .services-grid-4 { grid-template-columns: 1fr; }
  .svc-card-home { border-right: none; border-bottom: 1px solid var(--border-light); }
  .svc-card-home:last-child { border-bottom: none; }
  .svc-card-home::after { display: none; }
  .why-section { padding: 60px 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 36px 24px; border-right: none; }
  .process-section { padding: 60px 20px; }
  .process-timeline { grid-template-columns: 1fr; gap: 0; }
  .process-timeline::before { display: none; }
  .process-step { padding: 24px 0; border-bottom: 1px solid var(--border-light); }
  .process-step:last-child { border-bottom: none; }
  .trusted-strip { padding: 40px 20px; }
  .cta-banner { padding: 72px 20px; }
  .cta-banner h2 { font-size: 2rem; }
  .page-hero { padding: 88px 20px 60px; }
  .page-hero h1 { font-size: 2.8rem; }
  .svc-block { grid-template-columns: 1fr; padding: 60px 20px; gap: 36px; }
  .svc-block.reverse { direction: ltr; }
  .meth-section { padding: 60px 20px; }
  .source-grid { grid-template-columns: 1fr; }
  .qa-pipeline { grid-template-columns: 1fr; gap: 0; }
  .qa-pipeline::before { display: none; }
  .qa-step { padding: 0 0 32px 0; border-bottom: 1px solid var(--border-light); margin-bottom: 32px; }
  .qa-step:last-child { border-bottom: none; margin-bottom: 0; }
  .meth-intro { font-size: 1.1rem; padding-left: 20px; }
  .about-body-text { padding: 60px 20px; }
  .values-grid-2x2 { grid-template-columns: 1fr; margin: 0 0 40px; }
  .coverage-section { padding: 60px 20px; }
  .coverage-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left { padding: 40px 20px; }
  .contact-right { padding: 40px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { padding: 48px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 2rem; }
  .services-section { padding: 60px 20px; }
  .services-head { flex-direction: column; gap: 16px; }
}

/* ── SMALL PHONES ── */
@media (max-width: 480px) {
  .hero-wordmark { width: 88vw; }
  .hero-tagline { font-size: 0.9rem; }
  .page-hero h1 { font-size: 2.2rem; }
  .mobile-menu a { font-size: 1.8rem; }
}
