:root {
  --background: #0c100c;
  --surface: #141810;
  --surface-container: #1a2218;
  --surface-container-low: #161e14;
  --surface-container-high: #273024;
  --surface-container-lowest: #080b08;
  --on-surface: #e8e4d6;
  --on-surface-variant: #b8c0b0;
  --primary: #c4d4b8;
  --primary-container: #1e3324;
  --secondary: #c4a05a;
  --secondary-dim: #a88a4d;
  --on-secondary: #1a160c;
  --outline: rgba(196, 160, 90, 0.22);
  --outline-soft: rgba(196, 160, 90, 0.12);
  --campo-glow: rgba(196, 160, 90, 0.15);
  --margin-desktop: 64px;
  --margin-mobile: 20px;
  --stack-sm: 16px;
  --stack-md: 32px;
  --stack-lg: 80px;
  --gutter: 24px;
  --container-max: 1180px;
  --font-display: 'Libre Caslon Text', 'Times New Roman', Georgia, serif;
  --font-body: 'Hanken Grotesk', 'Segoe UI', sans-serif;
  --radius: 0.35rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background-color: var(--background);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(30, 51, 36, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(196, 160, 90, 0.04), transparent 50%),
    linear-gradient(180deg, #0c100c 0%, #101610 40%, #0c100c 100%);
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(100%, var(--container-max));
  margin-inline: auto;
  padding-inline: var(--margin-mobile);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--margin-desktop);
  }
}

.chiseled {
  border: 1px solid var(--outline);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 24px rgba(0, 0, 0, 0.35);
  position: relative;
}

.chiseled::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
  border-radius: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, #2a4532 0%, var(--primary-container) 100%);
  color: var(--primary);
  border-color: rgba(196, 212, 184, 0.28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #34553c 0%, #243a2c 100%);
  box-shadow: 0 12px 28px rgba(30, 51, 36, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--secondary);
  border-color: rgba(196, 160, 90, 0.5);
}

.btn-ghost:hover {
  background: rgba(196, 160, 90, 0.1);
  border-color: var(--secondary);
}

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}

.headline {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.fade-in-up {
  animation: fadeInUp 0.9s ease-out forwards;
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

@keyframes fieldDrift {
  0% {
    background-position: 0% 40%;
  }
  100% {
    background-position: 100% 60%;
  }
}

@keyframes brandSettle {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
