/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --gold:        #BA9E6A;
  --gold-light:  #D4B87E;
  --gold-dim:    rgba(186,158,106,0.12);
  --dark:        #003E5A;
  --dark-2:      #004564;
  --dark-3:      #004F72;
  --mid:         #005580;
  --text-muted:  #8FB8CC;
  --text-light:  #C8E0EC;
  --white:       #ffffff;
  --pad-x:       clamp(20px, 6vw, 90px);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* grain 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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.35;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 var(--pad-x); height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,62,90,0.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(186,158,106,0.18);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; text-decoration: none;
}
.logo span { color: var(--white); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-light);
  text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold);
  padding: 9px 22px; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s;
  display: flex; align-items: center; gap: 7px;
}
.nav-cta:hover { background: var(--gold); color: var(--dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(0,56,82,0.99); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(186,158,106,0.2);
  padding: 20px 28px 28px; z-index: 150; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 13px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-light);
  text-decoration: none; padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.3s; display: flex; align-items: center; gap: 10px;
}
.mobile-menu a i { color: var(--gold); width: 16px; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-cta { margin-top: 18px !important; background: var(--gold); color: var(--dark) !important; padding: 13px 20px; font-weight: 700; justify-content: center; border-bottom: none !important; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  background: var(--gold); color: var(--dark);
  padding: 14px 34px; font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(186,158,106,0.35); }
.btn-ghost {
  color: var(--white); font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; gap: 9px;
  transition: color 0.3s; background: none; border: none; cursor: pointer;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost .fa-arrow-right { transition: transform 0.3s; }
.btn-ghost:hover .fa-arrow-right { transform: translateX(4px); }
.btn-outline {
  border: 1px solid var(--gold); color: var(--gold);
  padding: 13px 30px; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }

/* ── SHARED LABELS ───────────────────────────────────── */
.section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 26px; height: 1px; background: var(--gold); display: block; }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 300; line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--gold); }
.divider { width: 52px; height: 1px; background: var(--gold); margin: 22px 0; }

/* ── HERO ────────────────────────────────────────────── */
.page-hero {
  position: relative; padding: 160px var(--pad-x) 110px;
  overflow: hidden; display: flex; flex-direction: column;
  align-items: flex-start;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(186,158,106,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(186,158,106,0.05) 0%, transparent 60%),
    var(--dark);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(186,158,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186,158,106,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
/* animated gold orb */
.hero-orb {
  position: absolute; right: 8%; top: 20%;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(186,158,106,0.13) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:0.7} 50%{transform:scale(1.12);opacity:1} }

.page-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb i { font-size: 8px; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 300; line-height: 0.95;
  letter-spacing: -2px; margin-bottom: 28px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--text-light); max-width: 560px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-pill-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.7s 0.25s ease both;
}
.hero-pill {
  display: flex; align-items: center; gap: 7px;
  border: 1px solid rgba(186,158,106,0.25);
  padding: 7px 16px; font-size: 11px;
  font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
  background: rgba(186,158,106,0.04);
}
.hero-pill i { color: var(--gold); font-size: 10px; }
.hero-actions {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* scroll indicator */
.scroll-hint {
  position: absolute; bottom: 36px; left: var(--pad-x);
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-muted);
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0%,100%{transform:scaleY(1);opacity:0.6} 50%{transform:scaleY(1.3);opacity:1} }

/* ── SERVICE CARDS GRID ──────────────────────────────── */
.services-section { padding: 110px var(--pad-x); background: var(--dark-2); }
.services-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 72px;
}
.services-intro p {
  font-size: 15px; font-weight: 300; line-height: 1.9;
  color: var(--text-light);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(186,158,106,0.1);
}

.srv-card {
  background: var(--dark-2);
  padding: 0;
  position: relative; overflow: hidden;
  transition: background 0.4s;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.srv-card:hover { background: var(--dark-3); }

/* coloured top bar */
.srv-card-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.srv-card:hover .srv-card-bar { transform: scaleX(1); }

.srv-card-inner { padding: 40px 36px 36px; flex: 1; display: flex; flex-direction: column; }
.srv-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 28px;
  display: flex; align-items: center; gap: 8px;
}
.srv-card-num::after { content: ''; flex: 1; height: 1px; background: rgba(186,158,106,0.2); }

.srv-icon-wrap {
  width: 58px; height: 58px;
  border: 1px solid rgba(186,158,106,0.22);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  background: rgba(186,158,106,0.06);
  transition: all 0.35s;
}
.srv-card:hover .srv-icon-wrap { background: rgba(186,158,106,0.15); border-color: var(--gold); }
.srv-icon-wrap i { font-size: 22px; color: var(--gold); }

.srv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  line-height: 1.15; margin-bottom: 14px;
}
.srv-desc {
  font-size: 13px; font-weight: 300; line-height: 1.85;
  color: var(--text-muted); margin-bottom: 24px; flex: 1;
}

/* feature list */
.srv-features { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.srv-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; font-weight: 400; color: var(--text-light);
  line-height: 1.5;
}
.srv-features li i { color: var(--gold); font-size: 10px; margin-top: 3px; flex-shrink: 0; }

.srv-card-footer {
  padding: 18px 36px;
  border-top: 1px solid rgba(186,158,106,0.08);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,0.12);
}
.srv-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(186,158,106,0.1);
  padding: 4px 10px;
}
.srv-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(186,158,106,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 12px;
  transition: all 0.3s; text-decoration: none;
}
.srv-card:hover .srv-arrow { border-color: var(--gold); color: var(--gold); background: rgba(186,158,106,0.1); transform: translate(2px, -2px); }

/* ── HIGHLIGHT STRIP ─────────────────────────────────── */
.highlight-strip {
  background: var(--gold);
  padding: 28px var(--pad-x);
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px;
}
.hl-item {
  background: var(--gold);
  display: flex; align-items: center; gap: 16px;
  padding: 8px 20px;
}
.hl-item + .hl-item { border-left: 1px solid rgba(0,62,90,0.25); }
.hl-icon { font-size: 22px; color: var(--dark); opacity: 0.7; flex-shrink: 0; }
.hl-text-label {
  font-size: 9px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(0,62,90,0.6);
}
.hl-text-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: var(--dark);
  line-height: 1.1;
}

/* ── SERVICE DETAIL DEEP-DIVES ───────────────────────── */
.detail-section { padding: 120px var(--pad-x); }
.detail-section + .detail-section { padding-top: 0; }

.detail-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 72px 0; border-bottom: 1px solid rgba(186,158,106,0.08);
}
.detail-block:last-child { border-bottom: none; }
.detail-block.reverse .detail-visual { order: -1; }

.detail-text .section-label { margin-bottom: 14px; }
.detail-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 18px;
}
.detail-text h3 em { font-style: italic; color: var(--gold); }
.detail-text p {
  font-size: 14px; font-weight: 300; line-height: 1.95;
  color: var(--text-light); margin-bottom: 14px;
}
.detail-checklist { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.detail-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; font-weight: 400; color: var(--text-light); line-height: 1.6;
}
.detail-checklist li i { color: var(--gold); font-size: 11px; margin-top: 3px; flex-shrink: 0; }

/* visual panel */
.detail-visual {
  position: relative;
  background: var(--dark-2);
  border: 1px solid rgba(186,158,106,0.12);
  padding: 44px 40px;
  min-height: 380px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.detail-visual::before {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(186,158,106,0.12) 0%, transparent 70%);
}
.detail-visual-icon {
  font-size: 48px; color: rgba(186,158,106,0.25);
  margin-bottom: 20px;
}
.detail-visual-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600;
  margin-bottom: 20px; line-height: 1.1;
}
.detail-stat-row { display: flex; gap: 32px; flex-wrap: wrap; }
.dstat { }
.dstat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 600; color: var(--gold);
  line-height: 1;
}
.dstat-label {
  font-size: 9px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted); margin-top: 4px;
}
.detail-visual-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.dtag {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(186,158,106,0.3); padding: 5px 12px;
  background: rgba(186,158,106,0.06);
}

/* ── INDUSTRIES ──────────────────────────────────────── */
.industries-section {
  padding: 100px var(--pad-x);
  background: var(--dark-3);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 52px;
}
.ind-card {
  background: var(--dark-2);
  border: 1px solid rgba(186,158,106,0.08);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.35s;
  position: relative; overflow: hidden;
}
.ind-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(186,158,106,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.ind-card:hover { border-color: rgba(186,158,106,0.35); transform: translateY(-4px); }
.ind-card:hover::after { opacity: 1; }
.ind-icon { font-size: 24px; color: var(--gold); }
.ind-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 600; line-height: 1.2;
}
.ind-desc { font-size: 12px; font-weight: 300; line-height: 1.7; color: var(--text-muted); }

/* ── PROCESS ─────────────────────────────────────────── */
.process-section { padding: 110px var(--pad-x); background: var(--dark-2); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px; position: relative;
}
.process-grid::before {
  content: '';
  position: absolute; top: 32px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.proc-step { text-align: center; padding: 0 20px; }
.proc-circle {
  width: 64px; height: 64px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  background: var(--dark-2); position: relative; z-index: 1;
  color: var(--gold); transition: all 0.35s;
}
.proc-circle i { font-size: 20px; }
.proc-step:hover .proc-circle { background: var(--gold); color: var(--dark); box-shadow: 0 0 32px rgba(186,158,106,0.35); }
.proc-num {
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.proc-title {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 10px;
}
.proc-desc {
  font-size: 12px; font-weight: 300; line-height: 1.75;
  color: var(--text-muted);
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-section { padding: 110px var(--pad-x); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; margin-top: 60px; }
.faq-sticky { position: sticky; top: 100px; }
.faq-sticky p { font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--text-light); margin: 16px 0 28px; }

.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid rgba(186,158,106,0.1);
  background: var(--dark-2);
  overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(186,158,106,0.35); }
.faq-question {
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; cursor: pointer;
  font-size: 14px; font-weight: 500;
  line-height: 1.4; transition: color 0.3s;
  user-select: none;
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-chevron {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(186,158,106,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--gold); flex-shrink: 0;
  transition: all 0.35s;
}
.faq-item.open .faq-chevron { background: var(--gold); color: var(--dark); transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.22,1,0.36,1), padding 0.3s;
  padding: 0 28px;
  font-size: 13px; font-weight: 300; line-height: 1.85;
  color: var(--text-muted);
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 22px; }

/* ── CTA ─────────────────────────────────────────────── */
.cta-section {
  padding: 100px var(--pad-x);
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(186,158,106,0.08) 0%, transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -150px; left: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(186,158,106,0.05) 0%, transparent 70%);
}
.cta-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.cta-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300; line-height: 1.05;
  margin-bottom: 16px;
}
.cta-text h2 em { font-style: italic; color: var(--gold); }
.cta-text p {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: var(--text-light);
}
.cta-options { display: flex; flex-direction: column; gap: 16px; }
.cta-option {
  background: rgba(186,158,106,0.05);
  border: 1px solid rgba(186,158,106,0.15);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
  text-decoration: none; transition: all 0.35s;
}
.cta-option:hover { border-color: var(--gold); background: rgba(186,158,106,0.1); transform: translateX(6px); }
.cta-option-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(186,158,106,0.12);
  border: 1px solid rgba(186,158,106,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 18px; flex-shrink: 0;
}
.cta-option-label {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 3px;
}
.cta-option-val { font-size: 15px; font-weight: 400; color: var(--white); }
.cta-option-arrow { margin-left: auto; color: var(--text-muted); transition: all 0.3s; }
.cta-option:hover .cta-option-arrow { color: var(--gold); transform: translateX(4px); }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(186,158,106,0.17);
  padding: 68px var(--pad-x) 34px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 52px;
}
.footer-brand .logo { display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--text-muted); max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none; transition: all 0.3s;
}
.social-link i { font-size: 14px; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13px; font-weight: 300; color: var(--text-muted);
  text-decoration: none; transition: color 0.3s;
  display: flex; align-items: center; gap: 7px;
}
.footer-col a i { font-size: 9px; color: var(--gold); opacity: 0.5; }
.footer-col a:hover { color: var(--gold); }
.footer-col a:hover i { opacity: 1; }
.footer-contact-item { margin-bottom: 13px; }
.f-label { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 4px; margin-bottom: 2px; }
.f-val { font-size: 13px; font-weight: 300; color: var(--text-muted); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 12px; font-weight: 300; color: var(--text-muted); }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; color: var(--gold); }

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-intro { grid-template-columns: 1fr; gap: 24px; }
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .highlight-strip { grid-template-columns: repeat(2,1fr); }
  .detail-block { grid-template-columns: 1fr; gap: 40px; }
  .detail-block.reverse .detail-visual { order: 0; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sticky { position: static; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  nav { height: 64px; }
  .mobile-menu { top: 64px; }
  .page-hero { padding: 130px 20px 90px; }
  .cards-grid { grid-template-columns: 1fr; }
  .highlight-strip { grid-template-columns: 1fr; padding: 24px 20px; }
  .hl-item + .hl-item { border-left: none; border-top: 1px solid rgba(0,62,90,0.25); }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .detail-section, .services-section, .process-section, .industries-section, .faq-section, .cta-section { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}