:root {
  --cream: #fdf8f0;
  --ivory: #fefaf3;
  --terracotta: #d97756;
  --mustard: #d4a017;
  --paprika: #a6272d;
  --rust: #b8543a;
  --cocoa: #4a2f2a;
  --warm-sage: #8b9a7a;
  --peach: #f4c7ab;
  --dusty-rose: #c38d94;
}

.title {
  color: var(--terracotta);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3.2em;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(217,119,86,0.15);
  position: relative;
}

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

.hero-img-wide img {
  border-radius: 12px;
  border: 8px solid var(--peach);
  box-shadow: 
    0 12px 32px rgba(217,119,86,0.2),
    inset 0 2px 0 rgba(255,255,255,0.6);
}

.body h3 {
  color: var(--rust);
  font-family: 'Georgia', serif;
  font-weight: 500;
  font-size: 1.45em;
  margin: 2em 0 0.9em;
  padding-left: 1.2em;
  position: relative;
}

.body h3::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--paprika);
  font-size: 1.6em;
  font-weight: 300;
}

.body p {
  font-size: 18px;
  line-height: 1.7;
  margin: 1.2em 0;
  hyphens: auto;
}

.body blockquote {
  background: rgba(244,199,171,0.4);
  border-left: 6px solid var(--terracotta);
  padding: 1.8em 2em;
  margin: 2.5em 0;
  position: relative;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.body blockquote::before {
  content: '"';
  position: absolute;
  top: -0.4em;
  left: 1.4em;
  font-size: 4em;
  line-height: 1;
  color: var(--mustard);
  font-family: 'Playfair Display', serif;
  opacity: 0.7;
}

.body code {
  background: rgba(212,160,23,0.15);
  color: var(--rust);
  padding: 0.2em 0.5em;
  border-radius: 4px;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 0.95em;
  border-left: 3px solid var(--mustard);
}

.body pre {
  background: rgba(217,119,86,0.08);
  border: 2px solid var(--peach);
  padding: 1.6em;
  border-radius: 12px;
  margin: 2em 0;
  overflow-x: auto;
}

.body a {
  color: var(--paprika);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.2s ease;
}

.body a:hover {
  border-bottom-color: var(--paprika);
  text-decoration: underline;
}

.body ul {
  padding-left: 1.8em;
}

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

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

.body hr::before {
  content: '— ' + attr(data-label) + ' —';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream);
  padding: 0 1.2em;
  color: var(--rust);
  font-size: 0.9em;
  font-style: italic;
}

.spot img {
  border: 4px solid var(--peach);
  border-radius: 8px;
  box-shadow: 
    0 8px 24px rgba(217,119,86,0.18),
    inset 0 1px 0 rgba(255,255,255,0.8);
  max-width: 240px;
}

.spot-caption {
  color: var(--rust);
  font-size: 0.92em;
  font-style: italic;
  margin-top: 0.8em;
  padding-top: 0.6em;
  border-top: 1px solid rgba(217,119,86,0.3);
}

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

.stamp {
  background: linear-gradient(135deg, var(--mustard), var(--terracotta));
  color: var(--cream);
  padding: 0.5em 1em;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.85em;
  box-shadow: 0 4px 12px rgba(212,160,23,0.3);
}

.stamp .num {
  font-size: 1.4em;
  font-weight: 800;
  color: var(--cream);
}

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

.eyebrow {
  color: var(--rust);
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.vibe-note {
  background: rgba(166,39,45,0.1);
  color: var(--paprika);
  padding: 1em 1.5em;
  border-radius: 8px;
  border-left: 5px solid var(--paprika);
  font-size: 0.95em;
  margin: 2em 0;
}