:root {
  --bg: #090b0f;
  --bg-2: #10131a;
  --surface: rgba(22, 26, 34, 0.85);
  --surface-solid: #161a22;
  --navy: #0e1420;
  --ink: #f2ebe0;
  --muted: #9d968a;
  --gold: #d4b56a;
  --gold-soft: #e8d7a5;
  --line: rgba(242, 235, 224, 0.1);
  --green: #25a35a;
  --danger: #e25b4c;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --radius: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 15% -5%, rgba(212, 181, 106, 0.12), transparent 55%),
    radial-gradient(800px 480px at 95% 10%, rgba(60, 90, 140, 0.18), transparent 50%),
    linear-gradient(180deg, #0b0d12 0%, #090b0f 40%, #0d1016 100%);
}

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

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

::selection {
  background: rgba(212, 181, 106, 0.35);
  color: #fff;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 15, 0.78);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212, 181, 106, 0.35);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-sub {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.2rem;
}

.nav-desktop a {
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(242, 235, 224, 0.72);
  transition: 0.2s ease;
}

.nav-desktop a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-desktop a.active {
  background: rgba(212, 181, 106, 0.14);
  color: var(--gold-soft);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.3rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-navy,
.btn-dark {
  background: #1a2030;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-navy:hover,
.btn-dark:hover {
  background: #242c40;
}

.btn-gold {
  background: linear-gradient(135deg, #e0c47a, #c9a456);
  color: #1a1408;
}

.btn-gold:hover {
  filter: brightness(1.06);
}

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover {
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(12, 14, 20, 0.96);
  padding: 1rem 0 1.25rem;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--ink);
}

.nav-mobile .cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

@media (min-width: 900px) {
  .nav-desktop,
  .header-cta {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

/* Hero — full composition */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 40%, rgba(212, 181, 106, 0.1), transparent 58%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(60, 90, 140, 0.16), transparent 55%),
    linear-gradient(180deg, #0c1018 0%, #090b0f 55%, #07090d 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(232, 215, 165, 0.18) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
}

.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-float {
  position: absolute;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--gold);
  background: linear-gradient(160deg, rgba(32, 36, 48, 0.9), rgba(14, 16, 22, 0.92));
  border: 1px solid rgba(212, 181, 106, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  animation: float-icon 7.5s ease-in-out infinite;
}

.hero-float.f1 { top: 16%; left: 8%; animation-delay: 0s; }
.hero-float.f2 { top: 22%; right: 10%; animation-delay: 1.1s; }
.hero-float.f3 { bottom: 22%; left: 12%; animation-delay: 0.6s; }
.hero-float.f4 { bottom: 18%; right: 14%; animation-delay: 1.8s; }
.hero-float.f5 { top: 48%; left: 4%; animation-delay: 2.2s; }
.hero-float.f6 { top: 52%; right: 5%; animation-delay: 0.4s; }

@media (max-width: 720px) {
  .hero-float {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }
  .hero-float.f5,
  .hero-float.f6 {
    display: none;
  }
}

@keyframes float-icon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 7.5rem 0 5rem;
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-inner {
  width: min(720px, 100%);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 5.8rem);
  line-height: 0.94;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero-title span {
  display: block;
  color: var(--gold);
}

.hero-lead {
  margin: 1.35rem auto 0;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(242, 235, 224, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.9rem;
  justify-content: center;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 181, 106, 0.35);
  background: rgba(212, 181, 106, 0.1);
  color: var(--gold-soft);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 181, 106, 0.15);
}

/* Highlight features */
.highlight-strip {
  margin-top: -3.5rem;
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.highlight-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .highlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card {
  border-radius: 1.4rem;
  padding: 1.5rem 1.35rem;
  background: linear-gradient(160deg, rgba(28, 32, 42, 0.95), rgba(16, 19, 26, 0.95));
  border: 1px solid rgba(212, 181, 106, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.highlight-card.featured {
  border-color: rgba(212, 181, 106, 0.45);
  background: linear-gradient(160deg, rgba(50, 42, 24, 0.95), rgba(22, 20, 14, 0.98));
}

.highlight-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(212, 181, 106, 0.12);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0;
  font-weight: 600;
}

.highlight-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin: 0;
  font-weight: 600;
}

.section-lead {
  margin: 0.75rem 0 0;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.65;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.glass {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.icon-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  padding: 1.6rem 1.35rem 1.45rem;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  border: 1px solid rgba(212, 181, 106, 0.18);
  background:
    radial-gradient(140px 100px at 88% 12%, rgba(212, 181, 106, 0.16), transparent 70%),
    linear-gradient(165deg, #1b2030, #10141c);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.icon-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(212, 181, 106, 0.06);
  pointer-events: none;
}

.icon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 181, 106, 0.42);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.icon-card.compact {
  min-height: 180px;
}

.icon-card-mark {
  width: 64px;
  height: 64px;
  margin-bottom: 1.1rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--gold);
  background: rgba(212, 181, 106, 0.12);
  border: 1px solid rgba(212, 181, 106, 0.28);
}

.icon-card h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.45rem;
  font-weight: 600;
  position: relative;
}

.icon-card p {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(242, 235, 224, 0.68);
  position: relative;
}

.tone-nuts { background: radial-gradient(140px 100px at 88% 12%, rgba(196, 148, 78, 0.22), transparent 70%), linear-gradient(165deg, #241c14, #12100e); }
.tone-chips { background: radial-gradient(140px 100px at 88% 12%, rgba(212, 181, 106, 0.2), transparent 70%), linear-gradient(165deg, #2a2214, #12100c); }
.tone-soda { background: radial-gradient(140px 100px at 88% 12%, rgba(90, 160, 210, 0.18), transparent 70%), linear-gradient(165deg, #15202c, #10151c); }
.tone-icecream { background: radial-gradient(140px 100px at 88% 12%, rgba(180, 120, 170, 0.18), transparent 70%), linear-gradient(165deg, #22182a, #121018); }
.tone-bottle { background: radial-gradient(140px 100px at 88% 12%, rgba(212, 181, 106, 0.22), transparent 70%), linear-gradient(165deg, #1c1a12, #10100c); }
.tone-store { background: radial-gradient(140px 100px at 88% 12%, rgba(80, 120, 170, 0.2), transparent 70%), linear-gradient(165deg, #161c28, #10141c); }

.icon-panel {
  border-radius: 1.6rem;
  min-height: 280px;
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(212, 181, 106, 0.22);
  background:
    radial-gradient(220px 160px at 90% 0%, rgba(212, 181, 106, 0.16), transparent 60%),
    linear-gradient(165deg, #1a2030, #10141c);
}

.icon-panel.featured-panel {
  min-height: 340px;
}

.icon-panel.wide-panel {
  min-height: 260px;
}

.icon-panel-mark {
  width: 72px;
  height: 72px;
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--gold);
  background: rgba(212, 181, 106, 0.12);
  border: 1px solid rgba(212, 181, 106, 0.3);
}

.icon-panel h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0.15rem 0 0;
  font-weight: 600;
  color: #fff;
}

.icon-panel p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 22rem;
}

.contact-card {
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.85rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--gold);
  background: rgba(212, 181, 106, 0.12);
  border: 1px solid rgba(212, 181, 106, 0.25);
}

.area-link .area-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 0 0.75rem;
  border-radius: 12px;
  color: var(--gold);
  background: rgba(212, 181, 106, 0.1);
  border: 1px solid rgba(212, 181, 106, 0.22);
}

.icon-svg {
  display: block;
}

.area-link {
  display: block;
  border-radius: 1.2rem;
  padding: 1.2rem 1.25rem;
  transition: 0.2s ease;
  background: var(--surface-solid);
  border: 1px solid var(--line);
}

.area-link:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 181, 106, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.area-link strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.area-link span:not(.area-icon) {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.band {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  background:
    radial-gradient(600px 280px at 90% 20%, rgba(212, 181, 106, 0.18), transparent 60%),
    linear-gradient(135deg, #151922, #0e121a);
  color: #fff;
  padding: 3rem 2rem;
  border: 1px solid rgba(212, 181, 106, 0.2);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
  font-weight: 600;
}

.cta-banner p {
  margin: 0.75rem 0 0;
  color: rgba(242, 235, 224, 0.7);
}

.cta-banner .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff;
  margin: 0.5rem 0 0;
  max-width: 40rem;
  font-weight: 600;
}

.page-hero p {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.area-layout {
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem 0 4rem;
}

@media (min-width: 1024px) {
  .area-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

.breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

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

.article h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin: 0;
  font-weight: 600;
}

.prose {
  margin-top: 1.5rem;
}

.prose p {
  color: rgba(242, 235, 224, 0.82);
  line-height: 1.85;
  margin: 0 0 1rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--gold-soft);
  margin: 2rem 0 0.85rem;
  line-height: 1.25;
  font-weight: 600;
}

.prose a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq details {
  border-radius: 1.1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .sidebar {
    position: sticky;
    top: 6rem;
    align-self: start;
  }
}

.sidebar-box {
  border-radius: 1.35rem;
  padding: 1.25rem;
}

.sidebar-box .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.sidebar-box nav a,
.sidebar-box ul a {
  display: block;
  border-radius: 0.7rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  color: rgba(242, 235, 224, 0.8);
}

.sidebar-box nav a:hover,
.sidebar-box ul a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.sidebar-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-box a.active {
  background: rgba(212, 181, 106, 0.16);
  color: var(--gold-soft);
}

.whats-card {
  border-radius: 1.35rem;
  padding: 1.25rem;
  background: linear-gradient(160deg, #1a2030, #11151e);
  color: #fff;
  border: 1px solid rgba(212, 181, 106, 0.22);
}

.whats-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
}

.whats-card p {
  margin: 0.5rem 0 1rem;
  font-size: 0.9rem;
  color: rgba(242, 235, 224, 0.7);
  line-height: 1.55;
}

.whats-card .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}

.chip:hover {
  border-color: rgba(212, 181, 106, 0.4);
  color: var(--gold);
}

.chip.dark {
  background: rgba(212, 181, 106, 0.15);
  color: var(--gold-soft);
  border-color: rgba(212, 181, 106, 0.3);
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.map-frame {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-solid);
  min-height: 360px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

.site-footer {
  margin-top: auto;
  background: #07090d;
  color: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-footer h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0;
  font-weight: 600;
}

.site-footer .muted {
  color: rgba(242, 235, 224, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0.75rem 0 0;
  max-width: 22rem;
}

.footer-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0.4rem 0;
  font-size: 0.9rem;
  color: rgba(242, 235, 224, 0.72);
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-chips a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(242, 235, 224, 0.65);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(242, 235, 224, 0.4);
}

.float-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .float-cta {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

.float-cta .btn {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.pulse-call {
  animation: pulse-call 1.8s ease-in-out infinite;
}

@keyframes pulse-call {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 181, 106, 0.45);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 14px rgba(212, 181, 106, 0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: fade-up 0.85s ease both;
}

.reveal-d1 {
  animation-delay: 0.12s;
}
.reveal-d2 {
  animation-delay: 0.24s;
}

/* Admin */
.admin-wrap {
  width: min(960px, calc(100% - 2rem));
  margin: 3rem auto;
}

.admin-card {
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.admin-card h1,
.admin-card h2 {
  font-family: var(--font-display);
  color: #fff;
  margin: 0;
  font-weight: 600;
}

.admin-card h1 {
  font-size: 2.2rem;
}

.admin-card h2 {
  font-size: 1.35rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
  color: rgba(242, 235, 224, 0.85);
}

.form-label input,
.form-label textarea,
.form-label select {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  font: inherit;
  background: #0e1118;
  color: #fff;
}

.form-label textarea {
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
  min-height: 140px;
}

.stat-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.stat-box {
  border-radius: 1.25rem;
  padding: 1.25rem;
  color: #fff;
}

.stat-box.phone {
  background: #1a2030;
  border: 1px solid var(--line);
}
.stat-box.wa {
  background: #1a3d2c;
  border: 1px solid rgba(37, 163, 90, 0.3);
}

.stat-box .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.range-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.25rem;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--line);
  color: rgba(242, 235, 224, 0.85);
}

.note-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .note-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.note-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1rem;
}

.note-box code {
  display: block;
  margin-top: 0.35rem;
  font-weight: 700;
  color: var(--gold);
}

.msg {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--gold);
}

.msg.error {
  color: var(--danger);
}

.list-check {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.list-check li {
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  color: rgba(242, 235, 224, 0.85);
}
