@font-face {
  font-family: "Mazzard H";
  src: url("MazzardH-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Mazzard H";
  src: url("MazzardH-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  --ink: #23241f;
  --muted: #707168;
  --red: #961914;
  --sage: #a8b69b;
  --sage-light: #eef2eb;
  --cream: #f5f1e7;
  --line: #e7e7e2;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Mazzard H", "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin: 0; }
img { display: block; max-width: 100%; }

.page-shell {
  --content-inset: 30px;
  --section-rhythm: 24px;
  width: min(100% - 32px, 560px);
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
}

.wordmark img { width: 132px; height: auto; }

.city {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #565750;
  font-size: 12px;
}

.city i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(150, 25, 20, .09);
}

.hero {
  min-height: 340px;
  position: relative;
  overflow: hidden;
  border: 1px solid #eeede8;
  border-radius: 20px;
  background: var(--cream);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.83) 44%, rgba(255,255,255,0) 68%);
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
  object-fit: cover;
  object-position: center;
  transform: translate(3.5%, -4%) scale(1.09);
  transform-origin: center;
}

.hero-copy {
  width: 66%;
  min-height: 340px;
  padding: 30px 0 28px var(--content-inset);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero h1 {
  max-width: 330px;
  font-size: clamp(33px, 5.9vw, 40px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.05em;
}

.hero p {
  max-width: 290px;
  margin-top: 18px;
  color: #5d5e56;
  font-size: 13px;
  line-height: 1.48;
}

.locations { margin-top: var(--section-rhythm); }

.section-heading {
  margin-bottom: var(--section-rhythm);
  padding-inline: var(--content-inset);
}

.section-heading h2,
.discover h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.04em;
}

.location-list { display: grid; gap: 8px; }

.location-card {
  position: relative;
  padding: 16px var(--content-inset);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.location-copy {
  margin-bottom: 12px;
}

.location-card h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.location-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.map-links {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8px;
}

.map-links a {
  min-width: 0;
  min-height: 48px;
  padding: 8px 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fafaf8;
  font-size: 11px;
  transition: transform 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

.map-links a.gis { background: var(--sage-light); }
.map-links a:hover { transform: translateY(-1px); border-color: #c6c7c0; }
.map-links a:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.map-links a[aria-disabled="true"] {
  cursor: default;
  opacity: .58;
  pointer-events: none;
}
.map-links img { width: 25px; height: 25px; object-fit: contain; flex: 0 0 auto; }
.map-links a:first-child img { width: 21px; margin: 0 2px; }
.map-links b { margin-left: auto; font-size: 15px; font-weight: 400; }

.reward-note {
  margin-top: 12px;
  padding: 16px 17px;
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  background: #f7eded;
}

.reward-note > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 13px;
}

.reward-note p { color: #53544d; font-size: 12px; line-height: 1.42; }
.reward-note strong { color: var(--ink); font-weight: 600; }

.discover { margin-top: var(--section-rhythm); }
.discover > h2 { margin-left: var(--content-inset); }
.discover h2 { display: flex; align-items: center; gap: 10px; }
.heading-logo { width: 190px; height: auto; }
.discover-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: var(--section-rhythm); }

.discover-card {
  min-height: 150px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 16px;
}

.discover-card > span { font-size: 9px; letter-spacing: .08em; text-transform: uppercase; opacity: .63; }
.discover-card > strong { max-width: 150px; font-size: 20px; font-weight: 400; line-height: 1.05; letter-spacing: -.035em; }
.discover-card > small { font-size: 9px; line-height: 1.35; opacity: .58; }
.discover-card b { font-size: 13px; font-weight: 400; }
.shop-card { background: #e8e8d7; transition: transform 150ms ease; }
.shop-card:hover { transform: translateY(-2px); }
.shop-card:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.instagram-card { background: var(--ink); color: white; transition: transform 150ms ease; }
.instagram-card:hover { transform: translateY(-2px); }
.instagram-card:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

footer {
  margin-top: 32px;
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.footer-logo { width: 88px; height: auto; }
footer small { color: var(--muted); font-size: 9px; }

@media (max-width: 520px) {
  .page-shell {
    --content-inset: 21px;
    width: min(100% - 24px, 560px);
    padding-top: 18px;
  }
  .hero { min-height: 300px; border-radius: 17px; }
  .hero-copy { width: 66%; min-height: 300px; padding: 24px 0 23px var(--content-inset); }
  .hero h1 { font-size: clamp(28px, 7.9vw, 36px); }
  .hero p { max-width: 220px; font-size: 11px; }
  .hero::after { background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.87) 47%, rgba(255,255,255,0) 72%); }
}

@media (max-width: 370px) {
  .page-shell { --content-inset: 17px; }
  .wordmark img { width: 118px; }
  .hero { min-height: 290px; }
  .hero-copy { width: 67%; min-height: 290px; padding-left: var(--content-inset); }
  .hero h1 { font-size: 27px; }
  .hero p { font-size: 10px; }
  .map-links a { padding-inline: 8px; gap: 6px; }
  .map-links a span { font-size: 10px; }
  .discover-card { min-height: 140px; padding: 14px; }
}

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