/* Navigating Newmans — Warm Travel Blog Style */
:root {
  --cream: #f7f1e6;
  --paper: #fdfaf3;
  --ink: #2c2a26;
  --muted: #6b6357;
  --terracotta: #c2603f;
  --terracotta-dark: #9a4828;
  --sage: #7a8b6f;
  --sage-dark: #556149;
  --navy: #2a3a52;
  --gold: #c89b3c;
  --line: #e6dcc8;
  --shadow: 0 6px 24px rgba(44, 42, 38, 0.08);
  --shadow-lg: 0 12px 40px rgba(44, 42, 38, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Cambria', 'Times New Roman', serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 18px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.6em; }
h3 { font-size: 1.4rem; margin-bottom: 0.5em; }

p { margin-bottom: 1em; color: var(--ink); }

a { color: var(--terracotta-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Layout */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

section { padding: 80px 0; }

.section-eyebrow {
  display: inline-block;
  font-family: 'Georgia', serif;
  font-style: italic;
  color: var(--terracotta);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Header / Nav */
header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(253, 250, 243, 0.92);
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px; margin: 0 auto;
}
.brand {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand span { color: var(--terracotta); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--ink);
  font-family: 'Georgia', serif;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-cta {
  background: var(--terracotta);
  color: white !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--terracotta-dark); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  padding: 100px 0 80px;
  text-align: center;
}
.hero h1 { margin-bottom: 20px; }
.hero .subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  font-style: italic;
  max-width: 680px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-image {
  margin-top: 56px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--terracotta); color: white; }
.btn-primary:hover { background: var(--terracotta-dark); text-decoration: none; transform: translateY(-1px); }
.btn-secondary { background: white; color: var(--ink); border: 1.5px solid var(--line); }
.btn-secondary:hover { border-color: var(--ink); text-decoration: none; }
.btn-sage { background: var(--sage); color: white; }
.btn-sage:hover { background: var(--sage-dark); text-decoration: none; }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-image {
  aspect-ratio: 16/10;
  background: var(--cream);
  overflow: hidden;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 10px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.98rem; }

/* Feature row (split) */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature.reverse > div:first-child { order: 2; }
.feature-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--cream);
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }

/* Section variants */
.bg-cream { background: var(--cream); }
.bg-sage { background: var(--sage); color: white; }
.bg-sage h2, .bg-sage h3 { color: white; }
.bg-sage p { color: rgba(255,255,255,0.92); }
.bg-sage .section-eyebrow { color: #f0e6c8; }
.bg-navy { background: var(--navy); color: white; }
.bg-navy h2, .bg-navy h3 { color: white; }
.bg-navy p { color: rgba(255,255,255,0.88); }
.bg-navy .section-eyebrow { color: var(--gold); }

/* Podcast embed */
.embed-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
}
.embed-wrap iframe { display: block; border: 0; width: 100%; }

/* Video embed */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--terracotta);
  display: block;
}
.stat-label { color: var(--muted); font-size: 0.95rem; letter-spacing: 0.04em; }

/* Testimonials */
.testimonial {
  background: white;
  padding: 28px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.testimonial p { font-style: italic; color: var(--ink); }
.testimonial cite {
  display: block; margin-top: 14px;
  font-style: normal; font-weight: 600;
  color: var(--muted); font-size: 0.92rem;
}

/* CTA banner */
.cta-banner {
  background: var(--terracotta);
  color: white;
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.95); margin-bottom: 28px; }
.cta-banner .btn-primary { background: white; color: var(--terracotta-dark); }
.cta-banner .btn-primary:hover { background: var(--cream); }

/* Lists */
ul.checklist { list-style: none; padding: 0; }
ul.checklist li {
  padding: 8px 0 8px 28px;
  position: relative;
}
ul.checklist li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--sage);
  font-weight: 700;
}

/* Forms */
.form-card {
  background: white;
  padding: 36px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 560px;
  margin: 0 auto;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; margin-bottom: 6px;
  font-size: 0.92rem; color: var(--muted);
  font-weight: 600;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--paper);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--terracotta);
}

/* Footer */
footer {
  background: var(--navy);
  color: white;
  padding: 60px 0 30px;
}
footer h4 {
  color: var(--gold);
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer a { color: rgba(255,255,255,0.85); }
footer a:hover { color: var(--gold); text-decoration: none; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 8px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; margin-bottom: 12px; }
.footer-tagline { color: rgba(255,255,255,0.7); font-style: italic; font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}

/* Page banner (interior pages) */
.page-banner {
  background: var(--cream);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 12px; }
.page-banner p { color: var(--muted); font-size: 1.15rem; font-style: italic; }

/* Responsive */
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .feature.reverse > div:first-child { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 0; }
  .hero { padding: 60px 0 50px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--line); gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  body { font-size: 17px; }
}

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