:root {
  --cream: #f5f0e6;
  --warm-orange: #e67a3d;
  --mustard: #d4a017;
  --terracotta: #c8553d;
  --cocoa-brown: #5d4037;
  --deep-burgundy: #7b2d3a;
  --peach: #f4a261;
  --rust: #b7410e;
  --ivory: #fdf8ef;
  --gold: #d4a52a;
}

.title {
  color: var(--cocoa-brown);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 1.2em;
  text-transform: uppercase;
  position: relative;
}

.title::after {
  content: '';
  display: block;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--mustard), var(--warm-orange));
  margin: 0.8em auto;
  border-radius: 2px;
}

.hero-img-wide img {
  border-radius: 8px;
  border: 4px solid var(--peach);
  max-height: 360px;
}

.body h3 {
  color: var(--terracotta);
  font-size: 1.35em;
  font-weight: 500;
  margin-top: 2em;
  margin-bottom: 0.8em;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  font-size: 1.1em;
}

.body p {
  margin-bottom: 1.4em;
  font-size: 18px;
  line-height: 1.7;
}

.body blockquote {
  background: var(--ivory);
  border-left: 6px solid var(--warm-orange);
  padding: 1.6em 1.8em;
  margin: 2.5em 0;
  position: relative;
  border-radius: 0 8px 8px 0;
}

.body code {
  background: var(--ivory);
  color: var(--cocoa-brown);
  padding: 0.2em 0.5em;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.95em;
  border: 1px solid var(--peach);
}

.body pre {
  background: var(--ivory);
  border: 2px solid var(--peach);
  padding: 1.6em;
  border-radius: 8px;
  margin: 2em 0;
  overflow-x: auto;
}

.body a {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  font-weight: 500;
}

.body a:hover {
  color: var(--rust);
  border-bottom-color: var(--rust);
}

.body ul {
  padding-left: 1.4em;
  margin-bottom: 1.5em;
}

.body ul li::marker {
  color: var(--mustard);
  font-weight: bold;
  font-size: 1.1em;
}

.body ul li {
  margin-bottom: 0.6em;
}

.body hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm-orange), transparent);
  margin: 3em 0;
}

.body hr::before {
  display: none;
}

.spot img {
  border: 3px solid var(--peach);
  border-radius: 12px;
  max-width: 220px;
}

.spot-caption {
  color: var(--cocoa-brown);
  font-size: 0.95em;
  font-style: italic;
  margin-top: 0.8em;
  padding-top: 0.8em;
  border-top: 1px solid var(--peach);
}

.meta-row > div:not(.stamp) {
  color: var(--cocoa-brown);
}

.stamp {
  background: var(--warm-orange);
  color: white;
  padding: 0.3em 0.8em;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid var(--rust);
}

.stamp .num {
  font-size: 1.3em;
  font-weight: 700;
  color: white;
}

.stamp .lbl {
  font-weight: 500;
}

.eyebrow {
  color: var(--mustard);
  font-size: 0.9em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vibe-note {
  background: var(--terracotta);
  color: white;
  padding: 1em 1.5em;
  border-radius: 8px;
  margin: 2em 0;
  font-size: 1.1em;
  font-style: italic;
  border-left: 6px solid var(--rust);
}

.footer {
  border-top: 3px solid var(--mustard);
  margin-top: 4em;
  padding-top: 2em;
}

.body blockquote + h2 {
  margin-top: 2.8em;
}

.body p + p {
  text-indent: 1.5em;
}

.title strong {
  color: var(--rust);
  font-weight: 700;
}