:root {
  --paper: #f3ecdf;
  --paper-strong: #e8ddca;
  --ink: #10232d;
  --ink-soft: #4f626c;
  --line: rgba(16, 35, 45, 0.18);
  --accent: #b96a33;
  --accent-soft: #e8bc94;
  --hero-shadow: rgba(7, 20, 27, 0.36);
  --max-width: 1180px;
  --header-height: 88px;
  --hero-shift: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  overflow-x: clip;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: #f8f2e8;
  background: #10232d;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  transform: translateY(calc(var(--hero-shift) * -1));
  will-change: transform;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(10, 24, 31, 0.86) 0%, rgba(10, 24, 31, 0.56) 42%, rgba(10, 24, 31, 0.28) 100%),
    linear-gradient(180deg, rgba(9, 20, 26, 0.2) 0%, rgba(9, 20, 26, 0.7) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9rem;
  background: linear-gradient(180deg, rgba(16, 35, 45, 0) 0%, var(--paper) 100%);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-height);
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: 1.4rem 0;
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.topbar__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(248, 242, 232, 0.36);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.topbar__name,
.topbar__nav {
  font-size: 0.95rem;
  color: rgba(248, 242, 232, 0.88);
}

.topbar__nav {
  display: inline-flex;
  gap: 1.5rem;
}

.topbar__nav a {
  position: relative;
}

.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--accent-soft);
  transition: transform 180ms ease;
}

.topbar__nav a:hover::after,
.topbar__nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: calc(100svh - var(--header-height));
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: 2rem 0 6rem;
}

.hero__kicker,
.section__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__brand {
  width: min(13ch, 100%);
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.8rem, 8.4vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero__headline {
  width: min(36rem, 100%);
  margin: 1rem 0 0;
  font-size: clamp(1.16rem, 2.05vw, 1.6rem);
  line-height: 1.34;
  color: rgba(248, 242, 232, 0.92);
}

.hero__body,
.section__intro p {
  width: min(32rem, 100%);
  margin: 1rem 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(248, 242, 232, 0.76);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button--primary {
  background: var(--accent);
  color: #fff7ef;
}

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

.button--ghost {
  border-color: rgba(248, 242, 232, 0.36);
  color: #f8f2e8;
  backdrop-filter: blur(12px);
}

.section {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: 6.5rem 0;
}

.section__intro {
  max-width: 38rem;
}

.section__intro h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section__intro p {
  color: var(--ink-soft);
}

.capabilities__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.capability {
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  transition: transform 220ms ease, border-color 220ms ease;
}

.capability:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 106, 51, 0.7);
}

.capability__index {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.capability h3,
.proof__item h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.2;
}

.capability p,
.proof__item p,
.cta__details p,
.contact-form span {
  color: var(--ink-soft);
  line-height: 1.7;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.proof__media {
  position: sticky;
  top: 2rem;
}

.proof__media img {
  width: 100%;
  min-height: 36rem;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 24px 80px var(--hero-shadow);
}

.proof__list {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.proof__item {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.proof__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cta {
  padding-top: 5rem;
  padding-bottom: 7rem;
}

.cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 3.5rem;
  align-items: start;
}

.cta__details {
  max-width: 31rem;
}

.cta__details h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4.6vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.cta__line {
  margin-top: 1rem;
  font-size: 1.04rem;
  max-width: 28rem;
}

.cta__email {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.cta__note {
  max-width: 27rem;
  margin-top: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(79, 98, 108, 0.72);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

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

.hero .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

body.is-ready .will-reveal {
  transform: translateY(1rem);
  transition: transform 700ms ease;
}

body.is-ready .will-reveal.is-visible {
  transform: translateY(0);
}

body.is-ready .hero .reveal {
  transition-delay: var(--delay, 0ms);
}

.hero .reveal:nth-child(1) {
  --delay: 120ms;
}

.hero .reveal:nth-child(2) {
  --delay: 220ms;
}

.hero .reveal:nth-child(3) {
  --delay: 320ms;
}

.hero .reveal:nth-child(4) {
  --delay: 420ms;
}

.hero .reveal:nth-child(5) {
  --delay: 520ms;
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar__nav {
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
  }

  .capabilities__list,
  .proof,
  .cta__layout {
    grid-template-columns: 1fr;
  }

  .proof__media {
    position: relative;
    top: auto;
  }

  .proof__media img {
    min-height: 24rem;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 118px;
  }

  .hero__content,
  .section,
  .topbar {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    min-height: calc(100svh - var(--header-height));
    padding-bottom: 4.5rem;
  }

  .hero__brand {
    width: min(8ch, 100%);
  }

  .section {
    padding: 5rem 0;
  }
}

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

  .hero__image,
  .button,
  .capability,
  .reveal {
    transition: none;
    transform: none;
  }

  .reveal {
    opacity: 1;
  }
}
