/* ============================================
   Design Tokens
   ============================================ */
:root {
  --navy-950: #0a1524;
  --navy-900: #0f1f36;
  --navy-800: #16304f;
  --navy-700: #1f3f66;
  --navy-600: #2c4f7c;

  --brass: #a9784a;
  --brass-light: #c99a68;
  --brass-deep: #7a5230;

  --paper: #f7f4ef;
  --paper-alt: #eeeae1;
  --stone: #ded7c9;
  --stone-line: #dcd5c7;

  --ink: #1b1a17;
  --ink-soft: #55524a;
  --ink-faint: #837e72;

  --cream: #f6f2ea;
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1160px;
  --radius: 14px;
  --radius-sm: 8px;

  --shadow-soft: 0 1px 2px rgba(15, 31, 54, 0.04), 0 8px 24px rgba(15, 31, 54, 0.06);
  --shadow-lift: 0 4px 8px rgba(15, 31, 54, 0.06), 0 16px 40px rgba(15, 31, 54, 0.10);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

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

/* ============================================
   Typography helpers
   ============================================ */
.kicker {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 14px;
}
.kicker-light { color: var(--brass-light); }

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  max-width: 20ch;
}
.section-dark h2 { color: var(--white); }

.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-top: 18px;
}
.lead-light { color: rgba(247, 244, 239, 0.78); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brass);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--brass-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.btn-small { padding: 11px 22px; font-size: 0.88rem; }
.btn-large { padding: 18px 38px; font-size: 1.05rem; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 0;
  transition: background-color 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 21, 36, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  font-size: 1.05rem;
}
.logo-mark-img {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
}
.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  color: rgba(247, 244, 239, 0.82);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--brass);
  border-radius: 2px;
}
.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background: var(--navy-900);
  padding: 168px 0 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,21,36,0.74) 0%, rgba(10,21,36,0.48) 38%, rgba(10,21,36,0.96) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; padding-bottom: 150px; }
.hero-watermark {
  position: absolute;
  top: 100px;
  right: 40px;
  width: 130px;
  height: 130px;
  opacity: 0.16;
  z-index: 1;
  pointer-events: none;
}

/* ============================================
   Hero overlapping audience cards
   ============================================ */
.hero-cards-wrap {
  position: relative;
  z-index: 2;
  margin-top: -110px;
  margin-bottom: 45px;
}
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.glass-card {
  display: block;
  background: rgba(10, 21, 36, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 244, 239, 0.18);
  border-radius: 24px;
  padding: 32px 30px;
  color: var(--white);
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.glass-card:hover {
  transform: translateY(-4px);
  background: rgba(10, 21, 36, 0.74);
  border-color: rgba(201, 154, 104, 0.5);
}
.glass-card-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 14px;
}
.glass-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}
.glass-card p { font-size: 0.92rem; color: rgba(247,244,239,0.75); line-height: 1.5; }
.glass-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brass-light);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(247, 244, 239, 0.85);
  background: rgba(247, 244, 239, 0.06);
  border: 1px solid rgba(247, 244, 239, 0.16);
  padding: 9px 18px 9px 14px;
  border-radius: 999px;
  margin: 0 0 26px;
}
.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brass-light);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--brass-light);
}
.hero-sub {
  margin-top: 28px;
  font-size: 1.18rem;
  line-height: 1.65;
  color: rgba(247, 244, 239, 0.8);
  max-width: 62ch;
}
.hero-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(247, 244, 239, 0.82);
  font-weight: 600;
  font-size: 0.98rem;
  border-bottom: 1.5px solid rgba(247, 244, 239, 0.3);
  padding-bottom: 3px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), gap 0.25s var(--ease);
}
.hero-link:hover {
  color: var(--brass-light);
  border-color: var(--brass-light);
  gap: 12px;
}

/* ============================================
   Wins strip
   ============================================ */
.wins-strip {
  position: relative;
  background: var(--navy-950);
  padding: 56px 0;
  overflow: hidden;
}
.wins-strip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  filter: grayscale(0.4);
}
.wins-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,21,36,0.55), rgba(10,21,36,0.92));
}
.wins-strip .wrap { z-index: 1; }
.wins-strip-head { display: flex; align-items: center; gap: 12px; }
.wins-strip-logo { width: 28px; height: 28px; border-radius: 50%; opacity: 0.9; }
.wins-strip-head .kicker { margin: 0; }
.wins-intro {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--white);
  max-width: 50ch;
  margin-top: 6px;
  margin-bottom: 8px;
}

/* ============================================
   Ticker (Proof section)
   ============================================ */
.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 32px;
  padding: 4px 0 8px;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--navy-950), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--navy-950), transparent); }
.ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 24px;
  animation: ticker-scroll 46s linear infinite;
}
.ticker:hover .ticker-track,
.ticker:focus-within .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  flex: 0 0 290px;
  background: rgba(247,244,239,0.05);
  border: 1px solid rgba(247,244,239,0.12);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.ticker-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,154,104,0.16);
  color: var(--brass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ticker-icon svg { width: 22px; height: 22px; }
.ticker-item h3 {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.ticker-item p {
  font-size: 0.87rem;
  color: rgba(247,244,239,0.68);
  line-height: 1.55;
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ============================================
   Sections
   ============================================ */
.section { padding: 120px 0; }
.section-alt { background: var(--paper-alt); }
.section-dark { background: var(--navy-900); }
.section-head { max-width: 640px; margin-bottom: 64px; }

/* ============================================
   Split section (Problem / Process)
   ============================================ */
.split-section { overflow: hidden; }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-grid-reverse .split-media { order: -1; }
.split-copy h2 { margin-top: 4px; }
.split-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}

/* ============================================
   AI-Powered Growth
   ============================================ */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.ai-item { display: flex; gap: 14px; align-items: flex-start; }
.ai-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(169,120,74,0.12);
  color: var(--brass-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ai-icon svg { width: 18px; height: 18px; }
.ai-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.ai-item p { color: var(--ink-soft); font-size: 0.87rem; line-height: 1.5; }
.ai-platforms {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--stone-line);
  color: var(--ink-faint);
  font-size: 0.82rem;
  line-height: 1.6;
}
.problem-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.problem-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 500;
}
.problem-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass);
}
.process-steps { display: grid; gap: 30px; margin-top: 32px; }
.process-step { display: flex; gap: 18px; align-items: flex-start; }
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.process-step p { color: var(--ink-soft); font-size: 0.96rem; }

/* ============================================
   About
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-copy p { margin-top: 18px; color: var(--ink-soft); font-size: 1.02rem; }
.about-copy .lead { margin-top: 18px; }
.about-cta { margin-top: 32px; }
.about-side {
  position: sticky;
  top: 140px;
}
.about-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stone-line);
  box-shadow: var(--shadow-lift);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   Who It's For
   ============================================ */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.who-card {
  background: var(--white);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.who-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.who-card-media { aspect-ratio: 16 / 9; overflow: hidden; }
.who-card-media img { width: 100%; height: 100%; object-fit: cover; }
.who-card-body { padding: 34px 34px 38px; }
.who-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 14px;
  margin-top: 4px;
}
.who-card-body > p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 24px; }
.who-card .problem-list { margin-top: 0; margin-bottom: 28px; }
.who-card-link { margin-top: 4px; }

/* ============================================
   Wide benefit block
   ============================================ */
.wide-benefit { background: var(--navy-900); padding: 100px 0; text-align: center; }
.wide-benefit .wrap { max-width: 780px; }
.wide-benefit h2 { color: var(--white); max-width: 100%; margin: 0 auto; }
.wide-benefit .lead { max-width: 60ch; margin-left: auto; margin-right: auto; }
.wide-benefit-link { margin-top: 30px; }
.wide-benefit .kicker { text-align: center; }

/* ============================================
   What I Do
   ============================================ */
.do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone-line);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.carousel-hint { display: none; }
.do-card {
  background: var(--white);
  padding: 40px 34px;
  transition: background-color 0.3s var(--ease);
}
.do-card:hover { background: var(--paper-alt); }
.do-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(169,120,74,0.12);
  color: var(--brass-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.do-icon svg { width: 21px; height: 21px; }
.do-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 10px;
}
.do-card h3 {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.do-card p { color: var(--ink-soft); font-size: 0.95rem; }
.do-card .do-platforms {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--stone-line);
  color: var(--ink-faint);
  font-size: 0.78rem;
  line-height: 1.6;
}

.photo-band {
  position: relative;
  height: 260px;
  margin-top: 90px;
  background-size: cover;
  background-position: center;
}
.photo-band-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  background: linear-gradient(90deg, rgba(10,21,36,0.88) 0%, rgba(10,21,36,0.5) 55%, rgba(10,21,36,0.78) 100%);
}
.photo-band-overlay p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--white);
  max-width: 20ch;
}

/* ============================================
   Case Studies
   ============================================ */
.case-section { position: relative; }
.case-header-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 420px;
  z-index: 0;
  background-color: var(--navy-950);
  background-size: cover;
  background-position: center 30%;
}
.case-header-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,21,36,0.82) 0%, rgba(10,21,36,0.72) 55%, var(--paper) 100%);
}
.case-section .wrap { position: relative; z-index: 1; }
.case-section-head { max-width: 640px; }
.case-heading-light { color: var(--white); }

.case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.case {
  background: var(--white);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius);
  padding: 36px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.case:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.case-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-deep);
  background: rgba(169, 120, 74, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.case h3 {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.28;
}
.case-client {
  color: var(--ink-faint);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 8px;
}
.case p:not(.case-client) { color: var(--ink-soft); font-size: 0.96rem; }
.case-breakdown { margin-top: 22px; display: grid; gap: 16px; }
.case-point-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 5px;
}
.case-metrics { margin-top: auto; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.case-metrics span {
  background: var(--paper-alt);
  border: 1px solid var(--stone-line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.84rem;
  color: var(--navy-800);
}
.case-metrics strong { color: var(--brass-deep); font-weight: 700; }

/* Alternating dark theme, every other card */
.case:nth-child(even) {
  background: var(--navy-900);
  border-color: var(--navy-800);
}
.case:nth-child(even) .case-tag {
  color: var(--brass-light);
  background: rgba(201, 154, 104, 0.16);
}
.case:nth-child(even) h3 { color: var(--white); }
.case:nth-child(even) .case-client { color: rgba(247,244,239,0.6); }
.case:nth-child(even) p:not(.case-client) { color: rgba(247,244,239,0.78); }
.case:nth-child(even) .case-point-label { color: var(--brass-light); }
.case:nth-child(even) .case-metrics span {
  background: rgba(247,244,239,0.08);
  border-color: rgba(247,244,239,0.16);
  color: rgba(247,244,239,0.85);
}
.case:nth-child(even) .case-metrics strong { color: var(--brass-light); }

/* ============================================
   Contact
   ============================================ */
.contact-section { text-align: center; }
.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
}
.contact-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  margin-bottom: 24px;
  opacity: 0.9;
}
.contact-inner .kicker,
.contact-inner h2,
.contact-inner .lead { text-align: center; max-width: 100%; }
.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
}
.contact-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: rgba(247,244,239,0.06);
  border: 1px solid rgba(247,244,239,0.14);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  min-width: 220px;
  text-align: left;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.contact-link:hover {
  border-color: var(--brass);
  background: rgba(169,120,74,0.08);
  transform: translateY(-2px);
}
.contact-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-light);
}
.contact-value { font-size: 0.98rem; color: var(--white); font-weight: 500; }

/* ============================================
   Contact form
   ============================================ */
.contact-form {
  width: 100%;
  margin-top: 40px;
  text-align: left;
  display: grid;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: grid; gap: 8px; }
.form-field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(247,244,239,0.82);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(247,244,239,0.06);
  border: 1px solid rgba(247,244,239,0.18);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.form-field select { cursor: pointer; }
.form-field select:invalid { color: rgba(247,244,239,0.55); }
.form-field select option { color: var(--ink); background: var(--white); }
.form-field textarea { resize: vertical; min-height: 100px; font-family: var(--font-body); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brass-light);
  background: rgba(247,244,239,0.1);
}
.contact-form button[type="submit"] { width: 100%; margin-top: 4px; }
.contact-form button[type="submit"]:disabled { opacity: 0.7; cursor: not-allowed; }
.form-status {
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.form-status.is-shown { opacity: 1; }
.form-status.is-success { color: var(--brass-light); }
.form-status.is-error { color: #e0917f; }

.contact-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 38px 0 26px;
  color: rgba(247,244,239,0.4);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-divider::before,
.contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(247,244,239,0.15);
}

/* ============================================
   Footer
   ============================================ */
.site-footer { background: var(--navy-950); padding: 30px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.86rem;
  color: rgba(247,244,239,0.5);
}
.footer-inner a { transition: color 0.2s var(--ease), opacity 0.2s var(--ease); }
.footer-inner a:hover { color: var(--brass-light); }
.footer-logo { display: flex; align-items: center; opacity: 0.85; }
.footer-logo:hover { opacity: 1; }
.footer-logo .logo-mark-img { width: 30px; height: 30px; }

/* ============================================
   Scroll reveal
   ============================================ */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-side { position: static; }
  .about-side .about-portrait { max-width: 340px; margin: 0 auto; }
  .do-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .ai-grid { grid-template-columns: 1fr; gap: 20px; }
  .split-grid-reverse .split-media { order: 0; }
  .split-media img { aspect-ratio: 16 / 9; }
  .ticker-item { flex-basis: 260px; }
  .hero-cards { grid-template-columns: 1fr; }
  .hero-cards-wrap { margin-top: -70px; margin-bottom: 28px; }
  .hero-watermark { width: 90px; height: 90px; top: 90px; right: 24px; }
  .who-grid { grid-template-columns: 1fr; gap: 24px; }
  .case-list { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--navy-950);
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 26px; }
  .main-nav a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 84px 0; }
  .hero { padding: 140px 0 0; }
  .hero-inner { padding-bottom: 90px; }
  .do-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 24px;
    gap: 14px;
    background: none;
    border: none;
    border-radius: 0;
    margin: 0 -24px;
    padding: 4px 24px 14px;
  }
  .do-grid::-webkit-scrollbar { display: none; }
  .do-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    border: 1px solid var(--stone-line);
    border-radius: var(--radius);
  }
  .case-list {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 24px;
    gap: 14px;
    margin: 0 -24px;
    padding: 4px 24px 14px;
  }
  .case-list::-webkit-scrollbar { display: none; }
  .case { flex: 0 0 86%; scroll-snap-align: start; height: auto; align-self: stretch; }
  .carousel-hint {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 6px;
  }
  .carousel-hint span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--stone-line);
    transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .carousel-hint span.is-active {
    background: var(--brass-deep);
    transform: scale(1.25);
  }
  .about-side .about-portrait { max-width: 260px; margin: 0 auto; }
  .ticker-item { flex-basis: 240px; padding: 22px 20px; }
  .photo-band { height: 200px; margin-top: 64px; }
  .case-header-bg { height: 480px; }
  .case-header-bg::after {
    background: linear-gradient(180deg, rgba(10,21,36,0.9) 0%, rgba(10,21,36,0.9) 92%, var(--paper) 100%);
  }
  .case { padding: 30px 26px; }
  .who-card-body { padding: 28px 24px 32px; }
  .hero-watermark { display: none; }
  .wide-benefit { padding: 70px 0; }
  .footer-inner { flex-direction: column; gap: 14px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
