/* =========================================================
   Trafto Resource Limited — Site Stylesheet
   Palette: Navy (brand) + Orange (brand accent), per Logo.jpeg
   Type: Lexend (headings) + Source Sans 3 (body) — Corporate Trust pairing
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --navy-950: #0a1122;
  --navy-900: #0f1a30;
  --navy-800: #14213d;
  --navy-700: #1e2f52;
  --navy-600: #2c4269;
  --orange-500: #e8912d;
  --orange-600: #cf7d1e;
  --orange-100: #fdecd3;
  --orange-050: #fff6ea;

  /* Neutrals */
  --ink: #14213d;
  --slate-700: #33415c;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --border: #e3e7ee;
  --bg: #ffffff;
  --bg-soft: #f6f7fa;
  --bg-soft-2: #eef1f6;

  /* Type */
  --font-head: 'Lexend', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;

  /* Spacing / radius / shadow */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 26, 48, 0.06), 0 1px 1px rgba(15, 26, 48, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 26, 48, 0.10);
  --shadow-lg: 0 20px 48px rgba(15, 26, 48, 0.16);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
h1, h2, h3, h4, p { margin: 0; }

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange-500);
  display: inline-block;
  border-radius: 2px;
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
.section-head p { margin-top: 14px; font-size: 1.05rem; color: var(--slate-600); }

.text-white .eyebrow { color: var(--orange-500); }
.text-white h1, .text-white h2, .text-white h3, .text-white p { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  min-height: 48px;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--orange-500); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--orange-600); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--ink); }
.btn-ghost:hover { border-color: var(--navy-800); background: var(--bg-soft); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: 0 4px 20px rgba(15,26,48,0.05); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text b { font-family: var(--font-head); font-size: 1.08rem; font-weight: 700; color: var(--navy-800); letter-spacing: 0.01em; }
.brand-text span { font-family: var(--font-head); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; color: var(--orange-600); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--slate-700);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-links a:hover { background: var(--bg-soft-2); color: var(--navy-800); }
.nav-links a.active { color: var(--navy-800); background: var(--orange-100); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--navy-800); border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle span { margin: 5px 0; }

.mobile-cta { display: none; }
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-cta .btn-navy { display: none; }
  .nav-links {
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; }
  .nav-cta .btn span.hide-mobile { display: none; }
  .mobile-cta { display: flex; margin-top: 10px; }
}
@media (min-width: 881px) {
  .nav-cta .btn-ghost { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 168px 0 110px;
  background: linear-gradient(155deg, var(--navy-950) 0%, var(--navy-800) 58%, var(--navy-700) 100%);
  overflow: hidden;
  color: #fff;
}
.hero-bg-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.34;
  mix-blend-mode: luminosity;
}
.hero-bg-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,17,34,0.55) 0%, rgba(10,17,34,0.88) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 60% 20%, black 0%, transparent 75%);
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff; }
.hero .lede { margin-top: 22px; font-size: 1.18rem; color: rgba(255,255,255,0.82); max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-stats {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 72px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 34px;
}
.hero-stats .stat b { font-family: var(--font-head); font-size: 1.9rem; color: #fff; display: block; }
.hero-stats .stat span { font-size: 0.85rem; color: rgba(255,255,255,0.62); }
@media (max-width: 760px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
}

/* Page hero (interior pages) — shorter variant */
.page-hero { padding: 152px 0 84px; }
.page-hero .lede { max-width: 660px; }
.breadcrumb-eyebrow { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 18px; font-weight: 600; letter-spacing: 0.04em; }
.breadcrumb-eyebrow a:hover { color: #fff; }

/* ---------- Sections generic ---------- */
.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }
@media (max-width: 760px) { .section { padding: 68px 0; } }

/* ---------- Intro strip (home) ---------- */
.intro-strip { padding: 64px 0; border-bottom: 1px solid var(--border); }
.intro-strip .container { display: flex; gap: 48px; align-items: flex-start; flex-wrap: wrap; }
.intro-strip .lead-col { flex: 1 1 340px; }
.intro-strip .lead-col p { font-size: 1.2rem; color: var(--ink); font-family: var(--font-head); font-weight: 500; line-height: 1.5; }
.intro-strip .side-col { flex: 1 1 280px; color: var(--slate-600); }

/* ---------- Cards: Mission/Vision ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 760px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.mv-card .ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--orange-050);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mv-card .ic svg { width: 26px; height: 26px; color: var(--orange-600); }
.mv-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.mv-card p { color: var(--slate-600); }

/* ---------- Principle / methodology block ---------- */
.principle-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .principle-block { grid-template-columns: 1fr; } }
.principle-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(from -90deg, var(--orange-500) 0deg 72deg, var(--bg-soft-2) 72deg 360deg);
  display: flex; align-items: center; justify-content: center;
}
.principle-visual::before {
  content: "";
  position: absolute; inset: 14%;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--border);
}
.principle-visual .pv-label { position: relative; text-align: center; z-index: 2; }
.principle-visual .pv-label b { font-family: var(--font-head); font-size: 2.6rem; color: var(--navy-800); display: block; }
.principle-visual .pv-label span { font-size: 0.85rem; color: var(--slate-500); font-weight: 600; letter-spacing: 0.04em; }
.principle-visual .tag {
  position: absolute;
  background: var(--navy-800);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.principle-visual .tag.tag-1 { top: 6%; right: -6%; background: var(--orange-500); }
.principle-visual .tag.tag-2 { bottom: 8%; left: -10%; }

.principle-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 20px; }
.principle-copy p { color: var(--slate-600); font-size: 1.05rem; }
.principle-copy p + p { margin-top: 16px; }

/* ---------- Competency / Service cards ---------- */
.comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1000px) { .comp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .comp-grid { grid-template-columns: 1fr; } }
.comp-card {
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.comp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.comp-card .num { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; color: var(--orange-600); letter-spacing: 0.1em; }
.comp-card .ic {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  margin: 16px 0 20px;
}
.comp-card .ic svg { width: 27px; height: 27px; color: var(--orange-500); }
.comp-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.comp-card p { color: var(--slate-600); font-size: 0.96rem; }

/* ---------- Service detail sections ---------- */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 76px 0; }
.service-detail:not(:last-child) { border-bottom: 1px solid var(--border); }
.service-detail.reverse .sd-media { order: 2; }
@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; gap: 32px; padding: 52px 0; }
  .service-detail.reverse .sd-media { order: 0; }
}
.sd-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.sd-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.sd-tag {
  position: absolute; top: 20px; left: 20px;
  background: rgba(10,17,34,0.72);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
}
.sd-copy .ic-badge {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--orange-050);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.sd-copy .ic-badge svg { width: 28px; height: 28px; color: var(--orange-600); }
.sd-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 14px; }
.sd-copy > p { color: var(--slate-600); font-size: 1.03rem; margin-bottom: 22px; }
.sd-list { display: flex; flex-direction: column; gap: 14px; }
.sd-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--slate-700); font-size: 0.98rem; }
.sd-list li svg { width: 20px; height: 20px; color: var(--orange-600); flex-shrink: 0; margin-top: 2px; }

/* ---------- Why choose us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--navy-800);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute; top: -30%; right: -30%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(232,145,45,0.22), transparent 70%);
}
.why-card .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(232,145,45,0.16); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; position: relative; z-index: 1; }
.why-card .ic svg { width: 22px; height: 22px; color: var(--orange-500); }
.why-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; position: relative; z-index: 1; }
.why-card p { color: rgba(255,255,255,0.68); font-size: 0.94rem; position: relative; z-index: 1; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 100% at 20% 50%, black 0%, transparent 70%);
}
.cta-banner .cta-copy { position: relative; z-index: 1; max-width: 520px; }
.cta-banner h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.cta-banner p { color: rgba(255,255,255,0.72); margin-top: 10px; }
.cta-banner .cta-actions { position: relative; z-index: 1; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- About page specifics ---------- */
.about-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .about-hero-grid { grid-template-columns: 1fr; } }
.about-photo-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-photo-wrap img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.about-photo-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(10,17,34,0.72);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-photo-badge b { font-family: var(--font-head); font-size: 1.3rem; display: block; color: var(--orange-500); }
.about-photo-badge span { font-size: 0.78rem; color: rgba(255,255,255,0.72); }

.value-list { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.value-item { display: flex; gap: 16px; }
.value-item .num {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--orange-050); color: var(--orange-600);
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.value-item h4 { font-size: 1.02rem; margin-bottom: 4px; }
.value-item p { color: var(--slate-600); font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  columns: 4 260px;
  column-gap: 18px;
}
@media (max-width: 720px) { .gallery-grid { columns: 2 200px; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  background: var(--bg-soft-2);
}
.gallery-item img { width: 100%; display: block; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item .g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,17,34,0.78) 100%);
  opacity: 0; transition: opacity 0.3s var(--ease);
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.gallery-item .g-overlay span { color: #fff; font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; }

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(8,13,26,0.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav svg, .lightbox-close svg { width: 20px; height: 20px; }
@media (max-width: 640px) { .lightbox-nav { display: none; } }

/* ---------- Insights ---------- */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .insight-grid { grid-template-columns: 1fr; } }
.insight-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: #fff;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.insight-card .tag {
  align-self: flex-start;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--orange-600); background: var(--orange-050); padding: 6px 12px; border-radius: 999px;
}
.insight-card h3 { font-size: 1.12rem; }
.insight-card p { color: var(--slate-600); font-size: 0.95rem; }
.insight-card .meta { margin-top: auto; padding-top: 10px; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--slate-500); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--navy-800);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute; bottom: -40%; left: -20%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(232,145,45,0.18), transparent 70%);
}
.contact-info-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; position: relative; }
.contact-info-card > p { color: rgba(255,255,255,0.68); margin-bottom: 28px; position: relative; }
.contact-line { display: flex; gap: 14px; margin-bottom: 20px; position: relative; }
.contact-line .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(232,145,45,0.16); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-line .ic svg { width: 20px; height: 20px; color: var(--orange-500); }
.contact-line b { display: block; font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.contact-line a, .contact-line span.val { font-size: 1.02rem; font-weight: 600; color: #fff; }
.contact-line a:hover { color: var(--orange-500); }
.contact-photo-mini { margin-top: 30px; border-radius: var(--radius-md); overflow: hidden; position: relative; }
.contact-photo-mini img { aspect-ratio: 16/10; object-fit: cover; }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--bg-soft);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-800);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20,33,61,0.08);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.86rem; color: var(--slate-500); margin-top: 8px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--orange-050);
  color: var(--orange-600);
  font-weight: 600;
  font-size: 0.94rem;
  margin-top: 18px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.6); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 38px; height: 38px; }
.footer-brand b { font-family: var(--font-head); font-size: 1.05rem; color: #fff; }
.footer-col h4 { color: #fff; font-family: var(--font-head); font-size: 0.92rem; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span { font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--orange-500); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 10px; font-size: 0.84rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > * { transition-delay: calc(var(--i, 0) * 70ms); }

/* ---------- Misc ---------- */
.divider-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--slate-300); display: inline-block; }
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--navy-800); color: #fff; padding: 12px 18px; border-radius: 8px; z-index: 400;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }
