:root {
  --bg: #13161c;
  --panel: rgba(16, 20, 27, 0.78);
  --panel-strong: rgba(22, 27, 35, 0.88);
  --line: rgba(255, 237, 214, 0.12);
  --line-strong: rgba(255, 237, 214, 0.18);
  --gold: #d8aa63;
  --gold-soft: #efd2a1;
  --cream: #fff7ec;
  --text: #f5efe7;
  --muted: rgba(245, 239, 231, 0.7);
  --muted-strong: rgba(245, 239, 231, 0.84);
  --green: #5dd77b;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 170, 99, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(19, 22, 28, 0.92) 0%, rgba(19, 22, 28, 1) 100%);
  font-family: "Sora", "Segoe UI", sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(180deg, rgba(19, 22, 28, 0.18) 0%, rgba(19, 22, 28, 0.72) 46%, rgba(19, 22, 28, 0.95) 100%),
    url("assets/bg.jpg") center top / cover no-repeat;
  opacity: 0.96;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.86) 52%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.86) 52%, transparent 100%);
}

body::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 112px 112px;
  opacity: 0.07;
}

a {
  color: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  margin: 0 auto;
  padding: 24px 16px 36px;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand__logo {
  width: 68px;
  height: auto;
  flex: none;
}

.brand__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand__meta strong {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand__meta span {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hub-card,
.hub-link,
.action-pill,
.social-link {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hub-card {
  position: relative;
  overflow: hidden;
  padding: 24px 20px 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(24, 29, 38, 0.56) 0%, rgba(16, 20, 27, 0.86) 58%, rgba(16, 20, 27, 0.94) 100%);
  box-shadow: var(--shadow);
}

.hub-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 170, 99, 0.16) 0%, rgba(216, 170, 99, 0) 72%);
}

.eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hub-card h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 13.5ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 6vw, 3.7rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hub-card__lead {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.link-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.hub-link,
.action-pill,
.social-link {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.hub-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  text-decoration: none;
}

.hub-link:hover,
.hub-link:focus-visible,
.action-pill:hover,
.action-pill:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  outline: none;
}

.hub-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 16px;
  background: rgba(216, 170, 99, 0.08);
  color: var(--gold-soft);
}

.hub-link__icon svg,
.action-pill svg,
.social-link svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.hub-link__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.hub-link__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hub-link__text strong {
  font-size: 1rem;
  font-weight: 600;
}

.hub-link__text span {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hub-link__arrow {
  width: 18px;
  height: 18px;
  color: var(--cream);
  flex: none;
}

.quick-actions,
.social-strip {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.quick-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.action-pill,
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.action-pill--whatsapp {
  background: rgba(93, 215, 123, 0.14);
  border-color: rgba(93, 215, 123, 0.3);
  color: #f3fff5;
}

.social-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding: 0 4px;
}

.footer p,
.footer span {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: rise-in 0.7s cubic-bezier(0.2, 0.75, 0.24, 1) forwards;
}

.reveal--delay-1 {
  animation-delay: 0.08s;
}

.reveal--delay-2 {
  animation-delay: 0.16s;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 18px 12px 26px;
  }

  .masthead {
    justify-content: center;
  }

  .hub-card {
    padding: 22px 16px 18px;
    border-radius: 28px;
  }

  .hub-card h1 {
    max-width: 11ch;
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .hub-card__lead {
    max-width: 30ch;
    font-size: 0.9rem;
  }

  .quick-actions,
  .social-strip {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .brand__logo {
    width: 62px;
  }

  .brand__meta strong {
    font-size: 0.84rem;
  }

  .brand__meta span {
    font-size: 0.68rem;
  }

  .hub-link {
    padding: 13px 14px;
  }

  .hub-link__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .hub-link__text strong {
    font-size: 0.94rem;
  }

  .hub-link__text span {
    font-size: 0.64rem;
  }
}
