:root {
  --ink: #111112;
  --ink-soft: #1a1a1b;
  --gold: #e4b652;
  --gold-soft: #f0cf80;
  --paper: #f6f2e9;
  --cream: #ebe3d3;
  --white: #fbfaf6;
  --muted: #a6a29b;
  --line-dark: rgba(255, 255, 255, 0.17);
  --line-light: rgba(17, 17, 18, 0.18);
  --font-sans: Arial, Helvetica, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

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

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

.site-shell {
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

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

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-cream {
  background: var(--cream);
  color: var(--ink);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 110px;
}

.brand__crop {
  position: relative;
  display: block;
  width: 108px;
  height: 60px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand__crop img {
  position: absolute;
  top: -62px;
  left: -99px;
  width: 306px;
  max-width: none;
  height: auto;
}

.brand__text {
  display: none;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.brand__text small {
  margin-top: 5px;
  color: var(--white);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.33em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav > a:not(.nav-cta) {
  opacity: 0.72;
  transition: color 180ms ease, opacity 180ms ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--gold);
  opacity: 1;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background 180ms ease, color 180ms ease;
}

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

.nav-cta span,
.button span,
.text-link span,
.footer-instagram span {
  font-size: 16px;
  line-height: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--gold);
  transition: transform 180ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 176px 0 44px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to right, transparent, black 12%, black 74%, transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow--one {
  top: 118px;
  right: 23%;
  width: 280px;
  height: 280px;
  opacity: 0.13;
  background: var(--gold);
  filter: blur(110px);
}

.hero-glow--two {
  bottom: 90px;
  left: 11%;
  width: 160px;
  height: 160px;
  opacity: 0.1;
  background: #76541c;
  filter: blur(70px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: 8%;
}

.hero-copy {
  max-width: 630px;
}

.eyebrow,
.overline,
.service-label,
.section-kicker,
.hero-bottom,
.contact-note,
.statement-signature,
.art-card p,
.art-card__footer,
.art-orbit-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--gold);
}

.eyebrow span {
  display: inline-block;
  width: 29px;
  height: 1px;
  background: var(--gold);
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
}

h1 {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(58px, 7.2vw, 104px);
  letter-spacing: -0.065em;
  line-height: 0.91;
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: italic;
}

.hero-lead {
  max-width: 490px;
  margin-bottom: 36px;
  color: rgba(251, 250, 246, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

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

.button--gold:hover {
  background: var(--gold-soft);
}

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

.button--dark:hover {
  background: #2c2b29;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.text-link--light {
  color: var(--white);
}

.text-link--light:hover,
.text-link--dark:hover {
  color: var(--gold);
}

.text-link--dark {
  color: var(--ink);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 410px;
  margin-top: 14px;
}

.proof-line {
  width: 52px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gold);
}

.hero-proof p {
  margin: 0;
  color: rgba(251, 250, 246, 0.48);
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  line-height: 1.4;
}

.hero-art {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.art-ring {
  position: absolute;
  border: 1px solid rgba(228, 182, 82, 0.42);
  border-radius: 50%;
}

.art-ring--outer {
  top: 1%;
  right: 1%;
  width: min(430px, 96%);
  aspect-ratio: 1;
}

.art-ring--outer::after {
  position: absolute;
  inset: 10%;
  border: 1px dashed rgba(228, 182, 82, 0.29);
  border-radius: 50%;
  content: "";
}

.art-ring--inner {
  top: 19%;
  right: 19%;
  width: 63%;
  aspect-ratio: 1;
  border-color: rgba(251, 250, 246, 0.25);
}

.art-ring--inner::before,
.art-ring--inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 138%;
  height: 1px;
  background: rgba(251, 250, 246, 0.16);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.art-ring--inner::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.art-cross {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.art-cross--one {
  top: 17%;
  right: 17%;
}

.art-cross--two {
  bottom: 15%;
  left: 14%;
  border-color: rgba(251, 250, 246, 0.4);
}

.art-card {
  position: absolute;
  top: 19%;
  left: 12%;
  display: flex;
  flex-direction: column;
  width: 230px;
  min-height: 305px;
  padding: 24px 23px 19px;
  border: 1px solid var(--gold);
  background: linear-gradient(140deg, rgba(228, 182, 82, 0.17), rgba(17, 17, 18, 0.93) 45%);
  box-shadow: 21px 28px 65px rgba(0, 0, 0, 0.28);
  transform: rotate(-7deg);
}

.art-card__line {
  width: 42px;
  height: 1px;
  margin-bottom: 33px;
  background: var(--gold);
}

.art-card p {
  margin-bottom: 31px;
  color: var(--gold);
}

.art-card strong {
  margin-bottom: auto;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.art-card strong span {
  color: var(--gold);
  font-style: italic;
}

.art-card__footer {
  display: flex;
  justify-content: space-between;
  color: rgba(251, 250, 246, 0.6);
}

.art-card__footer span:last-child {
  color: var(--gold);
  font-size: 17px;
}

.art-stamp {
  position: absolute;
  right: 2%;
  bottom: 17%;
  color: rgba(251, 250, 246, 0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.55;
  text-align: center;
  transform: rotate(10deg);
}

.art-stamp span {
  color: var(--gold);
}

.art-orbit-label {
  position: absolute;
  right: 22%;
  bottom: 6%;
  color: rgba(251, 250, 246, 0.42);
  font-size: 8px;
  letter-spacing: 0.13em;
  transform: rotate(-14deg);
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  color: rgba(251, 250, 246, 0.42);
  font-size: 9px;
}

.hero-bottom span:nth-child(2) {
  text-align: center;
}

.hero-scroll {
  text-align: right;
}

.hero-scroll i {
  display: inline-block;
  margin-left: 9px;
  color: var(--gold);
  font-size: 18px;
  font-style: normal;
  vertical-align: -2px;
}

.manifesto {
  padding: 150px 0 160px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.65fr) minmax(0, 1.35fr);
  gap: 9%;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}

.section-kicker--dark {
  color: #9d7833;
}

.section-kicker span:first-child {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
}

.kicker-rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section-kicker span:last-child {
  color: currentColor;
  opacity: 0.8;
}

.manifesto-content {
  max-width: 770px;
}

.overline {
  margin-bottom: 22px;
  color: #9d7833;
}

h2 {
  margin-bottom: 31px;
  font-size: clamp(45px, 5.5vw, 77px);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.manifesto h2 {
  max-width: 720px;
}

.body-large {
  max-width: 660px;
  margin-bottom: 23px;
  color: #3f3c36;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.32;
}

.body-copy {
  max-width: 580px;
  margin-bottom: 32px;
  color: #6a655d;
  font-size: 15px;
  line-height: 1.8;
}

.services {
  padding: 136px 0 150px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}

.section-heading h2 {
  margin: 31px 0 0;
}

.section-heading > p {
  max-width: 285px;
  margin: 0 0 7px;
  color: #6e685f;
  font-size: 14px;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 315px;
  flex-direction: column;
  padding: 24px 25px 23px;
  border: 1px solid var(--line-light);
  background: rgba(251, 250, 246, 0.33);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.service-card:hover {
  border-color: var(--gold);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-5px);
}

.service-card__top {
  display: flex;
  justify-content: space-between;
  color: #9d7833;
  font-family: var(--font-display);
  font-size: 17px;
}

.service-card__arrow {
  font-family: var(--font-sans);
  font-size: 18px;
  transition: transform 220ms ease;
}

.service-card:hover .service-card__arrow {
  transform: translate(4px, -4px);
}

.service-card__body {
  margin-top: auto;
}

.service-label {
  display: block;
  margin-bottom: 14px;
  color: #9d7833;
  font-size: 9px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.service-card p {
  max-width: 285px;
  margin-bottom: 0;
  color: #70695f;
  font-size: 13px;
  line-height: 1.65;
}

.service-card:hover p {
  color: rgba(251, 250, 246, 0.62);
}

.service-card__line {
  width: 31px;
  height: 1px;
  margin-top: 24px;
  background: #9d7833;
}

.method {
  padding: 137px 0 148px;
}

.section-heading--method {
  margin-bottom: 81px;
}

.section-heading--method > p {
  color: rgba(251, 250, 246, 0.54);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.step {
  position: relative;
  min-height: 245px;
  padding-top: 21px;
  border-top: 1px solid var(--line-dark);
}

.step-number {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
}

.step-mark {
  position: absolute;
  top: -4px;
  right: 11px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  background: var(--ink);
  transform: rotate(45deg);
}

.step h3 {
  margin: 62px 0 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.step p {
  max-width: 220px;
  margin-bottom: 0;
  color: rgba(251, 250, 246, 0.55);
  font-size: 13px;
  line-height: 1.7;
}

.statement {
  padding: 105px 0 111px;
}

.statement-inner {
  position: relative;
  text-align: center;
}

.statement-mark {
  height: 54px;
  color: rgba(17, 17, 18, 0.47);
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 0.9;
}

.statement p {
  margin-bottom: 35px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 70px);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.statement p em {
  font-style: italic;
}

.statement-signature {
  font-size: 9px;
  letter-spacing: 0.35em;
}

.contact {
  padding: 145px 0 154px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12%;
  align-items: end;
}

.contact h2 {
  margin: 31px 0 0;
}

.contact-copy {
  padding-bottom: 7px;
}

.contact-copy .body-large {
  max-width: 420px;
  margin-bottom: 32px;
}

.contact-note {
  margin: 29px 0 0;
  color: #807a71;
  font-size: 9px;
  line-height: 1.8;
  text-transform: none;
}

.site-footer {
  padding: 68px 0 25px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  padding-bottom: 76px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-top .brand {
  align-self: start;
}

.footer-top p {
  margin: 2px 0 0;
  color: rgba(251, 250, 246, 0.46);
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.4;
}

.footer-instagram {
  justify-self: end;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-instagram span {
  margin-left: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  color: rgba(251, 250, 246, 0.34);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-art {
    min-height: 400px;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-proof {
    margin-top: 44px;
  }

  .hero {
    min-height: 1100px;
  }

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

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }

  .step {
    min-height: 210px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 40px, 550px);
  }

  .header-inner {
    min-height: 79px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 79px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line-dark);
    background: rgba(17, 17, 18, 0.98);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a:not(.nav-cta) {
    padding: 15px 11px;
    border-bottom: 1px solid var(--line-dark);
  }

  .nav-cta {
    margin-top: 10px;
    justify-content: space-between;
  }

  .hero {
    min-height: 965px;
    padding-top: 139px;
  }

  h1 {
    font-size: clamp(55px, 15vw, 85px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-art {
    min-height: 340px;
    margin-top: 5px;
  }

  .art-card {
    top: 17%;
    left: 6%;
    width: 190px;
    min-height: 260px;
    padding: 19px;
  }

  .art-card strong {
    font-size: 29px;
  }

  .art-stamp {
    right: 1%;
    bottom: 17%;
    font-size: 9px;
  }

  .art-orbit-label {
    right: 13%;
    bottom: 4%;
    font-size: 7px;
  }

  .hero-bottom {
    bottom: 24px;
    grid-template-columns: 1fr 1fr;
    font-size: 8px;
  }

  .hero-bottom span:nth-child(2) {
    display: none;
  }

  .manifesto,
  .services,
  .method,
  .contact {
    padding: 91px 0 96px;
  }

  .manifesto-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 49px;
  }

  h2 {
    font-size: clamp(45px, 13vw, 68px);
  }

  .body-large {
    font-size: 22px;
  }

  .section-heading {
    display: block;
    margin-bottom: 48px;
  }

  .section-heading > p {
    margin-top: 28px;
  }

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

  .service-card {
    min-height: 286px;
  }

  .section-heading--method {
    margin-bottom: 50px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step {
    min-height: 0;
    padding: 19px 0 42px;
  }

  .step h3 {
    margin-top: 41px;
  }

  .statement {
    padding: 82px 0 87px;
  }

  .statement p {
    font-size: clamp(38px, 12vw, 60px);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 49px;
  }

  .footer-instagram {
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 9px;
    font-size: 8px;
    line-height: 1.5;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
