:root {
  --bg-deep: #160f09;
  --bg-mid: #2a1b10;
  --bg-soft: #3a2a1c;
  --panel: #2b1e14;
  --panel-edge: #5f4329;
  --text: #fce8bf;
  --muted: #d5c6aa;
  --accent: #f0b348;
  --accent-deep: #bb731d;
  --ok: #46a36b;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 10%, #4e341e 0%, transparent 40%),
    radial-gradient(circle at 90% 85%, #3a2b1d 0%, transparent 42%),
    linear-gradient(165deg, var(--bg-soft) 0%, var(--bg-mid) 48%, var(--bg-deep) 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

.bg-glow-a {
  left: -70px;
  top: -80px;
  background: #f29b2f;
}

.bg-glow-b {
  right: -100px;
  bottom: -130px;
  background: #64b87c;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: "Cinzel", serif;
  font-weight: 800;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #23170d;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.brand-text {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 26px);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.24s ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: 24px 0 10px;
}

.hero-copy,
.hero-card,
.panel,
.strip,
.policy {
  border: 1px solid var(--panel-edge);
  background: linear-gradient(
    180deg,
    rgba(72, 50, 31, 0.55) 0%,
    rgba(29, 20, 13, 0.92) 100%
  );
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
  border-radius: 16px;
}

.hero-copy {
  padding: 28px;
}

.kicker {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd27e;
}

h1,
h2,
h3,
h4 {
  font-family: "Cinzel", serif;
  margin: 0;
}

h1 {
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.06;
}

.lead {
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 60ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 800;
  transition: 0.24s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(145deg, #f7be59 0%, #cf851f 100%);
  color: #28190e;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}

.btn-ghost {
  border-color: #8f6b40;
  color: var(--text);
  background: rgba(0, 0, 0, 0.16);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  padding: 24px;
  align-self: stretch;
  animation: floatCard 4.8s ease-in-out infinite;
}

.mini-title {
  margin: 0;
  color: #ffd27e;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card h2 {
  margin-top: 4px;
  font-size: clamp(26px, 3.8vw, 34px);
}

.hero-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.section {
  padding: 18px 0;
}

.section-head {
  margin-bottom: 12px;
}

.section-head h3 {
  font-size: clamp(24px, 3.6vw, 36px);
}

.grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel {
  padding: 18px;
}

.panel h4 {
  font-size: 23px;
  margin-bottom: 6px;
}

.panel p {
  margin: 0;
  color: var(--muted);
}

.strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px;
}

.strip p {
  margin: 8px 0 0;
  color: var(--muted);
}

.policy {
  margin-top: 10px;
  padding: 24px;
}

.policy h1 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 14px;
}

.policy h2 {
  font-size: 22px;
  margin-top: 18px;
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 20px 0 26px;
  color: var(--muted);
}

.footer a {
  color: #ffe3a9;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.66s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

[data-reveal]:nth-child(2n) {
  animation-delay: 0.08s;
}

[data-reveal]:nth-child(3n) {
  animation-delay: 0.16s;
}

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

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

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

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

  .strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-copy,
  .hero-card,
  .panel,
  .strip,
  .policy {
    border-radius: 14px;
  }
}
