:root {
  --location-text: #252525;
  --location-muted: #626862;
  --location-card: #ffffff;
  --location-border: #e2e6e1;
}

.location-page { background: #f7f5f2; }

.location-content {
  display: grid;
  gap: 26px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px 100px;
}

.location-hero,
.location-details {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 44px;
  padding: 46px;
  color: var(--location-text);
  background: var(--location-card);
  border: 1px solid var(--location-border);
  border-radius: 28px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.location-hero { border-top: 5px solid var(--ff-green); }
.location-eyebrow { margin: 0 0 10px; color: var(--ff-green); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.location-hero h1 { margin: 0 0 22px; font-size: clamp(38px, 6vw, 64px); letter-spacing: -.045em; }
.location-hero p, .location-details p { color: var(--location-muted); font-size: 17px; }
.location-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.location-hero__actions .btn { margin: 0; border-radius: 6px; font-weight: 800; }
.location-hero__actions .btn.secondary { background: #17252a; }

.location-address {
  align-self: stretch;
  padding: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #135c30, #1a7b3e);
  border-radius: 22px;
}
.location-address h2 { margin-bottom: 18px; font-size: 26px; }
.location-address address { font-style: normal; font-size: 18px; line-height: 1.7; }
.location-address a { color: #ffffff; font-weight: 700; }
.location-address p { margin: 18px 0 0; color: #d8f1de; font-size: 14px; }
.location-address .location-holiday-hours { display: inline-block; margin-top: 8px; font-size: 12px; }

.location-photo {
  display: block;
  width: 100%;
  height: clamp(300px, 48vw, 560px);
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}

.location-details { align-items: center; }
.location-details h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -.035em; }
.location-details ul { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.location-details li { position: relative; padding-left: 25px; color: var(--location-muted); }
.location-details li::before { position: absolute; left: 0; color: var(--ff-green); content: "✓"; font-weight: 900; }
.location-map { width: 100%; height: 360px; border: 0; border-radius: 20px; }

@media (max-width: 800px) { .location-hero, .location-details { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .location-content { padding: 48px 16px 70px; }
  .location-hero, .location-details { gap: 28px; padding: 30px 22px; border-radius: 22px; }
  .location-photo { height: 280px; border-radius: 22px; }
  .location-map { height: 280px; }
}

html[data-theme="dark"] { --location-text: #eef3ef; --location-muted: #b2bdb4; --location-card: #18211b; --location-border: #334038; }
html[data-theme="dark"] .location-page { background: #101713; }
