:root {
  --ink: #07110d;
  --ink-soft: #0a1712;
  --forest: #0b241b;
  --emerald: #103b2c;
  --emerald-light: #1a5a43;
  --paper: #f1eee5;
  --paper-soft: #c8c9bd;
  --muted: #84938a;
  --gold: #b69b68;
  --line: rgba(241, 238, 229, 0.14);
  --line-gold: rgba(182, 155, 104, 0.38);
  --display: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(100% - 2rem, 1380px);
  --section-pad: clamp(6rem, 11vw, 10.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background-color 300ms ease,
    border-color 300ms ease,
    backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 17, 13, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-monogram {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid var(--line-gold);
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.brand-name {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-content: center;
  gap: 0.42rem;
  border: 1px solid var(--line);
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.toggle-line {
  display: block;
  width: 1.2rem;
  height: 1px;
  background: currentColor;
  transition:
    transform 250ms ease,
    opacity 250ms ease;
}

.nav-toggle[aria-expanded="true"] .toggle-line:first-of-type {
  transform: translateY(0.22rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .toggle-line:last-of-type {
  transform: translateY(-0.22rem) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: grid;
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid transparent;
  background: rgba(7, 17, 13, 0.97);
  opacity: 0;
  transition:
    max-height 320ms ease,
    opacity 240ms ease,
    border-color 240ms ease;
}

.site-nav.is-open {
  max-height: 22rem;
  border-color: var(--line);
  opacity: 1;
}

.site-nav a {
  padding: 1.1rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--paper-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    color 200ms ease,
    background-color 200ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.025);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 8.7rem 0 2rem;
  background: var(--ink);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 10%;
  right: -10%;
  width: 62vw;
  height: 62vw;
  max-width: 54rem;
  max-height: 54rem;
  border: 1px solid rgba(182, 155, 104, 0.1);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 22%;
  right: -15%;
  width: 45vw;
  height: 45vw;
  max-width: 38rem;
  max-height: 38rem;
  border: 1px solid rgba(182, 155, 104, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-ambient {
  display: none;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.6rem;
  color: var(--gold);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span,
.section-index span {
  width: 2rem;
  height: 1px;
  background: var(--line-gold);
}

.hero-title {
  max-width: 12ch;
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(5.1rem, 20vw, 8.3rem);
  font-weight: 400;
  letter-spacing: -0.09em;
  line-height: 0.78;
}

.hero-title em,
.positioning h2 em,
.contact h2 em {
  display: block;
  color: var(--gold);
  font-weight: 400;
}

.hero-description {
  max-width: 32rem;
  margin: 2rem 0 0;
  color: var(--paper-soft);
  font-size: clamp(1rem, 2.5vw, 1.14rem);
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  transition:
    border-color 240ms ease,
    color 240ms ease,
    background-color 240ms ease,
    transform 240ms ease;
}

.button svg,
.contact-line svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  transition: transform 240ms ease;
}

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

.button:hover svg,
.button:focus-visible svg,
.contact-line:hover svg,
.contact-line:focus-visible svg {
  transform: translate(3px, -3px);
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d0b57c;
}

.button-secondary {
  border-color: var(--line-gold);
  color: var(--paper);
  background: rgba(7, 17, 13, 0.26);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.portrait-frame {
  position: relative;
  width: min(100%, 38rem);
  margin: 0;
  justify-self: end;
}

.portrait-frame::before {
  position: absolute;
  z-index: -1;
  top: -0.75rem;
  right: -0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  border: 1px solid var(--line-gold);
  content: "";
}

.portrait {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--forest);
}

.portrait-number {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(241, 238, 229, 0.35);
  color: var(--paper);
  background: rgba(7, 17, 13, 0.34);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.portrait-frame figcaption {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-footer {
  display: none;
}

.credibility {
  border-block: 1px solid var(--line);
  background: var(--ink-soft);
}

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

.stat {
  display: flex;
  min-height: 10.8rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0.7rem 1.15rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat:nth-child(even) {
  border-right: 0;
}

.stat:nth-child(n + 3) {
  border-bottom: 0;
}

.stat strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(2.85rem, 12vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.stat-location strong {
  color: var(--gold);
  font-size: clamp(2.5rem, 11vw, 4.5rem);
  letter-spacing: 0.03em;
}

.stat span {
  max-width: 13rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.55;
  text-transform: uppercase;
}

.section {
  padding-block: var(--section-pad);
}

.section-heading h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(4.35rem, 15vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 0.88;
}

.about {
  background: var(--forest);
}

.section-grid {
  display: grid;
  gap: 3rem;
}

.lead-copy {
  max-width: 54rem;
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.9rem, 5vw, 3.75rem);
  letter-spacing: -0.055em;
  line-height: 1.13;
}

.about-detail {
  display: grid;
  gap: 2.25rem;
  margin-top: 2.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.about-detail > p {
  max-width: 30rem;
  margin: 0;
  color: var(--paper-soft);
  font-size: 0.98rem;
  line-height: 1.8;
}

.profile-facts {
  display: grid;
  margin: 0;
}

.profile-facts div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.78rem;
  border-bottom: 1px solid var(--line);
}

.profile-facts dt {
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-facts dd {
  margin: 0;
  color: var(--paper-soft);
  font-size: 0.88rem;
  text-align: right;
}

.expertise {
  background: var(--ink);
}

.expertise-top {
  display: grid;
  gap: 1.7rem;
  padding-bottom: 3rem;
}

.expertise-intro,
.clients-intro {
  max-width: 30rem;
  margin: 0;
  color: var(--paper-soft);
  font-size: 0.97rem;
  line-height: 1.8;
}

.expertise-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.expertise-list li {
  display: grid;
  min-height: 6.4rem;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  transition: padding-inline 300ms ease;
}

.expertise-list span {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.expertise-list h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.72rem, 5vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.expertise-list i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.expertise-list li:hover {
  padding-inline: 0.7rem;
}

.expertise-list li:hover i {
  opacity: 1;
  transform: scale(1.5);
}

.clients {
  background: var(--paper);
}

.clients .section-index {
  color: #80683e;
}

.clients .section-index span {
  background: rgba(128, 104, 62, 0.45);
}

.clients .section-heading h2 {
  color: var(--ink);
}

.clients-header {
  display: grid;
  gap: 1.8rem;
  padding-bottom: 3rem;
}

.clients-intro {
  color: #56635c;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(7, 17, 13, 0.16);
  border-left: 1px solid rgba(7, 17, 13, 0.16);
}

.client-name {
  display: grid;
  min-height: 8.5rem;
  place-items: center;
  padding: 1rem;
  border-right: 1px solid rgba(7, 17, 13, 0.16);
  border-bottom: 1px solid rgba(7, 17, 13, 0.16);
  color: var(--forest);
  text-align: center;
  transition:
    color 280ms ease,
    background-color 280ms ease;
}

.client-name:hover {
  color: var(--paper);
  background: var(--forest);
}

.client-name span {
  font-family: var(--display);
  font-size: clamp(1.38rem, 4vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.client-name:last-child {
  grid-column: 1 / -1;
}

.positioning {
  position: relative;
  overflow: hidden;
  padding-block: clamp(7rem, 15vw, 13rem);
  background: var(--emerald);
  isolation: isolate;
}

.positioning::after {
  position: absolute;
  z-index: -1;
  right: -14rem;
  bottom: -22rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(241, 238, 229, 0.11);
  border-radius: 50%;
  content: "";
}

.positioning-inner {
  display: grid;
}

.positioning h2 {
  max-width: 15ch;
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.095em;
  line-height: 0.93;
}

.positioning p:last-child {
  max-width: 35rem;
  margin: 2.5rem 0 0;
  color: var(--paper-soft);
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.85;
}

.contact {
  padding-block: var(--section-pad);
  background: var(--ink-soft);
}

.contact-layout {
  display: grid;
  gap: 3.25rem;
}

.contact h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(3.8rem, 12vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 0.88;
}

.contact-panel {
  align-self: end;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-gold);
}

.contact-panel > p {
  max-width: 26rem;
  margin: 0 0 2rem;
  color: var(--paper-soft);
  font-size: 0.96rem;
  line-height: 1.75;
}

.contact-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.3rem 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
  transition: color 240ms ease;
}

.contact-line:hover,
.contact-line:focus-visible {
  color: var(--gold);
}

.contact-line span {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-line strong {
  grid-row: 2;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.15rem, 4vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
  transition: color 240ms ease;
}

.contact-line:hover strong,
.contact-line:focus-visible strong {
  color: var(--gold);
}

.contact-line svg {
  grid-row: 1 / span 2;
  width: 1rem;
  height: 1rem;
}

.contact-panel .button-row {
  margin-top: 2.1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 2rem;
  background: var(--ink);
}

.footer-inner {
  display: grid;
  gap: 1.7rem;
}

.footer-name {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.8;
  text-transform: uppercase;
}

.copyright {
  align-self: end;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 42rem) {
  :root {
    --shell: min(100% - 4rem, 1380px);
  }

  .hero {
    padding-top: 9.8rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.2rem;
  }

  .hero-title {
    font-size: clamp(6rem, 12vw, 10.5rem);
  }

  .portrait-frame {
    width: 100%;
  }

  .portrait-frame figcaption {
    max-width: 30rem;
  }

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

  .stat {
    min-height: 13rem;
    padding: 1.6rem 1.25rem 1.4rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .stat:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .stat:last-child {
    border-right: 0;
  }

  .about-detail {
    grid-template-columns: 1fr minmax(17rem, 0.8fr);
    gap: 3rem;
  }

  .expertise-top,
  .clients-header {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.38fr);
    align-items: end;
    gap: 3rem;
  }

  .expertise-list li {
    min-height: 7.3rem;
    grid-template-columns: 3rem 1fr auto;
  }

  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-name {
    min-height: 11rem;
  }

  .client-name:last-child {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 64rem) {
  .header-inner {
    min-height: 5.6rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    max-height: none;
    align-items: center;
    gap: 2rem;
    overflow: visible;
    border: 0;
    background: transparent;
    opacity: 1;
  }

  .site-nav a {
    position: relative;
    padding: 0.3rem 0;
    border: 0;
    background: transparent;
    font-size: 0.63rem;
  }

  .site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -0.1rem;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 240ms ease;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: transparent;
  }

  .site-nav a:hover::after,
  .site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .hero {
    min-height: 54rem;
    padding: 9.5rem 0 2rem;
  }

  .hero-ambient {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 2.2rem;
    display: flex;
    gap: 2rem;
    color: rgba(241, 238, 229, 0.32);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transform: translate(48%, -50%) rotate(90deg);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(29rem, 0.85fr);
    gap: 1rem;
  }

  .hero-copy {
    padding-bottom: 2rem;
  }

  .hero-title {
    font-size: clamp(8.4rem, 13vw, 12.3rem);
  }

  .hero-description {
    margin-top: 2.8rem;
  }

  .portrait-frame {
    width: min(100%, 42rem);
  }

  .hero-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
  }

  .hero-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
  }

  .hero-footer p span {
    padding-inline: 0.6rem;
    color: var(--gold);
  }

  .scroll-cue {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gold);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .scroll-cue i {
    position: relative;
    display: block;
    width: 3.5rem;
    height: 1px;
    overflow: hidden;
    background: rgba(182, 155, 104, 0.35);
  }

  .scroll-cue i::after {
    position: absolute;
    inset: 0;
    background: var(--gold);
    content: "";
    animation: scroll-line 2s ease-in-out infinite;
  }

  .section-grid {
    grid-template-columns: minmax(15rem, 0.65fr) minmax(0, 1.35fr);
    gap: 4rem;
  }

  .section-heading h2 {
    font-size: clamp(5.5rem, 9vw, 9rem);
  }

  .about-detail {
    margin-top: 4rem;
  }

  .client-name {
    min-height: 13.5rem;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.55fr);
    gap: 4.5rem;
  }

  .contact h2 {
    font-size: clamp(5.8rem, 8.5vw, 9rem);
  }
}

@media (min-width: 88rem) {
  :root {
    --shell: min(100% - 8rem, 1380px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(37rem, 0.9fr);
  }
}

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

@keyframes scroll-line {
  0% {
    transform: translateX(-100%);
  }

  55%,
  100% {
    transform: translateX(100%);
  }
}
