/* ==========================================================================
   Reno 911 Golf Trip Editorial Theme
   Palette: Warm Ivory, Deep Pine, Sand, Restrained Copper
   ========================================================================== */

:root {
  --color-bg: #faf8f5;
  --color-bg-sand: #f4efe6;
  --color-bg-card: #ffffff;
  --color-pine-deep: #0c1e16;
  --color-pine-dark: #132e22;
  --color-pine-forest: #1d4332;
  --color-pine-muted: #2f5443;
  --color-copper: #b87333;
  --color-copper-warm: #c87a3e;
  --color-copper-light: #f5ebe0;
  --color-sand-border: #e6decb;
  --color-sand-light: #fdfbf7;
  --color-text-main: #18221e;
  --color-text-muted: #53625b;
  --color-text-light: #809289;
  
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", Menlo, Monaco, Consolas, monospace;

  --nav-height: 72px;
  --max-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  
  --shadow-subtle: 0 4px 20px rgba(12, 30, 22, 0.05);
  --shadow-card: 0 8px 30px rgba(12, 30, 22, 0.08);
  --shadow-elevated: 0 16px 40px rgba(12, 30, 22, 0.12);
  --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--color-bg);
  color: var(--color-text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  line-height: 1.65;
  color: var(--color-text-main);
  background-color: var(--color-bg);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Typography Hierarchy */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-pine-deep);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-copper);
}

/* Utility Containers */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ==========================================================================
   Header & Sticky Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-sand-border);
  height: var(--nav-height);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-wrapper {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-pine-deep);
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-copper);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
  padding: 0.5rem 0.25rem;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-copper);
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-pine-deep);
}

.nav-link.active::after {
  width: 100%;
}

@media (max-width: 860px) {
  .site-header {
    height: auto;
    padding: 0.6rem 0;
  }
  .nav-container {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    min-width: 0;
  }
  .brand-title {
    font-size: 1.15rem;
  }
  .brand-sub {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }
  .nav-container nav {
    width: 100%;
    min-width: 0;
  }
  .nav-links {
    gap: 0.45rem;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0.15rem 0.25rem 0.35rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links::-webkit-scrollbar {
    display: none;
  }
  .nav-link {
    white-space: nowrap;
    font-size: 0.775rem;
    padding: 0.35rem 0.75rem;
    background-color: var(--color-bg-sand);
    border: 1px solid var(--color-sand-border);
    border-radius: 999px;
    color: var(--color-text-muted);
  }
  .nav-link::after {
    display: none;
  }
  .nav-link:hover,
  .nav-link.active {
    background-color: var(--color-pine-deep);
    color: #ffffff;
    border-color: var(--color-pine-deep);
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, rgba(244, 239, 230, 0.7), transparent 70%);
  border-bottom: 1px solid var(--color-sand-border);
}

.hero-eyebrow {
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  color: var(--color-pine-deep);
}

.hero-subhead {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-text-muted);
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.hero-context {
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.hero-badge-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-bg-sand);
  border: 1px solid var(--color-sand-border);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--color-pine-forest);
  font-weight: 500;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--color-copper);
}

.hero-media-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 1440px;
  margin: 3rem auto -3.5rem;
  padding: 0 1rem;
}

.hero-shot {
  position: relative;
  min-width: 0;
  height: clamp(230px, 24vw, 340px);
  overflow: hidden;
  background: var(--color-pine-deep);
  color: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  box-shadow: 0 8px 24px rgba(12, 30, 22, 0.12);
}

.hero-shot:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(12, 30, 22, 0.32);
  border-color: rgba(200, 122, 62, 0.7);
}

.hero-shot:active {
  transform: translateY(-2px) scale(0.985);
}

.hero-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.hero-shot:hover img {
  transform: scale(1.04);
}

.hero-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 30, 22, 0.88) 0%, rgba(12, 30, 22, 0.45) 45%, rgba(12, 30, 22, 0.15) 100%);
  z-index: 1;
  transition: background 0.25s ease;
}

.hero-shot:hover::after {
  background: linear-gradient(to top, rgba(12, 30, 22, 0.94) 0%, rgba(12, 30, 22, 0.35) 50%, rgba(12, 30, 22, 0.1) 100%);
}

.hero-shot-content {
  position: relative;
  z-index: 2;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  text-align: left;
  width: 100%;
}

.hero-shot-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(12, 30, 22, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fdfbf7;
  margin-bottom: 0.25rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-shot-action svg {
  transition: transform 0.2s ease;
}

.hero-shot:hover .hero-shot-action {
  background: var(--color-copper-warm);
  border-color: var(--color-copper-warm);
  color: #ffffff;
}

.hero-shot:hover .hero-shot-action svg {
  transform: translateY(2px);
}

.hero-shot-title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-shot-sub {
  font-size: 0.725rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2.25rem 0 2rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    margin-bottom: 0.65rem;
  }

  .hero-headline {
    font-size: clamp(1.85rem, 6.5vw, 2.35rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }

  .hero-subhead {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }

  .hero-context {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .hero-badge-strip {
    gap: 0.4rem;
    margin-top: 1.25rem;
  }

  .hero-badge {
    padding: 0.3rem 0.65rem;
    font-size: 0.75rem;
  }

  .hero-media-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin: 2rem auto -2rem;
    padding: 0 1rem;
    gap: 0.65rem;
    scroll-padding-inline: 1rem;
  }

  .hero-media-rail::-webkit-scrollbar {
    display: none;
  }

  .hero-shot {
    flex: 0 0 76vw;
    max-width: 320px;
    height: 240px;
    border-radius: var(--radius-md);
    scroll-snap-align: center;
  }

  .hero-shot-content {
    padding: 1rem;
  }

  .hero-shot-title {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   Destination Detailed Sections
   ========================================================================== */
.destination-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--color-sand-border);
  scroll-margin-top: calc(var(--nav-height) + 1.5rem);
}

.destination-section:nth-of-type(even) {
  background-color: var(--color-sand-light);
}

.dest-header-block {
  margin-bottom: 2.5rem;
}

.dest-number-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-copper);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.dest-headline-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 0.5rem;
  color: var(--color-pine-deep);
}

.dest-headline-positioning {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.dest-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.dest-meta-item {
  background-color: var(--color-bg-sand);
  border: 1px solid var(--color-sand-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.dest-meta-item:hover {
  background-color: #faf5eb;
  border-color: rgba(200, 122, 62, 0.45);
}

.dest-meta-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-copper);
}

.dest-meta-val {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-pine-deep);
  line-height: 1.35;
}

.dest-meta-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 0.15rem;
}

@media (max-width: 960px) {
  .dest-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .destination-section {
    padding: 3rem 0;
  }

  .dest-header-block {
    margin-bottom: 1.75rem;
  }

  .dest-headline-title {
    font-size: clamp(1.65rem, 5.5vw, 2.15rem);
  }

  .dest-headline-positioning {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }

  .dest-meta-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 1.25rem;
  }

  .dest-meta-item {
    padding: 0.7rem 0.9rem;
  }
}

/* ==========================================================================
   Photo Carousel
   ========================================================================== */
.carousel-wrapper {
  position: relative;
  margin-bottom: 3.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  background-color: var(--color-pine-deep);
}

.carousel-viewport {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.carousel-viewport::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  scroll-snap-align: start;
  height: 480px;
  background-color: #0c1e16;
}

@media (max-width: 768px) {
  .carousel-wrapper {
    margin-bottom: 2.25rem;
    border-radius: var(--radius-md);
  }

  .carousel-slide {
    height: 260px;
  }

  .slide-caption-bar {
    padding: 1.5rem 1rem 0.65rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .slide-caption-text {
    font-size: 0.775rem;
    line-height: 1.35;
  }

  .slide-photo-credit {
    font-size: 0.675rem;
    opacity: 0.85;
  }

  .carousel-control-btn {
    width: 36px;
    height: 36px;
  }

  .carousel-control-btn.prev-btn {
    left: 0.5rem;
  }

  .carousel-control-btn.next-btn {
    right: 0.5rem;
  }

  .carousel-dots-nav {
    bottom: 0.65rem;
    padding: 0.25rem 0.5rem;
    gap: 0.4rem;
  }
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(12, 30, 22, 0.9) 0%, rgba(12, 30, 22, 0.4) 70%, transparent 100%);
  color: #ffffff;
  padding: 2rem 1.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.875rem;
}

.slide-caption-text {
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.slide-photo-credit {
  font-size: 0.75rem;
  opacity: 0.8;
  font-family: var(--font-mono);
}

.carousel-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: rgba(250, 248, 245, 0.9);
  border: 1px solid var(--color-sand-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-pine-deep);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.carousel-control-btn:hover {
  background-color: #ffffff;
  color: var(--color-copper);
  transform: translateY(-50%) scale(1.08);
}

.carousel-control-btn.prev-btn {
  left: 1rem;
}

.carousel-control-btn.next-btn {
  right: 1rem;
}

.carousel-dots-nav {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
  background-color: rgba(12, 30, 22, 0.6);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background-color: #ffffff;
  width: 20px;
  border-radius: 4px;
}

/* ==========================================================================
   Editorial Content Layout (2-Column Spec)
   ========================================================================== */
.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

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

.editorial-col-main {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.editorial-col-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.editorial-block h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-pine-forest);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.editorial-block h4 svg {
  width: 18px;
  height: 18px;
  fill: var(--color-copper);
}

.editorial-block p {
  color: var(--color-text-main);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.editorial-block p:last-child {
  margin-bottom: 0;
}

/* Day-by-Day Itinerary Block */
.itinerary-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-sand-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-subtle);
}

.itinerary-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-pine-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-sand-border);
}

.itinerary-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.itinerary-day {
  position: relative;
  padding-left: 1.75rem;
}

.itinerary-day::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.35rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-copper);
}

.itinerary-day::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 1rem;
  bottom: -1rem;
  width: 1px;
  background-color: var(--color-sand-border);
}

.itinerary-day:last-child::after {
  display: none;
}

.day-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-copper);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.15rem;
}

.day-header {
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--color-pine-deep);
  margin-bottom: 0.25rem;
}

.day-details {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Sidebar Breakdown Panels */
.sidebar-panel {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-sand-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-subtle);
}

.sidebar-panel-header {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cost-breakdown-list {
  list-style: none;
  font-size: 0.875rem;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--color-sand-border);
}

.cost-row:last-child {
  border-bottom: none;
}

.cost-row.total-row {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 2px solid var(--color-sand-border);
  border-bottom: none;
  font-weight: 700;
  color: var(--color-pine-deep);
  font-size: 0.95rem;
}

.cost-footnote {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

/* Tradeoffs Callout */
.tradeoff-panel {
  background-color: #fdfaf4;
  border: 1px solid #ebd9c8;
  border-left: 4px solid var(--color-copper);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.tradeoff-panel h5 {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9c4b18;
  margin-bottom: 0.5rem;
}

.tradeoff-panel p {
  font-size: 0.85rem;
  color: #5c3b28;
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.tradeoff-panel p:last-child {
  margin-bottom: 0;
}

/* Verdict Callout */
.verdict-panel {
  background-color: #f2f7f4;
  border: 1px solid #cce3d7;
  border-left: 4px solid var(--color-pine-forest);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.verdict-panel h5 {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-pine-forest);
  margin-bottom: 0.5rem;
}

.verdict-panel p {
  font-size: 0.875rem;
  color: #1a3c2c;
  line-height: 1.55;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
  background-color: var(--color-pine-deep);
  color: #c5d4cd;
  padding: 4rem 0 3rem;
  border-top: 1px solid var(--color-sand-border);
  font-size: 0.875rem;
}

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

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

.footer-brand-title {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.footer-description {
  color: #9cb3a7;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}

.footer-photo-note {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: #b0c4ba;
}

.footer-photo-note a {
  color: var(--color-copper-warm);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-photo-note a:hover {
  color: #ffffff;
}

.footer-nav-title {
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-link {
  color: #9cb3a7;
  transition: color 0.2s ease;
}

.footer-nav-link:hover {
  color: #ffffff;
}

.footer-bottom-bar {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.775rem;
  color: #7d968b;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Accessibility & Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--color-copper);
  outline-offset: 3px;
}
