/* ============================================================
   LOCATION PAGE STYLES
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.loc-hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.loc-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.loc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.1) 100%);
}
.loc-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 80px;
  color: #fff;
  max-width: 800px;
}
.loc-hero__eyebrow {
  font-family: 'Commissioner', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.loc-hero__title {
  font-family: 'League Gothic', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.loc-hero__subtitle {
  font-family: 'Commissioner', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin: 0 0 36px;
  max-width: 480px;
  line-height: 1.5;
}
.loc-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.loc-hero__since {
  font-family: 'Commissioner', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

/* ── Quick Bar ────────────────────────────────────────────── */
.loc-quickbar {
  background: #111;
  color: #fff;
  display: flex;
  align-items: stretch;
}
.loc-quickbar__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.loc-quickbar__item:last-child { border-right: none; }
.loc-quickbar__item:hover { background: rgba(255,255,255,0.05); }
.loc-quickbar__icon {
  font-size: 20px;
  opacity: 0.5;
  flex-shrink: 0;
}
.loc-quickbar__label {
  font-family: 'Commissioner', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
}
.loc-quickbar__value {
  font-family: 'Commissioner', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
}
.loc-quickbar__cta {
  background: var(--red);
  flex: 0 0 auto;
  padding: 22px 40px;
  font-family: 'Commissioner', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  border-right: none;
  transition: background 0.2s;
}
.loc-quickbar__cta:hover { background: #c50000; }

/* ── Stats strip ──────────────────────────────────────────── */
.loc-stats {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
}
.loc-stat {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.loc-stat:last-child { border-right: none; }
.loc-stat__number {
  font-family: 'League Gothic', sans-serif;
  font-size: 48px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.loc-stat__label {
  font-family: 'Commissioner', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 4px;
}

/* ── Two-column layout ────────────────────────────────────── */
.loc-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px;
}
.loc-sidebar {
  padding-left: 60px;
  align-self: start;
  position: sticky;
  top: 100px;
}

/* ── Section headings ─────────────────────────────────────── */
.loc-section {
  margin-bottom: 64px;
}
.loc-section__label {
  font-family: 'Commissioner', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.loc-section__title {
  font-family: 'League Gothic', sans-serif;
  font-size: clamp(40px, 4vw, 60px);
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 24px;
  color: var(--black);
}
.loc-section__body {
  font-family: 'Commissioner', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: #333;
  max-width: 640px;
}
.loc-section__body p { margin: 0 0 16px; }
.loc-section__body p:last-child { margin-bottom: 0; }

/* ── Staff grid ───────────────────────────────────────────── */
.loc-staff {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 32px;
}
.loc-staff-card {
  background: #f6f6f6;
  padding: 28px 24px;
}
.loc-staff-card__name {
  font-family: 'League Gothic', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.loc-staff-card__title {
  font-family: 'Commissioner', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.loc-staff-card__bio {
  font-family: 'Commissioner', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: #555;
}

/* ── Reviews ──────────────────────────────────────────────── */
.loc-reviews {
  background: #111;
  padding: 80px;
}
.loc-reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.loc-reviews__title {
  font-family: 'League Gothic', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  text-transform: uppercase;
  color: #fff;
  line-height: 0.95;
}
.loc-reviews__rating {
  font-family: 'Commissioner', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-align: right;
}
.loc-reviews__stars {
  font-size: 22px;
  color: #FFB800;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 4px;
}
.loc-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1240px;
  margin: 0 auto;
}
.loc-review-card {
  background: #1a1a1a;
  padding: 36px 32px;
}
.loc-review-card__stars {
  color: #FFB800;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.loc-review-card__text {
  font-family: 'Commissioner', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.loc-review-card__author {
  font-family: 'Commissioner', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.loc-review-card__source {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  margin-top: 2px;
}

/* ── Process ──────────────────────────────────────────────── */
.loc-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 32px;
}
.loc-process-step {
  background: #f6f6f6;
  padding: 32px 28px;
}
.loc-process-step__num {
  font-family: 'League Gothic', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(0,0,0,0.08);
  margin-bottom: 8px;
}
.loc-process-step__title {
  font-family: 'League Gothic', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.loc-process-step__body {
  font-family: 'Commissioner', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: #555;
}

/* ── Sidebar ──────────────────────────────────────────────── */
.loc-card {
  background: #f6f6f6;
  padding: 32px;
  margin-bottom: 2px;
}
.loc-card__title {
  font-family: 'League Gothic', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.loc-card__row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.loc-card__row:last-child { margin-bottom: 0; }
.loc-card__icon {
  font-size: 16px;
  opacity: 0.4;
  flex-shrink: 0;
  margin-top: 2px;
}
.loc-card__text {
  font-family: 'Commissioner', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #333;
  line-height: 1.45;
}
.loc-card__text a {
  color: var(--red);
  text-decoration: none;
}
.loc-card__text a:hover { text-decoration: underline; }
.loc-card__hours-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Commissioner', sans-serif;
  font-size: 14px;
  color: #333;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.loc-card__hours-row:last-child { border-bottom: none; }
.loc-card__hours-row span:last-child { font-weight: 500; }
.loc-card__badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Commissioner', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  margin-bottom: 12px;
}
.loc-cta-box {
  background: var(--black);
  padding: 32px;
  margin-bottom: 2px;
  text-align: center;
}
.loc-cta-box__title {
  font-family: 'League Gothic', sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}
.loc-cta-box__sub {
  font-family: 'Commissioner', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  line-height: 1.5;
}
.loc-cta-box .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: block;
}
.loc-map {
  width: 100%;
  height: 260px;
  background: #e8e8e8;
  overflow: hidden;
}
.loc-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.loc-breadcrumb {
  padding: 16px 80px;
  font-family: 'Commissioner', sans-serif;
  font-size: 13px;
  color: #888;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.loc-breadcrumb a {
  color: #888;
  text-decoration: none;
}
.loc-breadcrumb a:hover { color: var(--red); }
.loc-breadcrumb__sep { margin: 0 8px; }

/* ── Resort context ───────────────────────────────────────── */
.loc-resort {
  background: #f6f6f6;
  padding: 80px;
}
.loc-resort__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.loc-resort__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
}
.loc-resort-stat {
  background: #fff;
  padding: 24px;
}
.loc-resort-stat__num {
  font-family: 'League Gothic', sans-serif;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
}
.loc-resort-stat__label {
  font-family: 'Commissioner', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}

/* ── Manager card ─────────────────────────────────────────── */
.loc-manager {
  margin-top: 24px;
}
.loc-manager__card {
  background: #111;
  color: #fff;
  padding: 32px 36px;
  display: inline-block;
}
.loc-manager__name {
  font-family: 'League Gothic', sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.loc-manager__title {
  font-family: 'Commissioner', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.loc-manager__links {
  font-family: 'Commissioner', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}
.loc-manager__links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.loc-manager__links a:hover { color: #fff; }
.loc-manager__sep { margin: 0 10px; opacity: 0.3; }

/* ── Directions section ───────────────────────────────────── */
.loc-directions {
  background: #fff;
  padding: 80px;
  border-top: 1px solid #eee;
}
.loc-directions__inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ── Locations Directory Page ─────────────────────────────── */
.loc-dir-header {
  background: #111;
  padding: 40px 80px 32px;
  border-bottom: 3px solid var(--red);
}
.loc-dir-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.loc-dir-header__title {
  font-family: 'League Gothic', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 8px 0 0;
}
.loc-dir-header__meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  padding-bottom: 6px;
}
.loc-dir-header__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.loc-dir-header__num {
  font-family: 'League Gothic', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
}
.loc-dir-header__label {
  font-family: 'Commissioner', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.loc-dir-header__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}
/* ── Locations Atlas (one-view directory) ─────────────────── */
.loc-atlas {
  background: #fff;
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 80px 64px;
}
.loc-atlas__inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.loc-atlas__side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.loc-atlas__country {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'League Gothic', sans-serif;
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #111;
}
.loc-atlas__count {
  font-family: 'Commissioner', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #111;
  padding: 2px 8px;
  letter-spacing: 0.04em;
}
.loc-atlas__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.loc-atlas__list--cols {
  columns: 3;
  column-gap: 48px;
}
.loc-atlas__list li {
  break-inside: avoid;
}
.loc-atlas__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
}
.loc-atlas__city {
  font-family: 'League Gothic', sans-serif;
  font-size: 21px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #111;
  line-height: 1;
  transition: color 0.15s ease;
}
.loc-atlas__link:hover .loc-atlas__city {
  color: var(--red);
}
.loc-atlas__tag {
  font-family: 'Commissioner', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.loc-atlas__group--run {
  margin-top: 56px;
}
.loc-atlas__note {
  font-family: 'Commissioner', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: #888;
  margin-left: auto;
  align-self: flex-end;
  padding-bottom: 2px;
}
.loc-atlas__list--run {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 48px;
}

/* ── Locations Index Page ─────────────────────────────────── */
.loc-index-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.loc-index-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loc-index-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}
.loc-index-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 80px;
}
.loc-index-hero__title {
  font-family: 'League Gothic', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.loc-index-hero__sub {
  font-family: 'Commissioner', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0;
}
.loc-index-body {
  background: #f9f9f9;
  padding: 80px;
}
.loc-index-region {
  margin-bottom: 72px;
}
.loc-index-region:last-child {
  margin-bottom: 0;
}
.loc-index-region__header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #111;
}
.loc-index-region__title {
  font-family: 'League Gothic', sans-serif;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #111;
  margin: 0;
}
.loc-index-region__count {
  font-family: 'Commissioner', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6e6e6e;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.loc-index-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.loc-index-card {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
  text-decoration: none;
  background: #1a1a1a;
}
.loc-index-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.loc-index-card:hover .loc-index-card__img {
  transform: scale(1.05);
}
.loc-index-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  transition: background 0.3s ease;
}
.loc-index-card:hover .loc-index-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 100%);
}
.loc-index-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
}
.loc-index-card__name {
  font-family: 'League Gothic', sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.loc-index-card__sub {
  font-family: 'Commissioner', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.loc-index-card__arrow {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 18px;
  color: rgba(255,255,255,0);
  transition: color 0.2s ease, transform 0.2s ease;
}
.loc-index-card:hover .loc-index-card__arrow {
  color: var(--red);
  transform: translateX(3px);
}
.loc-index-cta {
  background: #111;
  padding: 80px;
}
.loc-index-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.loc-index-cta__title {
  font-family: 'League Gothic', sans-serif;
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.loc-index-cta__body {
  font-family: 'Commissioner', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .loc-body { grid-template-columns: 1fr; padding: 60px 40px; }
  .loc-sidebar { padding-left: 0; margin-top: 48px; }
  .loc-hero__content { padding: 48px 40px; }
  .loc-reviews { padding: 60px 40px; }
  .loc-resort { padding: 60px 40px; }
  .loc-resort__inner { grid-template-columns: 1fr; gap: 40px; }
  .loc-breadcrumb { padding: 14px 40px; }
  .loc-stats { flex-wrap: wrap; }
  .loc-stat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .loc-index-body { padding: 60px 40px; }
  .loc-index-grid { grid-template-columns: repeat(3, 1fr); }
  .loc-index-hero__content { padding: 40px; }
  .loc-index-cta { padding: 60px 40px; }
  .loc-dir-header { padding: 40px 40px 28px; }
  .loc-dir-header__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .loc-atlas { padding: 40px 40px 56px; }
  .loc-atlas__inner { grid-template-columns: 1fr; gap: 48px; }
  .loc-atlas__side { flex-direction: row; gap: 48px; }
  .loc-atlas__side .loc-atlas__group { flex: 1; }
}
@media (max-width: 768px) {
  .loc-hero { height: 80vw; min-height: 420px; }
  .loc-hero__content { padding: 32px 24px; }
  .loc-quickbar { flex-direction: column; }
  .loc-quickbar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .loc-quickbar__cta { width: 100%; text-align: center; }
  .loc-body { padding: 48px 24px; }
  .loc-staff { grid-template-columns: 1fr; }
  .loc-reviews__grid { grid-template-columns: 1fr; }
  .loc-process { grid-template-columns: 1fr 1fr 1fr; }
  .loc-reviews { padding: 48px 24px; }
  .loc-reviews__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .loc-resort { padding: 48px 24px; }
  .loc-breadcrumb { padding: 12px 24px; }
  .loc-index-body { padding: 48px 24px; }
  .loc-index-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-index-hero { height: 360px; }
  .loc-index-hero__content { padding: 32px 24px; }
  .loc-index-cta { padding: 48px 24px; }
  .loc-dir-header { padding: 32px 24px 24px; }
  .loc-dir-header__meta { gap: 16px 20px; flex-wrap: wrap; }
  .loc-dir-header__divider { display: none; }
  .loc-atlas { padding: 32px 24px 48px; }
  .loc-atlas__list--cols { columns: 2; column-gap: 32px; }
  .loc-atlas__side { flex-direction: column; gap: 40px; }
  .loc-atlas__country { flex-wrap: wrap; }
  .loc-atlas__note { margin-left: 0; flex-basis: 100%; }
  .loc-atlas__list--run { grid-template-columns: 1fr; }
}

/* ── FAQ Section ───────────────────────────────────────────── */
.loc-faq {
  background: #f6f6f6;
  padding: 80px 0;
}
.loc-faq__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 80px;
}
.loc-faq__list {
  margin: 32px 0 0;
}
.loc-faq__item {
  border-top: 1px solid #ddd;
  padding: 24px 0;
}
.loc-faq__item:last-child {
  border-bottom: 1px solid #ddd;
}
.loc-faq__q {
  font-family: 'League Gothic', sans-serif;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: #111;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-weight: 400;
}
.loc-faq__a {
  font-family: 'Commissioner', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #444;
  margin: 0;
}

/* ── Nearby Locations ──────────────────────────────────────── */
.loc-nearby {
  background: #111;
  padding: 56px 0;
}
.loc-nearby__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
.loc-nearby__title {
  font-family: 'League Gothic', sans-serif;
  font-size: 32px;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
  margin: 8px 0 24px;
}
.loc-nearby__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.loc-nearby__item {
  display: block;
  background: #1a1a1a;
  padding: 20px 20px;
  text-decoration: none;
  transition: background 0.18s;
}
.loc-nearby__item:hover {
  background: #222;
}
.loc-nearby__item:hover .loc-nearby__name {
  color: var(--red);
}
.loc-nearby__name {
  font-family: 'League Gothic', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  display: block;
  transition: color 0.18s;
}
.loc-nearby__item--all {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
}
.loc-nearby__item--all:hover {
  background: #1a1a1a;
}
.loc-nearby__item--all .loc-nearby__name {
  color: rgba(255,255,255,0.5);
  font-size: 18px;
}
.loc-nearby__item--all:hover .loc-nearby__name {
  color: var(--red);
}

@media (max-width: 1024px) {
  .loc-nearby__grid { grid-template-columns: repeat(3, 1fr); }
  .loc-faq__inner { padding: 0 40px; }
  .loc-nearby__inner { padding: 0 40px; }
}
@media (max-width: 768px) {
  .loc-nearby__grid { grid-template-columns: repeat(2, 1fr); }
  .loc-faq__inner { padding: 0 24px; }
  .loc-nearby__inner { padding: 0 24px; }
  .loc-faq { padding: 48px 0; }
  .loc-nearby { padding: 40px 0; }
}
