/*
Theme Name:  Marburg Queensland
Theme URI:   https://marburg.qld.au
Author:      Marburg Tourism
Description: Heritage editorial theme for Marburg, Queensland tourism website. Features the Marburg Hotel, Scotland Yard Antiques, Woodlands of Marburg, and The Marburg Journal blog.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: marburg
Tags:        custom-menu, custom-logo, featured-images, threaded-comments, translation-ready
*/

/* ── CUSTOM PROPERTIES ── */
:root {
  --cream:      #f5f0e8;
  --parchment:  #ede5d0;
  --warm-white: #faf7f2;
  --ink:        #1c1410;
  --bark:       #3d2b1f;
  --rust:       #8b3a2a;
  --gold:       #b5862a;
  --amber:      #c8721a;
  --sage:       #6b7b5e;
  --deep-sage:  #4a5e44;
  --pewter:     #4a5260;
  --stone:      #9a8f82;
  --muted:      #6e5e52;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rust); }
a:hover { color: var(--gold); }

/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(28, 20, 16, 0.94);
  backdrop-filter: blur(8px);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid rgba(181, 134, 42, 0.3);
}

.site-branding a {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-decoration: none;
}

/* WordPress nav menu */
.main-navigation ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}

.main-navigation ul li a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--parchment);
  text-decoration: none;
  transition: color 0.25s;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current-page-ancestor > a {
  color: var(--gold);
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(181,134,42,0.4);
  color: var(--gold);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--rust);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 64px;
}

.breadcrumb a,
.breadcrumb span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--cream); }
.breadcrumb .sep { color: rgba(245, 240, 232, 0.3); }
.breadcrumb span:last-child { color: var(--cream); }

/* ── COMMON LAYOUT ── */
section { padding: 5.5rem 2rem; }

.container { max-width: 900px; margin: 0 auto; }
.container-wide { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.8rem;
  display: block;
}

h1, h2, h3, h4 { line-height: 1.2; }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--bark);
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 0.8rem;
}

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

.gold-rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.gold-rule.centered { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: transparent; color: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--parchment);
  border: 2px solid rgba(245, 240, 232, 0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ──────────────────────────────────────────
   FRONT PAGE / HOMEPAGE SECTIONS
────────────────────────────────────────── */

/* Hero */
.hero {
  min-height: 100vh;
  background: var(--bark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(139, 58, 42, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(61, 43, 31, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(107, 123, 94, 0.2) 0%, transparent 40%),
    linear-gradient(160deg, #1c1410 0%, #3d2b1f 45%, #2a1f15 100%);
}

.hero-rule {
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem auto;
  position: relative; z-index: 2;
  animation: fadeIn 1.4s ease both;
  animation-delay: 0.6s;
}

.hero-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  position: relative; z-index: 2;
  animation: fadeUp 1s ease both; animation-delay: 0.2s;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.05;
  position: relative; z-index: 2;
  animation: fadeUp 1s ease both; animation-delay: 0.4s;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-family: 'Lora', serif; font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--parchment);
  max-width: 580px; margin: 0 auto;
  position: relative; z-index: 2;
  animation: fadeUp 1s ease both; animation-delay: 0.8s;
  opacity: 0.85;
}

.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 2;
  animation: fadeUp 1s ease both; animation-delay: 1s;
  margin-top: 0.5rem;
}

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  animation: fadeIn 1s ease both; animation-delay: 1.4s;
}

.scroll-hint span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}

.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(181,134,42,0.6), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

/* Intro band */
.intro-band {
  background: var(--rust);
  padding: 1.4rem 2rem;
  text-align: center;
}
.intro-band p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream); opacity: 0.9;
}

/* Welcome section */
.welcome { background: var(--warm-white); }
.welcome-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.welcome-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
.stat-card {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.4rem;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--rust); line-height: 1;
}
.stat-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.3rem;
}
.welcome-img-frame {
  background: var(--parchment);
  border: 1px solid rgba(181,134,42,0.25);
  padding: 2rem; position: relative;
}
.welcome-img-frame::before {
  content: ''; position: absolute; inset: 8px;
  border: 1px solid rgba(181,134,42,0.15); pointer-events: none;
}
.welcome-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-style: italic;
  color: var(--bark); line-height: 1.6;
  text-align: center; padding: 1rem 0;
}
.welcome-quote cite {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem; font-style: normal; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-top: 1rem;
}

/* History section */
.history {
  background: var(--ink); color: var(--parchment);
  position: relative; overflow: hidden;
}
.history::before {
  content: 'HISTORY';
  position: absolute; top: 50%; left: -1rem;
  transform: translateY(-50%) rotate(-90deg);
  font-family: 'Playfair Display', serif;
  font-size: 10rem; font-weight: 900;
  color: rgba(255,255,255,0.025);
  pointer-events: none; line-height: 1; white-space: nowrap;
}
.history h2 { color: var(--cream); }
.history-timeline { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid; grid-template-columns: 110px 1px 1fr;
  gap: 0 2rem; padding-bottom: 2.5rem; position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold); text-align: right; padding-top: 0.1rem;
}
.timeline-line {
  background: rgba(181,134,42,0.25); position: relative; flex-shrink: 0;
}
.timeline-line::before {
  content: ''; position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 9px; height: 9px;
  border-radius: 50%; background: var(--gold); border: 2px solid var(--ink);
}
.timeline-content h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.timeline-content p {
  font-size: 0.95rem; color: rgba(237, 229, 208, 0.8); margin-bottom: 0;
}

/* Pub section */
.pub-section { background: var(--cream); }
.pub-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.pub-badge {
  display: inline-block; background: var(--rust); color: var(--cream);
  font-family: 'Josefin Sans', sans-serif; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 0.35rem 0.9rem; margin-bottom: 1rem;
}
.info-list { list-style: none; margin-top: 1.8rem; border-top: 1px solid rgba(61,43,31,0.15); }
.info-list li {
  display: flex; justify-content: space-between;
  padding: 0.8rem 0; border-bottom: 1px solid rgba(61,43,31,0.1); font-size: 0.9rem;
}
.info-list li span:first-child {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.info-list li span:last-child { color: var(--bark); font-weight: 500; text-align: right; }
.pub-pullquote {
  background: var(--bark); color: var(--cream);
  padding: 2.5rem; margin-top: 2rem; position: relative;
}
.pub-pullquote::before {
  content: '\201C'; font-family: 'Playfair Display', serif;
  font-size: 6rem; color: var(--gold); opacity: 0.25;
  position: absolute; top: -1rem; left: 1.5rem; line-height: 1;
}
.pub-pullquote p {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.1rem; line-height: 1.65; position: relative; z-index: 1;
}
.pub-pullquote cite {
  display: block; font-family: 'Josefin Sans', sans-serif;
  font-style: normal; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-top: 1rem;
}

/* Antiques section */
.antiques-section { background: var(--parchment); }
.antiques-intro { max-width: 700px; }
.antiques-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.shop-card {
  background: var(--warm-white); border-top: 4px solid var(--gold);
  padding: 2rem; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(28,20,16,0.12); }
.shop-card:nth-child(2) { border-top-color: var(--ink); }
.shop-card:nth-child(3) { border-top-color: var(--sage); }
.shop-icon { font-size: 2rem; margin-bottom: 1rem; }
.shop-card h3 { font-size: 1.2rem; }
.shop-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* Woodlands section */
.woodlands-section {
  background: var(--sage); color: var(--cream);
  position: relative; overflow: hidden;
}
.woodlands-section::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,0.04); pointer-events: none;
}
.woodlands-section h2 { color: var(--cream); }
.woodlands-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 5rem; align-items: center; }
.woodlands-detail-box {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 2rem; backdrop-filter: blur(4px);
}
.woodlands-detail-box p { font-size: 0.9rem; color: rgba(245,240,232,0.85); line-height: 1.7; }
.woodlands-detail-box h4 {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem;
}

/* Things to do */
.things-section { background: var(--warm-white); }
.things-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.thing-card {
  border: 1px solid rgba(61,43,31,0.12); padding: 2rem;
  background: var(--cream); position: relative; overflow: hidden;
  transition: border-color 0.25s;
}
.thing-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.thing-card:hover::before { transform: scaleX(1); }
.thing-card:hover { border-color: var(--gold); }
.thing-card .icon { font-size: 1.8rem; margin-bottom: 1rem; }
.thing-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.thing-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* Events */
.events-section { background: var(--bark); color: var(--parchment); }
.events-section h2 { color: var(--cream); }
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.event-card {
  border: 1px solid rgba(181,134,42,0.2); padding: 2rem;
  background: rgba(255,255,255,0.04);
  display: flex; gap: 1.5rem; align-items: flex-start;
  transition: border-color 0.25s, background 0.25s;
}
.event-card:hover { border-color: var(--gold); background: rgba(255,255,255,0.07); }
.event-month { text-align: center; flex-shrink: 0; width: 56px; }
.event-month .month {
  display: block; font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--gold); color: var(--ink); padding: 0.25rem 0;
}
.event-month .day {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1.2; margin-top: 0.2rem;
}
.event-info h3 { font-size: 1rem; color: var(--cream); margin-bottom: 0.4rem; }
.event-info p { font-size: 0.85rem; color: rgba(237,229,208,0.65); line-height: 1.55; }

/* Getting there */
.getting-there { background: var(--cream); }
.directions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.direction-card { background: var(--parchment); padding: 2rem; border-bottom: 3px solid var(--rust); }
.direction-card .from {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem;
}
.direction-card .distance {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  color: var(--rust); line-height: 1;
}
.direction-card .desc { font-size: 0.85rem; color: var(--muted); margin-top: 0.6rem; line-height: 1.5; }

/* Journal teaser on homepage */
.journal-teaser { background: var(--ink); padding: 5.5rem 2rem; }
.journal-teaser h2 { color: var(--cream); }
.journal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.journal-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(181,134,42,0.15);
  padding: 2rem; text-decoration: none; display: block;
  transition: border-color 0.25s, background 0.25s;
}
.journal-card:hover { border-color: var(--gold); background: rgba(255,255,255,0.09); }
.journal-card-cat {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.2rem 0.7rem; display: inline-block; margin-bottom: 1rem;
  background: var(--gold); color: var(--ink);
}
.journal-card-cat.cat-history { background: var(--rust); color: var(--cream); }
.journal-card-cat.cat-heritage { background: var(--deep-sage); color: var(--cream); }
.journal-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: var(--cream); line-height: 1.3; margin-bottom: 0.7rem;
}
.journal-card p { font-size: 0.85rem; color: rgba(237,229,208,0.55); line-height: 1.55; margin-bottom: 1rem; }
.journal-card .read-more-link {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
}
.journal-teaser-cta { text-align: center; margin-top: 2.5rem; }

/* ──────────────────────────────────────────
   BLOG — ARCHIVE (JOURNAL LISTING)
────────────────────────────────────────── */
.blog-hero {
  background: var(--ink);
  padding: 8rem 2rem 4rem;
  text-align: center; position: relative; overflow: hidden;
}
.blog-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(139,58,42,0.3) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 30%, rgba(61,43,31,0.5) 0%, transparent 50%),
              linear-gradient(160deg, #0e0a08 0%, #1c1410 100%);
}
.blog-hero-rule { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 1rem auto; position: relative; z-index: 2; }
.blog-hero-eyebrow { font-family: 'Josefin Sans', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); position: relative; z-index: 2; }
.blog-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; color: var(--cream); position: relative; z-index: 2; line-height: 1.1; }
.blog-hero h1 em { font-style: italic; color: var(--gold); }
.blog-hero-sub { font-family: 'Lora', serif; font-style: italic; font-size: 1.1rem; color: rgba(237,229,208,0.7); max-width: 520px; margin: 1rem auto 0; position: relative; z-index: 2; }

.blog-listing { padding: 5rem 2rem; background: var(--warm-white); }

.featured-article { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 4rem; background: var(--bark); overflow: hidden; }
.featured-visual { background: var(--rust); padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: flex-end; position: relative; min-height: 380px; }
.featured-visual::before { content: '✍'; font-size: 10rem; position: absolute; top: 1rem; right: 1rem; opacity: 0.07; line-height: 1; }
.featured-tag { font-family: 'Josefin Sans', sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; background: var(--gold); color: var(--ink); padding: 0.25rem 0.8rem; display: inline-block; margin-bottom: 1rem; width: fit-content; }
.featured-visual h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--cream); line-height: 1.2; }
.featured-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.featured-body p { color: rgba(237,229,208,0.75); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.featured-meta { font-family: 'Josefin Sans', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(181,134,42,0.7); margin-bottom: 1rem; }
.read-link { font-family: 'Josefin Sans', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); text-decoration: none; border: 1px solid rgba(181,134,42,0.4); padding: 0.65rem 1.4rem; display: inline-block; transition: all 0.25s; width: fit-content; }
.read-link:hover { background: var(--gold); color: var(--ink); }

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

.article-card { background: var(--cream); border: 1px solid rgba(61,43,31,0.1); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.article-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(28,20,16,0.1); }
.card-top { height: 180px; display: flex; align-items: flex-end; padding: 1.5rem; position: relative; overflow: hidden; }
.card-top::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,20,16,0.8) 0%, transparent 60%); }
.card-cat { position: relative; z-index: 1; font-family: 'Josefin Sans', sans-serif; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; background: var(--gold); color: var(--ink); padding: 0.2rem 0.7rem; }
.card-body { padding: 1.5rem; }
.card-meta { font-family: 'Josefin Sans', sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--bark); line-height: 1.3; margin-bottom: 0.7rem; }
.card-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.card-link { font-family: 'Josefin Sans', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rust); text-decoration: none; }
.card-link:hover { color: var(--gold); }
.theme-rust .card-top { background: var(--rust); }
.theme-bark .card-top { background: var(--bark); }
.theme-sage .card-top { background: var(--sage); }
.theme-ink .card-top { background: var(--ink); }
.theme-gold .card-top { background: #7a5a1a; }
.theme-deep-sage .card-top { background: var(--deep-sage); }
.card-top .card-emoji { font-size: 3rem; position: absolute; bottom: 1.5rem; right: 1.5rem; opacity: 0.25; }

/* Post navigation (older/newer) */
.posts-navigation { padding: 2rem; text-align: center; }
.posts-navigation .nav-links a {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rust); text-decoration: none;
  border: 1px solid rgba(139,58,42,0.3); padding: 0.6rem 1.4rem; margin: 0 0.4rem;
  display: inline-block; transition: all 0.25s;
}
.posts-navigation .nav-links a:hover { background: var(--rust); color: var(--cream); }

/* ──────────────────────────────────────────
   BLOG — SINGLE POST
────────────────────────────────────────── */
.post-hero {
  min-height: 58vh; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  text-align: center; padding: 8rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.post-hero-bg { position: absolute; inset: 0; }
.post-hero-eyebrow { font-family: 'Josefin Sans', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); position: relative; z-index: 2; }
.post-hero-rule { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0.9rem auto; position: relative; z-index: 2; }
.post-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900; color: var(--cream); line-height: 1.1; max-width: 780px; position: relative; z-index: 2; }
.post-hero-meta { font-family: 'Josefin Sans', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(237,229,208,0.5); position: relative; z-index: 2; margin-top: 0.6rem; }

.post-body { padding: 5rem 2rem; background: var(--warm-white); }
.post-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 300px; gap: 5rem; align-items: start; }

/* Article typography */
.article-content h2 { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--bark); margin: 2.5rem 0 1rem; line-height: 1.25; }
.article-content h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--bark); margin: 2rem 0 0.6rem; }
.article-content p { margin-bottom: 1.3rem; color: var(--ink); }
.article-content .lead, .entry-content .lead { font-size: 1.12rem; font-style: italic; color: var(--bark); border-left: 4px solid var(--gold); padding-left: 1.5rem; margin-bottom: 2rem; line-height: 1.65; }
.article-content blockquote, .entry-content blockquote { background: var(--parchment); border-left: 4px solid var(--rust); padding: 1.5rem 1.5rem 1.5rem 2rem; margin: 2rem 0; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; color: var(--bark); line-height: 1.6; }
.article-content blockquote cite, .entry-content blockquote cite { display: block; font-family: 'Josefin Sans', sans-serif; font-style: normal; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 0.8rem; }
.info-box { background: var(--ink); color: var(--parchment); padding: 2rem; margin: 2rem 0; }
.info-box h4 { font-family: 'Josefin Sans', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.info-box p { color: rgba(237,229,208,0.8); font-size: 0.9rem; margin-bottom: 0.8rem; }
.tip-box { background: var(--parchment); border-top: 3px solid var(--sage); padding: 1.5rem; margin: 2rem 0; }
.tip-box h4 { font-family: 'Josefin Sans', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.7rem; }
.tip-box p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0; }

/* Sidebar */
.sidebar { position: sticky; top: 84px; }
.sidebar-card { background: var(--parchment); padding: 2rem; margin-bottom: 1.5rem; border-left: 3px solid var(--gold); }
.sidebar-card:nth-child(2) { border-left-color: var(--rust); }
.sidebar-card:nth-child(3) { border-left-color: var(--sage); }
.sidebar-card h4 { font-family: 'Josefin Sans', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.sidebar-card a { display: block; font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--bark); text-decoration: none; margin-bottom: 0.6rem; line-height: 1.35; transition: color 0.2s; }
.sidebar-card a:hover { color: var(--rust); }
.sidebar-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.55; margin-bottom: 0; }

/* More articles */
.more-articles { padding: 5rem 2rem; background: var(--parchment); }
.more-articles .container { max-width: 1100px; margin: 0 auto; }
.more-articles h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--bark); margin-bottom: 0.5rem; }
.more-rule { width: 50px; height: 3px; background: var(--gold); margin-bottom: 2rem; }
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.more-card { background: var(--warm-white); padding: 1.5rem; text-decoration: none; display: block; border-top: 3px solid var(--gold); transition: transform 0.2s, box-shadow 0.2s; }
.more-card:nth-child(2) { border-top-color: var(--rust); }
.more-card:nth-child(3) { border-top-color: var(--bark); }
.more-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(28,20,16,0.1); }
.more-card .mc-cat { font-family: 'Josefin Sans', sans-serif; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.more-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--bark); line-height: 1.3; margin-bottom: 0.4rem; }
.more-card .mc-link { font-family: 'Josefin Sans', sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rust); }

/* ──────────────────────────────────────────
   STANDARD PAGE (page.php)
────────────────────────────────────────── */
.page-hero {
  min-height: 50vh; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  text-align: center; padding: 8rem 2rem 4rem;
  position: relative; overflow: hidden; background: var(--bark);
}
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(139,58,42,0.5) 0%, transparent 55%), linear-gradient(160deg, #0e0a08 0%, #2a1a10 60%, #1c1410 100%); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; color: var(--cream); line-height: 1.1; position: relative; z-index: 2; }
.page-hero-sub { font-family: 'Lora', serif; font-style: italic; font-size: 1.1rem; color: rgba(237,229,208,0.7); max-width: 540px; margin: 1rem auto 0; position: relative; z-index: 2; }

.page-content-area { padding: 5rem 2rem; background: var(--warm-white); }
.page-content-inner { max-width: 860px; margin: 0 auto; }
.entry-content h2 { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--bark); margin: 2.5rem 0 1rem; }
.entry-content h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--bark); margin: 2rem 0 0.6rem; }
.entry-content p { margin-bottom: 1.3rem; }
.entry-content ul, .entry-content ol { margin: 1rem 0 1.3rem 1.5rem; }
.entry-content li { margin-bottom: 0.4rem; }
.entry-content a { color: var(--rust); }
.entry-content a:hover { color: var(--gold); }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(237,229,208,0.55);
  text-align: center;
  padding: 3rem 2rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold); margin-bottom: 0.8rem;
}
.site-footer p { font-size: 0.82rem; line-height: 1.6; max-width: 480px; margin: 0 auto 0.5rem; }
.footer-nav ul { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 1.5rem; list-style: none; padding: 0; }
.footer-nav ul a { font-family: 'Josefin Sans', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(237,229,208,0.4); text-decoration: none; transition: color 0.2s; }
.footer-nav ul a:hover { color: var(--gold); }
.footer-divider { width: 40px; height: 1px; background: rgba(181,134,42,0.3); margin: 1.5rem auto; }
.footer-legal { font-size: 0.72rem !important; opacity: 0.4; }

/* ──────────────────────────────────────────
   404 PAGE
────────────────────────────────────────── */
.error-404 { text-align: center; padding: 8rem 2rem; background: var(--warm-white); min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.error-404 .error-num { font-family: 'Playfair Display', serif; font-size: 8rem; font-weight: 900; color: var(--gold); line-height: 1; opacity: 0.3; }
.error-404 h1 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--bark); margin-bottom: 1rem; }
.error-404 p { color: var(--muted); max-width: 460px; }

/* ──────────────────────────────────────────
   ANIMATIONS
────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollDrop {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50%       { transform: scaleY(1); transform-origin: top; }
}

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .main-navigation { display: none; width: 100%; }
  .main-navigation.toggled {
    display: block;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(28,20,16,0.98);
    padding: 1rem 2rem 1.5rem;
  }
  .main-navigation.toggled ul { flex-direction: column; gap: 0; }
  .main-navigation.toggled ul li a { display: block; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .welcome-grid, .pub-inner, .woodlands-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .antiques-grid, .events-grid, .directions-grid { grid-template-columns: 1fr; }
  .things-grid { grid-template-columns: 1fr; }
  .journal-cards, .articles-grid, .more-grid { grid-template-columns: 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 600px) {
  section { padding: 4rem 1.5rem; }
  .hero h1 { font-size: 3rem; }
}
