:root {
  --espresso-950: #120d0a;
  --espresso-900: #1d1410;
  --espresso-700: #3b251d;
  --terracotta-500: #9e4e2d;
  --terracotta-300: #d2926f;
  --almond-100: #f5ebdc;
  --almond-200: #ead9c2;
  --mist: rgba(245, 235, 220, 0.72);
  --line: rgba(210, 146, 111, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  color: var(--almond-100);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(210, 146, 111, 0.22), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(158, 78, 45, 0.2), transparent 33%),
    linear-gradient(160deg, var(--espresso-950), var(--espresso-900) 40%, #261712 100%);
}

.texture {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    repeating-linear-gradient(
      95deg,
      rgba(234, 217, 194, 0.04) 0,
      rgba(234, 217, 194, 0.04) 2px,
      transparent 2px,
      transparent 16px
    );
  mask-image: radial-gradient(circle at 55% 35%, #000 0%, rgba(0, 0, 0, 0.75) 45%, transparent 100%);
}

.orb {
  position: fixed;
  border: 1px solid var(--line);
  border-radius: 999px;
  z-index: -2;
  animation: float 8s ease-in-out infinite;
}

.orb-one {
  width: 460px;
  height: 460px;
  left: calc(50% - 230px);
  top: 18%;
}

.orb-two {
  width: 520px;
  height: 380px;
  left: calc(50% - 260px);
  top: 26%;
  animation-delay: 1.8s;
}

.topbar,
.hero,
.site-footer {
  width: min(980px, calc(100% - 3rem));
  margin: 0 auto;
}

.topbar {
  padding: 1.8rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: clamp(130px, 22vw, 180px);
  display: block;
  filter: brightness(1.02) saturate(1.05);
}

.status {
  margin: 0;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--terracotta-300);
}

.hero {
  min-height: calc(100vh - 220px);
  display: grid;
  place-content: center;
  text-align: center;
  gap: 1.2rem;
  padding: 2rem 0 4rem;
}

.pill {
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--terracotta-300);
  backdrop-filter: blur(3px);
}

.pill::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--terracotta-500);
  box-shadow: 0 0 1.1rem var(--terracotta-500);
}

h1 {
  margin: 0;
  max-width: 15ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  animation: rise 700ms ease-out both;
}

.lead {
  margin: 0 auto;
  max-width: 56ch;
  color: var(--mist);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  animation: rise 700ms ease-out 90ms both;
}

a.whatsapp-cta {
  margin: 1.2rem auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 0.7rem;
  padding: 0.9rem 1.35rem;
  min-width: 280px;
  font: inherit;
  font-weight: 700;
  color: #fff8f1;
  background: linear-gradient(120deg, #7d3518, #b25f39);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: rise 700ms ease-out 170ms both;
}

a.whatsapp-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(125, 53, 24, 0.45);
}

a.whatsapp-cta:active {
  transform: translateY(0);
}

.site-footer {
  padding: 1.25rem 0 1.8rem;
  border-top: 1px solid rgba(234, 217, 194, 0.14);
  text-align: center;
  color: rgba(234, 217, 194, 0.58);
  font-size: 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(6deg);
  }
}

@media (max-width: 760px) {
  .topbar {
    padding-top: 1.1rem;
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero {
    min-height: calc(100vh - 200px);
  }

  a.whatsapp-cta {
    min-width: 100%;
  }

  .orb-one {
    width: 290px;
    height: 290px;
    left: calc(50% - 145px);
    top: 21%;
  }

  .orb-two {
    width: 330px;
    height: 250px;
    left: calc(50% - 165px);
    top: 27%;
  }
}
