/* ============================================================
   ARTAGILE — SHARED STYLESHEET
   Palette: dark navy #0A0E1A, section bg #111827,
            gold accent #F5B82E, off-white #F5F5F5,
            muted text #A0A4B0, light section #F7F7F5
   Fonts: Inter (body/UI) + Fraunces (serif display)
============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Background layers */
  --bg-deep:    #0A0E1A;
  --bg-section: #111827;
  --bg-mid:     #1A2236;
  --bg-light:   #F7F7F5;

  /* Text */
  --text-primary:  #F5F5F5;
  --text-muted:    #A0A4B0;
  --text-dark:     #111827;
  --text-dark-mid: #3D4560;

  /* Accent */
  --gold:          #F5B82E;
  --gold-dim:      rgba(245, 184, 46, 0.12);
  --gold-border:   rgba(245, 184, 46, 0.3);

  /* Borders */
  --border-dark:  rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.1);

  /* Type */
  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --max-w:      1200px;
  --gutter:     clamp(20px, 5vw, 80px);
  --section-v:  clamp(72px, 10vw, 128px);
  --nav-h:      72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---------- LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-pad {
  padding-block: var(--section-v);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: rgba(10, 14, 26, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 4px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold);
  color: #111;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  margin-left: 16px;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 12px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--bg-section);
  z-index: 999;
  padding: 32px var(--gutter);
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-dark);
  transition: color 0.2s;
}

.nav-drawer a:hover,
.nav-drawer a.active {
  color: var(--text-primary);
}

.nav-drawer .nav-drawer-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--gold);
  color: #111;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  border-bottom: none;
}

/* ============================================================
   TYPOGRAPHY SYSTEM
============================================================ */
.label-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.display-hero {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.display-section {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.display-card {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.body-lead {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.75;
  color: var(--text-muted);
}

.body-copy {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gold);
  color: #111;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-dark:hover {
  border-color: var(--text-dark);
  background: rgba(0,0,0,0.04);
}

/* ============================================================
   HERO — HOMEPAGE
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
  padding-top: var(--nav-h);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../ArtAgile_files/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 184, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 184, 46, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(64px, 10vh, 120px);
  max-width: 720px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Stats strip */
.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border-dark);
}

.stat-item h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   INNER PAGE HERO (non-homepage)
============================================================ */
.page-hero {
  background: var(--bg-section);
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border-dark);
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.page-hero-breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb .sep { opacity: 0.4; }

.page-hero h1 {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.page-hero .lead {
  max-width: 560px;
}

/* ============================================================
   SECTION — LIGHT BACKGROUND
============================================================ */
.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-light .label-tag {
  color: #b07a00;
}

.section-light .body-copy,
.section-light .body-lead {
  color: var(--text-dark-mid);
}

.section-dark {
  background: var(--bg-section);
}

/* ============================================================
   SERVICES OVERVIEW — HOMEPAGE
============================================================ */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.services-intro-right {
  padding-top: 8px;
}

.service-index-list {
  margin-top: 48px;
}

.service-index-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.2s;
}

.service-index-item:first-child { border-top: 1px solid var(--border-dark); }

.service-index-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  min-width: 32px;
  padding-top: 2px;
}

.service-index-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.service-index-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-index-arrow {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 18px;
  flex-shrink: 0;
  padding-top: 2px;
  transition: color 0.2s, transform 0.2s;
}

.service-index-item:hover .service-index-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* ============================================================
   CAPABILITIES STRIP
============================================================ */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}

.cap-item {
  background: var(--bg-section);
  padding: 36px 28px;
  transition: background 0.2s;
}

.cap-item:hover {
  background: var(--bg-mid);
}

.cap-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.cap-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.cap-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  background: var(--bg-section);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding-block: 80px;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-band h2 {
  color: var(--text-primary);
  max-width: 600px;
  margin-bottom: 12px;
}

.cta-band p {
  max-width: 560px;
}

.cta-band-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   SERVICES PAGE — EDITORIAL SECTIONS
============================================================ */
.services-subnav {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border-dark);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.services-subnav::-webkit-scrollbar { display: none; }

.services-subnav-inner {
  display: flex;
  white-space: nowrap;
  gap: 0;
  padding-inline: var(--gutter);
}

.services-subnav-inner a {
  display: block;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.services-subnav-inner a:hover,
.services-subnav-inner a.active {
  color: var(--text-primary);
  border-bottom-color: var(--gold);
}

.service-section {
  padding-block: 96px;
  border-bottom: 1px solid var(--border-dark);
  scroll-margin-top: calc(var(--nav-h) + 50px);
}

.service-section:nth-child(even) {
  background: var(--bg-section);
}

.service-section:nth-child(odd) {
  background: var(--bg-deep);
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.service-layout.reverse {
  grid-template-columns: 380px 1fr;
}

.service-layout.reverse .service-main {
  order: 2;
}

.service-layout.reverse .service-sidebar {
  order: 1;
}

.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 0.85;
  margin-bottom: 24px;
  border: 0;
  user-select: none;
}

.service-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.4;
}

.service-desc {
  margin-bottom: 32px;
}

/* Chips */
.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.chip:hover {
  border-color: var(--gold);
  color: var(--text-primary);
}

/* For light sections */
.service-section.light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.service-section.light .label-tag {
  color: #996600;
}

.service-section.light .service-num {
  color: rgba(180, 140, 0, 0.1);
}

.service-section.light .service-tagline {
  color: #996600;
}

.service-section.light .body-copy,
.service-section.light .body-lead {
  color: var(--text-dark-mid);
}

.service-section.light .display-card {
  color: var(--text-dark);
}

.service-section.light .chip {
  background: rgba(180, 140, 0, 0.07);
  border-color: rgba(180, 140, 0, 0.2);
  color: var(--text-dark-mid);
}

.service-section.light .chip:hover {
  border-color: #996600;
  color: var(--text-dark);
}

/* Sidebar box */
.service-sidebar-box {
  background: var(--bg-mid);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 36px;
  position: sticky;
  top: calc(var(--nav-h) + 60px);
}

.service-section.light .service-sidebar-box {
  background: #fff;
  border-color: var(--border-light);
}

.sidebar-box-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.service-section.light .sidebar-box-title {
  color: var(--text-dark);
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-section.light .sidebar-list li {
  border-bottom-color: var(--border-light);
  color: var(--text-dark-mid);
}

.sidebar-list li:last-child { border-bottom: none; }

.sidebar-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

/* Why box */
.why-box {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-mid);
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}

.service-section.light .why-box {
  background: #f0ede8;
  border-color: var(--border-light);
  border-left-color: #996600;
}

.why-box-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-section.light .why-box-title {
  color: #996600;
}

.why-box p {
  font-size: 13px;
  line-height: 1.8;
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.approach-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.approach-item {
  padding: 28px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  transition: border-color 0.2s;
}

.approach-item:hover {
  border-color: var(--gold);
}

.approach-item-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.approach-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.approach-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  margin-top: 48px;
}

.value-item {
  background: var(--bg-section);
  padding: 32px 24px;
}

.value-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Offices */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.office-card {
  padding: 28px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
}

.office-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.office-card .country-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.office-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   INDUSTRIES PAGE
============================================================ */
.industry-editorial {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding-block: 64px;
  border-bottom: 1px solid var(--border-dark);
  align-items: start;
}

.industry-editorial:last-child { border-bottom: none; }

.industry-label-col {
  padding-top: 8px;
}

.industry-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 8px;
}

.industry-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.industry-content h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.industry-content p {
  max-width: 620px;
  margin-bottom: 20px;
}

.industry-content ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-content ul li {
  padding: 6px 14px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   INSIGHTS PAGE
============================================================ */
.insights-empty {
  text-align: center;
  padding-block: 80px;
}

.insights-empty h2 {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.insights-empty p {
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.coming-soon-card {
  padding: 36px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  background: var(--bg-section);
}

.coming-soon-card .card-meta {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

.coming-soon-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.coming-soon-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.coming-soon-badge {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  border: 1px solid var(--border-dark);
  padding: 5px 10px;
  border-radius: 3px;
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-mid);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A0A4B0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--bg-section);
  color: var(--text-primary);
}

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

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Contact info sidebar */
.contact-info h2 {
  color: var(--text-primary);
  margin-bottom: 24px;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dark);
}

.contact-detail-item:first-of-type { border-top: 1px solid var(--border-dark); }

.contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.contact-detail-value {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.6;
}

.contact-detail-value a {
  transition: color 0.2s;
}

.contact-detail-value a:hover { color: var(--gold); }

.contact-social {
  margin-top: 28px;
}

.contact-social-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  color: var(--text-muted);
  font-size: 16px;
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border-dark);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-contact-item a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-dark);
  border-radius: 3px;
  color: var(--text-muted);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* SVG social icons inline */
.icon-svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .services-intro { grid-template-columns: 1fr; gap: 48px; }
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-layout { grid-template-columns: 1fr; }
  .service-layout.reverse { grid-template-columns: 1fr; }
  .service-layout.reverse .service-main { order: 1; }
  .service-layout.reverse .service-sidebar { order: 2; }
  .service-sidebar-box { position: static; }
  .industry-editorial { grid-template-columns: 1fr; gap: 24px; }
  .values-row { grid-template-columns: repeat(2, 1fr); }
  .coming-soon-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .approach-items { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .coming-soon-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr; }
  .service-num { font-size: 72px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 24px; }
}
