/*
Theme Name:  Shenandoah Fishing
Theme URI:   https://shenandoahfishing.com
Author:      Shenandoah Fishing
Author URI:  https://shenandoahfishing.com
Description: A custom WordPress theme for ShenandoahFishing.com — promoting fly fishing and angling in Virginia's Shenandoah Valley, with integration for Murray's Fly Shop.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shenandoah-fishing
Tags:        fishing, outdoors, custom-colors, custom-logo, featured-images, full-width-template, two-columns
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --river:   #2c5f6e;
  --deep:    #1a3540;
  --current: #3d8a9e;
  --foam:    #e8f4f7;
  --stone:   #7a8b7f;
  --moss:    #4a6741;
  --bark:    #5c3d1e;
  --gold:    #c9a84c;
  --cream:   #f5f0e8;
  --smoke:   #e2ddd4;
  --ink:     #1c1c18;
  --white:   #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Libre Baskerville', Georgia, serif;
  --font-ui:      'Raleway', Helvetica, sans-serif;

  --max-width: 1140px;
  --nav-height: 70px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--river); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--deep);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; color: var(--river); }
blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--river);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container       { max-width: var(--max-width); margin: 0 auto; padding: 0 30px; }
.container--wide { max-width: 1300px; margin: 0 auto; padding: 0 30px; }
.section-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-muted  { color: rgba(255,255,255,0.65); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .wp-block-button__link {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 36px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  line-height: 1;
}
.btn-primary, .wp-block-button.is-style-primary .wp-block-button__link {
  background: var(--gold);
  color: var(--deep);
}
.btn-primary:hover { background: #dbb95a; color: var(--deep); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.btn-dark {
  background: var(--deep);
  color: var(--white);
}
.btn-dark:hover { background: var(--river); color: #fff; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(26,53,64,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: height 0.3s;
}
#masthead.scrolled { height: 58px; }

.site-branding a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}
.site-branding a span {
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  font-style: italic;
}

/* Primary menu */
#primary-menu-wrap { display: flex; align-items: center; gap: 32px; }
#primary-menu { display: flex; gap: 28px; }
#primary-menu > li > a {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
/* Dropdown */
#primary-menu .sub-menu {
  position: absolute;
  top: calc(var(--nav-height) - 4px);
  background: var(--deep);
  min-width: 200px;
  padding: 8px 0;
  border-top: 2px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
}
#primary-menu li { position: relative; }
#primary-menu li:hover > .sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#primary-menu .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
  transition: color 0.2s, background 0.2s;
}
#primary-menu .sub-menu a:hover { color: #fff; background: rgba(255,255,255,0.08); }

.nav-shop-cta {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--deep) !important;
  padding: 10px 22px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-shop-cta:hover { background: #dbb95a; color: var(--deep) !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
@media (max-width: 900px) {
  #masthead { padding: 0 20px; }
  .menu-toggle { display: flex; }
  #primary-menu-wrap {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 0;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
  }
  #primary-menu-wrap.open { transform: translateY(0); }
  #primary-menu { flex-direction: column; width: 100%; gap: 0; }
  #primary-menu > li > a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: block; }
  #primary-menu .sub-menu { position: static; opacity: 1; pointer-events: all; transform: none; padding-left: 16px; }
  .nav-shop-cta { margin-top: 20px; display: block; text-align: center; }
}

/* ============================================================
   MAIN CONTENT OFFSET
   ============================================================ */
#page { padding-top: var(--nav-height); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep);
  margin-top: calc(-1 * var(--nav-height));
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,53,64,0.15) 0%, rgba(26,53,64,0.65) 65%, rgba(26,53,64,0.95) 100%);
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 60px 20px;
  max-width: 860px;
  margin: 0 auto;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title em { display: block; color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--deep);
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.stat-item { text-align: center; }
.stat-item .stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-item .stat-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
}
.stat-divider { width: 1px; height: 38px; background: rgba(255,255,255,0.12); }
@media (max-width: 700px) {
  .stats-strip { gap: 28px; }
  .stat-divider { display: none; }
}

/* ============================================================
   ABOUT / INTRO SECTION
   ============================================================ */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-image-col {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.about-image-col img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-image-col::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--cream) 100%);
}
.about-text-col {
  padding: 80px 60px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.about-text-col .section-label { margin-bottom: 10px; }
.about-text-col h2 { margin-bottom: 20px; }
.about-text-col p { color: #3a3a35; font-size: 0.95rem; margin-bottom: 14px; }
.about-text-col .btn { margin-top: 24px; }

@media (max-width: 860px) {
  .about-section { grid-template-columns: 1fr; }
  .about-image-col { min-height: 300px; }
  .about-image-col::after { background: linear-gradient(to bottom, transparent 60%, var(--cream) 100%); }
  .about-text-col { padding: 48px 28px; }
}

/* ============================================================
   SPECIES SECTION
   ============================================================ */
.species-section {
  background: var(--deep);
  padding: 100px 0;
}
.species-section .section-header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 30px;
}
.species-section .section-header .section-label { color: var(--gold); }
.species-section .section-header h2 { color: #fff; }

.species-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
}
.species-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.species-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.65);
}
.species-card:hover img { transform: scale(1.06); filter: saturate(1); }
.species-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,53,64,0.92) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s;
}
.species-card:hover .species-overlay {
  background: linear-gradient(to top, rgba(26,53,64,0.98) 0%, rgba(26,53,64,0.25) 60%);
}
.species-overlay h3 { color: #fff; font-size: 1.45rem; margin-bottom: 4px; }
.species-overlay .species-tag {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.species-overlay .species-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.species-card:hover .species-desc { max-height: 100px; }

@media (max-width: 700px) {
  .species-grid { grid-template-columns: 1fr; }
  .species-card { aspect-ratio: 4/3; }
}

/* ============================================================
   RIVERS SECTION
   ============================================================ */
.rivers-section { padding: 100px 0; background: var(--cream); }
.rivers-section .container { margin-bottom: 56px; }
.rivers-section .section-header p { color: #3a3a35; font-size: 0.95rem; margin-top: 16px; max-width: 580px; }

.rivers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
}
.river-card {
  display: flex;
  background: var(--smoke);
  transition: box-shadow 0.3s;
}
.river-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,0.1); }
.river-accent {
  width: 5px;
  background: var(--river);
  flex-shrink: 0;
  transition: background 0.3s;
}
.river-card:hover .river-accent { background: var(--gold); }
.river-body { padding: 34px 32px; }
.river-body h3 { color: var(--deep); margin-bottom: 6px; font-size: 1.3rem; }
.river-tag {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}
.river-body p { font-size: 0.9rem; color: #4a4a42; line-height: 1.75; }

@media (max-width: 700px) {
  .rivers-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SHOP / MURRAY'S CTA SECTION
   ============================================================ */
.shop-cta-section {
  position: relative;
  overflow: hidden;
  background: var(--moss);
  padding: 100px 30px;
  text-align: center;
}
.shop-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.shop-cta-section::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.shop-cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.shop-cta-section .section-label { color: rgba(255,255,255,0.55); }
.shop-cta-section h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 18px;
}
.shop-cta-section h2 em { color: var(--gold); }
.shop-cta-section p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 36px; }

.shop-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.shop-badge {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 8px 16px;
}

/* ============================================================
   SEASONS SECTION
   ============================================================ */
.seasons-section { padding: 100px 0; background: var(--smoke); }
.seasons-section .section-header { text-align: center; margin-bottom: 56px; padding: 0 30px; }

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
  gap: 0;
}
.season-col {
  padding: 40px 28px;
  border-right: 1px solid rgba(0,0,0,0.07);
  transition: background 0.3s;
}
.season-col:last-child { border-right: none; }
.season-col:hover { background: rgba(44,95,110,0.07); }
.season-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.season-col h3 { font-size: 1.2rem; color: var(--deep); margin-bottom: 10px; }
.season-col > p { font-size: 0.88rem; color: #4a4a42; line-height: 1.75; margin-bottom: 18px; }
.season-list { list-style: none; }
.season-list li {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--river);
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.season-list li::before { content: '→ '; color: var(--gold); }

@media (max-width: 860px) { .seasons-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .seasons-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG / REPORTS SECTION
   ============================================================ */
.blog-section { padding: 100px 0; background: var(--cream); }
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}
.blog-header .view-all {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--river);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}
.post-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0,0,0,0.12); }
.post-thumbnail {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.post-thumbnail img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.post-card:hover .post-thumbnail img { transform: scale(1.05); }
.post-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-category {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--river);
  margin-bottom: 10px;
}
.post-content h3 {
  font-size: 1.1rem;
  color: var(--deep);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-grid .post-card:first-child .post-content h3 { font-size: 1.55rem; }
.post-content p { font-size: 0.88rem; color: #5a5a52; flex: 1; line-height: 1.7; }
.post-meta {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--smoke);
}

@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background: var(--gold);
  padding: 60px 30px;
  text-align: center;
}
.newsletter-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--deep);
  margin-bottom: 10px;
}
.newsletter-section p { color: rgba(28,28,24,0.7); margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: none;
  background: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
}
.newsletter-form button {
  padding: 14px 26px;
  background: var(--deep);
  color: #fff;
  border: none;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--river); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar .widget {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--smoke);
}
.sidebar .widget:last-child { border-bottom: none; }
.sidebar .widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.widget-murrays {
  background: var(--deep);
  padding: 24px;
  text-align: center;
}
.widget-murrays p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-bottom: 16px; }
.widget-murrays .widget-title { color: var(--gold); border-color: var(--river); }

/* ============================================================
   SINGLE POST / PAGES
   ============================================================ */
.content-area { padding: 60px 0 80px; }
.entry-header { margin-bottom: 36px; }
.entry-header .entry-title { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.entry-header .entry-meta {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 12px;
}
.entry-content { font-size: 1rem; line-height: 1.85; color: #3a3a35; }
.entry-content h2,
.entry-content h3,
.entry-content h4 { margin: 36px 0 14px; }
.entry-content p { margin-bottom: 1.4rem; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 1.4rem; }
.entry-content ul li { list-style: disc; margin-bottom: 6px; }
.entry-content a { color: var(--river); border-bottom: 1px solid rgba(44,95,110,0.3); }
.entry-content a:hover { color: var(--gold); border-color: var(--gold); }
.entry-thumbnail { margin-bottom: 36px; border-radius: 0; overflow: hidden; }
.entry-thumbnail img { width: 100%; }

/* with-sidebar layout */
.with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 860px) { .with-sidebar { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
  background: #111510;
  padding: 70px 40px 28px;
}
.footer-widgets {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  max-width: var(--max-width);
  margin: 0 auto 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.footer-brand-logo span { color: rgba(255,255,255,0.6); font-style: italic; font-weight: 400; }
.footer-widget p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.42); margin-bottom: 18px; }
.footer-partner {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  display: block;
  margin-bottom: 4px;
}
.footer-partner a { color: var(--gold); }
.footer-widget-title {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-nav-list li { margin-bottom: 9px; }
.footer-nav-list a { font-size: 0.88rem; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer-nav-list a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.22);
}
.footer-bottom a { color: rgba(255,255,255,0.38); }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 860px) {
  .footer-widgets { grid-template-columns: 1fr 1fr; gap: 36px; }
  #colophon { padding: 50px 24px 24px; }
}
@media (max-width: 520px) {
  .footer-widgets { grid-template-columns: 1fr; }
}

/* ============================================================
   ARCHIVE / BLOG INDEX
   ============================================================ */
.archive-header { margin-bottom: 50px; }
.archive-header h1 { font-size: clamp(2rem, 4vw, 3rem); }
.posts-loop {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 700px) { .posts-loop { grid-template-columns: 1fr; } }

.page-numbers {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 56px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
}
.page-numbers a, .page-numbers span {
  padding: 10px 16px;
  border: 1px solid var(--smoke);
  color: var(--river);
  transition: all 0.2s;
}
.page-numbers .current,
.page-numbers a:hover { background: var(--river); color: #fff; border-color: var(--river); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   WORDPRESS STANDARD CLASSES
   ============================================================ */
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 24px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--stone); text-align: center; margin-top: 6px; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
