.store-location-page {
  --sl-yellow: #f5c400;
  --sl-black: #0d0d0d;
  --sl-dark: #151515;
  --sl-mid: #222;
  --sl-light: #f4f4f4;
  --sl-muted: #666;
  --sl-line: #e7e7e7;
  color: var(--sl-black);
  font-family: "Barlow Condensed", sans-serif;
  overflow: hidden;
}

.store-location-page *,
.store-location-page *::before,
.store-location-page *::after {
  box-sizing: border-box;
}

.sl-container {
  width: min(1100px, calc(100% - 96px));
  margin: 0 auto;
}

.sl-narrow {
  max-width: 820px;
}

.store-location-page h1,
.store-location-page h2,
.store-location-page h3,
.store-location-page p {
  margin: 0;
}

.store-location-page h2 {
  font-size: 42px;
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
}

.store-location-page h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  text-transform: uppercase;
}

.store-location-page p {
  color: #444;
  font-size: 15px;
  line-height: 1.75;
}

.store-location-page a {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sl-hero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  padding: 96px 0 84px;
  display: flex;
  align-items: flex-end;
  background: var(--sl-black);
}

.sl-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.3));
}

.sl-hero::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 6px;
  background: var(--sl-yellow);
}

.sl-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(315deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%) 0 0 / 28px 28px,
    #1a1a1a;
}

.sl-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.9) contrast(1.05);
}

.sl-hero-media.sl-is-placeholder img {
  opacity: 0.18;
  filter: grayscale(1);
}

.sl-hero-media.sl-has-image span {
  display: none;
}

.sl-hero-media span,
.sl-media::after,
.sl-map-placeholder span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.36);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 10px 14px;
  text-transform: uppercase;
}

.sl-breadcrumb {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  text-transform: uppercase;
}

.sl-breadcrumb a {
  color: inherit;
}

.sl-breadcrumb a:hover {
  color: var(--sl-yellow);
}

.sl-hero h1 {
  max-width: 780px;
  color: #fff;
  font-size: 78px;
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
}

.sl-hero h1 span {
  display: block;
  color: var(--sl-yellow);
}

.sl-hero p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.sl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.sl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 2px solid transparent;
  color: var(--sl-black);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.sl-btn-yellow {
  background: var(--sl-yellow);
  border-color: var(--sl-yellow);
}

.sl-btn-yellow:hover {
  background: transparent;
  color: var(--sl-yellow);
}

.sl-btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.sl-btn-outline:hover {
  border-color: #fff;
  color: #fff;
}

.sl-btn-dark {
  background: var(--sl-black);
  border-color: var(--sl-black);
  color: #fff;
}

.sl-btn-dark:hover {
  background: transparent;
  color: var(--sl-black);
}

.sl-btn-clear {
  border-color: rgba(0, 0, 0, 0.35);
  color: var(--sl-black);
}

.sl-btn-clear:hover {
  border-color: var(--sl-black);
}

.sl-section {
  padding: 72px 0;
}

.sl-locations-section,
.sl-testimonials-section,
.sl-light-section {
  background: var(--sl-light);
}

.sl-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.sl-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--sl-yellow);
}

.sl-section-intro {
  max-width: 640px;
  margin-top: 12px;
}

.sl-locations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  margin-top: 38px;
}

.sl-location-card {
  position: relative;
  display: block;
  min-height: 235px;
  overflow: hidden;
  background: var(--sl-mid);
  text-decoration: none;
}

.sl-location-card .sl-media {
  position: absolute;
  inset: 0;
}

.sl-location-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.08));
}

.sl-location-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  padding: 24px 20px 20px;
}

.sl-location-state {
  display: block;
  color: var(--sl-yellow);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.sl-location-city {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.sl-location-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--sl-yellow);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.sl-location-link::after,
.sl-text-link::after {
  content: ' \2192';
}

.sl-location-card:hover .sl-location-link {
  color: #fff;
}

.sl-text-link:hover {
  color: #b89200;
}

.sl-map-section .sl-text-link:hover,
.sl-gallery-section .sl-text-link:hover {
  color: #fff;
}

.sl-testimonials-section .sl-text-link {
  color: var(--sl-black);
}

.sl-location-card:hover .sl-media img,
.sl-gallery-item:hover .sl-media img {
  transform: scale(1.05);
}

.sl-note {
  margin-top: 18px;
  color: #777;
  font-size: 13px;
}

.sl-media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52) 25%, transparent 25%) 0 0 / 30px 30px,
    linear-gradient(315deg, rgba(255, 255, 255, 0.52) 25%, transparent 25%) 0 0 / 30px 30px,
    #cfcfcf;
}

.sl-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(1);
  transition: transform 0.45s ease;
}

.sl-media.sl-has-image {
  background: var(--sl-mid);
}

.sl-media.sl-has-image img {
  opacity: 0.7;
  filter: none;
}

.sl-gallery-item .sl-media.sl-has-image img {
  opacity: 0.82;
}

.sl-media.sl-has-image::after {
  display: none;
}

.sl-media::after {
  content: 'Image Placeholder';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.sl-map-section,
.sl-gallery-section,
.sl-dark-section {
  background: var(--sl-black);
}

.sl-map-section h2,
.sl-gallery-section h2,
.sl-dark-section h2 {
  color: #fff;
}

.sl-map-section .sl-eyebrow,
.sl-gallery-section .sl-eyebrow,
.sl-dark-section .sl-eyebrow {
  color: rgba(255, 255, 255, 0.42);
}

.sl-map-section .sl-section-intro,
.sl-gallery-section .sl-section-intro,
.sl-dark-section .sl-section-intro,
.sl-dark-section p {
  color: rgba(255, 255, 255, 0.68);
}

.sl-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.sl-text-link {
  color: var(--sl-yellow);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.sl-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.sl-map-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--sl-mid);
}

.sl-map-embed,
.sl-map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 34px 34px,
    #202020;
}

.sl-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.sl-map-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.28;
  filter: grayscale(1) contrast(1.08);
}

.sl-map-placeholder.sl-has-image span {
  display: none;
}

.sl-map-placeholder.sl-is-placeholder img {
  opacity: 0.14;
}

.sl-map-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.04));
}

.sl-map-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
  pointer-events: none;
}

.sl-map-content span {
  display: block;
  color: var(--sl-yellow);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.sl-map-content strong {
  display: block;
  margin: 4px 0 8px;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.sl-map-content p,
.sl-map-content a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.sl-map-content a {
  text-decoration: none;
  pointer-events: auto;
}

.sl-divider {
  height: 5px;
  background: var(--sl-yellow);
}

.sl-content-section a,
.sl-light-section a,
.sl-faq-section a {
  color: var(--sl-black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sl-content-section ul {
  max-width: 760px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.sl-content-section li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--sl-line);
  color: #444;
  font-size: 15px;
  line-height: 1.65;
}

.sl-content-section li:first-child {
  border-top: 1px solid var(--sl-line);
}

.sl-content-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 7px;
  height: 7px;
  background: var(--sl-yellow);
}

.sl-content-section p + p,
.sl-light-section p + p {
  margin-top: 16px;
}

.sl-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
}

.sl-two-col p {
  margin-top: 16px;
}

.sl-why-grid,
.sl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin-top: 36px;
}

.sl-why-grid article {
  padding: 30px 26px;
  background: var(--sl-mid);
}

.sl-why-grid article > span {
  display: block;
  width: 36px;
  height: 4px;
  margin-bottom: 20px;
  background: var(--sl-yellow);
}

.sl-why-grid h3 {
  color: #fff;
}

.sl-why-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.sl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 4px;
}

.sl-gallery-item {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  margin: 0;
  background: var(--sl-mid);
}

.sl-gallery-item:nth-child(1) {
  grid-column: span 5;
}

.sl-gallery-item:nth-child(2) {
  grid-column: span 3;
}

.sl-gallery-item:nth-child(3) {
  grid-column: span 4;
}

.sl-gallery-item:nth-child(4) {
  grid-column: span 3;
}

.sl-gallery-item:nth-child(5) {
  grid-column: span 5;
}

.sl-gallery-item:nth-child(6) {
  grid-column: span 4;
}

.sl-gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 38px 16px 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent);
}

.sl-rating-panel {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 4px;
  padding: 24px 28px;
  background: var(--sl-black);
}

.sl-rating-panel strong {
  color: #fff;
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
}

.sl-rating-panel p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.sl-stars {
  color: var(--sl-yellow);
  font-size: 16px;
  line-height: 1;
}

.sl-testimonials-grid article {
  padding: 28px 26px;
  background: #fff;
}

.sl-testimonials-grid p {
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  font-style: italic;
}

.sl-testimonials-grid strong {
  display: block;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--sl-line);
  color: var(--sl-black);
  font-size: 14px;
}

.sl-testimonials-grid small {
  display: block;
  margin-top: 2px;
  color: #8a8a8a;
  font-size: 12px;
}

.sl-faq-list {
  margin-top: 30px;
  border-top: 1px solid var(--sl-line);
}

.sl-faq-list details {
  border-bottom: 1px solid var(--sl-line);
}

.sl-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  color: var(--sl-black);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  text-transform: uppercase;
}

.sl-faq-list summary::-webkit-details-marker {
  display: none;
}

.sl-faq-list summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  background: var(--sl-yellow);
  color: var(--sl-black);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.sl-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.sl-faq-list details p {
  max-width: 700px;
  padding: 0 0 20px;
}

.sl-cta {
  padding: 56px 0;
  background: var(--sl-yellow);
  text-align: center;
}

.sl-cta h2 {
  color: var(--sl-black);
  font-size: 44px;
}

.sl-cta p {
  max-width: 740px;
  margin: 12px auto 0;
  color: rgba(0, 0, 0, 0.68);
}

.sl-cta .sl-actions {
  justify-content: center;
}

@media screen and (max-width: 1100px) {
  .sl-locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 900px) {
  .sl-container {
    width: min(100% - 48px, 1100px);
  }

  .sl-hero {
    min-height: 450px;
    padding: 70px 0 64px;
  }

  .sl-hero h1 {
    font-size: 56px;
  }

  .store-location-page h2,
  .sl-cta h2 {
    font-size: 34px;
  }

  .sl-map-grid,
  .sl-two-col,
  .sl-why-grid,
  .sl-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .sl-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .sl-gallery-item:nth-child(n) {
    grid-column: auto;
  }
}

@media screen and (max-width: 640px) {
  .sl-container {
    width: min(100% - 32px, 1100px);
  }

  .sl-section {
    padding: 52px 0;
  }

  .sl-hero {
    min-height: 420px;
    padding: 58px 0 56px;
  }

  .sl-hero::after {
    background: rgba(0, 0, 0, 0.78);
  }

  .sl-hero h1 {
    font-size: 42px;
  }

  .sl-hero p,
  .store-location-page p {
    font-size: 14px;
  }

  .store-location-page h2,
  .sl-cta h2 {
    font-size: 28px;
  }

  .sl-actions,
  .sl-section-head,
  .sl-rating-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .sl-btn {
    width: 100%;
  }

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

  .sl-location-card,
  .sl-gallery-item {
    min-height: 210px;
  }

  .sl-gallery-grid {
    grid-auto-rows: 210px;
  }

  .sl-map-card {
    min-height: 260px;
  }

  .sl-faq-list summary {
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.4;
  }
}
