/* ─── BRAND TOKENS ─────────────────────────────────── */
:root {
  --ink:        #111009;
  --ivory:      #F7F4EE;
  --orange:     #F08838;
  --stone:      #D8D1C7;
  --slate:      #6F6C68;
  --orange-pale:#FBE9D5;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --max-w: 1180px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.orange-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--orange);
  margin: 16px 0 28px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #d4711f; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--orange); border-color: var(--orange); }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.btn-white:hover { background: var(--ink); color: #fff; }

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--ivory);
  border-bottom: 1px solid var(--stone);
  z-index: 100;
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(17,16,9,0.08); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink); }
.nav-logo-sub { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--slate); margin-top: 2px; }
.nav-divider { width: 1px; height: 32px; background: var(--stone); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--slate); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); border-bottom: 1.5px solid var(--orange); padding-bottom: 1px; transition: color 0.2s; }
.nav-cta:hover { color: var(--orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: all 0.25s; }
.mobile-menu { display: none; position: fixed; inset: var(--nav-h) 0 0 0; background: var(--ivory); z-index: 99; flex-direction: column; padding: 40px 32px; gap: 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--ink); border-bottom: 1px solid var(--stone); padding-bottom: 20px; }
.mobile-menu a:last-child { border: none; }
.mobile-menu .m-cta { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; padding: 14px 28px; align-self: flex-start; }

/* ─── BREADCRUMB ──────────────────────────────────── */
.breadcrumb {
  padding: calc(var(--nav-h) + 20px) 0 0;
  background: var(--ivory);
}
.breadcrumb-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--slate);
}
.breadcrumb-inner a { color: var(--slate); transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--orange); }
.breadcrumb-sep { color: var(--stone); }
.breadcrumb-current { color: var(--ink); font-weight: 500; }

/* ─── SUBPAGE HERO ────────────────────────────────── */
.subpage-hero {
  padding: 60px 0 80px;
  background: var(--ivory);
  border-bottom: 1px solid var(--stone);
}
.subpage-hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
}
.subpage-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 800px;
}
.subpage-hero h1 em { font-style: italic; color: var(--orange); }
.subpage-hero-sub {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 32px;
}
.subpage-hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* ─── BRAND PERSONALITY BAR ───────────────────────── */
.brand-pillars { padding: 72px 0; border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }
.brand-pillars-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.bp-item { display: flex; align-items: center; gap: 10px; }
.bp-leaf svg { width: 18px; height: 18px; }
.bp-word { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); }
.bp-sep { width: 1px; height: 20px; background: var(--stone); }

/* ─── CONTENT SECTIONS ────────────────────────────── */
.content-section { padding: 80px 0; }
.content-section.dark { background: var(--ink); }
.content-section.mid { background: #EDEAE4; }
.content-section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

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

/* ─── TRAIT ROWS ──────────────────────────────────── */
.trait-row { display: flex; align-items: flex-start; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--stone); }
.trait-row:first-child { border-top: 1px solid var(--stone); }
.trait-icon { width: 40px; height: 40px; background: var(--orange-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trait-icon svg { width: 18px; height: 18px; color: var(--orange); }
.trait-title { font-family: var(--font-display); font-size: 18px; font-weight: 500; margin-bottom: 4px; }
.trait-desc { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ─── SERVICES SECTION (homepage + service pages) ── */
.services { padding: 96px 0; background: var(--ink); }
.services .section-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 64px; }
.services .eyebrow { color: var(--orange); }
.services h2 { font-family: var(--font-display); font-size: clamp(36px, 3.5vw, 52px); font-weight: 500; color: #fff; line-height: 1.1; letter-spacing: -0.01em; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.service-card { background: rgba(255,255,255,0.04); padding: 44px; transition: background 0.25s; position: relative; overflow: hidden; }
.service-card:hover { background: rgba(240,136,56,0.1); }
.service-card-num { font-family: var(--font-display); font-size: 56px; font-weight: 500; color: rgba(255,255,255,0.05); line-height: 1; position: absolute; top: 24px; right: 32px; }
.service-card-title { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: #fff; margin-bottom: 16px; margin-top: 8px; }
.service-card-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }
.service-card-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.service-card-list li { font-size: 13px; color: rgba(255,255,255,0.45); padding-left: 16px; position: relative; }
.service-card-list li::before { content: '—'; position: absolute; left: 0; color: var(--orange); font-size: 11px; }
.service-link { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); border-bottom: 1px solid rgba(240,136,56,0.3); padding-bottom: 2px; transition: border-color 0.2s; }
.service-link:hover { border-color: var(--orange); }

/* ─── SERVICE DETAIL PAGE ─────────────────────────── */
.service-detail { padding: 80px 0; }
.service-detail-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.service-detail h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 42px); font-weight: 500; margin-bottom: 20px; line-height: 1.2; }
.service-detail p { font-size: 15px; color: var(--slate); line-height: 1.8; margin-bottom: 16px; }
.deliverables-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.deliverables-list li { font-size: 14px; color: var(--ink); padding-left: 20px; position: relative; line-height: 1.5; }
.deliverables-list li::before { content: '—'; position: absolute; left: 0; color: var(--orange); }

/* ─── CLIENT CARDS ────────────────────────────────── */
.clients-section { padding: 120px 0; background: var(--ivory); }
.clients-header { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.clients-header-left h2 { font-family: var(--font-display); font-size: clamp(36px, 3.5vw, 52px); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
.clients-scroll-wrapper { overflow: hidden; position: relative; }
.clients-track { display: flex; gap: 0; width: max-content; transition: transform 0.6s cubic-bezier(0.25,0.1,0.25,1); }
.client-card { width: 420px; min-height: 560px; position: relative; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; flex-shrink: 0; }
.client-card-bg { position: absolute; inset: 0; transition: transform 0.6s cubic-bezier(0.25,0.1,0.25,1); }
.client-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.62) saturate(1.1); transition: transform 0.6s cubic-bezier(0.25,0.1,0.25,1); }
.client-card-tint { position: absolute; inset: 0; mix-blend-mode: color; opacity: 0.3; }
.client-card:hover .client-card-bg, .client-card:hover .client-card-img { transform: scale(1.04); }
.client-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); z-index: 1; }
.client-card-content { position: relative; z-index: 2; display: flex; flex-direction: column; height: 100%; padding: 36px; }
.client-card-top { flex: 1; display: flex; align-items: flex-start; justify-content: flex-end; }
.client-logo-badge { display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); padding: 10px 16px; border-radius: 2px; }
.client-logo-text { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: #fff; text-transform: uppercase; }
.client-card-bottom { margin-top: auto; }
.client-sector-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.25); padding: 4px 10px; margin-bottom: 14px; }
.client-card-name { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.client-card-tagline { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.55; margin-bottom: 20px; }
.client-deliverables { display: flex; flex-wrap: wrap; gap: 6px; }
.client-chip { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.12); padding: 5px 10px; border-radius: 1px; }
.client-chip-accent { background: var(--orange); color: #fff; }
.clients-nav { max-width: var(--max-w); margin: 40px auto 0; padding: 0 32px; display: flex; gap: 12px; }
.clients-arrow { width: 48px; height: 48px; border: 1.5px solid var(--stone); background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; color: var(--ink); }
.clients-arrow:hover { border-color: var(--orange); background: var(--orange); color: #fff; }
.clients-arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* ─── CAMPAIGN CARD ───────────────────────────────── */
.campaign-card { background: var(--ink); margin: 2px 0 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 320px; }
.campaign-left { padding: 64px; display: flex; flex-direction: column; justify-content: center; }
.campaign-right { background: #1a1816; padding: 64px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,0.06); }
.campaign-label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.campaign-title { font-family: var(--font-display); font-size: clamp(28px, 2.5vw, 40px); font-weight: 500; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.campaign-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 28px; }
.campaign-note { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; font-style: italic; border-left: 2px solid var(--orange); padding-left: 16px; }

/* ─── CASE STUDY MODAL ────────────────────────────── */
.case-modal-overlay { position: fixed; inset: 0; background: rgba(17,16,9,0.72); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 24px; }
.case-modal-overlay.open { display: flex; }
.case-modal { background: var(--ivory); max-width: 720px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; padding: 56px 48px; }
.case-modal-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--stone); background: transparent; color: var(--ink); font-size: 18px; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.case-modal-close:hover { border-color: var(--orange); background: var(--orange); color: #fff; }
.case-modal-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); border: 1px solid var(--orange-pale); padding: 4px 10px; margin-bottom: 14px; }
.case-modal h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 500; line-height: 1.15; margin-bottom: 8px; }
.case-modal-status { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); margin-bottom: 24px; }
.case-modal-tagline { font-size: 15px; color: var(--slate); line-height: 1.7; margin-bottom: 32px; }
.case-modal-section { margin-bottom: 28px; }
.case-modal-section h3 { font-family: var(--font-display); font-size: 17px; font-weight: 500; margin-bottom: 10px; }
.case-modal-section p { font-size: 14px; color: var(--slate); line-height: 1.75; }
.case-modal-deliverables { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.case-modal-deliverables li { font-size: 14px; color: var(--ink); padding-left: 18px; position: relative; }
.case-modal-deliverables li::before { content: '—'; position: absolute; left: 0; color: var(--orange); }
.case-modal-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }

/* ─── WORK INDEX GRID ─────────────────────────────── */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.work-card { display: flex; flex-direction: column; gap: 16px; border-bottom: 1px solid var(--stone); padding-bottom: 32px; }
.work-card-sector { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); }
.work-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; line-height: 1.25; }
.work-card p { font-size: 14px; color: var(--slate); line-height: 1.65; }
.work-card-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.work-card-chip { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); border: 1px solid var(--stone); padding: 4px 10px; }
.work-card-link { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); border-bottom: 1px solid rgba(240,136,56,0.3); padding-bottom: 2px; align-self: flex-start; transition: border-color 0.2s; }
.work-card-link:hover { border-color: var(--orange); }

/* ─── CASE STUDY PAGE ─────────────────────────────── */
.case-study-body { padding: 80px 0; }
.case-study-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 2fr 1fr; gap: 80px; }
.case-study-section { margin-bottom: 48px; }
.case-study-section h2 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 16px; }
.case-study-section p { font-size: 15px; color: var(--slate); line-height: 1.8; margin-bottom: 12px; }
.case-sidebar { padding-top: 8px; }
.case-sidebar-block { padding: 28px; border: 1px solid var(--stone); margin-bottom: 24px; }
.case-sidebar-block h3 { font-family: var(--font-display); font-size: 16px; font-weight: 500; margin-bottom: 14px; }
.case-sidebar-block ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.case-sidebar-block li { font-size: 14px; color: var(--slate); padding-left: 16px; position: relative; }
.case-sidebar-block li::before { content: '—'; position: absolute; left: 0; color: var(--orange); font-size: 11px; }
.case-sidebar-links { display: flex; flex-direction: column; gap: 10px; }
.case-sidebar-links a { font-size: 13px; color: var(--slate); transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.case-sidebar-links a:hover { color: var(--orange); }

/* ─── TESTIMONIALS ────────────────────────────────── */
.testimonials { padding: 96px 0; background: #EDEAE4; }
.testimonials h2 { font-family: var(--font-display); font-size: clamp(36px, 3.5vw, 52px); font-weight: 500; line-height: 1.1; margin-bottom: 56px; }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 760px; margin: 0 auto; }
.testi-card { background: var(--ivory); padding: 36px; display: flex; flex-direction: column; gap: 20px; }
.testi-card-wide { grid-column: 1 / -1; }
.testi-stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; }
.testi-quote { font-family: var(--font-display); font-size: 17px; font-style: italic; font-weight: 400; line-height: 1.55; color: var(--ink); flex: 1; }
.testi-author { border-top: 1px solid var(--stone); padding-top: 16px; }
.testi-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.testi-role { font-size: 13px; color: var(--slate); }

/* ─── ABOUT ───────────────────────────────────────── */
.about { padding: 96px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about h2 { font-family: var(--font-display); font-size: clamp(36px, 3.5vw, 52px); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 24px; }
.about p { font-size: 15px; color: var(--slate); line-height: 1.8; margin-bottom: 16px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.pillar { padding: 28px; border: 1px solid var(--stone); }
.pillar-title { font-family: var(--font-display); font-size: 17px; font-weight: 500; margin-bottom: 8px; }
.pillar-desc { font-size: 13px; color: var(--slate); line-height: 1.6; }
.about-right-content { padding-top: 8px; }
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.about-stat-block { background: var(--ink); padding: 32px; display: flex; flex-direction: column; }
.about-stat-num { font-family: var(--font-display); font-size: 48px; font-weight: 500; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.about-stat-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.about-stat-block.light { background: #EDEAE4; }
.about-stat-block.light .about-stat-num { color: var(--ink); }
.about-stat-block.light .about-stat-label { color: var(--slate); }

/* ─── BLOG ────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.blog-card { display: flex; flex-direction: column; gap: 14px; }
.blog-card-category { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); }
.blog-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 500; line-height: 1.3; }
.blog-card p { font-size: 14px; color: var(--slate); line-height: 1.65; }
.blog-card-meta { font-size: 12px; color: var(--slate); }
.blog-card-link { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); border-bottom: 1px solid rgba(240,136,56,0.3); padding-bottom: 2px; align-self: flex-start; transition: border-color 0.2s; }
.blog-card-link:hover { border-color: var(--orange); }
.blog-card-divider { border: none; border-top: 1px solid var(--stone); margin: 0; }

/* ─── CTA BAND ────────────────────────────────────── */
.cta-band { background: var(--orange); padding: 80px 0; }
.cta-band-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(32px, 3vw, 46px); font-weight: 500; color: #fff; line-height: 1.2; }
.cta-band h2 em { font-style: italic; }

/* ─── RELATED LINKS PANEL ─────────────────────────── */
.related-panel { padding: 64px 0; background: #EDEAE4; }
.related-panel-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.related-panel h2 { font-family: var(--font-display); font-size: 28px; font-weight: 500; margin-bottom: 32px; }
.related-links { display: flex; flex-wrap: wrap; gap: 12px; }
.related-link { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--stone); padding: 12px 20px; font-size: 13px; font-weight: 500; color: var(--ink); transition: border-color 0.2s, color 0.2s; }
.related-link:hover { border-color: var(--orange); color: var(--orange); }

/* ─── CONTACT ─────────────────────────────────────── */
.contact { padding: 96px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact h2 { font-family: var(--font-display); font-size: clamp(36px, 3.5vw, 52px); font-weight: 500; line-height: 1.1; margin-bottom: 24px; }
.contact p { font-size: 15px; color: var(--slate); line-height: 1.8; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.contact-detail-icon { width: 36px; height: 36px; background: var(--orange-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 14px; height: 14px; color: var(--orange); }
.contact-detail-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 2px; }
.contact-detail-val { font-size: 14px; color: var(--ink); }
.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: 6px; }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }
.form-input, .form-textarea, .form-select { background: transparent; border: 1px solid var(--stone); padding: 12px 16px; font-family: var(--font-body); font-size: 14px; color: var(--ink); outline: none; transition: border-color 0.2s; width: 100%; -webkit-appearance: none; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--orange); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--stone); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: #fff; font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 16px 32px; cursor: pointer; border: none; transition: background 0.2s; align-self: flex-start; }
.form-submit:hover { background: var(--orange); }
.form-note { font-size: 12px; color: var(--slate); line-height: 1.6; }

/* ─── FOOTER ──────────────────────────────────────── */
.footer { background: var(--ink); color: rgba(255,255,255,0.45); padding: 64px 0 32px; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: #fff; }
.footer-logo-sub { font-size: 8px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 2px; }
.footer-tagline { font-size: 13px; line-height: 1.65; max-width: 260px; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); font-size: 12px; transition: border-color 0.2s, color 0.2s; }
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom-text { font-size: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── ANIMATIONS ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── SKIP LINK ───────────────────────────────────── */
.skip-link { position: absolute; top: -100%; left: 16px; background: var(--orange); color: #fff; padding: 10px 20px; font-size: 14px; font-weight: 600; z-index: 9999; transition: top 0.2s; text-decoration: none; }
.skip-link:focus { top: 8px; }

/* ─── FOCUS STYLES ───────────────────────────────── */
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
button:focus-visible, a:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.client-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.client-card:focus-visible .client-card-img { filter: brightness(0.75) saturate(1.1); }

/* ─── REDUCED MOTION ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .two-col, .about-inner, .contact-inner, .service-detail-inner, .case-study-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; max-width: none; }
  .about-pillars { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services .section-header { grid-template-columns: 1fr; }
  .clients-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .client-card { width: 340px; }
  .campaign-card { grid-template-columns: 1fr; }
  .campaign-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .bp-sep { display: none; }
  .client-card { width: 88vw; min-height: 480px; }
  .campaign-left, .campaign-right { padding: 40px 24px; }
  .work-grid, .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .client-card-img { filter: brightness(0.45) saturate(1.1); }
  .client-card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.18) 100%) !important; }
  .client-card-name { font-size: 22px; }
  .client-card-tagline { color: rgba(255,255,255,0.82); }
  .client-sector-tag { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.4); }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .subpage-hero { padding: 40px 0 60px; }
  .subpage-hero-inner { padding: 0 20px; }
  .subpage-hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .breadcrumb-inner { padding: 12px 20px; }
  .footer { padding: 48px 0 24px; }
  .footer-main { padding: 0 20px; }
  .footer-bottom { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .mobile-menu { padding: 32px 20px; }
  .mobile-menu a { font-size: 24px; }
  .campaign-left, .campaign-right { padding: 36px 20px; }
  .case-modal { padding: 32px 20px; }
}
@media (max-width: 900px) {
  .nav-links a, .nav-cta { min-height: 44px; display: flex; align-items: center; }
  .clients-arrow { width: 52px; height: 52px; }
  .btn-primary, .btn-ghost, .btn-white, .form-submit { min-height: 48px; padding-top: 14px; padding-bottom: 14px; }
  .footer-social a { width: 44px; height: 44px; }
  .footer-links a { min-height: 44px; display: flex; align-items: center; }
}
