
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700;800&family=Source+Sans+3:ital,wght@0,400;0,600;1,400&display=swap');

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

:root {
  --forest: #0a1f0a;
  --navy:  #0a1f0a;
  --teal:  #007a33;
  --coral: #c1440e;
  --sand:  #fdf3e3;
  --sky:   #e8f5e9;
  --ink:   #1c2b38;
  --slate: #4a6274;
  --cream: #fffdf8;
  --mid:   #718799;
  --border:#c8ddc8;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
}

/* ── Header ── */
.site-header {
  background: var(--navy);
  padding: 0;
}
.header-band {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem 0.9rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.site-logo {
  font-family: 'Raleway', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.site-logo span { color: #4db86a; }
.site-strapline {
  font-size: 0.85rem;
  color: #7ab87a;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ── Navigation ── */
.main-nav {
  background: #0c2a0c;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.main-nav ul {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.main-nav li a {
  display: block;
  padding: 0.65rem 0.85rem;
  color: #8dc88d;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.15s, background 0.15s;
  border-bottom: 3px solid transparent;
}
.main-nav li a:hover,
.main-nav li a.active {
  color: #fff;
  border-bottom-color: #4db86a;
  background: rgba(255,255,255,0.04);
}

/* ── Hero ── */
.page-hero {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
}
.page-hero.has-image .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52);
}
.page-hero .hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 1.5rem 1.75rem;
  background: linear-gradient(to bottom, rgba(5,28,5,0.1) 0%, rgba(5,28,5,0.55) 55%, rgba(5,28,5,0.88) 100%);
}
.page-hero .hero-overlay h1 {
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  line-height: 1.1;
}
.page-hero.home-hero { height: 480px; }
.page-hero.home-hero .hero-overlay h1 { font-size: 3.8rem; }
.page-hero.home-hero .hero-sub {
  max-width: 1100px;
  margin: 0.5rem auto 0;
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  font-style: italic;
}
.page-hero.honest-hero {
  background: #1a0a04;
}
.page-hero.honest-hero .hero-overlay {
  background: linear-gradient(transparent, rgba(20,5,0,0.9));
}

/* ── Main content wrapper ── */
.page-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

/* ── Typography ── */
h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.8rem 0 0.9rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--teal);
  letter-spacing: -0.02em;
}
h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 0.4rem;
}
p { margin-bottom: 1.1rem; }
p.intro {
  font-size: 1.18rem;
  color: var(--ink);
  border-left: 4px solid var(--teal);
  padding-left: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.65;
  font-weight: 400;
}
a { color: var(--teal); text-decoration: none; border-bottom: 1px solid rgba(0,109,119,0.3); }
a:hover { color: var(--coral); border-bottom-color: var(--coral); }
ul, ol { margin: 0.6rem 0 1rem 1.5rem; }
li { margin-bottom: 0.3rem; }
strong { font-weight: 600; }
em { font-style: italic; }

/* ── Facts table ── */
.facts-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0 1.8rem;
  font-size: 0.95rem;
}
.facts-table th,
.facts-table td {
  padding: 0.55rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.facts-table th {
  width: 35%;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--sky);
}
.facts-table tr:last-child th,
.facts-table tr:last-child td { border-bottom: none; }

/* ── Quick nav grid (home page) ── */
.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.8rem 0 2.5rem;
}
.qn-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: var(--sky);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  border-bottom: none;
  border-left: 4px solid var(--teal);
  transition: background 0.15s, border-left-color 0.15s, box-shadow 0.15s;
}
.qn-card::after {
  content: "→";
  font-size: 1rem;
  color: var(--teal);
  opacity: 0.6;
  transition: transform 0.15s, opacity 0.15s;
}
.qn-card:hover {
  background: #d4edf4;
  border-left-color: var(--coral);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.qn-card:hover::after { transform: translateX(4px); opacity: 1; }
.qn-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ── Attraction cards ── */
.attraction-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 1.5rem 0 2rem;
}
.attr-card {
  background: var(--sand);
  border: 1px solid var(--border);
  border-left: 4px solid var(--coral);
  padding: 1.3rem 1.4rem;
  border-radius: 0 6px 6px 0;
  transition: box-shadow 0.15s, transform 0.15s;
}
.attr-card:hover { box-shadow: 0 3px 12px rgba(0,0,0,0.1); transform: translateY(-1px); }
.attr-card h3 { margin-top: 0; font-size: 1rem; }
.attr-card h3 a { border-bottom: none; font-weight: 700; color: var(--navy); }
.attr-card h3 a:hover { color: var(--coral); }
.attr-card p { margin-bottom: 0; font-size: 0.93rem; color: var(--slate); }

/* ── Places list ── */
.places-list { margin: 1rem 0 1.5rem; }
.place-item {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  transition: background 0.1s;
}
.place-item:hover { background: var(--sky); }
.place-item:last-child { border-bottom: none; }

/* ── Notice / closed banner ── */
.notice {
  background: #fff3cd;
  border: 1px solid #f0c040;
  border-left: 5px solid #d4900a;
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.2rem;
  margin: 0 0 2rem;
  font-size: 0.97rem;
  color: #6b4500;
}
.notice strong { color: #4a2f00; }

/* ── Honest guide special styling ── */
.honest-content {
  background: #fff8f6;
  border-left: 4px solid var(--coral);
}
.honest-content h2 { color: #8b1a00; border-bottom-color: var(--coral); }
.honest-content p.intro { border-left-color: var(--coral); }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: #7ab87a;
  font-size: 0.87rem;
  margin-top: 3rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9bc89b;
  margin-bottom: 0.9rem;
}
.footer-col p { color: #508050; line-height: 1.55; margin-bottom: 0.5rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a {
  color: #508050;
  text-decoration: none;
  border-bottom: none;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #3a6040;
}
.footer-bottom a { color: #3a6040; border-bottom: none; }
.footer-bottom a:hover { color: #9bc89b; }
.footer-current { color: var(--teal); font-weight: 600; cursor: default; }

/* ── Mobile nav toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  background: none; border: none; cursor: pointer; padding: 0;
  margin-left: auto;
}
.nav-toggle span {
  display: block; height: 2px; background: #fff; border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .page-hero { height: 240px; }
  .page-hero.home-hero { height: 300px; }
  .page-hero .hero-overlay h1 { font-size: 2rem; }
  .page-hero.home-hero .hero-overlay h1 { font-size: 2.4rem; }
  .quick-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .attraction-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .header-band { flex-direction: row; justify-content: space-between; align-items: center; }
  .facts-table th { width: 42%; }
  .nav-toggle { display: flex; }
  .main-nav { display: none; width: 100%; }
  .main-nav.nav-open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li a { display: block; padding: 0.75rem 1.2rem; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 480px) {
  .quick-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .page-wrap { padding: 2rem 1.1rem 4rem; }
}
