@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --orange: #ff5a1f;
  --orange-deep: #e9440b;
  --ink: #111111;
  --paper: #ffffff;
  --warm: #f6f3ee;
  --muted: #6d6b67;
  --line: #dedbd5;
  --shell: min(1200px, calc(100vw - 48px));
  --display: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 132px 0; }
.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; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px;
  background: var(--ink); color: white; transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed; z-index: 100; top: 0; left: 0; width: 100%;
  border-bottom: 1px solid transparent; transition: background .25s, border .25s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.9); border-color: rgba(17,17,17,.1);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.045em; font-size: 21px; }
.brand > span > span { color: var(--orange); }
.brand-mark { width: 29px; height: auto; fill: none; stroke: var(--orange); stroke-width: 2.4; stroke-linejoin: round; }
.site-nav { display: flex; align-items: center; gap: 37px; font-size: 14px; font-weight: 600; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; height: 2px; width: 100%; left: 0; bottom: -6px;
  background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .25s;
}
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 19px; border: 1px solid var(--ink); transition: .2s; }
.nav-cta:hover { background: var(--ink); color: white; }
.nav-cta span { color: var(--orange); margin-left: 5px; }
.menu-toggle { display: none; }

.hero { min-height: 100vh; min-height: 760px; position: relative; overflow: hidden; display: flex; align-items: center; padding: 122px 0 70px; }
.hero::before {
  content: ""; position: absolute; inset: 0 0 auto auto; width: 54vw; height: 100%;
  background: var(--warm); z-index: -2;
}
.hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 35px; }
.hero-copy { position: relative; z-index: 3; padding-top: 22px; }
.eyebrow, .section-kicker {
  margin: 0 0 24px; font-family: var(--mono); text-transform: uppercase;
  font-size: 12px; letter-spacing: .16em; color: var(--orange); font-weight: 500;
}
.eyebrow::before, .section-kicker::before { content: ""; display: inline-block; width: 28px; height: 1px; background: currentColor; margin: 0 12px 4px 0; }
.hero h1 {
  margin: 0; font-size: clamp(58px, 6.5vw, 104px); line-height: .94;
  letter-spacing: -.07em; font-weight: 700;
}
.hero h1 span { color: var(--orange); white-space: nowrap; }
.hero-intro { max-width: 555px; font-size: 18px; line-height: 1.65; margin: 32px 0 36px; color: #4e4c49; }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 27px;
  padding: 17px 21px; font-size: 14px; font-weight: 700; transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--orange); color: white; }
.button-primary:hover { background: var(--orange-deep); }
.button span { font-size: 18px; line-height: 1; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; font-size: 14px; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }
.text-link span { color: var(--orange); }
.hero-proof { display: flex; gap: 22px; margin-top: 57px; font-family: var(--mono); color: #77736e; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.hero-proof span:not(:last-child)::after { content: "/"; margin-left: 22px; color: var(--orange); }
.hero-visual { position: relative; min-width: 0; }
.image-frame { overflow: hidden; position: relative; }
.image-frame::after {
  content: ""; position: absolute; inset: 0; border: 1px solid rgba(17,17,17,.08); pointer-events: none;
}
.image-frame img { width: 100%; min-height: 515px; object-fit: cover; object-position: center; }
.visual-label {
  position: absolute; right: 22px; bottom: 18px; margin: 0; padding: 8px 12px;
  background: rgba(255,255,255,.86); font: 10px var(--mono); text-transform: uppercase; letter-spacing: .12em;
  backdrop-filter: blur(10px);
}
.visual-label span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); margin-right: 8px; }
.orbit { position: absolute; border: 1px solid rgba(255,90,31,.55); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 76px; height: 76px; top: -25px; right: -26px; }
.orbit-two { width: 17px; height: 17px; top: 39px; right: 69px; background: var(--orange); border: 4px solid var(--warm); }
.scroll-cue {
  position: absolute; left: 25px; bottom: 34px; display: flex; flex-direction: column; align-items: center;
  gap: 10px; font: 10px var(--mono); text-transform: uppercase; letter-spacing: .14em;
}
.scroll-cue span { writing-mode: vertical-rl; transform: rotate(180deg); }
.scroll-cue svg { width: 14px; fill: none; stroke: var(--orange); stroke-width: 1.4; }

.intro-section { background: var(--warm); }
.intro-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; }
.statement { font-size: clamp(37px, 4.7vw, 68px); max-width: 960px; margin: 0; letter-spacing: -.055em; line-height: 1.11; font-weight: 600; }
.statement-copy { margin: 42px 0 0 auto; max-width: 610px; font-size: 18px; color: var(--muted); }

.services { background: white; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 65px; }
.section-head h2, .approach h2, .expertise h2, .contact h2 {
  margin: 0; font-size: clamp(43px, 5vw, 72px); line-height: 1.05; letter-spacing: -.06em; font-weight: 650;
}
.section-head > p { max-width: 350px; margin: 0 0 8px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.service-card { min-height: 460px; padding: 39px 42px; border: 1px solid var(--line); margin: 0 -1px -1px 0; position: relative; transition: background .3s, color .3s, transform .3s; }
.service-card:hover { z-index: 2; transform: translateY(-6px); border-color: var(--orange); }
.service-card.featured { background: var(--orange); color: white; border-color: var(--orange); }
.service-number { font: 11px var(--mono); letter-spacing: .12em; }
.service-icon { width: 62px; height: 62px; margin: 51px 0 29px; fill: none; stroke: var(--orange); stroke-width: 1.5; }
.featured .service-icon { stroke: white; }
.service-card h3 { font-size: 28px; letter-spacing: -.04em; margin: 0 0 13px; }
.service-card p { color: var(--muted); max-width: 465px; margin: 0; }
.featured p { color: rgba(255,255,255,.82); }
.service-card ul { list-style: none; padding: 0; margin: 25px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.service-card li { border: 1px solid var(--line); border-radius: 100px; padding: 5px 11px; font: 10px var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.featured li { border-color: rgba(255,255,255,.45); }

.approach { background: var(--ink); color: white; }
.approach-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 110px; }
.section-kicker.light { color: #ff865a; }
.approach-title { position: sticky; top: 135px; align-self: start; }
.approach-title p:last-child { color: #9e9e9e; max-width: 460px; margin-top: 31px; }
.steps { list-style: none; padding: 0; margin: 0; border-top: 1px solid #3d3d3d; }
.steps li { display: grid; grid-template-columns: 60px 1fr; gap: 28px; padding: 43px 0; border-bottom: 1px solid #3d3d3d; }
.step-index { color: var(--orange); font: 11px var(--mono); padding-top: 8px; }
.steps h3 { font-size: 31px; margin: 0 0 8px; letter-spacing: -.035em; }
.steps p { margin: 0; color: #a8a8a8; max-width: 460px; }

.expertise { background: var(--warm); }
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; }
.expertise-copy { align-self: center; }
.expertise-copy > p:not(.section-kicker) { max-width: 520px; margin: 30px 0; color: var(--muted); font-size: 18px; }
.principles { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.principle { min-height: 250px; padding: 29px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle:nth-child(2n) { border-right: 0; }
.principle:nth-child(n+3) { border-bottom: 0; }
.principle span { color: var(--orange); font: 10px var(--mono); }
.principle h3 { margin: 55px 0 9px; font-size: 21px; letter-spacing: -.03em; }
.principle p { color: var(--muted); font-size: 14px; margin: 0; }

.director-quote { background: white; padding: 95px 0; overflow: hidden; }
.quote-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(42px, 6.3vw, 95px); align-items: center; }
.director-portrait { margin: 0; position: relative; }
.portrait-frame { position: relative; width: min(100%, 300px); aspect-ratio: 1 / 1; }
.portrait-frame::before {
  content: ""; position: absolute; width: 58%; height: 58%; left: -12px; bottom: -12px;
  background: var(--orange); z-index: 0;
}
.portrait-frame::after {
  content: ""; position: absolute; inset: 0; border: 1px solid rgba(17,17,17,.12); border-radius: 50%; pointer-events: none;
}
.portrait-frame img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 50%; filter: contrast(1.04); }
.director-portrait figcaption {
  margin-top: 25px; font: 9px var(--mono); text-transform: uppercase;
  letter-spacing: .13em; color: var(--muted);
}
.director-portrait figcaption span {
  display: inline-block; width: 27px; height: 1px; margin: 0 11px 3px 0; background: var(--orange);
}
.quote-content { position: relative; }
.quote-content blockquote { margin: 0; position: relative; }
.quote-content blockquote > p {
  margin: 0; max-width: 650px; font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.38; letter-spacing: -.035em; font-weight: 550;
}
.opening-quote, .closing-quote {
  display: inline-block; color: var(--orange);
  font-size: 1.55em; line-height: .5; font-weight: 800; vertical-align: -.18em;
}
.opening-quote { margin-right: .12em; }
.closing-quote { margin-left: .12em; }
.quote-content blockquote footer {
  margin-top: 30px; padding-top: 17px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px;
}
.quote-content blockquote strong { font-size: 14px; }
.quote-content blockquote footer span {
  color: var(--orange); font: 10px var(--mono); text-transform: uppercase; letter-spacing: .13em;
}

.contact { background: var(--orange); color: white; padding: 125px 0; position: relative; overflow: hidden; }
.contact .section-kicker.light { color: white; }
.contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .86fr 1.14fr; gap: 95px; align-items: start; }
.contact-inner { position: sticky; top: 125px; }
.contact h2 { font-size: clamp(50px, 5vw, 76px); max-width: 650px; }
.contact-inner > p:not(.section-kicker) { max-width: 530px; font-size: 18px; margin: 32px 0; color: rgba(255,255,255,.84); }
.contact-direct { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.38); display: flex; flex-direction: column; gap: 4px; max-width: 410px; }
.contact-direct > span { font: 10px var(--mono); text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.68); }
.contact-direct a { font-weight: 700; }
.contact-direct a span { margin-left: 7px; }
.contact-form { background: white; color: var(--ink); padding: 47px; box-shadow: 0 28px 70px rgba(117,35,7,.19); }
.form-row { display: grid; gap: 9px; margin-bottom: 26px; }
.form-row label { font: 11px var(--mono); text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }
.form-row input, .form-row textarea {
  width: 100%; border: 0; border-bottom: 1px solid #bcb8b1; border-radius: 0;
  background: transparent; padding: 10px 0 13px; color: var(--ink); font: 16px var(--display);
  outline: none; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: #9a9791; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--orange); box-shadow: 0 1px 0 var(--orange); }
.form-row input:disabled { opacity: .58; cursor: wait; }
.spam-row { gap: 13px; }
.shape-question { margin: 0; font: 11px var(--mono); text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }
.shape-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.shape-option {
  min-height: 69px; display: grid; place-items: center; border: 1px solid #c9c5be;
  background: white; color: var(--ink); cursor: pointer; transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.shape-option:hover { border-color: var(--orange); transform: translateY(-2px); }
.shape-option:focus-visible { outline: 3px solid rgba(255,90,31,.28); outline-offset: 2px; }
.shape-option[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: white; }
.shape-option svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 2; vector-effect: non-scaling-stroke; }
.honey-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.button-dark { width: 100%; border: 0; background: var(--ink); color: white; cursor: pointer; }
.button-dark:hover { background: var(--orange); }
.button-dark:disabled { cursor: not-allowed; opacity: .58; transform: none; }
.button-dark.loading { cursor: wait; }
.form-status { min-height: 24px; margin: 15px 0 0; font-size: 13px; color: var(--muted); }
.form-status.success { color: #187a43; }
.form-status.error { color: #b32918; }
.button-light { background: white; color: var(--ink); }
.button-light:hover { background: var(--ink); color: white; }
.contact-mark { position: absolute; width: 500px; left: -145px; bottom: -140px; fill: none; stroke: rgba(255,255,255,.15); stroke-width: 2; }

.site-footer { background: var(--ink); color: white; padding: 65px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 45px; align-items: start; padding-bottom: 65px; }
.brand-footer { font-size: 24px; }
.footer-grid > p { margin: 0; color: #888; font-size: 14px; line-height: 1.6; }
.footer-grid nav { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 35px; font-size: 13px; }
.footer-grid nav a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid #333; color: #777; font: 10px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: white; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.hero .reveal:nth-child(2) { transition-delay: .08s; }
.hero .reveal:nth-child(3) { transition-delay: .16s; }
.hero .reveal:nth-child(4) { transition-delay: .24s; }
.hero .reveal:nth-child(5) { transition-delay: .32s; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 720px); }
  .section-pad { padding: 95px 0; }
  .menu-toggle { display: grid; width: 44px; height: 44px; place-content: center; gap: 7px; border: 0; background: transparent; z-index: 102; }
  .menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; background: var(--ink); transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav {
    position: fixed; inset: 0; background: white; display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start; padding: 15vw; gap: 24px;
    transform: translateX(100%); transition: transform .35s cubic-bezier(.7,0,.3,1);
    font-size: 30px; letter-spacing: -.04em;
  }
  .site-nav.open { transform: none; }
  .nav-cta { margin-top: 20px; font-size: 17px; }
  .hero { min-height: auto; padding-top: 135px; }
  .hero::before { width: 100%; height: 49%; top: auto; bottom: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero h1 { font-size: clamp(56px, 12vw, 88px); }
  .hero-visual { max-width: 700px; }
  .image-frame img { min-height: 450px; }
  .scroll-cue { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 25px; }
  .statement-copy { margin-left: 0; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .approach-grid, .expertise-grid { grid-template-columns: 1fr; gap: 70px; }
  .approach-title { position: static; }
  .quote-grid { grid-template-columns: .65fr 1.35fr; gap: 39px; }
  .quote-content blockquote > p { font-size: clamp(19px, 2.6vw, 24px); }
  .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .contact-inner { position: relative; top: auto; }
  .contact h2 { max-width: 690px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 32px); }
  .nav-wrap { height: 72px; }
  .hero { padding-top: 110px; padding-bottom: 55px; }
  .hero h1 { font-size: clamp(47px, 14.5vw, 68px); }
  .hero-intro { font-size: 16px; margin-top: 25px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero-proof { gap: 10px; margin-top: 40px; }
  .hero-proof span:not(:last-child)::after { margin-left: 10px; }
  .image-frame img { min-height: 340px; }
  .section-pad { padding: 76px 0; }
  .section-head h2, .approach h2, .expertise h2 { font-size: 42px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 31px 25px 34px; }
  .service-icon { margin: 35px 0 23px; }
  .steps li { grid-template-columns: 42px 1fr; gap: 12px; padding: 34px 0; }
  .principles { grid-template-columns: 1fr; }
  .principle { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .principle:last-child { border-bottom: 0 !important; }
  .contact { padding: 88px 0; }
  .contact h2 { font-size: 50px; }
  .contact-form { padding: 32px 24px; }
  .shape-option { min-height: 62px; }
  .director-quote { padding: 60px 0; }
  .quote-grid { grid-template-columns: 1fr; gap: 39px; }
  .director-portrait { width: min(55vw, 245px); }
  .director-portrait figcaption { margin-top: 21px; }
  .quote-content blockquote > p { font-size: 19px; }
  .button-light { word-break: break-word; gap: 12px; }
  .contact-mark { width: 400px; opacity: .55; right: -170px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .brand { grid-column: auto; }
  .footer-grid nav { max-width: 240px; }
  .footer-bottom { gap: 20px; align-items: flex-start; }
}

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