/* ============================================
   SUA Sub-Urban Anglers — Main Stylesheet
   Brand: Sunset Orange #FF6B33 | Golden Yellow #FFB547
   Deep Rust #CC5500 | Cream #FFF2E0 | Olive Green #5A633E
   Water Blue #346EA5 | Reed Green #6ABD4C | Tackle Silver #80B3C2
   Fonts: Oswald (headings), Open Sans (body), Playfair Display (accents)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:ital,wght@0,400;0,600;1,400&family=Playfair+Display:ital@0;1&display=swap');

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

:root {
  --orange:  #FF6B33;
  --yellow:  #FFB547;
  --rust:    #CC5500;
  --cream:   #FFF2E0;
  --olive:   #5A633E;
  --blue:    #346EA5;
  --green:   #6ABD4C;
  --silver:  #80B3C2;
  --dark:    #1C1C1C;
  --text:    #333333;
  --light:   #F5EDD8;
  --white:   #FFFFFF;
  --shadow:  0 4px 20px rgba(0,0,0,0.12);
  --radius:  8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rust); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.accent-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--rust);
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; position: relative; z-index: 1; }
.section-sm { padding: 3rem 0; position: relative; z-index: 1; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-3-centered { justify-items: center; }
.grid-3-centered > * { width: 100%; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--rust);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,51,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--olive);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

/* ── Section Headers ── */
.section-header { margin-bottom: 3rem; }
.section-header.text-center { text-align: center; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { color: #666; max-width: 600px; }
.section-header.text-center p { margin: 0 auto; }

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 2px;
  margin: 1rem 0;
}
.text-center .divider { margin: 1rem auto; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 70px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--orange);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}
.logo-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.7rem;
  color: var(--yellow);
  letter-spacing: 1px;
}

/* Nav */
#main-nav { display: flex; align-items: center; gap: 0.25rem; }

.nav-item { position: relative; }

.nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #CCC;
  border-radius: 5px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--orange);
  background: rgba(255,107,51,0.1);
}
.nav-link .arrow {
  font-size: 0.65rem;
  margin-left: 4px;
  transition: transform var(--transition);
  display: inline-block;
}
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--dark);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.65rem 1.2rem;
  color: #BBB;
  font-size: 0.9rem;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover {
  color: var(--orange);
  background: rgba(255,107,51,0.08);
  padding-left: 1.6rem;
}

/* CTA in nav */
.nav-cta {
  margin-left: 0.5rem;
  background: var(--orange);
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 0.5rem 1.2rem !important;
}
.nav-cta:hover {
  background: var(--rust) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero .container { margin-left: 0; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 2rem 1.5rem;
}
.hero-content .section-label {
  color: var(--yellow);
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  -webkit-text-stroke: 1px #000;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8), -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.hero-content p {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 560px;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-sm {
  min-height: 40vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
}
.hero-sm .hero-bg { opacity: 0.3; }
.hero-sm-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.hero-sm-content h1 { color: var(--white); margin-bottom: 0.5rem; }
.hero-sm-content p  { color: rgba(255,255,255,0.7); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-img-tall { height: 280px; }
.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: 0.5rem; }
.card-body p  { color: #666; font-size: 0.95rem; margin-bottom: 1rem; }

.card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.tag-technique { background: rgba(255,107,51,0.15); color: var(--rust); }
.tag-gear      { background: rgba(52,110,165,0.15); color: var(--blue); }
.tag-species   { background: rgba(90,99,62,0.15);   color: var(--olive); }
.tag-recipe    { background: rgba(255,181,71,0.15);  color: #A07000; }
.tag-spot      { background: rgba(106,189,76,0.15);  color: #3A8020; }
.tag-tips      { background: rgba(128,179,194,0.15); color: #2A6070; }

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.75rem;
}
.card-meta span { display: flex; align-items: center; gap: 0.25rem; }

/* Read more link */
.read-more {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.read-more::after { content: '→'; transition: transform var(--transition); }
.read-more:hover::after { transform: translateX(4px); }

/* ============================================
   HOMEPAGE SPECIFIC
   ============================================ */

/* Fishing Forecast Bar */
.forecast-bar {
  position: relative;
  z-index: 1;
  background: var(--olive);
  padding: 1rem 0;
}
.forecast-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.forecast-label {
  font-family: 'Oswald', sans-serif;
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.forecast-items { display: flex; gap: 2rem; flex-wrap: wrap; }
.forecast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
}
.forecast-item .fi-icon { font-size: 1.5rem; }
.forecast-item .fi-label { font-size: 0.7rem; color: rgba(255,255,255,0.6); }
.forecast-item .fi-value { font-family: 'Oswald', sans-serif; font-size: 0.95rem; }

/* Stats Strip */
.stats-strip { background: var(--orange); position: relative; z-index: 1; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

/* Featured Articles */
.featured-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.featured-main { grid-row: 1 / 3; }
.featured-main .card-img { height: 100%; min-height: 400px; }

/* CTA Band */
.cta-band {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--dark) 0%, var(--olive) 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2rem; }
.cta-band .btn-primary { margin-right: 1rem; }

/* Species Scroll */
.species-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.species-chip {
  flex: 0 0 auto;
  text-align: center;
  cursor: pointer;
}
.species-chip img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  transition: border-color var(--transition);
  margin: 0 auto 0.5rem;
}
.species-chip:hover img { border-color: var(--orange); }
.species-chip span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: var(--dark);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  font-family: 'Oswald', sans-serif;
}
.about-badge .years { font-size: 2.5rem; font-weight: 700; display: block; }
.about-badge .yrs-label { font-size: 0.8rem; letter-spacing: 1px; }

.pb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.pb-item {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.pb-item .fish { font-size: 1.5rem; }
.pb-item .size {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--orange);
  display: block;
}
.pb-item .name { font-size: 0.8rem; color: #666; }

.philosophy-list { margin-top: 1.5rem; }
.philosophy-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.philosophy-list .icon {
  width: 32px;
  height: 32px;
  background: rgba(255,107,51,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* ============================================
   BLOG
   ============================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-tab {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid #DDD;
  background: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab.active, .filter-tab:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.articles-grid { display: grid; gap: 1.5rem; }
.article-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.article-card:hover { transform: translateY(-3px); }
.article-card .card-img { height: 100%; min-height: 180px; width: 100%; }
.article-card .card-body { padding: 1.5rem; }

/* Sidebar */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--orange);
}
.sidebar-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #F0F0F0;
  font-size: 0.9rem;
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { color: var(--text); }
.sidebar-list a:hover { color: var(--orange); }

.forecast-widget { background: var(--olive); }
.forecast-widget h4 { color: var(--yellow); border-color: var(--yellow); }
.forecast-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.forecast-row:last-child { border-bottom: none; }
.forecast-row .val { color: var(--yellow); font-family: 'Oswald', sans-serif; }

/* ============================================
   BLOG POST
   ============================================ */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.post-content h2 { margin: 2rem 0 1rem; }
.post-content h3 { margin: 1.5rem 0 0.75rem; }
.post-content p  { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.post-content li { margin-bottom: 0.5rem; }
.post-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 1rem 1.5rem;
  background: var(--light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--rust);
}
.post-content img {
  width: 100%;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.post-header { margin-bottom: 2rem; }
.post-header h1 { margin-bottom: 1rem; }

/* Knot diagram placeholder */
.knot-box {
  background: var(--light);
  border: 2px dashed var(--silver);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: #888;
  margin: 1.5rem 0;
}
.knot-box .knot-icon { font-size: 3rem; margin-bottom: 0.5rem; }

/* ============================================
   GEAR PAGE
   ============================================ */
.gear-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }

.rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--yellow);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.rating .count { color: #999; font-size: 0.8rem; }

.product-card .card-img {
  object-fit: contain !important;
  background: #f7f3ef;
  height: 300px !important;
  padding: 1.5rem;
  box-sizing: border-box;
}
.product-card .card-body .price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.product-card .card-body .old-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 0.5rem;
}

/* ============================================
   SPECIES PAGE
   ============================================ */
.species-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.species-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.species-card:hover img { transform: scale(1.05); }
.species-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(28,28,28,0.9));
  padding: 1.5rem 1.25rem 1.25rem;
  color: var(--white);
}
.species-card-overlay h3 { color: var(--white); margin-bottom: 0.25rem; }
.species-card-overlay p  { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.species-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}
.species-detail img { height: 100%; min-height: 300px; object-fit: cover; }
.species-detail-body { padding: 2rem; }

.info-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.info-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid #EEE;
  font-size: 0.9rem;
}
.info-table td:first-child {
  font-weight: 600;
  color: var(--olive);
  width: 40%;
}

/* ============================================
   DESTINATIONS PAGE
   ============================================ */
.destination-card { position: relative; }
.destination-card .location-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.map-placeholder {
  background: var(--silver);
  border-radius: var(--radius);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  flex-direction: column;
  gap: 0.5rem;
}
.map-placeholder .map-icon { font-size: 3rem; }

/* ============================================
   RECIPES PAGE
   ============================================ */
.recipe-card .difficulty {
  display: flex;
  gap: 4px;
  margin-bottom: 0.5rem;
}
.recipe-card .difficulty span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DDD;
}
.recipe-card .difficulty span.active { background: var(--orange); }

.recipe-time {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.75rem;
}

/* ============================================
   CONSERVATION PAGE
   ============================================ */
.conservation-hero { background: var(--olive); }
.impact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--green);
}
.impact-card .i-icon { font-size: 3rem; margin-bottom: 1rem; }
.impact-card h3 { margin-bottom: 0.75rem; }
.impact-card p  { color: #666; font-size: 0.95rem; }

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  align-items: start;
}
.shop-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}
.shop-sidebar h4 { margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--orange); }
.filter-group { margin-bottom: 1.5rem; }
.filter-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 0.5rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  cursor: pointer;
}
.filter-check input { accent-color: var(--orange); }

.shop-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.shop-header select {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid #DDD;
  font-family: 'Open Sans', sans-serif;
}

.add-to-cart {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.65rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 0.75rem;
}
.add-to-cart:hover { background: var(--rust); }
.affiliate-note {
  font-size: 0.75rem;
  color: #999;
  text-align: center;
  margin-top: 0.25rem;
}

/* ============================================
   COMMUNITY / FORUM PAGE
   ============================================ */
.forum-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
}
.forum-categories { display: grid; gap: 1rem; margin-bottom: 2rem; }
.forum-cat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  cursor: pointer;
}
.forum-cat:hover { transform: translateX(5px); }
.forum-cat .fc-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.fc-orange { background: rgba(255,107,51,0.15); }
.fc-blue   { background: rgba(52,110,165,0.15); }
.fc-olive  { background: rgba(90,99,62,0.15); }
.fc-green  { background: rgba(106,189,76,0.15); }
.forum-cat h4 { margin-bottom: 0.15rem; }
.forum-cat p  { font-size: 0.85rem; color: #777; }
.forum-cat .fc-stats {
  margin-left: auto;
  text-align: right;
  font-size: 0.8rem;
  color: #999;
}
.forum-cat .fc-stats strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--orange);
}

.thread-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 0.75rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  transition: transform var(--transition);
}
.thread-item:hover { transform: translateX(4px); }
.thread-title { font-family: 'Oswald', sans-serif; font-size: 1rem; margin-bottom: 0.25rem; }
.thread-title a { color: var(--dark); }
.thread-title a:hover { color: var(--orange); }
.thread-meta { font-size: 0.8rem; color: #999; }
.thread-stats { text-align: right; font-size: 0.8rem; color: #999; }
.thread-stats strong { display: block; font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: var(--blue); }

.catch-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.catch-photo { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.catch-photo img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s; }
.catch-photo:hover img { transform: scale(1.05); }
.catch-photo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 1rem 0.75rem 0.75rem;
  color: var(--white);
  font-size: 0.8rem;
}

/* Post form */
.post-form { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.post-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.9rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #DDD;
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--cream);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  position: relative;
  z-index: 1;
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.9rem; margin: 1rem 0; line-height: 1.8; }
.footer-col h5 {
  font-family: 'Oswald', sans-serif;
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--orange); }

.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-link:hover { background: var(--orange); color: var(--white); }

.newsletter-form { display: flex; gap: 0; margin-top: 1rem; }
.newsletter-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; background: rgba(255,255,255,0.15); }
.newsletter-form button {
  padding: 0.65rem 1rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--rust); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ============================================
   UTILITIES
   ============================================ */
.bg-cream  { background: var(--cream); }
.bg-light  { background: var(--light); }
.bg-white  { background: var(--white); }
.bg-dark   { background: var(--dark); }
.bg-orange { background: var(--orange); }
.bg-olive  { background: var(--olive); }

.text-orange { color: var(--orange); }
.text-white  { color: var(--white); }
.text-muted  { color: #888; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .shop-products { grid-template-columns: repeat(2, 1fr); }
  .blog-layout, .post-layout { grid-template-columns: 1fr; }
  .forum-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  #main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1rem;
    border-top: 2px solid var(--orange);
    gap: 0;
    align-items: stretch;
  }
  #main-nav.open { display: flex; }
  .nav-link { padding: 0.75rem 1rem; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--orange);
    margin-left: 1rem;
    display: none;
    background: rgba(255,255,255,0.05);
  }
  .nav-item.open .dropdown { display: block; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-main { grid-row: auto; }
  .about-split { grid-template-columns: 1fr; }
  .about-badge { position: static; margin-top: 1rem; display: inline-block; }
  .pb-grid { grid-template-columns: repeat(3, 1fr); }
  .article-card { grid-template-columns: 1fr; }
  .article-card .card-img { height: 200px; }
  .species-detail { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-products { grid-template-columns: repeat(2, 1fr); }
  .catch-wall { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero { min-height: 70vh; }
  .forecast-items { gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .shop-products { grid-template-columns: 1fr; }
  .pb-grid { grid-template-columns: 1fr; }
  .catch-wall { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Photo Carousel ── */
.sua-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #000;
  max-height: 520px;
}
.sua-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}
.sua-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.sua-backdrop {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.1);
  z-index: 0;
}
.sua-slide img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  object-position: center center;
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.sua-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
  z-index: 2;
}
.sua-carousel-btn:hover { background: rgba(0,0,0,0.75); }
.sua-prev { left: 1rem; }
.sua-next { right: 1rem; }
.sua-dots {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}
.sua-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.sua-dot.active { background: var(--orange); }
@media (max-width: 600px) {
  .sua-carousel { max-height: 280px; }
  .sua-slide { display: flex; align-items: center; justify-content: center; }
  .sua-slide img { width: 100%; height: 280px; }
}
