:root {
  --paper: #F7F3EC;
  --paper-warm: #EFE8DA;
  --ink: #2B2A28;
  --wood: #8B7355;
  --olive: #5C6B4F;
  --rust: #A34A32;
  --line: rgba(43, 42, 40, 0.12);
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Karla', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ---------- NAV ---------- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px clamp(24px, 5vw, 64px);
}

.nav-mark {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 5vw, 2.1rem);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--rust);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

/* ---------- HERO (homepage) ---------- */
.hero {
  position: relative;
  padding: clamp(20px, 6vw, 40px) clamp(24px, 5vw, 64px) clamp(60px, 10vw, 120px);
  max-width: 1400px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: center;
  align-content: start;
  min-height: 640px;
  position: relative;
}

.hero-lead { grid-column: 1 / 6; grid-row: 1; z-index: 5; }
.hero-body { grid-column: 1 / 6; grid-row: 2; z-index: 5; }

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--olive);
}

h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

h1 em { font-style: italic; font-weight: 300; color: var(--rust); }


.hero-sub.hero-tagline {
  font-weight: 700;
  font-size: clamp(1.4rem, 6vw, 2.15rem);
}

.hero-sub {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(43, 42, 40, 0.75);
  max-width: 42ch;
  margin-bottom: 36px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  color: var(--paper);
  background: var(--ink);
  padding: 15px 28px;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-cta:hover { background: var(--rust); transform: translateY(-1px); }
.hero-cta svg { width: 14px; height: 14px; }

.hero-photos { position: absolute; top: 0; right: 0; width: 58%; height: 560px; }

.photo {
  position: absolute;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px -12px rgba(43, 42, 40, 0.35);
  border: 6px solid var(--paper);
  background-color: var(--olive);
}

.photo-1 { width: 46%; height: 62%; top: 0; left: 6%; transform: rotate(-4deg); z-index: 3; background-color: var(--olive); }
.photo-2 { width: 40%; height: 48%; top: 6%; right: 2%; transform: rotate(3deg); z-index: 2; background-color: var(--wood); }
.photo-3 { width: 38%; height: 46%; bottom: 2%; left: 20%; transform: rotate(2deg); z-index: 4; background-color: var(--rust); }
.photo-4 { width: 30%; height: 34%; bottom: 8%; right: 6%; transform: rotate(-3deg); z-index: 1; background-color: #6B5B4D; }

.photo-label {
  position: absolute;
  bottom: 10px;
  left: 14px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(247,243,236,0.9);
}

.stamp {
  position: absolute;
  top: 40%;
  left: 42%;
  width: 74px;
  height: 74px;
  border: 1.5px solid var(--rust);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-12deg);
  z-index: 5;
  background: var(--paper);
}

.stamp span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.62rem;
  text-align: center;
  color: var(--rust);
  line-height: 1.25;
}

/* ---------- INTRO STRIP ---------- */
.intro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(50px, 7vw, 90px) clamp(24px, 5vw, 64px);
}

.intro-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
}

.intro-label { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.3rem; color: var(--olive); }
.intro-copy p { font-size: 1.3rem; line-height: 1.6; color: rgba(43,42,40,0.85); }
.intro-copy p + p { margin-top: 20px; }

/* ---------- DESTINATIONS LISTING ---------- */
.listing {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(20px, 5vw, 40px) clamp(24px, 5vw, 64px) 100px;
}

.listing-header { margin-bottom: 50px; }
.listing-header h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.post-card {
  text-decoration: none;
  color: var(--ink);
  display: block;
}

.post-card-photo {
  aspect-ratio: 4 / 3;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--olive), var(--wood));
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.post-card:hover .post-card-photo { opacity: 1; }

.post-card-type {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
}

.post-card h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin: 6px 0 4px;
}

.post-card-location, .post-card-date {
  font-size: 0.88rem;
  color: rgba(43,42,40,0.6);
}

/* ---------- SINGLE POST ---------- */
.post {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(20px, 5vw, 40px) clamp(24px, 5vw, 32px) 100px;
}

.post-header { margin-bottom: 40px; }
.post-header h1 { margin-bottom: 12px; }
.post-meta { font-size: 0.95rem; color: rgba(43,42,40,0.6); }

.post-body {
  font-size: 1.08rem;
  line-height: 1.75;
}

.post-body p { margin-bottom: 24px; }

.post-body img {
  width: 100%;
  border-radius: 2px;
  margin-top: 32px;
  box-shadow: 0 12px 30px -10px rgba(43,42,40,0.3);
}

.post-body em {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(43, 42, 40, 0.65);
  margin-top: 8px;
}

/* Mobile responsiveness for homepage hero */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-lead {
    grid-column: 1 / -1;
    grid-row: auto;
    order: 1;
  }
  .hero-lead .hero-tagline {
    margin-bottom: 0;
  }
  .hero-photos {
    grid-column: 1 / -1;
    grid-row: auto;
    order: 2;
    position: static;
    width: 100%;
    height: auto;
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hero-body {
    grid-column: 1 / -1;
    grid-row: auto;
    order: 3;
    margin-top: 32px;
  }
  .photo {
    position: static;
    width: 100% !important;
    height: 220px !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
  }
}
