/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-dark-950);
  background-image: radial-gradient(circle at 50% 0%, #0c2030 0%, #051019 60%, #02060b 100%);
  background-attachment: fixed;
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Organic fine paper texture (extremely subtle in dark mode) */
.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 999;
}

/* Typography - Editorial Style */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-bright);
  font-weight: 600;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  margin-bottom: 16px;
}

p {
  color: var(--color-text);
  font-size: 1.02rem;
  margin-bottom: 20px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
}

/* Sections */
.section {
  position: relative;
  padding: 120px 0;
  z-index: 1;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

/* Eyebrow Label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
  box-shadow: 0 0 8px var(--color-gold);
}

/* Reveal Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-dark-950);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}
