:root {
  color-scheme: dark;
  --background: #0b0b0b;
  --text: #f0f3f1;
  --muted: #abb8b5;
  --teal: #244e4d;
  --accent: #aecbc4;
  --line: #34403d;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 2rem; }
body { margin: 0; background: var(--background); color: var(--text); font: 1rem/1.6 var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
::selection { background: var(--accent); color: var(--background); }
img { display: block; max-width: 100%; height: auto; }
p, h1, h2, h3, h4, figure { margin: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.04em; }
em { color: var(--accent); font-weight: 400; }
.container { width: min(1184px, calc(100% - 96px)); margin-inline: auto; }
.page-frame { border-inline: 1px solid var(--line); }
.section { padding: 72px 48px; position: relative; }
.section + .section { border-top: 1px solid var(--line); }
.section + .section::before { content: ""; position: absolute; top: -5px; left: -5px; width: 8px; height: 8px; border: 1px solid var(--accent); transform: rotate(45deg); background: var(--background); }
.eyebrow { font-size: .75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.section-heading { margin-bottom: 40px; }
h2 { font-size: clamp(2.1rem, 3.5vw, 3.15rem); line-height: 1.15; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 36px; padding: 13px 24px; background: var(--teal); border: 1px solid #60837d; color: var(--text); font-weight: 500; font-size: .9375rem; transition: background .2s, border-color .2s; }
.button:hover { background: #356762; border-color: var(--accent); }
.button span { font-size: 1.25rem; line-height: 1; }
.text-link { display: inline-flex; gap: 20px; padding-block: 6px; border-bottom: 1px solid #60837d; font-size: .9375rem; }
.text-link:hover, .email-link:hover { color: var(--accent); }
.sr-only, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip-link:focus { position: fixed; left: 16px; top: 16px; z-index: 20; background: var(--teal); padding: 12px 20px; }

/* Brand, in-page navigation, and a direct way to start a conversation. */
.site-header { border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 104px; padding-inline: 32px; gap: 32px; position: relative; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 48px; height: 48px; }
.brand > span { font-size: 1.25rem; line-height: 1.2; letter-spacing: -.02em; }
.brand small { display: block; font-size: .6875rem; text-transform: uppercase; letter-spacing: .2em; margin-top: 5px; color: var(--accent); }
nav { display: flex; align-items: center; gap: 28px; }
nav > a:not(.button) { font-size: .875rem; color: var(--muted); padding-block: 12px; }
nav > a:hover { color: var(--text); }
.nav-cta { margin-left: 8px; }
.menu-toggle { display: none; }

/* Fine-line framing echoes the supplied design reference. */
.hero { display: grid; grid-template-columns: minmax(0, 1fr) 284px; gap: 32px 56px; padding-top: 80px; padding-bottom: 28px; align-items: center; }
h1 { font-size: clamp(3rem, 4.7vw, 4.35rem); line-height: 1.06; }
.hero-description { color: var(--muted); max-width: 510px; margin-block: 28px; font-size: 1.0625rem; line-height: 1.75; }
.portrait-card { padding: 9px 9px 24px; border: 1px solid #607973; border-radius: 150px 150px 3px 3px; background: #132322; position: relative; }
.portrait-window { overflow: hidden; border-radius: 140px 140px 0 0; border: 1px solid #607973; }
.portrait { width: 100%; aspect-ratio: .91; object-fit: cover; object-position: 49% center; }
figcaption { padding: 22px 8px 0; text-align: center; }
figcaption strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.75rem; }
figcaption span { display: block; font-size: .8125rem; color: var(--muted); margin-top: 3px; }
/* Three distinct outcomes, with space to read as a signature rather than a sentence. */
.hero-signoff { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); list-style: none; margin: 24px 0 0; padding: 28px 0 4px; border-top: 1px solid var(--line); }
.hero-signoff li { display: flex; align-items: center; gap: 18px; min-width: 0; padding: 6px 24px; font-family: var(--serif); font-size: clamp(1.5rem, 2.3vw, 2rem); line-height: 1.25; letter-spacing: -.025em; }
.hero-signoff li:first-child { padding-left: 0; }
.hero-signoff li + li { border-left: 1px solid var(--line); }
.hero-signoff li:last-child { padding-right: 0; }
.hero-signoff li:last-child span { font-style: italic; }
.signoff-icon { display: block; flex: 0 0 30px; width: 30px; height: 30px; fill: none; stroke: var(--accent); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.services-section .section-heading { display: grid; grid-template-columns: 1fr 1.6fr; align-items: start; gap: 24px; }
.services-section .eyebrow { padding-top: 10px; }
.service-row { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; padding-block: 27px; border-top: 1px solid var(--line); }
.service-row:last-child { padding-bottom: 0; }
.service-row h3 { font-size: 1.125rem; font-weight: 500; line-height: 1.5; }
.service-row p { max-width: 550px; color: var(--muted); }

.about-section { background: #101615; display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; }
.about-intro > p:not(.eyebrow) { color: var(--muted); margin-top: 24px; }
.about-intro .text-link { margin-top: 28px; }
.work-examples { padding-top: 6px; }
.work-examples > h3 { color: var(--muted); font-size: .875rem; font-weight: 400; margin-bottom: 18px; }
.work-example { padding-block: 24px; border-top: 1px solid var(--line); }
.work-example:last-child { padding-bottom: 0; }
.work-example h4 { font-size: 1rem; font-weight: 500; margin-bottom: 8px; }
.work-example p { font-size: .9375rem; color: var(--muted); }

.engagements { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; margin-top: 40px; }
.engagements article { border-top: 1px solid #60837d; padding-top: 20px; }
.engagements h3 { font-size: 1.125rem; font-weight: 500; margin-bottom: 10px; }
.engagements p { color: var(--muted); font-size: .9375rem; }
.contact-invitation { border-top: 1px solid var(--line); margin-top: 56px; padding-top: 44px; display: flex; gap: 40px; justify-content: space-between; align-items: center; }
.contact-invitation h3 { font-family: var(--serif); font-size: clamp(2.2rem, 3.5vw, 3rem); line-height: 1.14; font-weight: 400; letter-spacing: -.03em; }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.email-link { color: var(--muted); font-size: .9375rem; text-underline-offset: 5px; text-decoration: underline; }
.site-footer { padding: 28px 32px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 24px; font-size: .8125rem; color: var(--muted); }
.site-footer a:hover { color: var(--text); }

@media (max-width: 1100px) {
  .container { width: calc(100% - 56px); }
  .header-inner { padding-inline: 24px; gap: 24px; }
  nav { gap: 18px; }
  .section { padding: 56px 32px; }
  .hero { grid-template-columns: minmax(0, 1fr) 240px; gap: 32px; padding-top: 64px; padding-bottom: 28px; }
  .about-section { gap: 48px; }
}
@media (max-width: 800px) {
  .container { width: calc(100% - 32px); }
  .header-inner { min-height: 88px; padding-inline: 16px; }
  .brand img { width: 42px; height: 42px; }
  .brand > span { font-size: 1.125rem; }
  .menu-toggle { display: flex; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 7px; background: transparent; border: 1px solid var(--line); color: var(--text); cursor: pointer; }
  .menu-toggle span { width: 20px; height: 1px; background: currentColor; transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  nav { display: none; position: absolute; z-index: 10; top: calc(100% - 1px); right: 0; left: 0; padding: 20px; background: #132322; border: 1px solid var(--line); align-items: stretch; gap: 8px; flex-direction: column; }
  nav.is-open { display: flex; }
  nav > a:not(.button) { padding: 10px 4px; font-size: 1rem; }
  .nav-cta { margin: 8px 0 0; }
  .section { padding: 48px 24px; }
  .hero { grid-template-columns: minmax(0, 1fr) 210px; gap: 28px; padding-block: 52px 24px; }
  h1 { font-size: 2.75rem; }
  .hero-description { font-size: 1rem; }
  figcaption { padding-inline: 0; }
  figcaption strong { font-size: 1.5rem; }
  figcaption span { font-size: .75rem; }
  .hero-signoff li { gap: 12px; padding-inline: 18px; font-size: 1.375rem; }
  .signoff-icon { flex-basis: 26px; width: 26px; height: 26px; }
  .services-section .section-heading { display: block; }
  .service-row { grid-template-columns: 1fr 1.3fr; gap: 24px; }
  .about-section { grid-template-columns: 1fr; gap: 36px; }
  .work-examples { padding: 0; }
  .engagements { gap: 24px; }
}
@media (max-width: 700px) {
  .hero-signoff { grid-template-columns: 1fr; margin-top: 0; padding: 8px 0 0; }
  .hero-signoff li { gap: 20px; padding: 18px 0; font-size: 1.625rem; }
  .hero-signoff li + li { border-left: 0; border-top: 1px solid var(--line); }
  .hero-signoff li:last-child { padding-bottom: 4px; }
}
@media (max-width: 580px) {
  .section { padding: 44px 20px; }
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 44px; padding-bottom: 22px; }
  .hero .eyebrow { font-size: .6875rem; letter-spacing: .1em; margin-bottom: 22px; }
  h1 { font-size: clamp(2.65rem, 9.5vw, 3.5rem); }
  .hero-description { margin-block: 24px; }
  .portrait-card { width: 228px; max-width: 100%; justify-self: center; padding-bottom: 20px; }
  h2 { font-size: 2.125rem; }
  .eyebrow { font-size: .6875rem; letter-spacing: .12em; margin-bottom: 20px; }
  .section-heading { margin-bottom: 28px; }
  .service-row { grid-template-columns: 1fr; gap: 10px; padding-block: 24px; }
  .engagements { grid-template-columns: 1fr; gap: 28px; margin-top: 28px; }
  .contact-invitation { flex-direction: column; align-items: flex-start; gap: 28px; margin-top: 40px; padding-top: 36px; }
  .contact-actions { align-items: flex-start; }
  .site-footer { padding: 24px 20px; flex-wrap: wrap; gap: 12px; font-size: .75rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
/* Keep navigation available when JavaScript is disabled. */
@media (max-width: 800px) {
  html:not(.js) .header-inner { flex-wrap: wrap; padding-block: 16px; }
  html:not(.js) .menu-toggle { display: none; }
  html:not(.js) nav { display: flex; position: static; width: 100%; }
}
