:root {
  --night: #160f0b;
  --espresso: #241711;
  --cacao: #382218;
  --ivory: #f2eadf;
  --ivory-soft: #d9cdbf;
  --smoke: #a99b8d;
  --gold: #c8923f;
  --gold-bright: #e3b767;
  --gold-on-light: #8a6220;
  --ink: #211813;
  --display: "Instrument Serif", Georgia, serif;
  --sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: 1240px;
  --pad: clamp(22px, 4.5vw, 72px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

section[id] {
  scroll-margin-top: 76px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 11px 18px;
  background: var(--gold-bright);
  color: var(--night);
  font-weight: 500;
}

.skip:focus {
  top: 12px;
}

.sun-rays line {
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  opacity: 0.92;
}

.sun-arc {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
}

.sun-star {
  fill: currentColor;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-on-light);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.services .eyebrow,
.steps .eyebrow {
  color: var(--gold-bright);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
}

h2 {
  font-size: clamp(3.5rem, 8vw, 7.2rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

h3 {
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.lead {
  max-width: 48ch;
  margin: 0;
  color: rgba(242, 234, 223, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  padding: 14px 23px;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: var(--gold);
  box-shadow: inset 0 0 0 0 var(--ivory);
  color: var(--night);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow 420ms var(--ease), border-color 300ms var(--ease), color 300ms var(--ease), transform 300ms var(--ease);
}

.btn:hover {
  border-color: var(--ivory);
  box-shadow: inset 0 -4.5em 0 0 var(--ivory);
  color: var(--night);
  transform: translateY(-3px);
}

.btn--compact {
  min-height: 38px;
  padding: 9px 15px;
  background: transparent;
  color: var(--ivory);
}

.btn--large {
  min-height: 56px;
  padding: 16px 26px;
}

.btn--light {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  color: var(--night);
}

.btn--dark {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--night);
}

.btn--ink {
  border-color: var(--night);
  background: var(--night);
  color: var(--ivory);
}

.btn--section {
  margin-top: 18px;
}

.btn--service {
  margin-top: 38px;
  border-color: rgba(33, 24, 19, 0.5);
  background: transparent;
  box-shadow: inset 0 0 0 0 var(--gold);
  color: var(--ink);
}

.btn--service:hover {
  border-color: var(--gold);
  box-shadow: inset 0 -4.5em 0 0 var(--gold);
  color: var(--night);
}

.ico {
  width: 1.12em;
  height: 1.12em;
  flex: none;
  fill: currentColor;
}

.text-link {
  position: relative;
  display: inline-block;
  padding-bottom: 7px;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 360ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(0.22);
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(12, 8, 6, 0.62), transparent);
  color: var(--ivory);
  transition: background 420ms var(--ease), border-color 420ms var(--ease);
}

.topbar.is-stuck {
  border-bottom-color: rgba(227, 183, 103, 0.16);
  background: rgba(22, 15, 11, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.topbar__in {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--gold-bright);
  text-decoration: none;
  line-height: 0;
}

.lockup {
  display: block;
  overflow: visible;
  color: var(--gold-bright);
}

.lockup__word {
  fill: var(--ivory);
  font-family: var(--sans), sans-serif;
  text-transform: uppercase;
}

.lockup--nav {
  width: 148px;
  height: auto;
}

.lockup--hero {
  width: clamp(250px, 42vw, 420px);
  height: auto;
}

.lockup--cta {
  width: clamp(240px, 34vw, 390px);
  height: auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 34px;
}

.nav a {
  position: relative;
  color: rgba(242, 234, 223, 0.75);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.nav a:hover {
  color: var(--gold-bright);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: var(--night);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 8, 6, 0.95) 0%, rgba(18, 11, 8, 0.78) 42%, rgba(18, 11, 8, 0.13) 74%),
    linear-gradient(0deg, rgba(13, 8, 6, 0.88) 0%, transparent 54%),
    radial-gradient(circle at 78% 22%, rgba(215, 160, 70, 0.13), transparent 34%);
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 136px var(--pad) clamp(64px, 10vh, 110px);
}

.hero__copy-in {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
}

.hero__signature {
  margin-bottom: clamp(38px, 7vh, 72px);
  color: var(--gold-bright);
  line-height: 0;
}

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

.hero h1 {
  max-width: 9.2ch;
  margin: 0 0 28px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(4.15rem, 10vw, 9.4rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.hero h1 em {
  display: block;
  color: var(--gold-bright);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-top: 34px;
}

.hero .text-link {
  color: var(--ivory);
}

.hero__micro {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  color: rgba(242, 234, 223, 0.55);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  opacity: 1;
  transform: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 54%;
  filter: brightness(0.8) contrast(1.08) saturate(0.78) sepia(0.13);
  transform: scale(1.08) translate3d(0, var(--hero-shift, 0px), 0);
  transition: filter 1.4s var(--ease), transform 1.8s var(--ease);
  will-change: transform;
}

.hero__media.is-in img {
  filter: brightness(0.86) contrast(1.06) saturate(0.9) sepia(0.08);
  transform: scale(1.035) translate3d(0, var(--hero-shift, 0px), 0);
}

.hero__media figcaption {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 28px;
  color: rgba(242, 234, 223, 0.6);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.manifesto {
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 19vw, 260px) 0;
  background: var(--ivory);
  color: var(--ink);
}

.manifesto::before {
  content: "";
  position: absolute;
  top: -14vw;
  right: -8vw;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(200, 146, 63, 0.27);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(200, 146, 63, 0.08);
  pointer-events: none;
}

.manifesto__grid {
  position: relative;
  display: grid;
  gap: clamp(54px, 10vw, 150px);
}

.manifesto h2 {
  max-width: 8ch;
  color: var(--ink);
  font-size: clamp(4.2rem, 10vw, 9.6rem);
}

.manifesto__body {
  max-width: 610px;
  align-self: end;
}

.manifesto__body p {
  margin: 0 0 28px;
  color: #685c53;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.manifesto__body p:first-child {
  color: var(--ink);
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
}

.manifesto__body .btn {
  margin-top: 14px;
}

.section {
  padding: clamp(100px, 15vw, 200px) 0;
}

.services {
  position: relative;
  overflow: hidden;
  background: var(--night);
}

.section__head {
  max-width: 980px;
  margin-bottom: clamp(90px, 14vw, 180px);
}

.services .section__head h2 {
  max-width: 10ch;
  color: var(--ivory);
}

.services .section__head .btn {
  margin-top: 44px;
}

.service-list {
  counter-reset: service;
}

.service {
  position: relative;
  display: grid;
  width: 100vw;
  min-height: min(820px, 88vh);
  margin-left: calc(50% - 50vw);
  counter-increment: service;
  overflow: hidden;
  background: var(--ivory);
  color: var(--ink);
}

.service::before {
  content: "0" counter(service);
  position: absolute;
  z-index: 1;
  right: 2vw;
  bottom: -0.18em;
  color: rgba(56, 34, 24, 0.065);
  font-family: var(--display);
  font-size: clamp(15rem, 38vw, 36rem);
  letter-spacing: -0.09em;
  line-height: 0.7;
  pointer-events: none;
}

.service:nth-child(2) {
  background: var(--cacao);
  color: var(--ivory);
}

.service:nth-child(2)::before {
  right: auto;
  left: -0.05em;
  color: rgba(242, 234, 223, 0.045);
}

.service:nth-child(3) {
  background: #b87f37;
  color: var(--night);
}

.service:nth-child(3)::before {
  color: rgba(22, 15, 11, 0.07);
}

.service__media {
  position: relative;
  z-index: 0;
  min-height: 52vh;
  margin: 0;
  overflow: hidden;
}

.service__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(22, 15, 11, 0.26));
  pointer-events: none;
}

.service__media img {
  height: 100%;
  min-height: 52vh;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) sepia(0.12);
  transform: scale(1.02);
  transition: filter 900ms var(--ease), transform 1.2s var(--ease);
}

.service:hover .service__media img {
  filter: saturate(0.92) contrast(1.04) sepia(0.05);
  transform: scale(1.06);
}

.service__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(60px, 10vw, 150px) var(--pad);
}

.service__number {
  display: block;
  margin-bottom: clamp(30px, 5vw, 58px);
  color: var(--gold-on-light);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.service:nth-child(2) .service__number {
  color: var(--gold-bright);
}

.service:nth-child(3) .service__number {
  color: var(--night);
}

.service:nth-child(2) .btn--service {
  border-color: rgba(242, 234, 223, 0.5);
  color: var(--ivory);
}

.service:nth-child(2) .btn--service:hover {
  border-color: var(--gold-bright);
  box-shadow: inset 0 -4.5em 0 0 var(--gold-bright);
  color: var(--night);
}

.service__copy h3 {
  max-width: 9ch;
  color: inherit;
}

.service__copy p {
  max-width: 49ch;
  margin: 30px 0 0;
  color: currentColor;
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  opacity: 0.7;
}

.service-bridge {
  display: grid;
  gap: 32px;
  max-width: 960px;
  margin-top: clamp(90px, 14vw, 170px);
}

.service-bridge p {
  margin: 0;
  color: var(--ivory-soft);
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.5vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.service-bridge strong {
  color: var(--gold-bright);
  font-weight: 400;
}

.service-bridge .text-link {
  width: fit-content;
  color: var(--ivory);
}

.non-invasive {
  max-width: 720px;
  margin: 72px 0 0;
  color: var(--smoke);
  font-size: 0.78rem;
}

.steps {
  position: relative;
  overflow: hidden;
  background: #0e0907;
}

.steps::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -12%;
  width: 58vw;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(200, 146, 63, 0.11), transparent 68%);
  pointer-events: none;
}

.steps__head {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-bottom: clamp(90px, 13vw, 170px);
}

.steps h2 {
  max-width: 9ch;
  color: var(--ivory);
}

.steps__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 64px;
  margin: 0 0 clamp(72px, 10vw, 120px);
  padding: 0;
  list-style: none;
}

.steps__list li {
  position: relative;
}

.steps__list > li > span {
  display: block;
  margin-bottom: -0.1em;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(6rem, 16vw, 12rem);
  letter-spacing: -0.07em;
  line-height: 0.8;
  opacity: 0.62;
}

.steps__list h3 {
  max-width: 10ch;
  color: var(--ivory);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.steps__list p {
  max-width: 40ch;
  margin: 20px 0 0;
  color: var(--smoke);
  font-size: 0.94rem;
}

.location {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  color: var(--ink);
}

.location::after {
  content: "L";
  position: absolute;
  right: -0.05em;
  bottom: -0.25em;
  color: rgba(200, 146, 63, 0.09);
  font-family: var(--display);
  font-size: min(76vw, 900px);
  line-height: 0.8;
  pointer-events: none;
}

.location__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(64px, 11vw, 160px);
}

.location h2 {
  max-width: 8.8ch;
  color: var(--ink);
}

.location__body {
  max-width: 570px;
  align-self: end;
}

.location__body > p:not(.location__routine) {
  margin: 0 0 44px;
  color: #66594f;
  font-size: clamp(1.08rem, 1.9vw, 1.3rem);
}

.location__body > .location__routine {
  max-width: 28ch;
  margin: -18px 0 42px;
  color: var(--gold-on-light);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.08;
}

.plain-list {
  display: grid;
  gap: 18px;
  margin: 0 0 46px;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 28px;
  color: #66594f;
  font-size: 0.9rem;
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 11px;
  height: 1px;
  background: var(--gold);
}

.location__address {
  display: grid;
  gap: 4px;
  margin: 0 0 36px;
  padding: 3px 0 3px 24px;
  border-left: 1px solid var(--gold);
  color: var(--ink);
  font-style: normal;
}

.location__address strong {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.location__address span {
  color: #66594f;
  font-size: 0.86rem;
}

.location__address small {
  margin-top: 8px;
  color: var(--gold-on-light);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn--location-secondary {
  border-color: rgba(33, 24, 19, 0.5);
  background: transparent;
  box-shadow: inset 0 0 0 0 var(--gold);
  color: var(--ink);
}

.btn--location-secondary:hover {
  border-color: var(--gold);
  box-shadow: inset 0 -4.5em 0 0 var(--gold);
  color: var(--night);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 18vw, 250px) 0;
  background:
    radial-gradient(circle at 12% 74%, rgba(200, 146, 63, 0.2), transparent 28%),
    var(--cacao);
}

.final-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15vw;
  width: min(58vw, 780px);
  aspect-ratio: 1;
  border: 1px solid rgba(227, 183, 103, 0.18);
  border-radius: 50%;
  transform: translateY(-50%);
}

.final-cta__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(62px, 11vw, 150px);
}

.final-cta__brand {
  align-self: start;
  color: var(--gold-bright);
  line-height: 0;
}

.final-cta__copy {
  max-width: 850px;
}

.final-cta h2 {
  max-width: 9ch;
  color: var(--ivory);
}

.final-cta__copy > p {
  max-width: 54ch;
  margin: 36px 0 44px;
  color: var(--ivory-soft);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.final-cta small {
  display: block;
  margin-top: 22px;
  color: var(--smoke);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.footer {
  padding: 34px 0 calc(34px + env(safe-area-inset-bottom));
  background: #0b0705;
  color: rgba(242, 234, 223, 0.66);
}

.footer__in {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.7rem;
}

.footer strong {
  color: var(--ivory);
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.footer nav {
  display: flex;
  gap: 26px;
}

.footer a {
  color: var(--ivory);
  font-size: 0.7rem;
  text-decoration-color: rgba(242, 234, 223, 0.26);
  text-underline-offset: 5px;
}

.fab {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 45;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(227, 183, 103, 0.5);
  border-radius: 50%;
  background: var(--night);
  color: var(--gold-bright);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  opacity: 0;
  text-decoration: none;
  transform: translateY(14px);
  visibility: hidden;
  transition: opacity 320ms var(--ease), transform 320ms var(--ease), visibility 320ms;
}

.fab.is-on {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.fab svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

@media (min-width: 720px) {
  .nav {
    display: flex;
  }

  .manifesto__grid,
  .location__grid,
  .final-cta__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  }

  .service {
    grid-template-columns: minmax(0, 54vw) minmax(0, 1fr);
  }

  .service--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 54vw);
  }

  .service--reverse .service__media {
    order: 2;
  }

  .service__copy {
    padding-right: max(var(--pad), calc((100vw - var(--wrap)) / 2 + var(--pad)));
    padding-left: clamp(54px, 7vw, 110px);
  }

  .service--reverse .service__copy {
    padding-right: clamp(54px, 7vw, 110px);
    padding-left: max(var(--pad), calc((100vw - var(--wrap)) / 2 + var(--pad)));
  }

  .service-bridge {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .steps__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(40px, 7vw, 100px);
  }

  .footer__in {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 980px) {
  body {
    font-size: 17px;
  }

  .hero h1 {
    max-width: 16ch;
    font-size: clamp(5.8rem, 7.4vw, 7rem);
  }

  .hero__copy {
    padding-right: max(var(--pad), calc((100vw - var(--wrap)) / 2 + var(--pad)));
    padding-left: max(var(--pad), calc((100vw - var(--wrap)) / 2 + var(--pad)));
  }

  .hero .lead {
    margin-left: min(12vw, 180px);
  }

  .hero__actions,
  .hero__micro {
    margin-left: min(12vw, 180px);
  }

  .hero__media figcaption {
    right: 38px;
    bottom: 42px;
  }

  .manifesto__body {
    padding-bottom: 5vw;
  }

  .steps__list li:nth-child(2) {
    margin-top: 100px;
  }

  .steps__list li:nth-child(3) {
    margin-top: 200px;
  }

  .location__body {
    padding-bottom: 5vw;
  }

  .fab {
    display: none;
  }
}

@media (max-width: 719px) {
  h2 {
    font-size: clamp(2.65rem, 12vw, 3.35rem);
    line-height: 0.98;
  }

  h3 {
    font-size: clamp(2.25rem, 10.5vw, 3rem);
    line-height: 1;
  }

  .topbar__in {
    min-height: 66px;
  }

  .lockup--nav {
    width: 128px;
  }

  .topbar .btn {
    min-height: 36px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(13, 8, 6, 0.82), rgba(13, 8, 6, 0.18)),
      linear-gradient(0deg, rgba(13, 8, 6, 0.96) 0%, rgba(13, 8, 6, 0.38) 70%);
  }

  .hero__copy {
    padding-top: 112px;
  }

  .hero__signature {
    margin-bottom: 40px;
  }

  .hero__media img {
    object-position: 62% 50%;
  }

  .manifesto {
    padding-block: 92px;
  }

  .manifesto h2 {
    max-width: 10ch;
    font-size: clamp(2.95rem, 13vw, 3.65rem);
    line-height: 0.96;
  }

  .manifesto__grid {
    gap: 46px;
  }

  .section {
    padding-block: 78px;
  }

  .section__head {
    margin-bottom: 64px;
  }

  .service {
    min-height: auto;
  }

  .service__media,
  .service__media img {
    min-height: 38vh;
  }

  .service__copy {
    padding-block: 54px 60px;
  }

  .service__number {
    margin-bottom: 24px;
  }

  .service__copy h3 {
    max-width: 10ch;
  }

  .service__copy p {
    margin-top: 22px;
  }

  .service__copy .btn {
    margin-top: 30px;
  }

  .service--reverse .service__media {
    order: 0;
  }

  .service-bridge {
    margin-top: 72px;
  }

  .non-invasive {
    margin-top: 48px;
  }

  .steps__head {
    margin-bottom: 68px;
  }

  .steps__list {
    gap: 50px;
    margin-bottom: 64px;
  }

  .final-cta {
    padding-block: 96px;
  }

  .location__actions .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .topbar .btn {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 17.5vw, 4.4rem);
  }

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

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

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

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

  .hero__media img,
  .hero__media.is-in img {
    transform: scale(1.035);
  }
}
