:root {
  --bg: #faf5ef;
  --text: #2b2621;
  --accent: #c96b3b;   /* terracotta */
  --accent-soft: #e6b58a;
  --green: #5f7b5a;
  --border-soft: #e0d4c6;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Georgia", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  margin-top: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  color: white;
}

.hero img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  bottom: 10%;
  left: 10%;
  max-width: 480px;
  background: rgba(0,0,0,0.45);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.hero-text h1 {
  margin-bottom: 0.5rem;
}

.sub-hero, .region-hero .overlay {
  padding: 4rem 10%;
  background: #f3ebe0;
}

.region-hero {
  position: relative;
}

.region-hero img {
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.region-hero .overlay {
  position: absolute;
  bottom: 10%;
  left: 10%;
  background: rgba(0,0,0,0.45);
  color: white;
  max-width: 420px;
  border-radius: 0.5rem;
}

section {
  padding: 2.5rem 10%;
  border-bottom: 1px solid var(--border-soft);
}

.cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  font-weight: 600;
}

.cta:hover {
  background: #a9552a;
  text-decoration: none;
}

.cta-block {
  text-align: center;
}

.mission, .coming, .travellers, .producers, .regions, .ui-preview, .journal {
  background: #fdf9f4;
}

.region-links a {
  margin-right: 1rem;
}

.journal-list {
  padding: 2.5rem 10%;
}

.journal-list article {
  margin-bottom: 1.5rem;
}

.interest-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.interest-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  padding: 0.6rem;
  border-radius: 0.35rem;
  border: 1px solid var(--border-soft);
  font-family: var(--font-sans);
}

footer {
  padding: 2rem 10%;
  text-align: center;
  font-size: 0.85rem;
  color: #7a6f63;
}
