:root {
  --gold: #d9a23a;
  --gold-dark: #b87d1f;
}

.hero {
  min-height: 100svh;
  background:
    radial-gradient(circle at 16% 22%, rgba(217, 162, 58, 0.38), transparent 34rem),
    linear-gradient(180deg, rgba(24, 16, 9, 0.18) 0%, rgba(22, 17, 13, 0.44) 38%, rgba(7, 8, 8, 0.86) 100%),
    url("/hero.jpg"),
    url("/assets/hero-placeholder.svg"),
    linear-gradient(135deg, #2b2015 0%, #6f5122 50%, #151514 100%);
  background-position: center;
  background-size: cover;
}

.site-header {
  min-height: 92px;
  align-items: center;
  padding: 0 clamp(1.4rem, 3vw, 2.1rem);
}

.brand {
  gap: 0.55rem;
}

.brand-logo {
  display: block;
  width: clamp(54px, 6vw, 82px);
  height: clamp(54px, 6vw, 82px);
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.brand-mark {
  display: none;
}

.brand strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 0.95;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.brand small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.2;
}

.site-nav {
  gap: clamp(0.4rem, 1vw, 1.4rem);
}

.site-nav a {
  position: relative;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
  background: transparent;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0.72rem;
  bottom: 0.15rem;
  left: 0.72rem;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.7);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a:first-child::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.35rem;
  border-radius: 16px;
  color: #15110a;
  background: linear-gradient(180deg, #e7b04c, var(--gold));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.header-cta svg,
.button svg,
.hero-feature-bar svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

.hero-content {
  width: min(820px, 90vw);
  padding-top: clamp(7rem, 15vh, 10rem);
  padding-bottom: clamp(12rem, 24vh, 16rem);
}

.hero-kicker {
  color: var(--gold);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 950;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

h1 {
  color: #ffffff;
  font-size: clamp(5.3rem, 12.4vw, 9.5rem);
  line-height: 0.8;
  text-shadow: 0 5px 34px rgba(0, 0, 0, 0.48);
}

.hero-subtitle {
  max-width: 680px;
  margin: 1.4rem auto 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 5.2vw, 3.65rem);
  line-height: 1.06;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.52);
}

.hero-divider {
  display: block;
  width: 92px;
  height: 4px;
  margin: 1.8rem auto 1.9rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(217, 162, 58, 0.5);
}

.hero-text {
  max-width: 650px;
  color: #ffffff;
  font-size: clamp(1.28rem, 3.1vw, 1.78rem);
  line-height: 1.45;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.6);
}

.button {
  gap: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.button-primary {
  color: #15110a;
  background: linear-gradient(180deg, #e7b04c, var(--gold));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(180deg, #f0bd5c, #d89b2e);
}

.hero-actions {
  gap: 1rem;
  margin-top: 2.35rem;
}

.hero-actions .button {
  min-width: min(100%, 320px);
  min-height: 64px;
  padding-inline: 1.8rem;
  font-size: 1.08rem;
}

.hero-actions .button-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: #ffffff;
  background: rgba(8, 8, 7, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  text-transform: none;
}

.hero-actions .button-ghost svg {
  color: var(--gold);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(8, 8, 7, 0.5);
}

.hero-feature-bar {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.8rem clamp(1rem, 6vw, 8rem) 2.2rem;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(6, 7, 7, 0.18), rgba(6, 7, 7, 0.82));
}

.hero-feature-bar article {
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  text-align: center;
}

.hero-feature-bar svg {
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 0.25rem;
  color: var(--gold);
  stroke-width: 1.75;
}

.hero-feature-bar strong {
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-feature-bar span {
  max-width: 12rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.32;
}

.legal-header .brand-mark {
  display: none;
}

.legal-header .brand-logo {
  box-shadow: 0 8px 20px rgba(20, 20, 20, 0.12);
}

.legal-header .brand strong {
  color: var(--ink);
  text-shadow: none;
}

.legal-header .brand small {
  color: var(--muted);
}

@media (max-width: 1040px) {
  .site-header {
    gap: 0.85rem;
  }

  .site-nav {
    gap: 0.15rem;
  }

  .site-nav a {
    padding-inline: 0.55rem;
  }

  .header-cta {
    padding-inline: 1rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 76px;
  }

  .brand strong {
    font-size: 1.42rem;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    border-color: rgba(217, 162, 58, 0.42);
    background: linear-gradient(180deg, #e7b04c, var(--gold));
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    background: #15110a;
  }

  body.nav-open .menu-lines {
    background: transparent;
  }

  .site-nav {
    background: rgba(9, 9, 8, 0.9);
  }

  .hero {
    min-height: 100svh;
    background-position: center top;
  }

  .hero-content {
    width: min(92vw, 560px);
    padding-top: 7.2rem;
    padding-bottom: 16.5rem;
  }

  h1 {
    font-size: clamp(4.2rem, 18vw, 6.4rem);
  }

  .hero-subtitle {
    font-size: clamp(1.85rem, 8vw, 2.8rem);
  }

  .hero-text {
    font-size: clamp(1.06rem, 4.6vw, 1.35rem);
  }

  .hero-actions {
    display: grid;
    justify-items: center;
  }

  .hero-actions .button {
    width: min(100%, 325px);
    min-height: 58px;
  }

  .hero-feature-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.05rem 0.8rem;
    padding: 1.4rem 0.9rem 1.55rem;
  }

  .hero-feature-bar svg {
    width: 1.8rem;
    height: 1.8rem;
  }

  .hero-feature-bar strong {
    font-size: 0.82rem;
  }

  .hero-feature-bar span {
    font-size: 0.78rem;
  }

  .legal-header {
    align-items: center;
    padding: 1rem;
  }

  .legal-header .button {
    width: auto;
    min-height: 44px;
    padding: 0.72rem 1rem;
    font-size: 0.9rem;
  }
}

.whatsapp-button {
  width: fit-content;
  min-height: 50px;
  margin-top: 0.85rem;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #1ebe5d;
}

.whatsapp-button svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

@media (max-width: 760px) {
  .whatsapp-button {
    width: 100%;
  }
}
