:root {
  --ink: #0b0b0a;
  --paper: #eee9df;
  --accent: #ff5a36;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(11, 11, 10, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-shell {
  height: 200svh;
  max-height: 200svh;
  overflow: hidden;
}

.hero,
.menu {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
}

.hero {
  isolation: isolate;
  background: #11110f;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.43) 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 23%, rgba(0, 0, 0, 0.58));
  content: '';
  pointer-events: none;
}

.hero__photo,
.hero__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__photo {
  z-index: -1;
  object-position: center center;
}

.hero__grain {
  z-index: 1;
  opacity: 0.2;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.035) 4px),
    repeating-linear-gradient(90deg, transparent 0 5px, rgba(0, 0, 0, 0.055) 6px);
  mix-blend-mode: soft-light;
}

.nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 88px;
  margin: 0 clamp(22px, 4vw, 70px);
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  justify-self: start;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 900;
  letter-spacing: -0.09em;
}

.brand span { color: var(--accent); }

.nav nav {
  display: flex;
  gap: clamp(24px, 4vw, 58px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav nav a,
.hero__footer a,
.menu__footer a {
  transition: opacity 180ms ease, color 180ms ease, background 180ms ease;
}

.nav nav a:hover,
.nav nav a:focus-visible,
.hero__footer a:hover,
.menu__footer > a:last-child:hover { opacity: 0.58; }

.nav__cta {
  justify-self: end;
  border: 1px solid rgba(255,255,255,.58);
  padding: 13px 19px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
}

.hero__content {
  position: absolute;
  top: 48%;
  left: 50%;
  width: min(1040px, calc(100% - 44px));
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 clamp(16px, 3vh, 30px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(64px, 10.5vw, 158px);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: .77;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--accent);
  font-style: italic;
}

.hero__lead {
  margin: clamp(24px, 4vh, 42px) 0 0;
  font-size: clamp(14px, 1.35vw, 19px);
  line-height: 1.45;
}

.hero__footer {
  position: absolute;
  right: clamp(22px, 4vw, 70px);
  bottom: 0;
  left: clamp(22px, 4vw, 70px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 88px;
  border-top: 1px solid var(--line-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  z-index: 2;
}

.hero__footer p { margin: 0; }
.hero__footer p:last-child { justify-self: end; }
.hero__footer a { display: flex; align-items: center; gap: 12px; }
.hero__footer i { color: var(--accent); font-size: 19px; font-style: normal; }

.menu {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  padding: clamp(26px, 4.6vh, 52px) clamp(22px, 4vw, 70px) 0;
  background: var(--paper);
  color: var(--ink);
}

.menu__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  padding-top: 14px;
}

.section-index,
.menu__manifesto,
.menu__heading p,
.menu__footer p,
.menu__footer > a:last-child {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.menu__manifesto { text-align: right; }

.menu__heading {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  align-items: end;
  gap: 40px;
  padding: clamp(18px, 3vh, 32px) 0 clamp(16px, 2.4vh, 26px);
}

.menu__heading h2 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 82px);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .82;
  text-transform: uppercase;
}

.menu__heading p {
  max-width: 320px;
  padding-bottom: 3px;
  color: #4c4943;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.service {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  border-right: 1px solid var(--line-light);
  overflow: hidden;
}

.service:last-child { border-right: 0; }
.service__media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #191815;
}

.service__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.36));
  content: '';
  pointer-events: none;
}

.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.88) contrast(1.04);
  transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 500ms ease;
}

.service:hover .service__media img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.04);
}

.service__number {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.service__body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 6px 18px;
  padding: clamp(13px, 1.8vh, 18px) clamp(14px, 1.8vw, 24px);
  background: var(--paper);
}

.service h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 31px);
  font-weight: 800;
  letter-spacing: -.045em;
}

.service p {
  grid-column: 1;
  max-width: 290px;
  margin: 0;
  color: #5b5750;
  font-size: clamp(11px, .95vw, 14px);
  line-height: 1.45;
}

.service__time {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  display: block;
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu__footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: clamp(76px, 11vh, 104px);
}

.menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  justify-self: start;
  width: min(260px, 28vw);
  min-width: 210px;
  background: var(--accent);
  padding: 15px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu__cta:hover,
.menu__cta:focus-visible { background: var(--ink); color: #fff; }
.menu__cta i { font-size: 18px; font-style: normal; }
.menu__footer p { justify-self: center; }
.menu__footer > a:last-child { justify-self: end; }

@media (max-width: 720px) {
  .nav {
    grid-template-columns: 1fr auto;
    height: 68px;
  }

  .nav nav { display: none; }
  .nav__cta { padding: 10px 12px; font-size: 9px; }
  .hero__photo { object-position: center center; }
  .hero__content { top: 47%; }
  .eyebrow { font-size: 9px; }
  .hero h1 { font-size: clamp(54px, 18vw, 88px); line-height: .82; }
  .hero__lead { font-size: 13px; }
  .hero__footer { height: 68px; grid-template-columns: 1fr auto; }
  .hero__footer p:last-child { display: none; }

  .menu {
    grid-template-rows: auto auto 1fr auto;
    padding-top: 22px;
  }

  .menu__manifesto { display: none; }
  .menu__heading {
    display: block;
    padding: 16px 0 13px;
  }
  .menu__heading h2 { font-size: clamp(38px, 11.5vw, 60px); }
  .menu__heading p { display: none; }

  .services {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .service,
  .service:first-child {
    display: grid;
    grid-template-columns: 36% 64%;
    grid-template-rows: minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }
  .service:last-child { border-bottom: 0; }
  .service__media { min-height: 0; }
  .service__number {
    top: 9px;
    left: 9px;
    width: 25px;
    height: 25px;
    font-size: 8px;
  }
  .service__body {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 3px;
    min-width: 0;
    padding: 10px 12px;
  }
  .service h3 { margin: 0; font-size: 19px; }
  .service p { grid-column: 1; font-size: 9.5px; line-height: 1.25; }
  .service__time {
    grid-column: 1;
    grid-row: 3;
    align-self: end;
    margin: 0;
    font-size: 7.5px;
  }

  .menu__footer {
    grid-template-columns: 1fr auto;
    height: 72px;
  }
  .menu__cta { width: 202px; min-width: 0; padding: 12px 14px; font-size: 9px; }
  .menu__footer p { display: none; }
  .menu__footer > a:last-child { font-size: 8px; }
}

@media (max-height: 690px) {
  .nav, .hero__footer { height: 62px; }
  .hero__lead { margin-top: 18px; }
  .menu { padding-top: 18px; }
  .menu__heading { padding-top: 16px; padding-bottom: 14px; }
  .menu__footer { height: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
