:root {
  --ink: #0b1626;
  --ink-soft: #14243a;
  --blue: #316be8;
  --blue-dark: #1f4fb5;
  --amber: #eead45;
  --paper: #f5f6f8;
  --white: #ffffff;
  --line: rgba(11, 22, 38, 0.16);
  --max: 1440px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.sr-only,
.skip-link:not(:focus) {
  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: 200;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 var(--pad);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(11, 22, 38, 0.9), rgba(11, 22, 38, 0));
  transition: background 220ms ease, height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 4.25rem;
  background: rgba(11, 22, 38, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  display: block;
  object-fit: contain;
}

.brand-name {
  font-size: 1rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.12em;
}

.brand-name strong {
  font: inherit;
}

.brand-name em {
  color: var(--amber);
  font-family: var(--serif);
  font-size: 1.08em;
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  font-size: 0.875rem;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.35rem;
  height: 1px;
  background: var(--white);
  transition: right 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--white);
}

.menu-toggle {
  position: relative;
  z-index: 100;
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.32rem 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: min(920px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.94fr);
  color: var(--white);
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 4rem 4rem;
  overflow: hidden;
}

.hero-copy {
  z-index: 2;
  align-self: center;
  padding: 8.5rem var(--pad) 6rem;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 2.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2rem;
  height: 2px;
  background: var(--amber);
}

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

h1,
h2 {
  font-weight: 600;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 2.25rem;
  font-size: clamp(3.25rem, 6.2vw, 6.5rem);
  line-height: 0.94;
}

h1 em,
h2 em {
  color: var(--amber);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-intro {
  max-width: 34rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 3.4rem;
  padding: 0.85rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

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

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

.button-primary:hover {
  background: #f5bf67;
}

.text-link,
.service-card > a,
.email-link {
  position: relative;
  font-weight: 700;
}

.text-link::after,
.service-card > a::after,
.email-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after,
.service-card > a:hover::after,
.email-link:hover::after {
  transform: scaleX(0.35);
}

.hero-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0, rgba(11, 22, 38, 0.14) 18%, transparent 45%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.visual-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: min(22rem, 78%);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  color: var(--ink);
  background: var(--amber);
}

.visual-note span {
  font-family: var(--serif);
  font-style: italic;
}

.visual-note p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero-index {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0.12em;
}

.atelier-statement,
.approach,
.about,
.contact,
.site-footer {
  max-width: var(--max);
  margin-inline: auto;
}

.atelier-statement {
  display: grid;
  grid-template-columns: minmax(10rem, 0.4fr) 1fr;
  gap: 4rem;
  padding: clamp(6rem, 12vw, 11rem) var(--pad);
}

.section-label {
  color: var(--blue-dark);
}

.section-label-light {
  color: var(--amber);
}

.statement-lead {
  max-width: 25ch;
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-style: italic;
  line-height: 1.17;
  letter-spacing: -0.035em;
}

.statement-copy {
  max-width: 49rem;
  margin: 0;
  color: #435064;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.services {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  color: var(--white);
  background: var(--ink);
}

.services > * {
  max-width: calc(var(--max) - (2 * var(--pad)));
  margin-inline: auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.section-heading .section-label {
  align-self: flex-start;
}

.section-heading h2,
.approach h2,
.about h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.5vw, 5.75rem);
  line-height: 1;
}

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

.service-card {
  min-height: 38rem;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--ink-soft);
  transition: background 220ms ease;
}

.service-card-blue:hover {
  background: #18386e;
}

.service-card-amber:hover {
  background: #3a2c1b;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-number {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-family: var(--serif);
  font-style: italic;
}

.service-card h3 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.service-card-blue h3 {
  color: #78a3ff;
}

.service-card-amber h3 {
  color: var(--amber);
}

.service-intro {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.service-card ul {
  margin: 0 0 3.5rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-card li {
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.service-card li::before {
  content: "+";
  display: inline-block;
  width: 1.5rem;
  color: var(--amber);
}

.service-card > a {
  align-self: flex-start;
  margin-top: auto;
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 0.75fr);
  gap: clamp(4rem, 9vw, 10rem);
  padding: clamp(6rem, 12vw, 11rem) var(--pad);
}

.approach-intro > p:last-child {
  max-width: 39rem;
  margin-top: 2.5rem;
  color: #536073;
  font-size: 1.1rem;
}

.approach-steps {
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.approach-steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.approach-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.approach-steps > li > span {
  color: var(--blue-dark);
  font-family: var(--serif);
  font-style: italic;
}

.approach-steps h3 {
  margin-bottom: 0.4rem;
  font-size: 1.35rem;
}

.approach-steps p {
  margin: 0;
  color: #5b6676;
}

.about {
  display: grid;
  grid-template-columns: minmax(17rem, 0.75fr) minmax(0, 1fr);
  gap: clamp(4rem, 10vw, 11rem);
  padding: clamp(6rem, 11vw, 10rem) var(--pad);
  color: var(--white);
  background: var(--ink);
}

.about-photo {
  position: relative;
  margin: 0;
  min-height: 35rem;
  align-self: stretch;
  overflow: hidden;
  background: var(--blue);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(11, 22, 38, 0.72));
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.about-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.15rem;
  left: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-copy {
  align-self: center;
}

.about-lead {
  margin: 2.5rem 0 1.5rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  font-style: italic;
  line-height: 1.35;
}

.about-copy > p:not(.section-label):not(.about-lead) {
  color: rgba(255, 255, 255, 0.7);
}

.credential {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.credential > span {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--amber);
  border-radius: 50%;
  font-weight: 900;
}

.credential p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}

.linkedin-link:hover {
  color: var(--amber);
  border-color: var(--amber);
}

.contact {
  padding: clamp(6rem, 11vw, 10rem) var(--pad);
  background: var(--blue);
}

.contact .section-label {
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr minmax(20rem, 0.5fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: end;
}

.contact h2 {
  color: var(--white);
}

.contact h2 em {
  color: var(--ink);
}

.contact-copy > p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

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

.button-dark:hover {
  background: #162942;
}

.email-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem var(--pad);
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

.footer-link {
  color: var(--white);
  font-weight: 700;
}

.footer-link:hover {
  color: var(--amber);
}

.site-footer p:last-child {
  justify-self: end;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-mark {
  width: 1.75rem;
  height: 1.75rem;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 1441px) {
  .hero {
    margin-inline: auto;
  }
}

@media (max-width: 960px) {
  .site-header {
    height: 4.5rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    padding: 6rem var(--pad);
    visibility: hidden;
    opacity: 0;
    color: var(--white);
    background: var(--ink);
    font-size: clamp(1.8rem, 8vw, 3.5rem);
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    z-index: 99;
    visibility: visible;
    opacity: 1;
  }

  .site-nav .nav-cta {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 42rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 7rem;
  }

  .hero-visual {
    height: min(78vw, 42rem);
  }

  .hero-visual::after {
    background: linear-gradient(to bottom, var(--ink) 0, transparent 25%);
  }

  .hero-index {
    display: none;
  }

  .atelier-statement,
  .approach,
  .about,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .atelier-statement {
    gap: 1rem;
  }

  .section-heading {
    display: block;
  }

  .service-card {
    min-height: 34rem;
  }

  .about-photo {
    min-height: 28rem;
  }

}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 4.5rem;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .hero-copy {
    min-height: 43rem;
    padding-bottom: 4rem;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    height: 30rem;
  }

  .visual-note {
    width: 88%;
  }

  .atelier-statement,
  .services,
  .approach,
  .about,
  .contact {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-top {
    margin-bottom: 3.5rem;
  }

  .service-card > a {
    margin-top: 1rem;
  }

  .about {
    gap: 4rem;
  }

  .about-photo {
    min-height: 24rem;
  }

  .contact-grid {
    gap: 3rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer p:last-child {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
