:root {
  color-scheme: light;
  --ink: #101415;
  --ink-soft: #394241;
  --muted: #697371;
  --surface: #f7f5ef;
  --surface-2: #ebe7dc;
  --white: #ffffff;
  --green: #0d5d4a;
  --green-dark: #083f34;
  --gold: #b68a54;
  --line: rgba(16, 20, 21, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::selection {
  background: rgba(13, 93, 74, 0.18);
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 30;
  transform: translateY(-140%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  padding: 22px 44px;
  color: var(--ink);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    padding 220ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(16, 20, 21, 0.08);
  background: rgba(247, 245, 239, 0.88);
  padding-block: 14px;
  backdrop-filter: blur(18px);
}

.brand-lockup {
  width: 184px;
}

.brand-lockup img {
  width: 184px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 20, 21, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  padding: 5px;
}

.site-nav a {
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.header-mail {
  justify-self: end;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(13, 93, 74, 0.36);
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 124px 30px 112px;
  background:
    linear-gradient(90deg, rgba(16, 20, 21, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 20, 21, 0.04) 1px, transparent 1px),
    var(--surface);
  background-size: 96px 96px, 96px 96px, auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 48%), rgba(13, 93, 74, 0.12), transparent 280px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(247, 245, 239, 0.18));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow.inverse {
  color: var(--gold);
}

.hero-logo {
  width: min(760px, 100%);
  height: auto;
  margin: 0 auto 34px;
  filter: drop-shadow(0 22px 38px rgba(16, 20, 21, 0.08));
}

.hero h1,
.section-heading h2,
.standard-copy h2,
.contact-shell h2 {
  margin: 0;
  font-weight: 850;
  line-height: 1.04;
}

.hero h1 {
  max-width: 860px;
  margin-inline: auto;
  font-size: 72px;
}

.hero-copy {
  max-width: 660px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.button-secondary {
  border-color: rgba(16, 20, 21, 0.16);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.hero-meta {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-meta span {
  border: 1px solid rgba(16, 20, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  padding: 8px 12px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.motion-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.motion-line {
  position: absolute;
  width: 1px;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(13, 93, 74, 0.34), transparent);
  transform: rotate(36deg);
  animation: lineDrift 9s ease-in-out infinite;
}

.motion-line-one {
  left: 12%;
  top: 10%;
}

.motion-line-two {
  right: 18%;
  top: 24%;
  animation-delay: 1.4s;
}

.motion-line-three {
  left: 58%;
  bottom: -8%;
  animation-delay: 2.6s;
}

.profile-section,
.contact-section {
  padding: 112px 30px;
}

.section-heading,
.profile-list,
.contact-shell,
.site-footer {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 52px;
  align-items: start;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.standard-copy h2,
.contact-shell h2 {
  font-size: 52px;
}

.profile-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 36px;
}

.profile-item {
  min-width: 0;
  border-top: 2px solid var(--ink);
  padding-top: 22px;
}

.profile-item span {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.profile-item h3 {
  margin: 28px 0 12px;
  font-size: 28px;
  line-height: 1.1;
}

.profile-item p,
.standard-copy p,
.contact-shell p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.standard-section {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  align-content: center;
  overflow: hidden;
  padding: 104px max(30px, calc((100% - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}

.standard-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.standard-mark,
.standard-copy,
.process-strip {
  position: relative;
  z-index: 1;
}

.standard-mark {
  width: min(880px, 100%);
}

.standard-mark img {
  width: 100%;
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.32));
}

.standard-copy {
  max-width: 560px;
  margin-left: auto;
}

.standard-copy p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.process-strip {
  position: absolute;
  right: max(30px, calc((100% - var(--max)) / 2));
  bottom: 34px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.process-strip span {
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.contact-section {
  background: var(--surface-2);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1fr);
  gap: 52px;
  align-items: end;
  border: 1px solid rgba(16, 20, 21, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  padding: 44px;
}

.contact-shell p {
  margin-top: 18px;
}

.contact-lines {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-lines a {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.contact-lines span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-lines strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 30px;
  color: var(--muted);
}

.site-footer strong,
.site-footer a {
  color: var(--ink);
}

.site-footer span,
.site-footer a {
  display: block;
}

.footer-meta {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

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

@keyframes lineDrift {
  0%,
  100% {
    opacity: 0.25;
    transform: translate3d(0, 0, 0) rotate(36deg);
  }

  50% {
    opacity: 0.78;
    transform: translate3d(26px, -18px, 0) rotate(36deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 24px;
  }

  .site-nav {
    display: none;
  }

  .hero h1 {
    font-size: 58px;
  }

  .section-heading,
  .profile-list,
  .standard-section,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .standard-copy h2,
  .contact-shell h2 {
    font-size: 44px;
  }

  .standard-section {
    min-height: 0;
    gap: 42px;
  }

  .standard-mark {
    width: min(620px, 100%);
  }

  .standard-copy {
    margin-left: 0;
  }

  .process-strip {
    position: static;
    margin-top: 12px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-lockup,
  .brand-lockup img {
    width: 138px;
  }

  .header-mail {
    max-width: 152px;
    overflow-wrap: anywhere;
    text-align: right;
    font-size: 12px;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 18px 124px;
    background-size: 64px 64px, 64px 64px, auto;
  }

  .hero-logo {
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-meta {
    left: 18px;
    right: 18px;
    bottom: 20px;
  }

  .profile-section,
  .contact-section {
    padding: 78px 18px;
  }

  .section-heading {
    gap: 10px;
    padding-bottom: 34px;
  }

  .section-heading h2,
  .standard-copy h2,
  .contact-shell h2 {
    font-size: 36px;
  }

  .profile-list {
    gap: 30px;
  }

  .standard-section {
    padding: 78px 18px;
    gap: 34px;
  }

  .contact-shell {
    padding: 26px;
    gap: 32px;
  }

  .contact-lines a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-lines strong {
    font-size: 20px;
  }

  .site-footer {
    display: grid;
    padding: 28px 18px;
  }

  .footer-meta {
    text-align: left;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
