:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --surface-soft: #f2eee7;
  --surface-strong: #e9e2d8;
  --text: #1d1d1a;
  --muted: #6d685f;
  --border: #ddd5c9;
  --accent: #245f57;
  --accent-dark: #17423d;
  --accent-soft: #dbe8e4;
  --gold: #c38a2c;
  --shadow: 0 10px 30px rgba(32, 28, 22, 0.08);
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(246, 243, 238, 0.86);
  border-bottom: 1px solid rgba(34, 30, 25, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
}

.brand {
  font-family: "Instrument Serif", serif;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.96rem;
  color: var(--muted);
}

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

.hero,
.page-hero {
  padding: 3rem 0 2rem;
}

.hero-home {
  padding: 3.4rem 0 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy-block {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted);
}

.hero h1,
.page-hero h1,
.region-term-hero h1,
.section-head h2,
.hero-feature-content h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 11ch;
}

.page-hero h1,
.region-term-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.hero-copy,
.intro-copy {
  max-width: 58ch;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  transition: 180ms ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  background: white;
}

.hero-feature-card {
  display: grid;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(34, 30, 25, 0.08);
  box-shadow: var(--shadow);
}

.hero-feature-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-feature-content {
  padding: 1.4rem 1.4rem 1.5rem;
}

.hero-feature-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 0.7rem;
}

.hero-feature-content p {
  margin-top: 0;
  color: var(--muted);
}

.region-highlight-section,
.region-summary-section,
.listing-section,
.single-body-section {
  padding: 2.2rem 0 4rem;
}

.section-head {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.region-cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.region-card {
  grid-column: span 3;
  display: grid;
  gap: 0.25rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #f1ece4 100%);
  border-radius: 20px;
  border: 1px solid rgba(34, 30, 25, 0.08);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.region-card:hover {
  transform: translateY(-2px);
}

.region-card-large {
  grid-column: span 4;
}

.region-card-label {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.region-card strong {
  font-size: 1.5rem;
  line-height: 1.1;
}

.region-card-meta {
  color: var(--muted);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.post-card {
  grid-column: span 6;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(34, 30, 25, 0.08);
  box-shadow: var(--shadow);
}

.card-media {
  position: relative;
  display: block;
}

.card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,18,18,0.24), rgba(18,18,18,0.02));
}

.card-content {
  padding: 1.2rem 1.2rem 1.35rem;
}

.card-meta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.post-card h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.15;
}

.post-card h3 a:hover,
.hero-feature-content h2 a:hover {
  color: var(--accent);
}

.card-summary {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.region-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.region-summary-card {
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid rgba(34, 30, 25, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.region-summary-card strong {
  display: block;
  margin-top: 0.4rem;
  font-family: "Instrument Serif", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.region-summary-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.site-footer {
  margin-top: 4rem;
  padding: 2.5rem 0;
  background: #ece6dc;
  border-top: 1px solid rgba(34, 30, 25, 0.08);
}

.footer-inner {
  display: grid;
  gap: 0.35rem;
}

.footer-title {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 1.6rem;
}

@media (max-width: 1100px) {
  .region-card {
    grid-column: span 6;
  }

  .region-card-large {
    grid-column: span 6;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .region-summary-grid {
    grid-template-columns: 1fr;
  }

  .post-card {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    gap: 0.8rem;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .region-card,
  .region-card-large {
    grid-column: span 12;
  }
}
