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

:root {
  --navy:      #0d1b2a;
  --navy-mid:  #1a3a5c;
  --gold:      #c9913d;
  --gold-light:#e8b96a;
  --cream:     #faf8f4;
  --white:     #ffffff;
  --text:      #2c3e50;
  --text-mid:  #5a6a7a;
  --border:    #e2e8f0;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(13,27,42,.10);
  --shadow-lg: 0 12px 48px rgba(13,27,42,.16);
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif:'Playfair Display', Georgia, serif;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ── Typography helpers ── */
.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #b07c30;
  border-color: #b07c30;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,145,61,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.full-width { width: 100%; justify-content: center; }

/* ── NAV ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity var(--transition);
}
.logo:hover { opacity: .85; }

.logo-mark {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
  transition: color var(--transition);
}
.logo-text em { font-style: normal; font-weight: 300; }
#site-header.scrolled .logo-text { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
#site-header.scrolled .nav-links a { color: var(--text); }
#site-header.scrolled .nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
}
.btn-nav:hover { background: #b07c30 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition);
}
#site-header.scrolled .hamburger span { background: var(--navy); }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { padding: 12px 0; }
.mobile-menu li a {
  display: block;
  padding: 12px 24px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
}
.mobile-menu li a:hover { color: var(--gold); background: var(--cream); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.82) 0%, rgba(13,27,42,.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 60px;
}
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.15);
}
.stats-row {
  display: flex;
  align-items: center;
  padding: 28px 24px;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}
.ticker-track .dot { color: var(--gold); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT ── */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  bottom: -36px;
  right: -36px;
  width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  top: 28px;
  left: -24px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  line-height: 1.3;
}
.about-badge span { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.about-badge strong { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 700; }

.about-copy p { color: var(--text-mid); margin-bottom: 16px; }

.about-values { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .93rem;
  color: var(--text);
}
.value-item svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 24px; height: 24px; color: var(--gold-light); }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p { font-size: .9rem; color: var(--text-mid); margin-bottom: 18px; line-height: 1.6; }
.service-card ul { display: flex; flex-direction: column; gap: 7px; }
.service-card li {
  font-size: .83rem;
  color: var(--text-mid);
  padding-left: 14px;
  position: relative;
}
.service-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── PROCESS ── */
.process-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.process-bg-img {
  position: absolute;
  inset: 0;
}
.process-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.process-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.92) 0%, rgba(26,58,92,.88) 100%);
}
.process-content {
  position: relative;
  z-index: 1;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 56px;
}
.step {
  flex: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 32px 24px;
  backdrop-filter: blur(8px);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step p { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.6; }

.step-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 48px;
}

/* ── INDUSTRIES ── */
.industries-section { background: var(--cream); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
}
.industry-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.industry-card:hover img { transform: scale(1.07); }
.industry-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.78) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .02em;
}

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

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-copy p { color: var(--text-mid); margin-bottom: 28px; }
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-point h4 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-point p { font-size: .9rem; color: var(--text-mid); margin: 0; }

.why-image {
  position: relative;
}
.why-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}
.why-quote {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--navy);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  max-width: 340px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
}
.why-quote blockquote {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255,255,255,.88);
  margin-bottom: 10px;
  font-style: italic;
}
.why-quote cite {
  font-size: .76rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* ── COMPLIANCE BANNER ── */
.compliance-banner {
  background: var(--navy);
  padding: 60px 0;
}
.compliance-inner {
  text-align: center;
}
.compliance-banner h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 16px;
}
.compliance-banner p {
  color: rgba(255,255,255,.72);
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: .95rem;
  line-height: 1.7;
}
.compliance-banner strong { color: var(--gold-light); font-weight: 600; }
.compliance-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.compliance-tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
}

/* ── CONTACT ── */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-copy p { color: var(--text-mid); margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail svg {
  width: 22px; height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-detail span,
.contact-detail address {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── FORM ── */
.contact-form-wrap {
  background: var(--white);
  border-radius: 14px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 11px 14px;
  font-size: .93rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,145,61,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  margin-top: 12px;
  font-size: .78rem;
  color: var(--text-mid);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 64px; height: 64px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p { color: var(--text-mid); }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-logo .logo-text { color: var(--white); }

.footer-col h5 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--gold-light); }
.footer-col address {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
}
.footer-col address a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col address a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 22px 0;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 99;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover { transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .about-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .about-img-secondary { display: none; }
  .about-badge { top: 20px; left: 20px; }
  .why-image img { height: 340px; }
  .why-quote { position: static; max-width: 100%; margin-top: 20px; }

  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .stat-divider { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: clamp(2.4rem, 9vw, 4rem); }
}

@media (max-width: 520px) {
  .industries-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn { justify-content: center; }
  .back-to-top { bottom: 20px; right: 20px; }
}
