
:root {
  --bg: #f7f3ec;
  --surface: #fffaf4;
  --surface-strong: #ffffff;
  --ink: #171613;
  --muted: #645f57;
  --line: rgba(23, 22, 19, 0.1);
  --gold: #d9b36f;
  --deep: #0c1113;
  --deep-soft: #162026;
  --accent: #ece2d0;
  --accent-strong: #f4d2a0;
  --card: rgba(255, 255, 255, 0.94);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.72;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 48px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
}
.utility-bar {
  background: rgba(7, 10, 12, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.utility-row, .main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.utility-row { min-height: 44px; }
.main-bar {
  background: rgba(12, 17, 19, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.main-row { min-height: 64px; }
.brand, .brand-inline {
  color: white;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand { font-size: 1.18rem; }
.brand-inline { font-size: 0.95rem; opacity: 0.9; }
.utility-nav, .primary-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.utility-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
}
.primary-nav a {
  color: rgba(255,255,255,0.92);
  font-size: 0.96rem;
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero-home {
  min-height: 78vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(7,10,12,0.84), rgba(7,10,12,0.38)),
    linear-gradient(180deg, rgba(242,154,86,0.16), rgba(7,10,12,0.12)),
    url('hero-illustration.svg') center/cover no-repeat;
  color: white;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.24));
}
.hero-home-inner {
  position: relative;
  z-index: 1;
  padding: 96px 0 88px;
  max-width: 760px;
}
.hero-small {
  background:
    linear-gradient(135deg, rgba(9, 15, 19, 0.92), rgba(33, 49, 58, 0.88)),
    url('hero-illustration.svg') center/cover no-repeat;
  color: white;
  padding: 72px 0;
}
  .hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1.04;
    max-width: 10.5ch;
  }
  .hero-home h1 {
    max-width: 16ch;
  }
  .hero-small h1 {
  max-width: none;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}
.eyebrow, .section-label, .footer-label, .card-label {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}
.eyebrow, .section-label, .footer-label { color: rgba(255,255,255,0.8); }
.content-section .section-label, .content-section.alt .section-label { color: #7d6640; }
.lead {
  margin: 0;
  font-size: 1.15rem;
  max-width: 60ch;
  color: rgba(255,255,255,0.92);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: white;
  color: #111;
  border: 1px solid white;
  font-weight: 600;
}
.button-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.28);
}
.content-section { padding: 82px 0; }
.content-section.alt { background: #efe6d8; }
.section-head { max-width: 760px; margin-bottom: 30px; }
.section-head h2, .feature-copy h2, .split-band h2, .newsletter-box h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.12;
}
.section-head p, .feature-copy p, .split-band p, .newsletter-box p { margin: 0; color: var(--muted); }
.destinations-grid, .article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.destination-card, .article-card, .feature-card, .newsletter-box, .related-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.05);
}
  .destination-card h3, .article-card h3, .feature-card .feature-title { margin: 0 0 10px; font-size: 1.7rem; line-height: 1.12; }
  .destination-card p, .article-card p, .feature-card p { margin: 0 0 14px; color: var(--muted); }
  .destination-card a, .text-link, .article-card h3 a, .feature-card .feature-title a { color: #8c5e17; }
.feature-layout, .split-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}
.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,245,238,0.95));
}
.article-meta, .card-meta {
  color: var(--muted);
  font-size: 0.94rem;
}
.article-meta {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(217, 179, 111, 0.16);
  color: #6e4b11;
  border: 1px solid rgba(217, 179, 111, 0.28);
  font-size: 0.88rem;
}
.archive-section:nth-of-type(odd) { background: var(--bg); }
.archive-section:nth-of-type(even) { background: #fbf7f0; }
  .article-card h3 a:hover, .feature-card .feature-title a:hover, .destination-card a:hover, .text-link:hover { text-decoration: underline; }
.split-band .button { margin-top: 18px; }
.newsletter-box {
  background: linear-gradient(160deg, rgba(19, 25, 29, 0.96), rgba(34, 43, 49, 0.96));
  color: white;
}
.newsletter-box p, .newsletter-box h3 { color: white; }
.newsletter-box .section-label { color: rgba(255,255,255,0.75); }
.article-body p {
  margin: 0 0 20px;
  font-size: 1.08rem;
  color: #2f2d29;
}
.site-footer {
  background: #0c1113;
  color: rgba(255,255,255,0.88);
  padding: 54px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}
.site-footer h3 { margin: 0 0 14px; font-size: 2rem; line-height: 1.1; }
.site-footer p { margin: 0 0 12px; color: rgba(255,255,255,0.78); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 10px 0; }
.site-footer a { color: #f3cf98; }
@media (max-width: 960px) {
  .feature-layout, .split-band, .footer-grid { grid-template-columns: 1fr; }
  .destinations-grid, .article-grid { grid-template-columns: 1fr; }
  .utility-row, .main-row { flex-direction: column; align-items: flex-start; padding: 10px 0; }
  .hero-home-inner { padding-top: 72px; }
}
@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 28px, 1000px); }
  .hero h1 { max-width: none; }
}
