:root {
  --eh-bg: #11100e;
  --eh-panel: #1b1915;
  --eh-ink: #f6f1e7;
  --eh-muted: #c8bca8;
  --eh-line: rgba(246, 241, 231, 0.16);
  --eh-gold: #c8a968;
  --eh-gold-strong: #e5c77f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--eh-bg);
  color: var(--eh-ink);
  font-family: "Manrope", "DM Sans", sans-serif;
}

a {
  color: inherit;
}

.eh-local-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px clamp(20px, 5vw, 64px);
  background: rgba(17, 16, 14, 0.92);
  border-bottom: 1px solid var(--eh-line);
  backdrop-filter: blur(14px);
}

.eh-local-logo img {
  display: block;
  width: min(250px, 48vw);
  height: auto;
}

.eh-local-header nav,
.eh-local-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--eh-muted);
  font-size: 0.92rem;
}

.eh-local-header a,
.eh-local-footer a,
.eh-local-pill-grid a,
.eh-local-service-grid a {
  text-decoration: none;
}

.eh-local-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  min-height: 74vh;
  padding: clamp(64px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.eh-local-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--eh-gold-strong);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eh-local-hero h1,
.eh-local-section h2 {
  margin: 0;
  color: var(--eh-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
}

.eh-local-hero h1 {
  max-width: 860px;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
  overflow-wrap: break-word;
}

.eh-local-hero p,
.eh-local-section p {
  max-width: 780px;
  color: var(--eh-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.68;
}

.eh-local-hero figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 22px;
}

.eh-local-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eh-local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.eh-local-button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--eh-gold);
  color: #15120d;
  font-weight: 700;
  text-decoration: none;
}

.eh-local-button--ghost {
  background: transparent;
  color: var(--eh-ink);
  border: 1px solid var(--eh-line);
}

.eh-local-section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.eh-local-section h2 {
  max-width: 880px;
  font-size: clamp(2.6rem, 6vw, 6.2rem);
}

.eh-local-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.eh-local-band {
  background: var(--eh-panel);
}

.eh-local-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.eh-local-list li,
.eh-local-proof-grid p,
.eh-local-faq details,
.eh-local-service-grid a {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--eh-line);
  border-radius: 14px;
}

.eh-local-list li {
  padding: 16px 18px;
  color: var(--eh-muted);
}

.eh-local-pill-grid,
.eh-local-service-grid,
.eh-local-proof-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.eh-local-pill-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.eh-local-pill-grid a {
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(200, 169, 104, 0.12);
  color: var(--eh-gold-strong);
  text-align: center;
}

.eh-local-service-grid,
.eh-local-proof-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.eh-local-service-grid a {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.eh-local-service-grid strong {
  font-size: 1.16rem;
}

.eh-local-service-grid span {
  color: var(--eh-muted);
}

.eh-local-proof-grid p {
  margin: 0;
  padding: 22px;
}

.eh-local-faq {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 980px;
}

.eh-local-faq details {
  padding: 18px 20px;
}

.eh-local-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.eh-local-faq p {
  margin-bottom: 0;
}

.eh-local-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--eh-line);
  color: var(--eh-muted);
}

.eh-local-footer p {
  max-width: 720px;
  margin: 0;
}

@media (max-width: 840px) {
  .eh-local-header,
  .eh-local-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .eh-local-hero,
  .eh-local-two {
    grid-template-columns: 1fr;
  }

  .eh-local-hero {
    min-height: auto;
    padding-top: 136px;
  }
}
