:root {
  --terracotta: #B8633E;
  --olive: #6B705C;
  --cream: #FAE7D4;
  --light-bg: #F7F5F3;
  --text-dark: #333333;
  --text-body: #555555;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; color: var(--text-dark); line-height: 1.7; background: white; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; cursor: pointer; }

/* Nav */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99990;
  display: flex; align-items: center; justify-content: center;
  padding: 12px 28px;
  background: rgba(247, 245, 243, 0.88);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Raleway', sans-serif; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 2px; color: var(--text-dark); text-decoration: none;
}
.nav-logo-text { text-transform: uppercase; }
.logo-sep { opacity: 0.5; }

/* Sections */
.section { padding: 80px 40px; }
.section .container { max-width: 1200px; margin: 0 auto; }

/* Rebrand announcement */
.rebrand {
  background: #1a1a18;
  text-align: center;
  padding: 120px 40px 40px;
}
.rebrand h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(247, 245, 243, 0.95);
  letter-spacing: 0.05em;
}
.rebrand h1 em {
  font-style: normal;
  letter-spacing: 0.15em;
}

/* Etymology */
.numenvia-etymology {
  background: #1a1a18;
  text-align: center;
  padding: 40px 40px 80px;
}
.etymology-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: rgba(247, 245, 243, 0.85);
  letter-spacing: 0.3em; margin-bottom: 24px;
}
.ety-sep { margin: 0 0.3em; opacity: 0.4; }
.ety-defs { display: flex; justify-content: center; gap: 2.5em; }
.ety-def {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300;
  color: rgba(247, 245, 243, 0.7); margin-bottom: 0;
}
.ety-def-numen { text-align: right; }
.ety-def-via { text-align: left; }
.ety-def em { letter-spacing: 0.15em; font-style: normal; color: rgba(247, 245, 243, 0.85); }

/* Philosophy */
.philosophy { background: var(--light-bg); text-align: center; }
.philosophy .container { max-width: 720px; }
.philosophy p { font-size: 1.2rem; line-height: 1.9; margin-bottom: 30px; }

/* CTA button */
.it-cta {
  display: inline-block; padding: 14px 40px;
  border: 2px solid var(--terracotta); color: var(--terracotta);
  text-decoration: none; text-transform: uppercase;
  letter-spacing: 3px; font-size: 0.85rem; font-weight: 600;
  transition: all 0.3s;
}
.it-cta:hover { background: var(--terracotta); color: white; }

/* Regions */
.regions { background: white; }
.regions h2 { font-size: 2.2rem; margin-bottom: 30px; }
.region-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.region-card {
  position: relative; display: block; overflow: hidden;
  border-radius: 8px; aspect-ratio: 3/2; text-decoration: none;
}
.region-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.region-card:hover img { transform: scale(1.05); }
.region-card-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  background: rgba(0,0,0,0.3); transition: background 0.3s;
}
.region-card:hover .region-card-overlay { background: rgba(0,0,0,0.15); }
.region-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 400; color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.region-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem; font-style: italic;
  color: rgba(255,255,255,0.8); text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Testimonials */
.testimonials { background: var(--light-bg); }
.testimonials h2 { font-size: 2.2rem; margin-bottom: 40px; }
.testimonial-narrative blockquote {
  margin: 0 0 36px; padding: 0 0 0 40px;
  border-left: 3px solid var(--terracotta); max-width: 720px;
}
.testimonial-narrative blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-style: italic;
  color: var(--text-body); line-height: 1.8; margin-bottom: 10px;
}
.testimonial-narrative blockquote cite {
  font-family: 'Raleway', sans-serif; font-style: normal;
  font-size: 0.9rem; font-weight: 600; color: var(--text-dark);
}

/* Go Deeper */
.go-deeper { background: white; }
.go-deeper h2 { font-size: 2.2rem; margin-bottom: 30px; }
.go-deeper-list { max-width: 600px; }
.go-deeper-row {
  display: flex; align-items: center; gap: 24px;
  padding: 16px 0; border-bottom: 1px solid #eee;
  text-decoration: none; color: var(--text-dark); transition: color 0.2s;
}
.go-deeper-row:first-child { border-top: 1px solid #eee; }
.go-deeper-row:hover { color: var(--terracotta); }
.go-deeper-thumb { flex-shrink: 0; width: 90px; height: 90px; }
.go-deeper-thumb img { width: 90px; height: 90px; object-fit: cover; border-radius: 4px; }
.go-deeper-thumb-duo { width: 120px; position: relative; height: 90px; }
.go-deeper-thumb-duo img { width: 72px; height: 72px; border: 2px solid white; border-radius: 4px; }
.go-deeper-thumb-duo .duo-left { position: relative; z-index: 2; }
.go-deeper-thumb-duo .duo-right { position: absolute; top: 12px; left: 44px; z-index: 1; }
.go-deeper-text { flex: 1; min-width: 0; }
.go-deeper-title { font-size: 1.05rem; line-height: 1.4; }
.go-deeper-arrow { font-size: 1.2rem; color: var(--terracotta); flex-shrink: 0; }

/* Tours Grid */
.tours { background: var(--light-bg); }
.tours h2 { font-size: 2.2rem; margin-bottom: 30px; }
.tours-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px; margin-top: 20px;
}
.tour-card {
  background: white; border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: box-shadow 0.3s, transform 0.2s;
  display: flex; flex-direction: column;
}
.tour-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.14); transform: translateY(-2px); }
.tour-card-img img { width: 100%; height: 220px; object-fit: cover; }
.tour-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.tour-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; margin-bottom: 8px;
}
.tour-excerpt { font-size: 0.9rem; color: var(--text-body); line-height: 1.6; margin-bottom: 12px; }
.tour-card-dates { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 0.82rem; }
.tour-dates-text { color: var(--text-body); }
.tour-status {
  display: inline-block; padding: 2px 10px; border-radius: 3px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.tour-status-open { background: #e8f5e9; color: #2e7d32; }
.tour-status-sold-out { background: #fce4ec; color: #c62828; }
.tour-read-more { color: var(--terracotta); font-size: 0.85rem; font-weight: 500; margin-top: auto; }

/* People & Places */
.people-places { background: white; }
.people-places h2 { font-size: 2.2rem; margin-bottom: 30px; }
.pp-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px;
}
.pp-card {
  position: relative; display: block; overflow: hidden;
  border-radius: 8px; aspect-ratio: 1; text-decoration: none;
}
.pp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.pp-card:hover img { transform: scale(1.05); }
.pp-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px; background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white; display: flex; flex-direction: column;
}
.pp-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400; line-height: 1.3;
}
.pp-card-region {
  font-size: 0.75rem; letter-spacing: 1px;
  text-transform: uppercase; opacity: 0.8; margin-top: 2px;
}
.pp-card-caption {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  opacity: 0.92;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* When a caption is present, the overlay needs more room and a stronger gradient
   to keep the text legible against varied images. */
.pp-card:has(.pp-card-caption) .pp-card-overlay {
  background: linear-gradient(transparent, rgba(0,0,0,0.85) 60%);
  padding: 18px 16px 16px;
}

/* CTA Band */
.cta-band { background: white; text-align: center; padding: 80px 40px; }
.cta-band .container { max-width: 800px; margin: 0 auto; }
.cta-band .cta-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-style: italic; font-weight: 300;
  color: var(--text-body); margin-bottom: 20px;
}
.cta-band .cta-wrap { margin-bottom: 30px; }
.cta-band .cta-wrap .it-cta {
  background: var(--terracotta); color: white; border-color: var(--terracotta);
}
.cta-band .cta-wrap .it-cta:hover {
  background: transparent; color: var(--terracotta);
}

/* Footer */
.site-footer {
  background: #1a1a18; text-align: center;
  padding: 40px; color: rgba(247,245,243,0.5);
  font-size: 0.8rem;
}
.site-footer a { color: rgba(247,245,243,0.7); }
.site-footer a:hover { color: rgba(247,245,243,0.95); }

/* Mobile */
@media (max-width: 768px) {
  .rebrand { padding: 100px 20px 30px; }
  .rebrand h1 { font-size: 1.8rem; }
  .etymology-word { font-size: 2rem; }
  .ety-defs { flex-direction: column; gap: 6px; align-items: center; }
  .ety-def-numen, .ety-def-via { text-align: center; }
  .ety-def { font-size: 1.15rem; }
  .numenvia-etymology { padding: 30px 20px 50px; }
  .section { padding: 60px 20px; }
  .region-cards { grid-template-columns: repeat(2, 1fr); }
  .go-deeper-title { font-size: 0.95rem; }
  .cta-band .cta-tagline { font-size: 1.4rem; }
  .cta-band { padding: 60px 20px; }
  .it-cta { padding: 12px 28px; font-size: 0.8rem; letter-spacing: 2px; }
  .tours-grid { grid-template-columns: 1fr; }
  .pp-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 480px) {
  .region-cards { grid-template-columns: 1fr; }
  .rebrand h1 { font-size: 1.5rem; }
}