/* =====================================================
   location.css — shared styles for all location pages
   ===================================================== */

/* BREADCRUMB */
.breadcrumb-bar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(184,154,110,0.12);
  padding: 0.75rem 0;
  margin-top: 0; /* sits below sticky nav */
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  list-style: none; padding: 0; margin: 0;
  font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--blush);
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--cream); }

/* LOCATION HERO */
.loc-hero {
  position: relative; overflow: hidden;
  min-height: 70vh;
  display: flex; align-items: center;
  padding: 8rem 0 5rem;
  background: var(--noir);
}
.loc-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184,154,110,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,154,0.05) 0%, transparent 50%);
}
.loc-hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.loc-hero-orb--1 {
  width: 400px; height: 400px;
  background: rgba(184,154,110,0.06);
  top: -100px; right: -100px;
}
.loc-hero-orb--2 {
  width: 300px; height: 300px;
  background: rgba(201,169,154,0.05);
  bottom: -50px; left: -50px;
}
.loc-hero-content { position: relative; z-index: 1; max-width: 700px; }
.loc-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(184,154,110,0.25);
  padding: 0.4rem 1rem;
}
.loc-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--gold); font-weight: 300;
}
.loc-badge-city {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--blush);
}
.loc-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--cream); margin-bottom: 1.2rem;
}
.loc-hero-title em { font-style: italic; color: var(--gold); display: block; }
.loc-hero-address {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.82rem; color: var(--blush);
  margin-bottom: 2.5rem; line-height: 1.6; max-width: 520px;
}
.loc-hero-address svg { flex-shrink: 0; margin-top: 3px; opacity: 0.7; }
.loc-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* SLIDESHOW */
.loc-slideshow {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
  height: 480px;
}
.slideshow-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.slide {
  min-width: 100%; height: 100%;
  position: relative; flex-shrink: 0;
}
.slide img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.slide--placeholder {
  background:
    linear-gradient(135deg, var(--warm-dark) 0%, var(--charcoal) 50%, var(--noir) 100%);
  display: flex; align-items: center; justify-content: center;
}
.slide-inner {
  text-align: center;
  border: 1px solid rgba(184,154,110,0.2);
  padding: 2rem 3rem;
}
.slide-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-style: italic;
  color: var(--gold); margin-bottom: 0.5rem;
}
.slide-hint { font-size: 0.75rem; color: var(--blush); letter-spacing: 0.1em; }
.slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(26,22,18,0.7); border: 1px solid rgba(184,154,110,0.3);
  color: var(--gold); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.2rem; z-index: 10;
  transition: all 0.2s; backdrop-filter: blur(4px);
}
.slide-btn:hover { background: rgba(184,154,110,0.2); }
.slide-btn--prev { left: 1.5rem; }
.slide-btn--next { right: 1.5rem; }
.slide-dots {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 10;
}
.slide-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(184,154,110,0.3); border: none; cursor: pointer;
  transition: background 0.2s;
}
.slide-dot.active { background: var(--gold); }

/* INFO GRID */
.loc-info { background: var(--noir); padding: 5rem 0; }
.loc-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.loc-info-card {
  background: var(--charcoal);
  border: 1px solid rgba(184,154,110,0.12);
  padding: 2rem; display: flex; flex-direction: column; gap: 1rem;
}
.loc-info-icon {
  width: 40px; height: 40px; color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.loc-info-icon svg { width: 24px; height: 24px; }
.loc-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400; color: var(--cream);
  letter-spacing: 0.05em;
}
.loc-info-rows { display: flex; flex-direction: column; gap: 0.5rem; }
.loc-info-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--mist);
  padding-bottom: 0.5rem; border-bottom: 1px solid rgba(184,154,110,0.08);
}
.loc-info-row:last-child { border-bottom: none; }
.loc-info-row span:first-child { color: var(--blush); }
.loc-info-row--full {
  font-size: 0.78rem; color: var(--mist); line-height: 1.7;
}
.loc-wa-btn {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--noir); background: var(--gold);
  padding: 0.75rem 1.2rem; text-decoration: none;
  margin-top: auto; transition: background 0.2s; font-weight: 500;
}
.loc-wa-btn:hover { background: var(--gold-light); }
.loc-maps-btn {
  font-size: 0.72rem; color: var(--gold); text-decoration: none;
  letter-spacing: 0.08em; margin-top: auto;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.loc-maps-btn:hover { text-decoration: underline; text-underline-offset: 3px; }

/* MAPS EMBED */
.loc-maps-section { background: var(--charcoal); padding: 5rem 0 0; }
.loc-maps-title { text-align: center; margin-bottom: 2.5rem; }
.loc-maps-embed { width: 100%; }
.loc-maps-embed iframe { display: block; filter: grayscale(20%) invert(5%); }
.loc-maps-section .container:last-child { padding-bottom: 4rem; }

/* SERVICES */
.loc-services { background: var(--noir); padding: 5rem 0; }
.loc-services-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; margin-top: 3rem;
  background: rgba(184,154,110,0.1);
  border: 1px solid rgba(184,154,110,0.1);
}
.loc-service-item {
  background: var(--noir); padding: 2rem 1.5rem;
  text-align: center; transition: background 0.3s;
}
.loc-service-item:hover { background: var(--warm-dark); }
.loc-service-icon {
  font-size: 1.5rem; display: block; margin-bottom: 1rem; color: var(--gold);
}
.loc-service-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300; color: var(--cream);
  margin-bottom: 0.6rem;
}
.loc-service-item p { font-size: 0.78rem; color: var(--mist); line-height: 1.65; }
.loc-service-kw {
  font-size: 0.65rem !important;
  color: rgba(201,169,154,0.4) !important;
  margin-top: 0.8rem !important;
  line-height: 1.5 !important;
}

/* TESTIMONIALS */
.loc-testi { background: var(--charcoal); padding: 5rem 0; }
.loc-testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.loc-testi-card {
  border-top: 1px solid rgba(184,154,110,0.25);
  padding: 1.8rem 0 0; margin: 0;
}
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }
.loc-testi-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic; color: var(--cream);
  line-height: 1.75; margin-bottom: 1.2rem;
}
.loc-testi-card footer { font-size: 0.72rem; color: var(--blush); letter-spacing: 0.08em; }
.loc-testi-card footer strong { color: var(--gold); display: block; margin-bottom: 0.2rem; }

/* OTHER LOCATIONS */
.loc-other { background: var(--noir); padding: 5rem 0; }
.loc-other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.loc-other-card {
  display: flex; align-items: center; gap: 1.2rem;
  border: 1px solid rgba(184,154,110,0.15); padding: 1.5rem;
  text-decoration: none; transition: all 0.25s; color: var(--cream);
}
.loc-other-card:hover { border-color: var(--gold); background: rgba(184,154,110,0.05); }
.loc-other-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: rgba(184,154,110,0.25); font-weight: 300; flex-shrink: 0;
}
.loc-other-card div { flex: 1; }
.loc-other-card strong { display: block; font-size: 0.85rem; font-weight: 500; color: var(--cream); margin-bottom: 0.2rem; }
.loc-other-card span { font-size: 0.72rem; color: var(--blush); }
.loc-other-arrow { color: var(--gold); font-size: 1rem; opacity: 0; transition: opacity 0.2s; }
.loc-other-card:hover .loc-other-arrow { opacity: 1; }

/* BOOKING CTA */
.loc-cta {
  text-align: center; padding: 6rem 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,154,110,0.1) 0%, transparent 70%), var(--charcoal);
  border-top: 1px solid rgba(184,154,110,0.12);
  border-bottom: 1px solid rgba(184,154,110,0.12);
}
.loc-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; color: var(--cream); line-height: 1.15;
  margin: 0.5rem 0 1rem;
}
.loc-cta-title em { font-style: italic; color: var(--gold); }
.loc-cta-desc { font-size: 0.88rem; color: var(--mist); max-width: 400px; margin: 0 auto 2.5rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .loc-info-grid { grid-template-columns: 1fr; }
  .loc-services-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-testi-grid { grid-template-columns: 1fr; }
  .loc-other-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .loc-hero { padding: 6rem 0 3rem; min-height: auto; }
  .loc-slideshow { height: 300px; }
  .loc-services-grid { grid-template-columns: 1fr; }
  .loc-hero-actions { flex-direction: column; }
  .loc-hero-actions .btn { text-align: center; }
}
