/* ================================================================
   Contemporary Communications, Inc. — styles.css v5
   Ground-up rebuild. Fewer sections, each one fully committed.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');
@import url('https://use.typekit.net/jey5xup.css');

/* ================================================================
   VARIABLES
   ================================================================ */
:root {
  --black:      #111111;
  --white:      #F4F2EE;   /* warm off-white — avoids clinical feel */
  --green:      #4A9B4B;   /* used once, sharply */
  --blue:       #2E5FA3;
  --gray:       #888888;
  --border:     rgba(0,0,0,0.09);
  --border-inv: rgba(255,255,255,0.09);

  --font-display: 'futura-pt', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Type scale */
  --text-hero:    clamp(72px, 13vw, 190px);
  --text-display: clamp(48px, 7vw, 100px);
  --text-h2:      clamp(32px, 4vw, 56px);
  --text-h3:      clamp(20px, 2.2vw, 28px);
  --text-body:    16px;
  --text-sm:      14px;
  --text-xs:      11px;

  --nav-h: 110px;

  /* Spring easing — borrowed from ThatLot */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img    { max-width: 100%; display: block; }
a      { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ================================================================
   LAYOUT
   ================================================================ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(244, 242, 238, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}

.nav.scrolled {
  border-bottom-color: var(--border);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  margin-top: 10px;
  transition: opacity 200ms ease;
}
.nav-logo:hover { opacity: 0.65; }

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

/* Center links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  justify-self: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 26px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--black);
  opacity: 0.65;
  border-radius: 6px;
  transition: opacity 150ms ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active { opacity: 1; }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-chevron {
  flex-shrink: 0;
  transition: transform 200ms var(--ease-out);
  opacity: 0.5;
}
.nav-dropdown:hover .nav-dropdown-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px;
  padding-top: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, visibility 200ms ease, transform 200ms var(--ease-out);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  border-radius: 6px;
  transition: background 120ms ease;
}
.nav-dropdown-item:hover { background: rgba(0,0,0,0.04); }

/* CTA */
.nav-cta { justify-self: end; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  grid-column: 3;
  justify-self: end;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 240ms var(--ease-out), opacity 200ms ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile-overlay {
  position: fixed;
  top: var(--nav-h);
  inset: var(--nav-h) 0 0 0;
  background: var(--white);
  z-index: 999;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 360ms var(--ease-out);
  pointer-events: none;
  overflow-y: auto;
}
.nav-mobile-overlay.open {
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mobile-link {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color 150ms ease;
}
.nav-mobile-link:hover,
.nav-mobile-link.active { color: var(--green); }

.nav-mobile-services-label {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(0,0,0,0.18);
  padding: 20px 0 12px;
}

.nav-mobile-sub { padding-left: 24px; }
.nav-mobile-sub .nav-mobile-link { font-size: 24px; color: var(--gray); }
.nav-mobile-cta { margin-top: 40px; }
.nav-mobile-cta .btn { width: 100%; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 120ms ease;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: #3d8a3e; }

.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #2a2a2a; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--black);
}

/* Arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: currentColor;
  transition: gap 240ms var(--ease-out);
}
.arrow-link:hover { gap: 14px; }
.arrow-link svg { flex-shrink: 0; }

/* ================================================================
   HERO — HOMEPAGE
   ================================================================ */
.hero-home {
  min-height: 100dvh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-home .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-home-type {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-home-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-line { display: block; }

.dot { color: var(--green); }

/* Decorative: faint "CC" bleed — replaced by lightbulb */
.hero-bg-mark { display: none; }

/* ================================================================
   LIGHTBULB — brand staple, micro-animated
   ================================================================ */
/* Lightbulb wrapper — positions both image and shadow */
.hero-bulb-wrap {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-48%);
  width: clamp(240px, 32vw, 460px);
  pointer-events: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* The actual bulb image floats up and down */
.hero-bulb-img {
  width: clamp(240px, 32vw, 460px);
  max-width: 460px;
  height: auto;
  display: block;
  animation: bulb-float 4s ease-in-out infinite;
}

/* Shadow stays fixed — shrinks slightly when bulb rises */
.hero-bulb-shadow {
  width: 52%;
  height: 18px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.20) 0%, transparent 75%);
  border-radius: 50%;
  animation: shadow-pulse 4s ease-in-out infinite;
  margin-top: -10px;
}

@keyframes bulb-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

@keyframes shadow-pulse {
  0%, 100% { transform: scaleX(1);    opacity: 1;    }
  50%       { transform: scaleX(0.72); opacity: 0.55; }
}

@media (max-width: 900px) {
  .hero-bulb-wrap {
    opacity: 0.25;
    right: -4%;
    width: clamp(160px, 40vw, 260px);
  }
}
@media (max-width: 640px) {
  .hero-bulb-wrap { display: none; }
}

/* Hero bottom bar */
.hero-bottom {
  border-top: 1px solid var(--border);
  padding-top: 36px;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.hero-location {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.hero-subtitle {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  max-width: 420px;
  margin-top: 8px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ================================================================
   HERO — INNER PAGES
   ================================================================ */
.hero-page {
  background: var(--black);
  padding-top: calc(var(--nav-h) + 100px);
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-inv);
}

.hero-page-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}

.hero-page-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 36px;
  max-width: 900px;
}

.hero-page-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  max-width: 480px;
}

/* ================================================================
   DISCIPLINES SPLIT (homepage dark section)
   ================================================================ */
.disciplines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
}

.discipline-col {
  padding: 80px 64px 80px;
  border-right: 1px solid var(--border-inv);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
  position: relative;
  transition: background 300ms ease;
  cursor: default;
}
.discipline-col:last-child { border-right: none; }
.discipline-col:hover { background: #161616; }

.discipline-index {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 0;
}

.discipline-main { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }

.discipline-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  transition: color 240ms ease;
}
.discipline-col:hover .discipline-title { color: #fff; }

.discipline-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}

.discipline-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  padding: 9px 0;
  border-top: 1px solid var(--border-inv);
  line-height: 1.35;
  transition: color 150ms ease, padding-left 200ms var(--ease-out);
}
.discipline-list li:last-child { border-bottom: 1px solid var(--border-inv); }
.discipline-col:hover .discipline-list li { color: rgba(255,255,255,0.6); }
.discipline-col:hover .discipline-list li:hover {
  color: #fff;
  padding-left: 8px;
}

.discipline-cta {
  color: rgba(255,255,255,0.4);
  transition: color 150ms ease;
}
.discipline-col:hover .discipline-cta { color: rgba(255,255,255,0.8); }

/* ================================================================
   STATS ROW
   ================================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  padding: 64px 48px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--green);
  margin-bottom: 12px;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.02em;
}

/* ================================================================
   PARTNER PROMISE — FULL VIEWPORT DARK
   ================================================================ */
.promise {
  background: var(--black);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  position: relative;
}

.promise-inner {
  max-width: 1000px;
}

.promise-mark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 800;
  color: var(--green);
  opacity: 0.08;
  line-height: 0.75;
  margin-bottom: -0.12em;
  user-select: none;
}

.promise-quote {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 32px;
}

.promise-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 48px;
}

/* ================================================================
   BLOG PREVIEW — NUMBERED LIST
   ================================================================ */
.blog-section {
  padding: 120px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.section-eyebrow-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.blog-list-home {
  display: flex;
  flex-direction: column;
}

.blog-item-home {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: baseline;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  transition: background 150ms ease;
}
.blog-item-home:last-child { border-bottom: 1px solid var(--border); }

.blog-item-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--border);
  letter-spacing: 0.04em;
  padding-top: 3px;
}

.blog-item-body { min-width: 0; }

.blog-item-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.blog-item-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--black);
  transition: color 150ms ease;
}

.blog-item-home:hover .blog-item-title { color: var(--green); }
.blog-item-title a { color: inherit; text-decoration: none; }
.blog-item-title a:hover { color: var(--green); }

.blog-item-excerpt {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  margin-top: 10px;
  max-width: 520px;
}

.blog-item-action { flex-shrink: 0; }

/* ================================================================
   BLOG PAGE — FULL LIST
   ================================================================ */
.blog-page-section {
  padding: 100px 0;
}

.blog-full-list {
  display: flex;
  flex-direction: column;
}

.blog-full-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: start;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  transition: background 150ms ease;
}
.blog-full-item:last-child { border-bottom: 1px solid var(--border); }
.blog-full-item:hover .blog-item-title { color: var(--green); }

/* ================================================================
   SERVICES PAGE — NUMBERED LIST
   ================================================================ */
.services-section {
  padding: 100px 0;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-row:last-child { border-bottom: 1px solid var(--border); }

.service-row-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gray);
  padding-top: 6px;
  opacity: 0.4;
}

.service-row-body { min-width: 0; }

.service-row-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--black);
  margin-bottom: 16px;
  transition: color 150ms ease;
}
.service-row:hover .service-row-title { color: var(--green); }

.service-row-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 580px;
}

/* Watermark number */
.service-row-watermark {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 14vw, 180px);
  font-weight: 800;
  color: var(--green);
  opacity: 0.04;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  transition: opacity 300ms ease;
}
.service-row:hover .service-row-watermark { opacity: 0.1; }

/* ================================================================
   CTA STRIP (services pages)
   ================================================================ */
.cta-strip {
  background: var(--black);
  padding: 100px 0;
}

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

.cta-strip-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.cta-strip-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ================================================================
   CLOSING PITCH SPLIT
   ================================================================ */
.closing-pitch {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.closing-pitch-heading {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--black);
}

.closing-pitch-body p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}
.closing-pitch-body p:last-of-type { margin-bottom: 32px; }

/* ================================================================
   MISSION (about)
   ================================================================ */
.mission-section {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}

.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}

.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--black);
  border-left: 2px solid var(--green);
  padding-left: 32px;
  margin-top: 32px;
}

.mission-body p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}
.mission-body p:last-child { margin-bottom: 0; }

/* ================================================================
   VALUES (about)
   ================================================================ */
.values-section {
  padding: 120px 0;
  background: var(--white);
}

.values-intro {
  max-width: 680px;
  margin-bottom: 80px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.value-card {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 200ms ease;
}
.value-card:hover { background: rgba(0,0,0,0.02); }

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease-out);
}
.value-card:hover::before { transform: scaleX(1); }

.value-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  user-select: none;
}

.value-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.value-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-section {
  padding: 100px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form-wrap {
  border: 1px solid var(--border);
  padding: 56px;
}

.contact-panel {
  padding: 8px 0;
}

.contact-panel-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  transition: color 150ms ease;
}
.contact-detail-value:hover { color: var(--green); }

.contact-note {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}

/* ================================================================
   FORM
   ================================================================ */
.form-heading {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.form-group { margin-bottom: 24px; }

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

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  outline: none;
  transition: border-color 150ms ease;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(0,0,0,0.2); }

.form-input:focus,
.form-textarea:focus { border-color: var(--black); }

.form-input.form-error,
.form-textarea.form-error { border-color: #e53e3e; }

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

.form-submit { width: 100%; margin-top: 8px; }

/* Form success */
.form-success { display: none; text-align: center; padding: 64px 0; }
.form-success.show { display: block; }
.form-success-icon {
  width: 52px; height: 52px;
  background: rgba(74,155,75,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--green);
}
.form-success-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-success-sub { font-size: 14px; color: var(--gray); }

/* ================================================================
   TICKER
   ================================================================ */
.ticker {
  background: var(--green);
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 36s linear infinite;
  width: max-content;
}
.ticker-item {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 32px;
}
.ticker-sep {
  color: rgba(255,255,255,0.3);
  padding: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--black);
  padding: 40px 0 0;
  border-top: 2px solid var(--green);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-inv);
}

.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: none;
  display: block;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 32px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  transition: color 150ms ease;
}
.footer-contact a:hover { color: rgba(255,255,255,0.8); }

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-nav-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  margin-bottom: 12px;
}

.footer-nav-link {
  font-size: 16px;
  color: rgba(255,255,255,0.38);
  transition: color 150ms ease;
  padding: 3px 0;
}
.footer-nav-link:hover { color: rgba(255,255,255,0.8); }

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

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
}

.footer-legal {
  display: flex;
  gap: 32px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
  transition: color 150ms ease;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 100ms; }
.stagger > *:nth-child(3) { transition-delay: 200ms; }
.stagger > *:nth-child(4) { transition-delay: 300ms; }
.stagger > *:nth-child(5) { transition-delay: 400ms; }
.stagger > *:nth-child(6) { transition-delay: 500ms; }
.stagger > *:nth-child(7) { transition-delay: 600ms; }
.stagger > *:nth-child(8) { transition-delay: 700ms; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .disciplines { grid-template-columns: 1fr; }
  .discipline-col { min-height: 50vh; border-right: none; border-bottom: 1px solid var(--border-inv); }
  .discipline-col:last-child { border-bottom: none; }
  .closing-pitch { gap: 64px; }
  .mission-layout { gap: 64px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { gap: 64px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  .promise { min-height: auto; padding: 80px 0; }

  .blog-item-home { grid-template-columns: 48px 1fr; }
  .blog-item-action { display: none; }

  .blog-full-item { grid-template-columns: 48px 1fr; }
  .blog-full-item > *:last-child:not(.blog-item-body) { display: none; }

  .service-row { grid-template-columns: 56px 1fr; }
  .service-row-watermark { display: none; }

  .cta-strip-inner { grid-template-columns: 1fr; gap: 32px; }

  .closing-pitch { grid-template-columns: 1fr; gap: 48px; }
  .mission-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 48px; }
  .footer-nav { align-items: flex-start; }
}

@media (max-width: 640px) {
  :root { --nav-h: 90px; }

  .container { padding: 0 24px; }

  .discipline-col { padding: 48px 24px; }

  .hero-page {
    padding-top: calc(var(--nav-h) + 64px);
    padding-bottom: 64px;
  }

  .blog-section { padding: 80px 0; }
  .services-section { padding: 80px 0; }
  .contact-section { padding: 80px 0; }

  .contact-form-wrap { padding: 32px 24px; }

  .values-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer { padding-top: 32px; }
  .footer-main { padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .nav-mobile-overlay { padding: 32px 24px; }
  .nav-mobile-link { font-size: 28px; }
}

/* ================================================================
   BLOG ARTICLE PAGE
   ================================================================ */
.article-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.article-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
}

.article-date {
  font-size: 12px;
  color: var(--gray);
}

.article-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--black);
  max-width: 900px;
  margin-bottom: 32px;
}

.article-deck {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--gray);
  line-height: 1.7;
  max-width: 680px;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 0 120px;
}

.article-body p {
  font-size: 17px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 28px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--black);
  margin-top: 64px;
  margin-bottom: 20px;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-top: 48px;
  margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
  list-style: none;
  margin-bottom: 28px;
}

.article-body ul li,
.article-body ol li {
  font-size: 17px;
  line-height: 1.75;
  color: #333;
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.article-body ol {
  counter-reset: article-ol;
}

.article-body ol li::before {
  counter-increment: article-ol;
  content: counter(article-ol) '.';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
}

.article-body blockquote {
  border-left: 3px solid var(--green);
  padding: 4px 0 4px 32px;
  margin: 48px 0;
}

.article-body blockquote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 0;
}

.article-body strong { font-weight: 600; color: var(--black); }

.article-cta {
  border-top: 1px solid var(--border);
  margin-top: 0;
  padding: 64px 0;
  text-align: center;
}

.article-cta-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 24px;
}

.article-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 48px;
  transition: color 150ms ease;
}
.article-nav-back:hover { color: var(--black); }
.article-nav-back svg { transition: transform 150ms ease; }
.article-nav-back:hover svg { transform: translateX(-3px); }

/* ================================================================
   FAQ PAGE
   ================================================================ */
.faq-section {
  padding: 100px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 120px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.faq-sidebar-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
  display: block;
}

.faq-category-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 150ms ease;
}
.faq-category-link:hover { color: var(--black); }
.faq-category-link:last-child { border-bottom: none; }

.faq-group {
  margin-bottom: 80px;
}

.faq-group-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  transition: color 150ms ease;
}
.faq-question:hover { color: var(--green); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 300ms var(--ease-out);
  color: var(--gray);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 800px; }

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
}

/* ================================================================
   PRIVACY POLICY PAGE
   ================================================================ */
.legal-body {
  max-width: 760px;
  padding: 80px 0 120px;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-top: 56px;
  margin-bottom: 16px;
}

.legal-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 20px;
}

.legal-body ul {
  list-style: none;
  margin-bottom: 20px;
}

.legal-body ul li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.legal-updated {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-sidebar { position: static; }
  .article-body { padding: 48px 0 80px; }
}
