:root {
  --ink: #2d2926;
  --muted: #756d67;
  --cream: #f7f3ed;
  --paper: #fffdf9;
  --accent: #9b6b55;
  --accent-light: #eadbd0;
  --line: #ded6ce;
  --shadow: 0 12px 35px rgba(45, 41, 38, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.site-header {
  height: 76px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,253,249,.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.logo { font-weight: 700; font-size: 1.05rem; }
.logo span { margin-right: 7px; }
.nav { display: flex; gap: 28px; font-size: .92rem; font-weight: 600; }
.nav a:hover { color: var(--accent); }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.5rem; }

.hero {
  background: var(--cream);
  min-height: 570px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 6%;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "✦";
  position: absolute;
  font-size: 7rem;
  opacity: .08;
}
.hero::before { left: 8%; top: 14%; }
.hero::after { right: 8%; bottom: 10%; }
.hero-inner { max-width: 760px; position: relative; z-index: 1; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 12px;
}
h1, h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
  margin: 0;
}
h1 { font-size: clamp(3rem, 8vw, 6rem); }
h1 em { color: var(--accent); font-weight: 600; }
.hero-text { max-width: 600px; margin: 24px auto 30px; color: var(--muted); font-size: 1.08rem; }
.hero-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  border: 1px solid var(--ink);
}
.button-dark { background: var(--ink); color: white; }
.button-light { background: transparent; }

.map-section, .shop-section, .feature-section, .about-section {
  max-width: 1180px;
  margin: auto;
  padding: 90px 6%;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
h2 { font-size: clamp(2.1rem, 4vw, 3.3rem); }
.section-heading > p { max-width: 410px; color: var(--muted); margin: 0; }
.map-frame {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: #eee;
}
.map-frame iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
}

.shop-section { max-width: 1280px; }
.filters {
  display: grid;
  grid-template-columns: 1fr 200px 200px;
  gap: 12px;
  margin-bottom: 30px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 15px;
}
.search-box span { font-size: 1.5rem; color: var(--muted); }
.search-box input, select {
  width: 100%;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}
.search-box input { height: 48px; border: 0; outline: 0; padding: 0; }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.shop-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.shop-type {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
}
.shop-card h3 { margin: 7px 0 3px; font-family: "Playfair Display", serif; font-size: 1.45rem; }
.shop-location { color: var(--muted); font-size: .86rem; margin: 0 0 13px; }
.shop-description { color: var(--muted); font-size: .9rem; margin: 0 0 16px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.tag { background: var(--cream); border-radius: 999px; padding: 4px 9px; font-size: .72rem; }
.card-link { font-weight: 700; font-size: .85rem; color: var(--accent); }
.empty-state { text-align: center; color: var(--muted); padding: 40px; }

.feature-section {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  background: var(--line);
}
.feature-card {
  padding: 55px 8%;
  background: var(--cream);
}
.feature-card.featured { background: var(--accent-light); }
.feature-icon { font-size: 2rem; }
.feature-card h3 { font-family: "Playfair Display", serif; font-size: 1.6rem; margin: 15px 0 6px; }
.feature-card p { color: var(--muted); max-width: 310px; }
.feature-card a { font-weight: 700; font-size: .85rem; color: var(--accent); }

.about-section { max-width: 760px; text-align: center; }
.about-section > p:not(.eyebrow):not(.last-updated) { color: var(--muted); }
.last-updated { font-size: .75rem; color: var(--muted); margin-top: 28px; }
footer {
  background: var(--ink);
  color: white;
  padding: 35px 6%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
footer p { margin: 0; opacity: .65; font-size: .8rem; }

@media (max-width: 850px) {
  .nav { display: none; }
  .menu-toggle { display: block; color: var(--ink); }
  .nav.open {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--paper);
    padding: 20px 6%;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
  }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 15px; }
  .filters { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-section { grid-template-columns: 1fr; }
}
@media (max-width: 550px) {
  .hero { min-height: 520px; padding: 60px 6%; }
  .shop-grid { grid-template-columns: 1fr; }
  .map-frame iframe { height: 500px; }
  .map-section, .shop-section, .about-section { padding-top: 65px; padding-bottom: 65px; }
  footer { flex-direction: column; }
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.2s ease;
}

.contact-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.visitor-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 0.85rem;
}

.visitor-counter img {
  height: 20px;
}