:root {
  --orange: #b24212;
  --orange-deep: #a83910;
  --cream: #f4f1ed;
  --brown: #3b2d28;
  --ink: #0e0e0d;
  --white: #ffffff;
  --font: "Century Gothic", CenturyGothic, Arial, sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; }

.container { width: var(--container); margin-inline: auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.section-space { padding: 120px 0; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light { color: var(--white); }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 { line-height: 1.08; }

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3rem, 6.2vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.065em;
}

h1 em { font-style: italic; }

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.25vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.06em;
}

h3 { font-size: 1.2rem; letter-spacing: -0.035em; }

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  padding: 22px 0;
  color: var(--white);
  transition: background 180ms var(--ease), box-shadow 180ms var(--ease), padding 180ms var(--ease);
}

.site-header.is-scrolled {
  position: fixed;
  padding: 13px 0;
  color: var(--ink);
  background: rgba(244, 241, 237, 0.96);
  box-shadow: 0 8px 24px rgba(59, 45, 40, 0.12);
  backdrop-filter: blur(10px);
}

.header-content { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.brand { display: block; flex: 0 0 auto; width: 226px; }

.brand-logo { width: 100%; border-radius: 1px; }
.brand-logo-dark { display: none; }

.site-header.is-scrolled .brand-logo-light { display: none; }
.site-header.is-scrolled .brand-logo-dark { display: block; }

.primary-nav { display: flex; align-items: center; gap: 28px; font-size: 0.78rem; font-weight: 700; }

.primary-nav > a:not(.button) { transition: opacity 160ms ease; }

.primary-nav > a:not(.button):hover { opacity: 0.64; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease), border 160ms var(--ease);
}

.button:hover { transform: translateY(-3px); }

.button-primary { color: var(--orange); background: var(--white); }

.site-header.is-scrolled .button-primary { color: var(--white); background: var(--orange); }

.button-light { color: var(--orange); background: var(--white); }

.button-small { min-height: 42px; padding: 0 16px; font-size: 0.7rem; }

.text-link { display: inline-flex; gap: 9px; align-items: center; color: var(--orange); font-size: 0.78rem; font-weight: 700; }

.text-link-light { color: var(--white); }

.text-link span { transition: transform 160ms var(--ease); }

.text-link:hover span { transform: translate(3px, 3px); }

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(115deg, var(--orange) 0%, var(--orange) 50%, var(--orange-deep) 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.62);
}

.hero-monogram {
  position: absolute;
  top: 50px;
  right: -92px;
  color: rgba(87, 28, 8, 0.2);
  font-size: min(48vw, 650px);
  font-weight: 700;
  line-height: 0.72;
  letter-spacing: -0.2em;
  pointer-events: none;
  transform: rotate(-2deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 705px;
  padding-top: 120px;
}

.hero-copy { position: relative; z-index: 2; padding: 30px 0 72px; }

.hero-intro { max-width: 590px; margin-bottom: 34px; font-size: clamp(1rem, 1.55vw, 1.22rem); }

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }

.hero-proof { display: flex; gap: 36px; margin-top: 64px; }

.hero-proof > div { display: flex; align-items: center; gap: 12px; }

.hero-proof strong { font-size: 2rem; letter-spacing: -0.08em; }

.hero-proof span { font-size: 0.66rem; line-height: 1.35; }

.hero-portrait {
  position: absolute;
  right: -10px;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  height: 700px;
}

.hero-portrait img { width: min(39vw, 475px); max-width: none; height: 100%; object-fit: cover; object-position: center top; mix-blend-mode: normal; }

.hero-footer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0 21px;
  font-size: 0.68rem;
}

.hero-footer span:first-child { font-weight: 700; }

.hero-footer i { display: inline-block; width: 4px; height: 4px; margin: 0 7px 2px; border-radius: 50%; background: var(--white); }

.hero-footer a { padding: 7px 13px; border: 1px solid rgba(255, 255, 255, 0.7); border-radius: 999px; }

.section-ink { color: var(--white); background: var(--ink); }

.statement-grid { display: grid; grid-template-columns: 0.4fr 1fr; gap: 44px; }

.statement-quote { max-width: 890px; margin-bottom: 30px; font-size: clamp(2rem, 4vw, 4.5rem); font-weight: 700; letter-spacing: -0.065em; line-height: 1.08; }

.statement-quote em { color: #f6b089; font-style: italic; }

.statement-support { max-width: 570px; margin-bottom: 0; color: rgba(255, 255, 255, 0.72); font-size: 1rem; }

.section-heading { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 58px; }

.section-heading-inline { display: grid; grid-template-columns: 1.12fr 0.65fr; gap: 80px; align-items: end; }

.section-heading-inline > p { margin-bottom: 2px; color: #645752; font-size: 0.94rem; }

.themes { background: var(--orange); color: var(--white); }

.themes .eyebrow { color: rgba(255, 255, 255, 0.7); }

.themes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.theme-card { min-height: 270px; padding: 27px; border: 1px solid transparent; }

.theme-card h3 { margin: 48px 0 13px; font-size: 1.42rem; }

.theme-card p { margin-bottom: 0; font-size: 0.84rem; line-height: 1.55; }

.card-index { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; }

.card-orange { color: var(--orange); background: var(--white); }
.card-cream { color: var(--brown); background: var(--cream); }
.card-brown { color: var(--white); background: var(--brown); }
.card-outline { border-color: rgba(255, 255, 255, 0.72); }

.insight-note { position: relative; display: flex; justify-content: flex-end; margin-top: 76px; }

.insight-note p { position: relative; z-index: 2; margin: 0; padding: 21px 32px; font-size: clamp(1.18rem, 2vw, 1.8rem); font-weight: 700; letter-spacing: -0.04em; }

.scribble, .scribble::after {
  position: absolute;
  right: 0;
  width: min(650px, 80vw);
  height: 84px;
  border: 2px solid var(--white);
  border-radius: 50%;
  content: "";
  transform: rotate(-3deg);
}

.scribble::after { top: 3px; right: 5px; transform: rotate(5deg); }

.section-cream { background: var(--cream); }

.method-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; padding: 0; margin: 0; list-style: none; }

.method-steps li { position: relative; min-height: 146px; padding: 20px; color: var(--white); background: var(--orange); }

.method-steps li:not(:last-child)::after { position: absolute; top: 50%; right: -18px; z-index: 2; display: grid; width: 34px; height: 34px; place-items: center; color: var(--orange); border: 1px solid var(--orange); border-radius: 50%; background: var(--cream); content: "→"; transform: translateY(-50%); }

.method-steps span { display: block; margin-bottom: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; }

.method-steps strong { font-size: 1.02rem; line-height: 1.22; }

.method-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 43px; padding-top: 25px; border-top: 1px solid #a49a95; }

.method-details article { padding-right: 24px; }

.method-details span { display: block; margin-bottom: 8px; color: var(--orange); font-size: 0.78rem; font-weight: 700; }

.method-details p { margin: 0; font-size: 0.86rem; }

.impact { position: relative; overflow: hidden; min-height: 770px; color: var(--white); background: var(--ink); }

.impact::before { position: absolute; inset: 0; z-index: 1; content: ""; background: linear-gradient(90deg, rgba(14, 14, 13, 0.97) 0%, rgba(14, 14, 13, 0.91) 48%, rgba(14, 14, 13, 0.63) 100%); }

.impact-photo { position: absolute; inset: 0; z-index: 0; }

.impact-photo img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; filter: saturate(0.7); }

.impact-content { position: relative; z-index: 2; }

.impact-heading { max-width: 850px; margin-bottom: 75px; }

.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.impact-grid article { min-height: 215px; padding: 0 25px; border-left: 1px solid rgba(255, 255, 255, 0.7); }

.impact-grid article:first-child { padding-left: 0; border-left: 0; }

.impact-grid h3 { margin-bottom: 14px; font-size: 1.45rem; }

.impact-grid p { margin: 0; color: rgba(255, 255, 255, 0.78); font-size: 0.8rem; line-height: 1.65; }

.solutions { background: var(--cream); }

.solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.solution-card { min-height: 350px; padding: 28px; color: var(--white); border-radius: 20px; background: var(--orange); }

.solution-card span { font-size: 2.5rem; font-weight: 400; letter-spacing: -0.08em; }

.solution-card h3 { margin: 38px 0 17px; font-size: 1.3rem; }

.solution-card p { margin: 0; font-size: 0.82rem; line-height: 1.62; }

.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.case-card { min-height: 320px; padding: 39px; color: var(--white); background: var(--brown); }

.case-card span { display: inline-block; margin-bottom: 56px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

.case-card blockquote { max-width: 440px; margin: 0 0 25px; font-size: clamp(1.5rem, 2.3vw, 2.35rem); font-weight: 700; letter-spacing: -0.05em; line-height: 1.12; }

.case-card p { max-width: 475px; margin: 0; color: rgba(255, 255, 255, 0.76); font-size: 0.83rem; }

.companies { background: var(--white); }

.companies-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 40px; }

.companies-heading h2 { font-size: clamp(2.3rem, 4vw, 4rem); font-weight: 400; }

.logos-frame { padding: 8px; border: 1px solid #d8d0ca; background: var(--cream); }

.logos-frame img { width: 100%; aspect-ratio: 2.1 / 1; object-fit: cover; object-position: center; }

.logos-frame-secondary { width: 60%; margin: 14px auto 0; }

.logos-frame-secondary img { aspect-ratio: 3 / 1; }

.section-brown { color: var(--white); background: var(--brown); }

.about-grid { display: grid; grid-template-columns: 1.04fr 0.86fr; gap: 110px; align-items: center; }

.about h2 { margin-bottom: 28px; }

.about-lead { max-width: 645px; margin-bottom: 35px; color: rgba(255, 255, 255, 0.72); font-size: 1rem; }

.credentials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.18); }

.credentials > div { min-height: 160px; padding: 25px; background: var(--brown); }

.credentials strong { display: block; margin-bottom: 12px; color: #f6b089; font-size: 1.5rem; letter-spacing: -0.06em; }

.credentials span { display: block; color: rgba(255, 255, 255, 0.73); font-size: 0.76rem; line-height: 1.45; }

.mission { color: var(--white); background: var(--orange); }

.mission-grid { display: grid; grid-template-columns: 0.62fr 1.38fr; gap: 85px; }

.mission-tag { align-self: start; padding-top: 7px; }

.mission-tag span { display: block; margin-bottom: 8px; font-size: clamp(5rem, 10vw, 9rem); font-weight: 700; letter-spacing: -0.18em; line-height: 0.75; }

.mission-tag p { margin: 0; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.mission-copy .eyebrow { color: rgba(255, 255, 255, 0.72); }

.mission-copy h2 { max-width: 840px; margin-bottom: 30px; }

.mission-copy > p:last-child { max-width: 700px; margin: 0; font-size: 1rem; }

.contact { padding: 75px 0; color: var(--white); background: var(--ink); }

.contact-card { display: flex; align-items: center; justify-content: space-between; gap: 56px; padding: 56px 62px; background: var(--orange); }

.contact-card h2 { max-width: 700px; font-size: clamp(2rem, 3.4vw, 3.5rem); }

.contact-actions { display: flex; flex: 0 0 auto; flex-direction: column; align-items: flex-start; gap: 16px; }

.instagram-link { padding: 7px 12px; border: 1px solid rgba(255, 255, 255, 0.74); border-radius: 999px; font-size: 0.7rem; }

.site-footer { padding: 30px 0; background: var(--cream); }

.footer-content { display: grid; grid-template-columns: 220px 1fr auto; gap: 28px; align-items: center; }

.footer-content img { width: 205px; }

.footer-content p, .footer-content a { margin: 0; color: #615550; font-size: 0.68rem; }

.footer-content a { font-weight: 700; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .primary-nav { gap: 16px; }
  .primary-nav > a:not(.button) { display: none; }
  .hero-grid { grid-template-columns: 1fr 0.76fr; }
  .hero-portrait { right: -48px; }
  .hero-portrait img { width: 42vw; }
  .themes-grid, .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .impact-grid article:nth-child(3) { padding-left: 0; border-left: 0; }
  .impact-grid article { min-height: auto; }
  .about-grid { gap: 52px; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 36px, 1180px); }
  .section-space { padding: 78px 0; }
  .site-header { padding: 13px 0; }
  .site-header.is-scrolled { padding: 10px 0; }
  .brand { width: 184px; }
  .menu-toggle { position: relative; z-index: 4; display: grid; width: 40px; height: 38px; padding: 8px; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle span { display: block; height: 1px; background: currentColor; transition: transform 180ms var(--ease), opacity 180ms var(--ease); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(9px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-9px) rotate(-45deg); }
  .primary-nav { position: absolute; top: 0; right: 0; left: 0; display: flex; visibility: hidden; flex-direction: column; align-items: stretch; gap: 0; padding: 85px 18px 24px; color: var(--ink); background: var(--cream); opacity: 0; transform: translateY(-16px); transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms; }
  .primary-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .primary-nav > a:not(.button) { display: block; padding: 13px 0; border-bottom: 1px solid #d8d0ca; }
  .primary-nav .button { margin-top: 20px; color: var(--white); background: var(--orange); }
  .hero { min-height: 780px; }
  .hero-grid { display: block; min-height: 736px; padding-top: 108px; }
  .hero-copy { padding: 58px 0 0; }
  h1 { max-width: 360px; font-size: clamp(2.85rem, 14vw, 4.25rem); }
  .hero-intro { max-width: 315px; font-size: 0.92rem; }
  .hero-actions { max-width: 280px; gap: 16px; }
  .hero-proof { gap: 16px; margin-top: 38px; }
  .hero-proof strong { font-size: 1.55rem; }
  .hero-proof span { font-size: 0.56rem; }
  .hero-portrait { right: -70px; height: 512px; }
  .hero-portrait img { width: 267px; }
  .hero-footer { display: none; }
  .hero-monogram { top: auto; right: -35px; bottom: 30px; font-size: 360px; }
  .statement-grid, .section-heading-inline, .about-grid, .mission-grid { grid-template-columns: 1fr; gap: 26px; }
  .statement-quote { font-size: 2.45rem; }
  .section-heading { margin-bottom: 38px; }
  .themes-grid, .solutions-grid, .case-grid { grid-template-columns: 1fr; }
  .theme-card, .solution-card { min-height: 230px; }
  .insight-note { justify-content: stretch; margin-top: 48px; }
  .insight-note p { padding: 20px; font-size: 1.18rem; }
  .scribble, .scribble::after { width: 100%; height: 100%; }
  .method-steps { grid-template-columns: 1fr; gap: 0; }
  .method-steps li { display: grid; grid-template-columns: 48px 1fr; align-items: center; min-height: 90px; }
  .method-steps span { margin: 0; }
  .method-steps li:not(:last-child)::after { top: auto; right: auto; bottom: -17px; left: 26px; transform: rotate(90deg); }
  .method-details { grid-template-columns: 1fr; gap: 16px; }
  .method-details article { padding: 0; }
  .impact { min-height: auto; }
  .impact::before { background: rgba(14, 14, 13, 0.88); }
  .impact-heading { margin-bottom: 46px; }
  .impact-grid { grid-template-columns: 1fr; gap: 0; }
  .impact-grid article, .impact-grid article:nth-child(3) { min-height: auto; padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, 0.52); border-left: 0; }
  .impact-grid article:first-child { border-top: 0; }
  .case-card { min-height: 280px; padding: 31px; }
  .case-card span { margin-bottom: 38px; }
  .companies-heading { display: block; }
  .companies-heading .eyebrow { margin-bottom: 8px; }
  .logos-frame img { aspect-ratio: auto; object-fit: contain; }
  .logos-frame-secondary { width: 100%; }
  .credentials { grid-template-columns: 1fr 1fr; }
  .credentials > div { min-height: 138px; padding: 19px; }
  .mission-tag { display: flex; align-items: center; gap: 16px; }
  .mission-tag span { margin: 0; font-size: 5rem; }
  .contact { padding: 42px 0; }
  .contact-card { display: block; padding: 38px 28px; }
  .contact-actions { margin-top: 28px; }
  .footer-content { grid-template-columns: 1fr; gap: 14px; }
}

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