:root {
  --ink: #181312;
  --paper: #f4f0e7;
  --muted: #b9b7af;
  --gold: #f8ae59;
  --gold-light: #f5b56d;
  --line: rgba(244, 240, 231, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Geist", sans-serif;
}

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

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #181312;
}

.hero__image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  /* filter: saturate(.88) contrast(1.04); */
  /* transform: scale(1.02); */
  transition: translate .3s ease-out;
  animation: imageIn 1.5s cubic-bezier(.2, .7, .2, 1) both;
}

.hero__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 19, 18, .98) 0%, rgba(24, 19, 18, .9) 35%, rgba(24, 19, 18, .36) 63%, rgba(24, 19, 18, .12) 100%), linear-gradient(0deg, rgba(24, 19, 18, .9) 0%, transparent 40%, rgba(24, 19, 18, .22) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  poGeist-events: none;
  opacity: .2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.1'/%3E%3C/svg%3E");
}

.navbar {
  position: sticky;
  z-index: 10;
  top: 0;
  width: 100%;
  padding-block: 12px;
  background: rgba(0, 0, 0, .5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.navbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-transform: uppercase;
  font-family: "Geist";
}

.brand__text strong {
  /* font: 600 17px/1 "Geist", sans-serif; */
  font-family: "Gloock";
  letter-spacing: .15em;
}

.brand__text small {
  color: #9f9d96;
  font-size: 7px;
  letter-spacing: .29em;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 34px;
}

.navlinks a {
  position: relative;
  color: #d9d7d0;
  font: 600 14px "Geist", sans-serif;
  letter-spacing: .06em;
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}

.navlinks a:hover::after {
  right: 0;
}

.navbar__cta {
  justify-self: end;
  /* min-height: 58px; */
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 25px;
  background: var(--gold);
  color: #111316;
  border-radius: 8px;
  font: 400 14px "Geist", sans-serif;
  /* letter-spacing: .09em; */
  /* text-transform: uppercase; */
  transition: .25s ease;
}

.navbar__cta:hover,
.button--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.hero__content {
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: 54px 40px;
}

.hero__copy {
  max-width: 820px;
  animation: copyIn .85s .1s ease-out both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 25px;
  /* color: var(--gold-light); */
  font: 200 10px "Geist", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  font: 400 clamp(60px, 5vw, 94px)/.92 "Gloock", serif;
  letter-spacing: -2px;
  text-wrap: balance;
}

h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero__lead {
  max-width: 500px;
  margin: 30px 0 0;
  color: #ccc9c1;
  font-size: 20px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 30px;
}

.button--primary {
  /* min-height: 58px; */
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 25px;
  background: var(--gold);
  color: #111316;
  border-radius: 8px;
  font: 400 14px "Geist", sans-serif;
  /* letter-spacing: .09em; */
  /* text-transform: uppercase; */
  transition: .25s ease;
}

.button--primary span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 39px;
  background: #fff;
  color: var(--ink);
  border-radius: 4px;
}

.button--primary__icon svg {
  display: block;
}

.phone {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.phone small {
  color: #999994;
  font: 600 8px "Geist", sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.phone strong {
  font: 500 15px "Geist", sans-serif;
  letter-spacing: .04em;
}

.hero__footer {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--line);
}

.hero__footer>div {
  min-height: 38px;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.hero__footer>div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__footer strong {
  color: var(--gold-light);
  font: 400 18px "Gloock", serif;
}

.hero__footer span {
  margin-top: 3px;
  color: #999994;
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero__footer p {
  justify-self: end;
  margin: 0;
  color: #aaa8a1;
  font: 600 9px "Geist", sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero__footer i {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 9px 2px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes copyIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes imageIn {
  from {
    opacity: .4;
    transform: scale(1.07);
  }

  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

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

  .navbar__inner {
    grid-template-columns: 1fr auto;
  }

  .navlinks {
    display: none;
  }

  .hero__image {
    object-position: 60% center;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(24, 19, 18, .97) 0%, rgba(24, 19, 18, .82) 53%, rgba(24, 19, 18, .35) 100%), linear-gradient(0deg, rgba(24, 19, 18, .92), transparent 55%);
  }

  .hero__footer {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__footer p {
    display: none;
  }
}

@media (max-width:600px) {
  .container {
    width: calc(100% - 28px);
  }

  .navbar {
    min-height: 68px;
    padding-block: 8px;
  }

  .brand__text strong {
    font-size: 13px;
  }

  .brand__text small {
    font-size: 6px;
  }

  .navbar__cta {
    min-height: 40px;
    padding-inline: 12px;
  }

  .hero__content {
    align-items: flex-end;
    padding-block: 52px 38px;
  }

  .hero__image {
    object-position: 67% center;
    opacity: .86;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(24, 19, 18, .91), rgba(24, 19, 18, .38)), linear-gradient(0deg, rgba(24, 19, 18, .97) 0%, rgba(24, 19, 18, .45) 68%, rgba(24, 19, 18, .3) 100%);
  }

  h1 {
    font-size: clamp(47px, 14vw, 67px);
  }

  .hero__lead {
    max-width: 410px;
    margin-top: 22px;
    font-size: 14px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
  }

  .hero__footer {
    min-height: 72px;
  }

  .hero__footer>div {
    padding-inline: 10px;
  }

  .hero__footer strong {
    font-size: 14px;
  }

  .hero__footer span {
    font-size: 6px;
    line-height: 1.35;
  }
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
  }
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .3);
}

.whatsapp-float__icon {
  display: block;
  width: 28px;
  height: 28px;
}

.whatsapp-float__label {
  position: absolute;
  right: calc(100% + 12px);
  padding: 8px 12px;
  color: #fff;
  background: #181312;
  border-radius: 5px;
  white-space: nowrap;
  font: 500 12px "Inter", sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.whatsapp-float:hover .whatsapp-float__label,
.whatsapp-float:focus-visible .whatsapp-float__label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}
