/* ============================================================
   DAAJING GIIDS VISITOR CENTRE — MAIN STYLESHEET
   ============================================================ */


/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── Design Tokens ── */
:root {
  /* Brand colours */
  --teal:        #2c3a2e;
  --teal-dark:   #1e2a20;
  --teal-light:  #3d5040;
  --teal-pale:   #eaede8;
  --blue-accent: #4a90a4;
  --gold:        #c8a96e;
  --cream:       #f9f7f3;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #4a4a4a;
  --text-light:  #777777;
  --border:      rgba(42,122,110,0.15);

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', sans-serif;

  /* Spacing */
  --section-pad: 5rem 0;
  --container:   1140px;
  --radius:      4px;

  /* Transitions */
  --ease: 0.3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: 0.08em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: 0.04em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; font-weight: 500; }

p { margin-bottom: 1.2rem; line-height: 1.8; }
p:last-child { margin-bottom: 0; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  transition: all var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-dark:hover {
  background: var(--teal);
  color: var(--white);
}

/* ── Section Titles ── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-header h2 { color: var(--text-dark); }
.section-header .rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1rem auto 0;
}

/* ── Header / Nav ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--ease), box-shadow var(--ease);
}

#site-header.scrolled {
  background: var(--teal-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: var(--container);
  margin: 0 auto;
}

.site-logo img {
  height: 52px;
  width: auto;
}

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 0; }

.primary-nav > li { position: relative; }

.primary-nav > li > a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--ease);
}
.primary-nav > li > a:hover { color: var(--gold); }

/* Dropdown */
.primary-nav .has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.6rem;
  opacity: 0.7;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--teal-dark);
  border-top: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 100;
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all var(--ease);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
  padding-left: 1.6rem;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  transition: all var(--ease);
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(29,90,80,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 2rem;
}

.hero-content h1 {
  color: white;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

.hero-content .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em;
  margin-top: 1rem;
  animation: fadeUp 1.2s ease 0.3s forwards;
  opacity: 0;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  animation: fadeUp 1.2s ease 0.5s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  animation: fadeUp 1.2s ease 0.7s forwards;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  animation: bounce 2s ease infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  margin: 8px auto 0;
}

/* ── Intro strip ── */
.intro-strip {
  background: var(--teal);
  color: white;
  padding: 1.5rem 0;
  text-align: center;
}
.intro-strip p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.9;
}

/* ── About section ── */
.section-about {
  padding: var(--section-pad);
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 16px 16px 0 var(--teal-pale);
}

.about-text .eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--text-mid); }

/* ── Hours card ── */
.hours-card {
  background: var(--teal);
  color: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-top: 2rem;
}
.hours-card h4 {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hours-list { font-size: 0.9rem; line-height: 2; }
.hours-list .season { font-weight: 500; color: var(--gold); margin-top: 0.5rem; display: block; }

/* ── Hours card: current month + full year toggle ── */
.hours-current { margin-top: 1rem; }
.hours-month-label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.hours-row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; line-height: 1.8; }
.hours-row span:last-child { color: rgba(255,255,255,0.75); }
.hours-note { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.5rem; font-style: italic; }
.hours-closed { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.hours-closed a { color: var(--gold); text-decoration: underline; }

.hours-full-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  background: none;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  transition: opacity var(--ease);
}
.hours-full-toggle:hover { opacity: 0.75; }
.hours-full-toggle svg { transition: transform var(--ease); flex-shrink: 0; }
.hours-full-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.hours-full { max-height: 0; overflow: hidden; transition: max-height var(--ease); }
.hours-full.open { max-height: 1400px; }
.hours-full-month { padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; }
.hours-full-month:last-child { border-bottom: none; }
.hours-full-month-name { font-weight: 500; color: white; margin-bottom: 0.25rem; }
.hours-full-month.is-current .hours-full-month-name { color: var(--gold); }
.hours-full-month.is-current .hours-full-month-name::after { content: " \2022"; color: var(--gold); }
.hours-full-row { display: flex; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.hours-full-closed { color: rgba(255,255,255,0.6); }
.hours-full-note { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-style: italic; margin-top: 0.15rem; }
/* ── Quick links / cards ── */
.section-quicklinks {
  padding: var(--section-pad);
  background: var(--cream);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-image img { transform: scale(1.05); }

.card-body {
  padding: 1.5rem;
}
.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--teal-dark);
}
.card-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.card-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 1px;
}
.card-link:hover { color: var(--teal-dark); border-color: var(--teal-dark); }

/* ── Photo gallery strip ── */
.section-gallery {
  padding: 4rem 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
}
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }

.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: white;
  font-size: 0.72rem;
  padding: 1rem 0.75rem 0.5rem;
  opacity: 0;
  transition: opacity var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ── Partners / pledge ── */
.section-partners {
  padding: var(--section-pad);
  background: var(--teal-pale);
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.partner-block {
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.partner-block img { max-height: 80px; margin: 0 auto 1.5rem; }
.partner-block h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.partner-block p { font-size: 0.88rem; color: var(--text-mid); }

/* ── Footer ── */
#site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { height: 48px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.85rem; opacity: 0.75; max-width: 260px; }

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--ease);
}
.footer-col ul li a:hover { color: white; }

.footer-contact p {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 0.4rem;
}
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: white; }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .wide { grid-column: span 1; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--teal-dark); padding: 6rem 2rem 2rem; gap: 0; overflow-y: auto; z-index: 999; }
  .primary-nav.open { display: flex; }
  .primary-nav > li > a { font-size: 1.1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); letter-spacing: 0.05em; }
  .dropdown { display: block; position: static; box-shadow: none; border: none; background: transparent; padding-left: 1rem; }
  .dropdown li a { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
  .has-dropdown > a::after { content: ' ▾'; }
  .nav-toggle { display: flex; z-index: 1001; position: relative; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .partners-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}

/* ── Hide page title on front page (WordPress adds it automatically) ── */
.home .page-content > div:first-child h1,
.home .entry-title,
.page-template-default .entry-title {
  display: none;
}

/* ── Prose styles for page content ── */
.prose h2 { margin-bottom: 1rem; margin-top: 2rem; }
.prose h3 { margin-bottom: 0.75rem; margin-top: 1.5rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.2rem; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--teal); border-bottom: 1px solid var(--border); }
.prose a:hover { color: var(--teal-dark); }

/* ── Events Page ── */
.events-intro { padding: 4rem 0 1rem; }
.events-intro .prose { max-width: 800px; }

.events-section { padding: 2.5rem 0; }
.events-section + .events-section { border-top: 1px solid var(--border); }
.events-section h2 { margin-bottom: 2rem; }

/* Upcoming Events timeline */
.events-timeline { max-width: 860px; }

.event-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.75rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
}
.event-row:first-child { border-top: none; padding-top: 0; }

.event-date { text-align: center; }
.event-date .month {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
}
.event-date .day {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1.1;
  color: var(--text-dark);
}
.event-date .year {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-light);
}

.event-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  color: white;
}
.event-badge--default { background: var(--gold); }
.event-badge--muted { background: var(--text-light); }
.event-badge--highlight { background: var(--teal); }

.event-body h3 { margin-bottom: 0.35rem; }
.event-location {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 0.25rem;
}
.event-description {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 0;
}
.event-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal);
  margin-top: 0.5rem;
}
.event-link:hover { color: var(--teal-dark); }

/* Recurring Events */
.recurring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.recurring-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.recurring-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.recurring-card .event-description { font-size: 0.88rem; margin-bottom: 0; }

.events-empty {
  padding: 1.5rem 0;
  color: var(--text-light);
  font-style: italic;
  font-size: 0.92rem;
}

@media (max-width: 600px) {
  .event-row { grid-template-columns: 64px 1fr; gap: 1rem; }
  .event-date .day { font-size: 1.6rem; }
}

/* ── About: full-width fallback when no image ── */
.about-text--full {
  grid-column: 1 / -1;
  max-width: 680px;
}

/* ── Homepage Hero ── */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.home-hero:hover .home-hero__bg { transform: scale(1); }

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(29,90,80,0.6) 100%
  );
}

.home-hero__content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 2rem;
}

.home-hero__title {
  color: white;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

.home-hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em;
  margin-top: 1rem;
  animation: fadeUp 1.2s ease 0.3s forwards;
  opacity: 0;
}

.home-hero__rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  animation: fadeUp 1.2s ease 0.5s forwards;
  opacity: 0;
}

.home-hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  animation: fadeUp 1.2s ease 0.7s forwards;
  opacity: 0;
}

.home-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  animation: bounce 2s ease infinite;
}
.home-hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  margin: 0.5rem auto 0;
}

/* ── Homepage Ticker ── */
.home-ticker {
  background: var(--teal);
  padding: 1rem 0;
  text-align: center;
}
.home-ticker__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.home-ticker__item {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}
.home-ticker__item:hover { color: var(--gold); }
.home-ticker__dot { color: var(--gold); opacity: 0.7; }

/* ── Discover hub ── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.hub-card {
  display: block;
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform var(--ease), box-shadow var(--ease);
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.hub-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.hub-card__title {
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.hub-card__desc {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.hub-card__link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
}
.hub-card:hover .hub-card__link { color: var(--teal-dark); }

/* ── Visit Us CTA ── */
.home-visit {
  background: var(--teal-pale);
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}

.home-visit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.home-visit__text .eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.home-visit__text h2 { margin-bottom: 1.25rem; }
.home-visit__text p  { color: var(--text-mid); margin-bottom: 2rem; }

.home-visit__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.home-visit__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.home-visit__detail svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 0.15rem;
}

.home-visit__detail strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.2rem;
}

.home-visit__detail span {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.home-visit__detail a { color: var(--teal); }
.home-visit__detail a:hover { color: var(--teal-dark); }

@media (max-width: 768px) {
  .home-visit__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── Discover More landing page ── */
.discover-header {
  background: var(--teal-dark);
  background-size: cover;
  background-position: center;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.discover-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,42,32,0.55) 0%, rgba(30,42,32,0.8) 100%);
  z-index: 0;
}

.discover-header .container {
  position: relative;
  z-index: 1;
}

.discover-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold) 0%, transparent 60%);
  z-index: 2;
}

.discover-header__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.discover-header__title {
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

.discover-header__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0 1.5rem;
}

.discover-header__intro {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
  margin: 0;
}

.discover-cards {
  padding: var(--section-pad);
  background: var(--white);
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.discover-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.discover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  border-color: transparent;
}

.discover-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.discover-card__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.discover-card__title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--teal-dark);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.discover-card__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 1.75rem;
}

.discover-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: auto;
  transition: gap 0.2s ease, color 0.2s ease;
}

.discover-card:hover .discover-card__link {
  gap: 0.75rem;
  color: var(--gold);
}

.discover-cta {
  background: var(--teal-pale);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
}

.discover-cta p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

@media (max-width: 860px) {
  .discover-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .discover-card { padding: 2rem 1.5rem; }
}

@media (max-width: 520px) {
  .discover-header { padding: 4.5rem 0 3rem; }
}

/* ============================================================
   MORE TRAIL RESOURCES — page-more-trail-resources.php
   ============================================================ */

.trail-res-header {
  background: var(--teal-dark);
  padding: 6rem 0 3.5rem;
  color: var(--white);
}

.trail-res-header .breadcrumb { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
.trail-res-header .breadcrumb a { color: rgba(255,255,255,0.6); }
.trail-res-header .breadcrumb a:hover { color: var(--gold); }
.trail-res-header .breadcrumb span { color: rgba(255,255,255,0.6); }

.trail-res-header__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.trail-res-header__title {
  color: var(--white);
  font-weight: 300;
  margin: 0 0 1.25rem;
}

.trail-res-header__rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}

.trail-res-header__intro {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0;
  line-height: 1.7;
}

.trail-res-body {
  padding: 4.5rem 0 5rem;
  background: var(--white);
}

.trail-res-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trail-res-card {
  display: flex;
  gap: 2.5rem;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: box-shadow 0.2s ease;
}

.trail-res-card:hover {
  box-shadow: 0 4px 20px rgba(44,58,46,0.1);
}

.trail-res-card__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
  padding-top: 0.25rem;
}

.trail-res-card__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.trail-res-card__title {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal-dark);
  margin: 0 0 0.75rem;
}

.trail-res-card__body > p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.trail-res-card__body .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trail-res-cta {
  background: var(--teal-dark);
  padding: 4.5rem 0;
  text-align: center;
  border-top: 2px solid var(--gold);
}

.trail-res-cta .eyebrow { color: var(--gold); }
.trail-res-cta h2 { color: var(--white); font-weight: 300; margin-bottom: 0.75rem; }
.trail-res-cta > .container > p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 2rem; line-height: 1.65; }

.trail-res-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .trail-res-card { flex-direction: column; gap: 1rem; padding: 1.75rem 1.25rem; }
  .trail-res-card__num { font-size: 2rem; }
}

/* ============================================================
   THANKS — page-thanks.php
   ============================================================ */

.thanks-page {
  background: var(--teal-pale);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thanks-body {
  width: 100%;
  padding: 6rem 0;
}

.thanks-inner {
  max-width: 560px;
  text-align: center;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  color: var(--white);
}

.thanks-inner h1 {
  font-weight: 300;
  color: var(--teal-dark);
  margin-bottom: 1rem;
}

.thanks-body__msg {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.thanks-body__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   PRINTABLE LISTS — page-printable-lists.php
   ============================================================ */

.print-lists-header {
  background: var(--teal-dark);
  padding: 6rem 0 3.5rem;
  color: var(--white);
}

.print-lists-header__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.print-lists-header__title {
  color: var(--white);
  font-weight: 300;
  margin: 0 0 1.25rem;
}

.print-lists-header__rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}

.print-lists-header__intro {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 540px;
  margin: 0;
  line-height: 1.7;
}

.print-lists-header__intro a { color: var(--gold); }
.print-lists-header__intro a:hover { text-decoration: underline; }

.print-lists-body {
  padding: 4rem 0 2rem;
  background: var(--white);
}

.print-list-card {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  max-width: 640px;
}

.print-list-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 0.93rem;
}

.print-list-table thead tr {
  background: var(--teal);
}

.print-list-table thead th {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  text-align: left;
}

.print-list-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.print-list-table tbody tr:last-child {
  border-bottom: none;
}

.print-list-table tbody tr:nth-child(even) {
  background: var(--teal-pale);
}

.print-list-table td {
  padding: 0.75rem 1.25rem;
  color: var(--text-dark);
}

.print-list-table td a {
  color: var(--teal);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.print-list-table td a:hover { color: var(--gold); }

.print-lists-actions {
  padding: 2rem 0 5rem;
  background: var(--white);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.print-lists-actions .container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.print-lists-actions button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

@media print {
  .site-header,
  .site-footer,
  .print-lists-header,
  .print-lists-actions { display: none !important; }
  .print-lists-body { padding: 1rem 0; }
  .print-list-table thead tr { background: #2c3a2e !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .print-list-table thead th { color: #fff !important; }
  .print-list-table td a { color: #000; text-decoration: none; }
}

/* ============================================================
   SITE MAP — page-site-map.php
   ============================================================ */

.sitemap-header {
  background: var(--teal-dark);
  padding: 6rem 0 3.5rem;
  color: var(--white);
}

.sitemap-header__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.sitemap-header__title {
  color: var(--white);
  font-weight: 300;
  margin: 0 0 1.25rem;
}

.sitemap-header__rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}

.sitemap-header__intro {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin: 0;
}

.sitemap-body {
  padding: 4.5rem 0 5rem;
  background: var(--white);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.sitemap-section {
  margin-bottom: 2.5rem;
}

.sitemap-section__title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-list li {
  border-bottom: 1px solid var(--border);
}

.sitemap-list li:last-child {
  border-bottom: none;
}

.sitemap-list a {
  display: block;
  padding: 0.55rem 0;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.sitemap-list a:hover {
  color: var(--teal);
  padding-left: 0.4rem;
}

.sitemap-list--nested {
  padding-left: 1.25rem;
  border-left: 2px solid var(--border);
  margin: 0 0 0.25rem 0.5rem;
}

.sitemap-list--nested li:last-child {
  border-bottom: none;
}

@media (max-width: 640px) {
  .sitemap-grid { grid-template-columns: 1fr; gap: 0; }
}