:root {
  --ink: #17201b;
  --muted: #5d6a61;
  --cream: #f7f2e8;
  --cream2: #efe5d4;
  --green: #173d31;
  --green2: #245845;
  --gold: #c99144;
  --blue: #243d63;
  --white: #fff;
  --shadow: 0 24px 70px rgba(23, 32, 27, .13);
  --radius: 28px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }
.narrow { max-width: 840px; }
.section-pad { padding: 88px 0; }
.soft { background: linear-gradient(180deg, #fff8ec 0%, #f0e5d2 100%); }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 16px; top: 16px; background: #fff; padding: 10px; z-index: 10; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 232, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 32, 27, .08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 14px 0; }
.brand { display: flex; gap: 12px; align-items: center; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #f8dc9a;
  font-size: 26px;
  box-shadow: 0 10px 24px rgba(23, 61, 49, .22);
}
.brand strong { display: block; font-family: Georgia, serif; font-size: 20px; letter-spacing: .01em; }
.brand small { display: block; color: var(--muted); font-size: 12px; line-height: 1.1; }
.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav a { text-decoration: none; color: var(--muted); font-weight: 700; font-size: 14px; }
.site-nav a:hover { color: var(--green); }
.nav-toggle {
  display: none;
  border: 1px solid rgba(23, 32, 27, .16);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 75% 20%, rgba(201, 145, 68, .22), transparent 28%), linear-gradient(135deg, #f8f1e4 0%, #e9ddc8 58%, #d9c6a6 100%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 61, 49, .08) 1px, transparent 1px), linear-gradient(0deg, rgba(23, 61, 49, .05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .72fr; gap: 48px; align-items: center; }
.eyebrow { font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-size: 12px; margin: 0 0 14px; }
.hero h1, .page-hero h1 { font-family: Georgia, serif; font-size: clamp(44px, 7vw, 82px); line-height: .96; margin: 0 0 24px; color: var(--green); }
.page-hero h1 { font-size: clamp(38px, 6vw, 70px); }
.lede { font-size: clamp(18px, 2.2vw, 22px); color: #39483f; margin: 0 0 30px; max-width: 760px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 14px 20px; font-weight: 900; text-decoration: none; min-height: 48px; }
.btn.primary { background: var(--green); color: #fff; box-shadow: 0 14px 30px rgba(23, 61, 49, .22); }
.btn.ghost { background: rgba(255, 255, 255, .7); border: 1px solid rgba(23, 32, 27, .12); }
.btn.full { width: 100%; }

.hero-card, .card, .sidebar-card, .check-panel, .feature-panel {
  border: 1px solid rgba(23, 32, 27, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}
.hero-card { padding: 32px; position: relative; overflow: hidden; }
.hero-card h2, .feature-panel h2, .section-head h2, .split h2, .card h3, .card h2, .sidebar-card h2, .check-panel h2 {
  font-family: Georgia, serif;
  color: var(--green);
  line-height: 1.08;
  margin: 0 0 14px;
}
.media-card { padding: 0; background: #fffaf0; }
.media-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-card-body { padding: 28px; }
.info-strip { background: var(--green); color: #fff; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.strip-grid span { display: flex; align-items: center; justify-content: center; min-height: 64px; padding: 12px; text-align: center; font-weight: 900; background: rgba(255, 255, 255, .07); }
.photo-credit { font-size: 12px; color: #9fb1a8; margin: 8px 0 0; }
.source-note { font-size: 14px; color: var(--muted); }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.pill-list li { background: #fff; border: 1px solid rgba(23, 32, 27, .1); border-radius: 999px; padding: 8px 12px; font-weight: 800; color: #34443b; }
.moon-orbit { width: 140px; height: 140px; border: 1px solid rgba(201, 145, 68, .35); border-radius: 50%; margin-bottom: 24px; position: relative; }
.moon-orbit span { position: absolute; right: 14px; top: 14px; width: 52px; height: 52px; border-radius: 50%; background: var(--gold); box-shadow: -14px 0 0 #fff7e8; }
.check-list { padding: 0; margin: 18px 0 0; list-style: none; }
.check-list li { padding-left: 28px; position: relative; margin: 10px 0; }
.check-list li:before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.compact li { font-size: 14px; }

.split { display: grid; grid-template-columns: .8fr 1.1fr; gap: 42px; align-items: start; }
.rich-text p, .rich-text li { color: #3d4c43; font-size: 18px; }
.rich-text h2 { font-family: Georgia, serif; color: var(--green); font-size: 34px; line-height: 1.05; margin-top: 34px; }
.cards { display: grid; gap: 20px; margin-top: 32px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card { padding: 26px; }
.card-icon { font-size: 30px; }
.link-card { text-decoration: none; transition: .2s transform, .2s box-shadow; }
.link-card:hover { transform: translateY(-4px); box-shadow: 0 30px 80px rgba(23, 32, 27, .18); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.feature-panel { padding: 42px; }
.feature-panel.dark { background: linear-gradient(135deg, #16382d, #10251f); color: #fff; }
.feature-panel.dark h2, .feature-panel.dark .eyebrow { color: #f5d28b; }
.feature-panel.dark p { color: #e5efe8; }
.feature-panel.light { background: #fffaf0; }
.text-link { font-weight: 900; color: var(--green); text-decoration: none; }
.dark .text-link { color: #fff; }
.section-head { text-align: center; max-width: 760px; }
.section-head h2 { font-size: 46px; }
.cta-band { background: var(--green); color: #fff; padding: 56px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.cta-grid h2 { font-family: Georgia, serif; font-size: 42px; line-height: 1.05; margin: 0; }
.cta-grid p { color: #e4eee7; font-size: 18px; }

.site-footer { background: #101a16; color: #e9f0ec; padding: 34px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 22px; }
.footer-grid a { display: inline-block; margin-left: 16px; color: #cfdad4; text-decoration: none; }
.page-hero { background: linear-gradient(135deg, #f9f2e6, #eadbc1); }
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }
.article-body { background: #fffaf1; border-radius: var(--radius); padding: 42px; border: 1px solid rgba(23, 32, 27, .08); }
.sidebar-card { position: sticky; top: 98px; padding: 28px; }
.itinerary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.itinerary article { background: #fffaf0; border-radius: var(--radius); padding: 30px; border: 1px solid rgba(23, 32, 27, .09); }
.itinerary span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 900; }
.itinerary h2 { font-family: Georgia, serif; color: var(--green); }
.resource-list { margin: 0; padding: 0; list-style: none; }
.resource-list li { background: #fff; border-radius: 18px; margin: 10px 0; padding: 16px 18px; font-weight: 800; }
.checklist-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.check-panel { padding: 28px; }
.check-panel.accent { background: var(--green); color: #fff; }
.check-panel.accent h2 { color: #f4cf82; }
.check-panel.accent p { color: #e2ece6; }
.table-wrap { overflow: auto; background: #fffaf0; border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { text-align: left; padding: 18px; border-bottom: 1px solid rgba(23, 32, 27, .1); }
th { background: var(--green); color: #fff; }
td { vertical-align: top; }

@media (max-width: 900px) {
  .hero-grid, .split, .feature-grid, .cta-grid, .article-layout, .checklist-grid { grid-template-columns: 1fr; }
  .cards.three, .cards.four, .itinerary, .strip-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; position: absolute; left: 18px; right: 18px; top: 76px; background: #fff; border-radius: 22px; padding: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .section-pad { padding: 64px 0; }
  .sidebar-card { position: static; }
  .footer-grid { display: block; }
  .footer-grid a { margin: 10px 16px 0 0; }
  .hero h1, .page-hero h1 { font-size: 42px; }
}

@media (max-width: 520px) {
  .container { width: min(var(--max), calc(100% - 26px)); }
  .hero-actions .btn { width: 100%; }
  .brand small { display: none; }
  .card, .feature-panel, .article-body, .sidebar-card, .check-panel, .media-card-body { padding: 22px; }
  .section-head h2, .cta-grid h2 { font-size: 34px; }
}
