:root {
  --bg: #16110d;
  --bg-alt: #211812;
  --surface: #2d2019;
  --surface-soft: #3d2b21;
  --border: rgba(205, 163, 83, 0.25);
  --border-hover: rgba(255, 235, 190, 0.5);
  --text: #f0e6df;
  --muted: #a29182;
  --primary: #cca353;
  --primary-strong: #f6e2b8;
  --accent: #d38c5d;
  --success: #95c370;
  --radius: 6px;
  --radius-sm: 3px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
  --shadow-glow: 0 0 20px rgba(205, 163, 83, 0.2);
  
  --gradient-brass: linear-gradient(135deg, #cca353 0%, #d38c5d 100%);
  --gradient-iron: linear-gradient(180deg, #2d2019 0%, #16110d 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: var(--bg);
  font-family: "Lora", Georgia, serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(205, 163, 83, 0.08) 0%, transparent 60%),
    linear-gradient(rgba(22, 17, 13, 0.99), rgba(22, 17, 13, 0.99));
  background-attachment: fixed;
}

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

a:hover {
  color: var(--primary);
}

button,
input,
textarea {
  font-family: "Share Tech Mono", monospace;
}

.container {
  width: min(1280px, 100% - 40px);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
  position: relative;
}

/* Typography Overrides */
.section-title-editorial {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
  background: var(--gradient-brass);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.muted-editorial {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
  font-style: italic;
}

.badge-promo-warm {
  display: inline-block;
  background: rgba(205, 163, 83, 0.08);
  border: 1px dashed var(--primary);
  color: var(--primary);
  font-family: "Share Tech Mono", monospace;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.muted {
  color: var(--muted);
}

.glass {
  background: rgba(45, 32, 25, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(205, 163, 83, 0.05);
  pointer-events: none;
}

/* Buttons */
.btn-primary-editorial,
.btn-secondary {
  font-family: "Share Tech Mono", monospace;
  border-radius: 4px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.btn-primary-editorial {
  background: var(--gradient-brass);
  color: #16110d;
  border: 1px solid #cca353;
  box-shadow: 
    0 4px 15px rgba(205, 163, 83, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary-editorial:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(205, 163, 83, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  filter: brightness(1.1);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--primary);
}

.btn-secondary:hover {
  border-color: var(--primary-strong);
  color: #fff;
  background: rgba(205, 163, 83, 0.05);
  transform: translateY(-2px);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Main Spacing clearance */
.main-content {
  padding-top: 110px;
  min-height: calc(100vh - 350px);
}

@media (max-width: 768px) {
  .main-content {
    padding-top: 90px;
  }
}

/* Background wood-like glow */
.bg-blob-warm {
  position: absolute;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}
.bg-blob-warm.orange {
  background: rgba(211, 140, 93, 0.2);
  top: 15%;
  left: -10%;
  width: 45vw;
  height: 45vw;
}
.bg-blob-warm.cream {
  background: rgba(205, 163, 83, 0.15);
  top: 55%;
  right: -5%;
  width: 35vw;
  height: 35vw;
}
