/* Location / SEO landing pages */
body {
  margin: 0;
  background: transparent;
  color: #1c1c22;
  font-family: 'DM Sans', 'Geist', Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.loc-container {
  width: min(720px, 100% - clamp(1rem, 4vw, 3.5rem) * 2);
  margin-inline: auto;
}

.loc-hero {
  padding: 8rem 0 3.5rem;
  text-align: center;
}

.loc-photo {
  width: min(100%, 28rem);
  margin: 0 auto 2rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(28, 28, 34, 0.04);
}

.loc-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 30%;
}

.loc-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #33b8b3;
  margin: 0 0 0.75rem;
}

.loc-title {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 350;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: #1c1c22;
}

.loc-lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #6b6b6b;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

.loc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  background: #33b8b3;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.loc-cta:hover {
  background: #2a9e9a;
}

.loc-content {
  padding: 2rem 0 3.5rem;
}

.loc-content.prose,
.loc-content .prose {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #3a3a42;
}

.loc-content .prose p {
  margin: 0 0 1.15rem;
}

.loc-content .prose h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 2rem 0 0.75rem;
  color: #1c1c22;
}

.loc-content .prose a {
  color: #2a9e9a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.loc-content .prose a:hover {
  color: #1c1c22;
}

.loc-cta-band {
  padding: 4rem 0 5rem;
  text-align: center;
  background: rgba(28, 28, 34, 0.03);
  border-top: 1px solid rgba(28, 28, 34, 0.08);
}

@media (max-width: 767px) {
  .loc-hero {
    padding: 7rem 0 2.5rem;
  }

  .loc-lead {
    font-size: 1rem;
  }
}
