@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter+Tight:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg-dark: #20221f;
  --bg-dark-2: #171916;
  --bg-light: #f1efe8;
  --text-dark: #1a1c19;
  --text-light: #f4f1e9;
  --muted-dark: #6e716a;
  --muted-light: #b8bbb3;
  --line-dark: rgba(255,255,255,.16);
  --line-light: rgba(25,27,24,.16);
  --accent: #7a1c1d;
  --accent-hover: #922425;
  --max: 1440px;
  --pad: clamp(22px, 4vw, 72px);
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --heading: 'Inter Tight', 'Segoe UI', Arial, Helvetica, sans-serif;
  --sans: 'Manrope', 'Segoe UI', Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 14px var(--pad);
  color: var(--text-light);
  background: rgba(24, 26, 23, .68);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; flex-direction: column; width: fit-content; }
.brand-mark { font-family: var(--heading); font-weight: 800; letter-spacing: .08em; font-size: 1.15rem; }
.brand-desc { margin-top: 4px; font-size: .58rem; letter-spacing: .18em; color: #c9cbc5; }
.desktop-nav { display: flex; gap: 28px; font-size: .86rem; }
.desktop-nav a { color: #d9dbd5; transition: color .2s ease; }
.desktop-nav a:hover { color: #fff; }
.header-cta { justify-self: end; font-size: .86rem; text-transform: uppercase; letter-spacing: .08em; }
.header-cta span { color: #c75050; margin-left: 6px; }
.menu-toggle { display: none; justify-self: end; color: #fff; background: none; border: 0; font: inherit; }
.mobile-menu { display: none; }

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

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  padding: 118px var(--pad) 38px;
  gap: clamp(32px, 6vw, 100px);
  align-items: stretch;
}
.hero-copy {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5vh 0;
}
.eyebrow,
.section-index,
.industry-label {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { color: #b9bdb5; margin: 0 0 28px; }
.hero h1 {
  font-family: var(--heading);
  margin: 0;
  font-size: clamp(3.25rem, 6.25vw, 7.6rem);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 650;
  max-width: 11.2ch;
}
.hero h1 em { color: #b74a4b; font-family: var(--serif); font-weight: 400; }
.hero-subtitle {
  max-width: 660px;
  margin: 34px 0 0;
  color: #c7cac2;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.55;
}
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 58px;
  padding: 0 22px;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .76rem;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-accent { background: var(--accent); color: #fff; }
.button-accent:hover { background: var(--accent-hover); }
.geo { color: #9da198; font-size: .86rem; }
.hero-image { min-height: 640px; position: relative; overflow: hidden; background: #151714; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; transform: scale(1.18); transform-origin: center top; filter: saturate(.86) contrast(1.02); }
.hero-image::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.02) 40%, rgba(0,0,0,.48) 100%); pointer-events:none; }
.image-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #e7e9e2;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line-light);
}

.clients,
.testimonials {
  padding: clamp(92px, 10vw, 170px) var(--pad);
}
.client-intro,
.testimonial-intro {
  display: grid;
  grid-template-columns: .8fr 1.8fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}
.client-intro .section-index,
.testimonial-intro .section-index { margin: 12px 0 0; }
.client-intro h2,
.testimonial-intro h2 {
  font-family: var(--heading);
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 6.2rem);
  line-height: .95;
  letter-spacing: -.05em;
  max-width: 11ch;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.logo-card {
  min-height: 160px;
  padding: 26px;
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-card img {
  width: auto;
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}
.logo-card--square img { max-height: 92px; }
.logo-card--dark { background: #1c1e1b; border-color: rgba(255,255,255,.08); }
.logo-card--dark img { max-height: 54px; }
.logo-note,
.testimonial-note {
  margin: 22px 0 0;
  color: var(--muted-dark);
  font-size: .95rem;
  line-height: 1.6;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.45);
  display: flex;
  flex-direction: column;
}
.testimonial-card span {
  color: var(--accent);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.testimonial-card h3 {
  font-family: var(--heading);
  margin: auto 0 14px;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.testimonial-card p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.65;
}
.metric { min-height: 250px; padding: 48px 28px 42px 0; border-right: 1px solid var(--line-light); display: flex; flex-direction: column; justify-content: space-between; }
.metric:not(:first-child) { padding-left: 28px; }
.metric:last-child { border-right: 0; }
.metric strong { font-size: clamp(2.9rem, 5vw, 6rem); letter-spacing: -.06em; font-weight: 600; line-height: .9; }
.metric span { max-width: 230px; color: var(--muted-dark); font-size: .9rem; line-height: 1.4; text-transform: uppercase; letter-spacing: .06em; }

.manifesto,
.expertise,
.industries,
.cases,
.principles,
.formats,
.contact {
  padding: clamp(92px, 10vw, 170px) var(--pad);
}
.section-index { color: #8b8f87; margin-bottom: 46px; }
.manifesto-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(48px, 8vw, 140px); }
.manifesto h2,
.section-heading h2,
.about h2,
.contact h2 {
  font-family: var(--heading);
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 7rem);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 620;
}
.manifesto h2 { max-width: 9ch; }
.manifesto-copy { align-self: end; max-width: 620px; }
.manifesto-copy .lead { color: #fff; font-size: clamp(1.35rem, 2.2vw, 2.35rem); line-height: 1.22; letter-spacing: -.025em; }
.manifesto-copy > p:not(.lead) { color: #b9bcb5; line-height: 1.7; font-size: 1rem; }
.steps-inline { margin-top: 38px; border-top: 1px solid var(--line-dark); }
.steps-inline span { display: block; padding: 16px 0; border-bottom: 1px solid var(--line-dark); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }

.section-heading { display: grid; grid-template-columns: .8fr 1.8fr; gap: 60px; margin-bottom: 72px; align-items: start; }
.section-heading .section-index { margin: 12px 0 0; }
.section-heading h2 { max-width: 12ch; }

.service-list { border-top: 1px solid var(--line-light); }
.service {
  display: grid;
  grid-template-columns: .24fr 1.25fr 1fr;
  gap: 40px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
  align-items: start;
  transition: padding .25s ease, background .25s ease;
}
.service:hover { padding-left: 16px; padding-right: 16px; background: rgba(0,0,0,.025); }
.service-num { color: var(--accent); font-size: .82rem; letter-spacing: .1em; }
.service h3 { font-family: var(--heading); margin: 0; font-size: clamp(1.5rem, 2.3vw, 2.8rem); letter-spacing: -.035em; font-weight: 560; }
.service p { margin: 2px 0 0; color: var(--muted-dark); line-height: 1.65; }

.industries .section-heading .section-index { color: #8b8f87; }
.industries .section-heading h2 { max-width: 13ch; }
.industry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.industry-card { background: var(--bg-dark); padding: clamp(34px, 5vw, 72px); min-height: 590px; display: flex; flex-direction: column; }
.industry-label { color: #a8aba4; }
.industry-card h3 { font-family: var(--heading); margin: auto 0 22px; font-size: clamp(2rem, 3.4vw, 4.6rem); line-height: .98; letter-spacing: -.05em; font-weight: 560; }
.industry-card p { color: #b9bcb5; max-width: 570px; line-height: 1.6; }
.industry-card ul { list-style: none; padding: 22px 0 0; margin: 22px 0 0; border-top: 1px solid var(--line-dark); color: #d8dad4; }
.industry-card li { padding: 10px 0; font-size: .9rem; }

.case-list { border-top: 1px solid var(--line-light); }
.case { display: grid; grid-template-columns: .55fr 1.3fr 1fr; gap: 44px; padding: 42px 0; border-bottom: 1px solid var(--line-light); }
.case-meta { display: flex; flex-direction: column; gap: 10px; color: var(--muted-dark); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.case-meta span:first-child { color: var(--accent); }
.case h3 { font-family: var(--heading); margin: 0; font-size: clamp(1.7rem, 2.8vw, 3.6rem); line-height: 1; letter-spacing: -.045em; font-weight: 580; }
.case p { margin: 3px 0 0; color: var(--muted-dark); line-height: 1.65; }

.about { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 900px; }
.about-image { min-height: 720px; }
.about-image img { height: 100%; object-fit: cover; object-position: 50% 45%; filter: saturate(.9); }
.about-copy { padding: clamp(70px, 8vw, 120px) var(--pad); align-self: center; }
.about-copy .section-index { margin-bottom: 58px; }
.about-copy .eyebrow { color: #d3d5cf; margin-bottom: 18px; }
.about-copy h2 { max-width: 8ch; }
.about-facts { margin-top: 52px; border-top: 1px solid var(--line-dark); }
.about-facts p { margin: 0; padding: 14px 0; border-bottom: 1px solid var(--line-dark); color: #c9ccc5; }
blockquote { margin: 52px 0 0; padding-left: 24px; border-left: 2px solid var(--accent); font-family: var(--serif); font-size: clamp(1.25rem, 1.9vw, 2rem); line-height: 1.35; color: #f0eee8; }

.principle-grid,
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.principle { min-height: 340px; padding: 30px 34px 38px 0; border-right: 1px solid var(--line-light); display: flex; flex-direction: column; }
.principle:not(:first-child) { padding-left: 34px; }
.principle:last-child { border-right: 0; }
.principle > span,
.format > span { color: var(--accent); font-size: .78rem; letter-spacing: .12em; }
.principle h3 { font-family: var(--heading); margin: auto 0 18px; font-size: clamp(1.6rem, 2.5vw, 3.1rem); line-height: 1; letter-spacing: -.04em; font-weight: 560; }
.principle p { margin: 0; color: var(--muted-dark); line-height: 1.6; }

.formats .section-heading .section-index { color: #8b8f87; }
.format-grid { border-color: var(--line-dark); }
.format { min-height: 330px; padding: 28px 34px 36px 0; border-right: 1px solid var(--line-dark); display: flex; flex-direction: column; }
.format:not(:first-child) { padding-left: 34px; }
.format:last-child { border-right: 0; }
.format h3 { font-family: var(--heading); margin: auto 0 16px; font-size: clamp(1.6rem, 2.5vw, 3rem); line-height: 1; letter-spacing: -.04em; font-weight: 560; }
.format p { margin: 0; color: #afb2aa; line-height: 1.6; }

.contact { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; border-top: 1px solid var(--line-dark); }
.contact .section-index { margin-bottom: 34px; }
.contact h2 { max-width: 11ch; }
.contact-copy > p { margin-top: 28px; color: #b8bbb3; font-size: 1.1rem; }
.contact-action { align-self: end; display: flex; flex-direction: column; align-items: flex-start; }
.phone { font-family: var(--heading); font-size: clamp(2rem, 3.4vw, 4.4rem); letter-spacing: -.045em; margin-bottom: 32px; white-space: nowrap; }
.button-large { min-height: 68px; padding: 0 28px; }
.contact-action p { color: #91958c; font-size: .85rem; margin-top: 22px; }
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: -8px 0 28px;
}
.contact-links a {
  color: #d7d9d2;
  font-size: 1rem;
  line-height: 1.4;
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: color .2s ease, border-color .2s ease;
}
.contact-links a:hover {
  color: #fff;
  border-bottom-color: var(--accent);
}


.site-footer { min-height: 130px; padding: 34px var(--pad); background: var(--bg-dark-2); color: #e9ebe5; display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; border-top: 1px solid rgba(255,255,255,.08); }
.site-footer > div:first-child { display: flex; flex-direction: column; gap: 7px; }
.site-footer strong { letter-spacing: .09em; }
.site-footer span { color: #92968d; font-size: .78rem; }
.footer-right { display: flex; gap: 28px; align-items: center; font-size: .78rem; }
.footer-right a { color: #d5d7d1; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .28s; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu {
    position: fixed; inset: 0; z-index: 90; padding: 120px var(--pad) 50px; background: rgba(23,25,22,.98); color: #fff;
    flex-direction: column; gap: 18px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-size: clamp(2rem, 7vw, 4.5rem); letter-spacing: -.04em; }
  .mobile-menu-call { margin-top: auto; color: #c4c7bf; font-size: 1.25rem !important; letter-spacing: 0 !important; }
  .hero { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero h1 { font-size: clamp(3.1rem, 7.4vw, 6.4rem); }
  .numbers { grid-template-columns: 1fr 1fr; }
  .client-intro, .testimonial-intro { grid-template-columns: 1fr; gap: 22px; }
  .logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .manifesto-grid, .section-heading { grid-template-columns: 1fr; }
  .section-heading { gap: 22px; }
  .service { grid-template-columns: .16fr 1fr; }
  .service p { grid-column: 2; }
  .case { grid-template-columns: .35fr 1.2fr; }
  .case p { grid-column: 2; }
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 760px; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --pad: 20px; }
  .site-header { min-height: 72px; }
  .brand-desc { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 98px; gap: 28px; }
  .hero-copy { order: 1; padding: 0 0 10px; }
  .hero-image { order: 2; min-height: 66svh; }
  .hero-image img { object-position: 50% 14%; transform: scale(1.14); }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 5.2rem); }
  .hero-subtitle { margin-top: 24px; }
  .hero-actions { margin-top: 28px; align-items: flex-start; flex-direction: column; gap: 16px; }
  .button { width: 100%; }
  .numbers { grid-template-columns: 1fr; }
  .clients, .testimonials { padding-top: 88px; padding-bottom: 88px; }
  .logo-grid { grid-template-columns: 1fr 1fr; }
  .logo-card { min-height: 132px; padding: 22px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .metric, .metric:not(:first-child) { min-height: 210px; padding: 34px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .metric:last-child { border-bottom: 0; }
  .manifesto, .expertise, .industries, .cases, .principles, .formats, .contact { padding-top: 88px; padding-bottom: 88px; }
  .manifesto h2, .section-heading h2, .about h2, .contact h2 { font-size: clamp(2.8rem, 13vw, 5rem); }
  .service { grid-template-columns: 44px 1fr; gap: 14px; padding: 28px 0; }
  .service:hover { padding-left: 0; padding-right: 0; background: transparent; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card { min-height: 520px; }
  .case { grid-template-columns: 1fr; gap: 20px; padding: 34px 0; }
  .case p { grid-column: auto; }
  .about-image { min-height: 620px; }
  .about-copy { padding: 70px var(--pad); }
  .principle-grid, .format-grid { grid-template-columns: 1fr; }
  .principle, .principle:not(:first-child), .format, .format:not(:first-child) { min-height: 270px; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .format, .format:not(:first-child) { border-bottom-color: var(--line-dark); }
  .principle:last-child, .format:last-child { border-bottom: 0; }
  .phone { white-space: normal; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-right { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}
