@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-normal-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
}

.mobile-menu-shell { display: none; }

@media (max-width: 47.999rem) {
  .mobile-menu-shell { display: block; }
  .mobile-menu-button {
    position: absolute;
    top: 1.35rem;
    right: 1.25rem;
    z-index: 1002;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(214, 165, 80, .45);
    border-radius: 999px;
    background: rgba(23, 19, 15, .82);
    backdrop-filter: blur(12px);
  }
  .mobile-menu-button span {
    display: block;
    width: 18px;
    height: 1px;
    background: #d6a550;
    transition: transform .2s ease, opacity .2s ease;
  }
  .mobile-menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mobile-menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .62);
    backdrop-filter: blur(4px);
  }
  .mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    width: min(82vw, 22rem);
    height: 100dvh;
    flex-direction: column;
    gap: .35rem;
    padding: 6rem 1.5rem 2rem;
    border-left: 1px solid rgba(214, 165, 80, .2);
    background: #17130f;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .45);
  }
  .mobile-menu-panel[hidden],
  .mobile-menu-backdrop[hidden] { display: none; }
  .mobile-menu-panel a {
    padding: .9rem .75rem;
    border-bottom: 1px solid rgba(214, 165, 80, .14);
    color: rgba(255, 250, 240, .88);
    font-family: Inter, sans-serif;
    font-size: .95rem;
    letter-spacing: .08em;
    text-decoration: none;
  }
  .mobile-menu-panel .mobile-menu-cta {
    margin-top: 1.25rem;
    border: 0;
    border-radius: 999px;
    background: #d6a550;
    color: #17130f;
    text-align: center;
    text-transform: uppercase;
  }
  body.mobile-menu-open { overflow: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

.local-seo-section {
  max-width: 64rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}
.local-seo-eyebrow {
  color: #d6a550;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.local-seo-section h2 {
  max-width: 48rem;
  margin: 1rem auto 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
}
.local-seo-section p {
  max-width: 46rem;
  margin: .8rem auto;
  color: rgba(255, 250, 240, .7);
  font-weight: 300;
  line-height: 1.75;
}
.local-seo-section > a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: .8rem 1.8rem;
  border: 1px solid rgba(214, 165, 80, .5);
  border-radius: 999px;
  color: #d6a550;
  font-size: .8rem;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}