/*
Theme Name: MochaTube DMV
Theme URI: https://mochatube.com
Author: MochaTube
Author URI: https://mochatube.com
Description: Dark luxury WordPress theme for MochaTube — DMV's Guide to Coffee, Chocolate & Culture. Custom post types for reviews and local spots, local SEO optimized for DC, Maryland, Northern Virginia.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mochatube
Tags: dark, custom-post-type, local-seo, coffee, directory, blog, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
  --mt-bg: #0a0a0a;
  --mt-surface: #111111;
  --mt-surface-2: #1a1a1a;
  --mt-surface-3: #222222;
  --mt-gold: #c8956c;
  --mt-gold-light: #d4a574;
  --mt-gold-dark: #a67a4f;
  --mt-cream: #f5f0eb;
  --mt-cream-muted: #c9c0b5;
  --mt-green: #2d5a3d;
  --mt-green-light: #3d7a52;
  --mt-border: rgba(200, 149, 108, 0.15);
  --mt-border-hover: rgba(200, 149, 108, 0.4);
  --mt-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --mt-shadow-lift: 0 12px 40px rgba(0, 0, 0, 0.5);
  --mt-radius: 12px;
  --mt-radius-sm: 8px;
  --mt-radius-lg: 16px;
  --mt-header-h: 72px;
  --mt-header-h-mobile: 64px;
  --mt-font-heading: 'Playfair Display', Georgia, serif;
  --mt-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mt-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --mt-container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--mt-font-body);
  background-color: var(--mt-bg);
  color: var(--mt-cream);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--mt-gold);
  text-decoration: none;
  transition: color var(--mt-transition);
}

a:hover {
  color: var(--mt-gold-light);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--mt-font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--mt-cream);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.35rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--mt-cream-muted);
}

.lead {
  font-size: 1.25rem;
  color: var(--mt-cream);
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--mt-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-wide {
  max-width: 1400px;
}

.section {
  padding: 4rem 0;
}

.section-sm {
  padding: 2.5rem 0;
}

/* ==========================================================================
   Header - Glassmorphism
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--mt-header-h);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mt-border);
  transition: background var(--mt-transition), box-shadow var(--mt-transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  z-index: 1001;
}

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

.site-logo-text {
  font-family: var(--mt-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--mt-gold), var(--mt-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

/* Navigation */
.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--mt-cream-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--mt-radius-sm);
  transition: all var(--mt-transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--mt-gold);
  background: rgba(200, 149, 108, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.search-toggle,
.menu-toggle {
  background: none;
  border: none;
  color: var(--mt-cream);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--mt-radius-sm);
  transition: all var(--mt-transition);
}

.search-toggle:hover,
.menu-toggle:hover {
  color: var(--mt-gold);
  background: rgba(200, 149, 108, 0.1);
}

.search-toggle svg,
.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mobile-nav a {
  font-family: var(--mt-font-heading);
  font-size: 1.75rem;
  color: var(--mt-cream);
  padding: 0.75rem 1.5rem;
  transition: color var(--mt-transition);
}

.mobile-nav a:hover {
  color: var(--mt-gold);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  width: 100%;
  max-width: 640px;
  padding: 2rem;
  position: relative;
}

.search-overlay .search-form {
  display: flex;
  gap: 0.75rem;
}

.search-overlay input[type="search"] {
  flex: 1;
  background: var(--mt-surface);
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  padding: 1rem 1.25rem;
  color: var(--mt-cream);
  font-size: 1.125rem;
  outline: none;
  transition: border-color var(--mt-transition);
}

.search-overlay input[type="search"]:focus {
  border-color: var(--mt-gold);
}

.search-overlay input[type="search"]::placeholder {
  color: var(--mt-cream-muted);
}

.search-overlay .search-submit {
  background: var(--mt-gold);
  color: var(--mt-bg);
  border: none;
  border-radius: var(--mt-radius);
  padding: 1rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--mt-transition);
}

.search-overlay .search-submit:hover {
  background: var(--mt-gold-light);
}

.search-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--mt-cream-muted);
  cursor: pointer;
  padding: 0.5rem;
}

.search-close:hover {
  color: var(--mt-gold);
}

/* ==========================================================================
   Cards System
   ========================================================================== */
.card {
  background: var(--mt-surface);
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  overflow: hidden;
  transition: transform var(--mt-transition), box-shadow var(--mt-transition), border-color var(--mt-transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mt-shadow-lift);
  border-color: var(--mt-border-hover);
}

.card-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--mt-surface-2);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--mt-cream-muted);
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.card-title a {
  color: var(--mt-cream);
}

.card-title a:hover {
  color: var(--mt-gold);
}

.card-excerpt {
  font-size: 0.9rem;
  color: var(--mt-cream-muted);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 4px;
  background: var(--mt-surface-3);
  color: var(--mt-gold);
}

.badge-top-pick { background: rgba(200, 149, 108, 0.2); color: var(--mt-gold-light); }
.badge-best-value { background: rgba(45, 90, 61, 0.3); color: #7ec99a; }
.badge-premium { background: rgba(200, 149, 108, 0.25); color: var(--mt-gold); }
.badge-essential { background: rgba(100, 140, 200, 0.2); color: #8ab4f8; }
.badge-budget { background: rgba(180, 140, 80, 0.2); color: #e0c080; }

/* Price range */
.price-range {
  color: var(--mt-gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Star Ratings (CSS-only)
   ========================================================================== */
.star-rating {
  display: inline-flex;
  gap: 2px;
  --star-size: 16px;
}

.star-rating .star {
  width: var(--star-size);
  height: var(--star-size);
  position: relative;
}

.star-rating .star::before {
  content: '★';
  position: absolute;
  color: var(--mt-surface-3);
  font-size: var(--star-size);
  line-height: 1;
}

.star-rating .star.full::before {
  color: var(--mt-gold);
}

.star-rating .star.half::before {
  background: linear-gradient(90deg, var(--mt-gold) 50%, var(--mt-surface-3) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.star-rating-lg {
  --star-size: 22px;
}

.rating-value {
  font-weight: 600;
  color: var(--mt-gold);
  font-size: 0.9rem;
  margin-left: 0.35rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--mt-radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--mt-transition);
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(135deg, var(--mt-gold), var(--mt-gold-dark));
  color: var(--mt-bg);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--mt-gold-light), var(--mt-gold));
  color: var(--mt-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 149, 108, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--mt-gold);
  color: var(--mt-gold);
}

.btn-outline:hover {
  background: rgba(200, 149, 108, 0.1);
  color: var(--mt-gold-light);
  border-color: var(--mt-gold-light);
}

.btn-ghost {
  background: transparent;
  color: var(--mt-cream-muted);
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  color: var(--mt-gold);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--mt-header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.25rem;
  max-width: 800px;
}

.hero-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mt-gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero h1 {
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--mt-cream-muted);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.cat-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--mt-radius);
  overflow: hidden;
  border: 1px solid var(--mt-border);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover img {
  transform: scale(1.08);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.cat-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.cat-card span {
  font-size: 0.85rem;
  color: var(--mt-cream-muted);
}

/* ==========================================================================
   Grid Systems
   ========================================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* ==========================================================================
   Single Review
   ========================================================================== */
.review-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--mt-border);
}

.review-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--mt-surface);
  border-radius: var(--mt-radius);
  border: 1px solid var(--mt-border);
}

.review-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-meta-item .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mt-cream-muted);
}

.review-meta-item .value {
  font-weight: 600;
  color: var(--mt-cream);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.pros-box, .cons-box {
  background: var(--mt-surface);
  border-radius: var(--mt-radius);
  padding: 1.5rem;
  border: 1px solid var(--mt-border);
}

.pros-box h4 {
  color: #7ec99a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cons-box h4 {
  color: #e07070;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pros-box ul li,
.cons-box ul li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--mt-cream-muted);
  font-size: 0.95rem;
}

.pros-box ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: #7ec99a;
  font-weight: 700;
}

.cons-box ul li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: #e07070;
  font-weight: 700;
}

/* Affiliate CTA */
.affiliate-cta {
  background: linear-gradient(135deg, rgba(200, 149, 108, 0.12), rgba(200, 149, 108, 0.05));
  border: 1px solid var(--mt-border-hover);
  border-radius: var(--mt-radius);
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0;
}

.affiliate-cta .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mt-gold);
  font-family: var(--mt-font-heading);
}

/* ==========================================================================
   Local Spot Single
   ========================================================================== */
.spot-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.spot-info-card {
  background: var(--mt-surface);
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  padding: 1.5rem;
}

.spot-info-card h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--mt-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spot-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spot-info-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--mt-cream-muted);
}

.spot-info-list .icon {
  color: var(--mt-gold);
  flex-shrink: 0;
  width: 18px;
}

.spot-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: var(--mt-surface-2);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--mt-cream-muted);
  border: 1px solid var(--mt-border);
}

.feature-tag.active {
  color: #7ec99a;
  border-color: rgba(45, 90, 61, 0.4);
  background: rgba(45, 90, 61, 0.15);
}

.map-embed {
  border-radius: var(--mt-radius);
  overflow: hidden;
  border: 1px solid var(--mt-border);
  aspect-ratio: 16 / 9;
  background: var(--mt-surface);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.advertiser-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(200, 149, 108, 0.15);
  border: 1px solid var(--mt-border-hover);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mt-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mt-cream);
}

.form-control {
  width: 100%;
  background: var(--mt-surface);
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius-sm);
  padding: 0.75rem 1rem;
  color: var(--mt-cream);
  transition: border-color var(--mt-transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--mt-gold);
}

.form-control::placeholder {
  color: var(--mt-cream-muted);
  opacity: 0.6;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c8956c' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--mt-surface);
  border-top: 1px solid var(--mt-border);
  padding: 4rem 0 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--mt-gold);
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--mt-cream-muted);
  line-height: 1.7;
}

.footer-links a {
  display: block;
  color: var(--mt-cream-muted);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color var(--mt-transition), padding-left var(--mt-transition);
}

.footer-links a:hover {
  color: var(--mt-gold);
  padding-left: 0.35rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mt-surface-2);
  border: 1px solid var(--mt-border);
  color: var(--mt-cream-muted);
  transition: all var(--mt-transition);
}

.footer-social a:hover {
  background: rgba(200, 149, 108, 0.15);
  border-color: var(--mt-gold);
  color: var(--mt-gold);
}

.footer-newsletter .form-control {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid var(--mt-border);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--mt-cream-muted);
}

.footer-bottom a {
  color: var(--mt-cream-muted);
}

.footer-bottom a:hover {
  color: var(--mt-gold);
}

/* ==========================================================================
   Page Content
   ========================================================================== */
.page-header {
  padding: 3rem 0 2rem;
  margin-top: var(--mt-header-h);
  border-bottom: 1px solid var(--mt-border);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header .subtitle {
  color: var(--mt-cream-muted);
  font-size: 1.1rem;
}

.content-area {
  padding: 3rem 0;
}

.entry-content {
  max-width: 720px;
  margin: 0 auto;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.entry-content p {
  margin-bottom: 1.25rem;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  margin-bottom: 0.4rem;
  color: var(--mt-cream-muted);
}

.entry-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.entry-content img {
  border-radius: var(--mt-radius);
  margin: 1.5rem 0;
}

.entry-content blockquote {
  border-left: 3px solid var(--mt-gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--mt-surface);
  border-radius: 0 var(--mt-radius-sm) var(--mt-radius-sm) 0;
  font-style: italic;
  color: var(--mt-cream);
}

/* Archive filters */
.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--mt-surface);
  border-radius: var(--mt-radius);
  border: 1px solid var(--mt-border);
}

.filter-btn {
  padding: 0.4rem 1rem;
  background: transparent;
  border: 1px solid var(--mt-border);
  border-radius: 20px;
  color: var(--mt-cream-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--mt-transition);
  text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(200, 149, 108, 0.15);
  border-color: var(--mt-gold);
  color: var(--mt-gold);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: var(--mt-radius-sm);
  background: var(--mt-surface);
  border: 1px solid var(--mt-border);
  color: var(--mt-cream-muted);
  font-size: 0.9rem;
  transition: all var(--mt-transition);
}

.pagination a:hover {
  border-color: var(--mt-gold);
  color: var(--mt-gold);
}

.pagination .current {
  background: rgba(200, 149, 108, 0.15);
  border-color: var(--mt-gold);
  color: var(--mt-gold);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 149, 108, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(200, 149, 108, 0); }
}

.loading-pulse {
  animation: pulse-gold 1.5s infinite;
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, var(--mt-surface) 25%, var(--mt-surface-2) 50%, var(--mt-surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--mt-radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-gold { color: var(--mt-gold); }
.text-muted { color: var(--mt-cream-muted); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr 1fr; }
  .spot-info-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .main-nav { display: block; }
  .menu-toggle { display: none; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
  .hero { min-height: 80vh; }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .spot-info-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 767px) {
  :root {
    --mt-header-h: var(--mt-header-h-mobile);
  }
  .section { padding: 3rem 0; }
  .hero { min-height: 60vh; }
}

/* Print */
@media print {
  .site-header, .site-footer, .search-overlay, .mobile-nav { display: none !important; }
  body { background: #fff; color: #000; }
}
