/* ============================================
   MOSS MOUNTAIN OUTFITTERS — LOCATION PAGES
   Premium Editorial Design System
   ============================================ */

/* ============ HERO — Full Immersive ============ */
.loc-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 32px 100px;
}

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

.loc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.1);
  transition: transform 12s ease-out;
}

.loc-hero:hover .loc-hero-bg img {
  transform: scale(1.03);
}

.loc-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(27,42,27,0.7) 0%,
      rgba(27,42,27,0.4) 40%,
      rgba(27,42,27,0.6) 70%,
      rgba(27,42,27,0.95) 100%
    );
}

/* Mountain silhouette at bottom of hero */
.loc-hero-mountains {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.loc-hero-mountains svg {
  width: 100%;
  height: auto;
  display: block;
}

.loc-hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
}

/* Breadcrumb */
.loc-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.8rem;
  color: rgba(247,245,240,0.45);
  letter-spacing: 0.04em;
}

.loc-breadcrumb a {
  color: rgba(247,245,240,0.5);
  transition: color 0.3s ease;
}

.loc-breadcrumb a:hover {
  color: var(--tan);
}

.loc-breadcrumb .bc-sep {
  color: rgba(247,245,240,0.25);
  font-size: 0.7rem;
}

.loc-breadcrumb .bc-current {
  color: rgba(247,245,240,0.7);
  font-weight: 500;
}

/* Distance badge — animated pill */
.loc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(200,169,110,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 100px;
  color: var(--tan-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  animation: badgePulse 3s ease-in-out infinite;
}

.loc-hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--tan);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,110,0.15); }
  50% { box-shadow: 0 0 0 12px rgba(200,169,110,0); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.loc-hero h1 {
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.loc-hero-sub {
  color: rgba(247,245,240,0.65);
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}


/* ============ SECTIONS — Base Layout ============ */
.loc-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.loc-section--alt {
  background: var(--white);
}

[data-theme="dark"] .loc-section--alt {
  background: rgba(247,245,240,0.02);
}

.loc-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.loc-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 0;
}

[data-theme="dark"] .loc-section-header h2 {
  color: var(--cream);
}


/* ============ INTRO — Pull Quote Style ============ */
.loc-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.loc-intro::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--tan), var(--burnt-orange));
  border-radius: 2px;
  margin: 0 auto 40px;
}

.loc-intro-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.8;
  color: var(--text-mid);
  font-style: italic;
  font-weight: 400;
}

[data-theme="dark"] .loc-intro-text {
  color: rgba(224,221,214,0.6);
}

.loc-intro-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-top: 28px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

[data-theme="dark"] .loc-intro-body {
  color: rgba(224,221,214,0.5);
}

.loc-intro::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--cream-dark);
  border-radius: 1px;
  margin: 48px auto 0;
}

[data-theme="dark"] .loc-intro::after {
  background: rgba(200,169,110,0.15);
}


/* ============ REASONS — Split Layout ============ */
.loc-reasons-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.loc-reasons-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.loc-reason-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.loc-reason-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

[data-theme="dark"] .loc-reason-num {
  background: linear-gradient(135deg, rgba(200,169,110,0.2), rgba(200,169,110,0.1));
  color: var(--tan);
}

.loc-reason-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

[data-theme="dark"] .loc-reason-content h3 {
  color: var(--cream);
}

.loc-reason-content p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-light);
}

[data-theme="dark"] .loc-reason-content p {
  color: rgba(224,221,214,0.5);
}

.loc-reasons-image {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.loc-reasons-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
  transition: transform 8s ease-out;
}

.loc-reasons-image:hover img {
  transform: scale(1.04);
}

.loc-reasons-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--card-radius);
  border: 1px solid rgba(200,169,110,0.1);
  pointer-events: none;
}


/* ============ TRAIL CARDS — Magazine Editorial ============ */
.loc-trails-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.loc-trail-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.loc-trail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,169,110,0.3);
}

[data-theme="dark"] .loc-trail-card {
  background: rgba(247,245,240,0.03);
  border-color: rgba(200,169,110,0.08);
}

[data-theme="dark"] .loc-trail-card:hover {
  background: rgba(247,245,240,0.05);
  border-color: rgba(200,169,110,0.2);
}

.loc-trail-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.loc-trail-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out;
}

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

.loc-trail-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}

/* Difficulty badge */
.trail-difficulty {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.trail-difficulty--easy {
  background: rgba(43,95,43,0.85);
  color: #fff;
}

.trail-difficulty--moderate {
  background: rgba(200,140,20,0.85);
  color: #fff;
}

.trail-difficulty--strenuous {
  background: rgba(180,55,30,0.85);
  color: #fff;
}

.loc-trail-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.loc-trail-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

[data-theme="dark"] .loc-trail-card-body h3 {
  color: var(--cream);
}

/* Trail stats row */
.trail-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.trail-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

.trail-stat svg {
  width: 14px;
  height: 14px;
  stroke: var(--burnt-orange);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

[data-theme="dark"] .trail-stat {
  color: rgba(224,221,214,0.55);
}

.loc-trail-card-body p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 16px;
  flex: 1;
}

[data-theme="dark"] .loc-trail-card-body p {
  color: rgba(224,221,214,0.5);
}

/* Gear tags */
.trail-gear-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.trail-gear-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all 0.3s ease;
}

.trail-gear-tag:hover {
  border-color: var(--forest);
  color: var(--forest);
}

[data-theme="dark"] .trail-gear-tag {
  background: rgba(200,169,110,0.06);
  border-color: rgba(200,169,110,0.1);
  color: rgba(224,221,214,0.5);
}

[data-theme="dark"] .trail-gear-tag:hover {
  border-color: var(--tan);
  color: var(--tan);
}


/* ============ PRODUCTS — Better Presentation ============ */
.loc-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}


/* ============ VISIT — Premium Map Card ============ */
.loc-visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--card-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
  max-width: 1100px;
  margin: 0 auto;
}

[data-theme="dark"] .loc-visit-card {
  background: rgba(247,245,240,0.03);
  border-color: rgba(200,169,110,0.08);
}

.loc-visit-map {
  position: relative;
  min-height: 450px;
}

.loc-visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: absolute;
  inset: 0;
}

.loc-visit-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loc-visit-drive-time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--cream);
  border-radius: var(--card-radius-sm);
  margin-bottom: 24px;
  align-self: flex-start;
}

[data-theme="dark"] .loc-visit-drive-time {
  background: rgba(200,169,110,0.08);
}

.loc-visit-drive-time svg {
  width: 20px;
  height: 20px;
  stroke: var(--burnt-orange);
  fill: none;
  stroke-width: 2;
}

.loc-visit-drive-time span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
}

[data-theme="dark"] .loc-visit-drive-time span {
  color: var(--cream);
}

.loc-visit-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

[data-theme="dark"] .loc-visit-info h3 {
  color: var(--cream);
}

.loc-visit-info > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 28px;
}

[data-theme="dark"] .loc-visit-info > p {
  color: rgba(224,221,214,0.5);
}

.loc-visit-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.loc-detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .loc-detail-icon {
  background: rgba(200,169,110,0.08);
}

.loc-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 1.8;
}

[data-theme="dark"] .loc-detail-icon svg {
  stroke: var(--tan);
}

.loc-detail-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.5;
}

[data-theme="dark"] .loc-detail-text {
  color: rgba(224,221,214,0.6);
}

.loc-detail-text a {
  color: var(--forest);
  font-weight: 600;
}

[data-theme="dark"] .loc-detail-text a {
  color: var(--tan);
}

.loc-visit-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--cream);
  color: var(--forest);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition-base);
}

.btn-phone:hover {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-2px);
}

[data-theme="dark"] .btn-phone {
  background: rgba(200,169,110,0.1);
  color: var(--tan);
}

[data-theme="dark"] .btn-phone:hover {
  background: rgba(200,169,110,0.2);
}

.btn-phone svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}


/* ============ HUEF CALLOUT ============ */
.loc-huef-banner {
  background: var(--deep-forest);
  position: relative;
  overflow: hidden;
}

.loc-huef-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,169,110,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.loc-huef-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 48px 32px;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  flex-wrap: wrap;
}

.loc-huef-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tan);
  font-size: 1.3rem;
}

.loc-huef-text {
  color: rgba(247,245,240,0.8);
  font-size: 1.05rem;
  line-height: 1.6;
}

.loc-huef-text strong {
  color: var(--cream);
  font-weight: 700;
}

.loc-huef-text a {
  color: var(--tan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.loc-huef-text a:hover {
  color: var(--tan-light);
}


/* ============ EXPLORE MORE LOCATIONS ============ */
.loc-more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.loc-more-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--card-radius-sm);
  border: 1px solid var(--cream-dark);
  transition: all var(--transition-base);
  text-decoration: none;
}

.loc-more-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--tan);
}

[data-theme="dark"] .loc-more-card {
  background: rgba(247,245,240,0.03);
  border-color: rgba(200,169,110,0.08);
}

[data-theme="dark"] .loc-more-card:hover {
  background: rgba(247,245,240,0.05);
  border-color: rgba(200,169,110,0.2);
}

.loc-more-card-state {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--burnt-orange);
}

.loc-more-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

[data-theme="dark"] .loc-more-card h3 {
  color: var(--cream);
}

.loc-more-card-drive {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.loc-more-card-drive svg {
  width: 14px;
  height: 14px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 2;
}

[data-theme="dark"] .loc-more-card-drive {
  color: rgba(224,221,214,0.5);
}

[data-theme="dark"] .loc-more-card-drive svg {
  stroke: var(--tan);
}


/* ============ CTA SECTION ============ */
.loc-cta {
  text-align: center;
  padding: var(--section-padding) 32px;
  background: var(--deep-forest);
  position: relative;
  overflow: hidden;
}

.loc-cta::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,169,110,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.loc-cta::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,169,110,0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.loc-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.loc-cta p {
  color: rgba(247,245,240,0.6);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.loc-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


/* ============ LOCATIONS INDEX — Premium Hub ============ */
.locations-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--deep-forest);
  position: relative;
  overflow: hidden;
  padding: 140px 32px 100px;
}

.locations-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,110,0.08), transparent 70%);
  border-radius: 50%;
}

.locations-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,169,110,0.05), transparent 70%);
  border-radius: 50%;
}

.locations-hero .section-subtitle { color: var(--tan); }
.locations-hero h1 { color: var(--cream); margin-bottom: 16px; position: relative; z-index: 1; }
.locations-hero p { color: rgba(247,245,240,0.6); max-width: 600px; margin: 0 auto; font-size: 1.1rem; line-height: 1.7; position: relative; z-index: 1; }

/* Mountain silhouette for index hero */
.locations-hero-mountains {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.locations-hero-mountains svg {
  width: 100%;
  height: auto;
  display: block;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: var(--section-padding) 0;
}

.location-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tan);
}

[data-theme="dark"] .location-card {
  background: rgba(247,245,240,0.03);
  border-color: rgba(200,169,110,0.08);
}

[data-theme="dark"] .location-card:hover {
  background: rgba(247,245,240,0.06);
  border-color: rgba(200,169,110,0.2);
}

.location-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.location-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out;
}

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

.location-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.2) 100%);
}

.location-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.location-card-state {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--burnt-orange);
}

.location-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

[data-theme="dark"] .location-card h3 { color: var(--cream); }

.location-card-drive {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.location-card-drive svg {
  width: 16px;
  height: 16px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 1.8;
}

[data-theme="dark"] .location-card-drive { color: rgba(224,221,214,0.5); }
[data-theme="dark"] .location-card-drive svg { stroke: var(--tan); }

.location-card .btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 24px;
  font-size: 0.88rem;
}


/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .loc-reasons-split {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .loc-hero {
    min-height: 75vh;
    padding: 120px 24px 80px;
  }

  .loc-reasons-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .loc-reasons-image {
    order: -1;
    max-height: 300px;
  }

  .loc-reasons-image img {
    min-height: 300px;
  }

  .loc-trails-grid {
    grid-template-columns: 1fr;
  }

  .loc-visit-card {
    grid-template-columns: 1fr;
  }

  .loc-visit-map {
    min-height: 300px;
  }

  .loc-visit-info {
    padding: 32px 24px;
  }

  .loc-more-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .loc-huef-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 40px 24px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .loc-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .loc-more-grid {
    grid-template-columns: 1fr;
  }

  .loc-visit-buttons {
    flex-direction: column;
  }

  .loc-visit-buttons .btn,
  .loc-visit-buttons .btn-phone {
    width: 100%;
    justify-content: center;
  }
}
