@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --terracotta: #c75b39;
  --terracotta-light: #f4e6df;
  --orange: #e8864a;
  --sand: #f9f3ed;
  --earth: #5c3d2e;
  --cream: #fffaf5;
  --gold: #d4a853;
  --charcoal: #2d2d2d;
  --grey: #6b6b6b;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  background: var(--earth);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
  text-decoration: none;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--earth) 0%, var(--terracotta) 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 580px;
  margin: 0 auto;
}

/* Sections */
section {
  padding: 4rem 0;
}

section.warm-bg {
  background: var(--terracotta-light);
  border-radius: 0;
  padding: 4rem 0;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--earth);
  margin-bottom: 1rem;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

p { margin-bottom: 1rem; }

/* Grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Cards */
.card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #ede5dd;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(92, 61, 46, 0.12);
  transform: translateY(-3px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem;
}

/* Spotlight card */
.spotlight {
  display: flex;
  gap: 2rem;
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #ede5dd;
  margin-bottom: 2rem;
}

.spotlight img {
  width: 280px;
  height: 240px;
  object-fit: cover;
  flex-shrink: 0;
}

.spotlight-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 0.3rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--earth);
}

/* Article */
.article-content {
  max-width: 720px;
  margin: 0 auto;
}

.article-content h2 {
  margin-top: 2rem;
}

.article-content ul, .article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: var(--earth);
  color: #ccc;
  padding: 3rem 0;
  margin-top: 3rem;
}

footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

footer h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

footer a {
  color: var(--orange);
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  grid-column: 1 / -1;
}

/* Mobile */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding: 3rem 1rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  footer .container { grid-template-columns: 1fr; }
  .spotlight { flex-direction: column; }
  .spotlight img { width: 100%; height: 200px; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  header nav { flex-direction: column; gap: 0.75rem; }
  .hero h1 { font-size: 1.6rem; }
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
