/* ============================================================
   LOCATION — dark background
   ============================================================ */
.location-section {
  background: #272727;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  border-top: 1px solid rgba(226,207,196,0.08);
}

.location-split {
  display: flex;
  width: 100%;
  min-height: 600px;
}

.location-content {
  flex: 0 0 55%;
  padding: clamp(64px, 8vw, 120px) clamp(32px, 5vw, 80px) clamp(64px, 8vw, 120px) clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.location-section .section-eyebrow { color: #C4886A; }
.location-section .section-eyebrow::before { background: #C4886A; }

.location-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #E2CFC4;
}

/* Hours grid */
.location-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 460px;
}
.location-hours-cell {
  background: #1f1f1f;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.location-hours-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #C4886A;
}
.location-hours-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 24px);
  color: #E2CFC4;
  line-height: 1.2;
}

.location-hours-value--link {
  text-decoration: none;
  color: #E2CFC4;
  transition: color 200ms ease;
}
.location-hours-value--link:hover { color: #C4886A; }

/* Instagram */
.location-ig {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(226,207,196,0.60);
  text-decoration: none;
  transition: color 250ms ease;
}
.location-ig:hover { color: #E2CFC4; }
.location-ig-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.65;
}

/* Amenity notes */
.location-amenities {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(226,207,196,0.85);
  line-height: 1.7;
}

/* Address link */
.location-address-link {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C4886A;
  text-decoration: none;
  border-bottom: 1px solid rgba(196,136,106,0.3);
  padding-bottom: 2px;
  width: fit-content;
  transition: border-color 250ms ease, color 250ms ease;
}
.location-address-link:hover {
  color: #D4A990;
  border-color: rgba(212,169,144,0.6);
}

/* Map — right 45% */
.location-map {
  flex: 0 0 45%;
  position: relative;
  min-height: 600px;
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(30%) contrast(0.9) brightness(0.85);
}

@media (max-width: 960px) {
  .location-split { flex-direction: column; }
  .location-content { flex: none; }
  .location-map { flex: none; min-height: 360px; position: relative; height: 360px; }
  .location-map iframe { position: absolute; }
}
