/* Clean, minimal, mobile-first inspired by soft-neutral aesthetic */
:root {
  --bg: #f3f2f0;
  --paper: #efece8;
  --ink: #2f2f2f;
  --muted: #6f6f6f;
  --line: #e0ddd8;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  line-height: 1.6;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0.2em 0 0.6em;
  letter-spacing: 0.2px;
}
.row {
  display: flex;
}
.w-50 {
  width: 50%;
}
.w-33 {
  width: 33.33%;
}
.w-66 {
  width: 66.66%;
}
.w-100 {
  width: 100%;
}
.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}
.narrow {
  width: min(780px, 92vw);
}
.section {
  padding: 56px 0;
}
.section:nth-child(even) {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffffc8;
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.logo {
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.5px;
}
.menu {
  display: none;
  gap: 28px;
}
.menu a {
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.15em;
  transition: transform 0.2s ease, text-decoration 0.2s ease;
}
.menu a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  transform: scale(1.1);
}
.menu-btn {
  width: 44px;
  height: 36px;
  border: 0;
  background: transparent;
  display: grid;
  gap: 6px;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: var(--ink);
}
.menu.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  background: #fff;
  padding: 10px;
  gap: 16px;
  font-size: 20px;
  top: 56px;
  right: 0;
  min-width: 220px;
  height: calc(100vh - 56px);
  box-shadow: -4px 10px 10px rgba(0, 0, 0, 0.1);
  animation: menuOpen 0.3s ease forwards;
}
.menu.open a {
  padding: 6px 0;
}

@keyframes menuOpen {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero */
.hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding: 36px 0;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
}
.lead {
  font-size: clamp(16px, 2.4vw, 19px);
  color: var(--muted);
}
.cta {
  margin: 18px 0 8px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  text-decoration: none;
  color: var(--ink);
  border-radius: 6px;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
}
.meta {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  color: var(--muted);
}
.meta li {
  margin: 4px 0;
}
.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.qr {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.qr img {
  width: min(230px, 64vw);
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto 8px;
}
.qr .link {
  display: inline-block;
  margin-top: 6px;
  color: var(--ink);
}
/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 10px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 10px;
}
/* Hours */
.hours {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
}
.hours li:first-child {
  border-top: 0;
}
/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  filter: opacity(0.65);
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.gallery img:hover {
  transform: scale(1.02);
  filter: opacity(1);
}
.hint {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 20;
}
.modal-content {
  max-width: 80vw;
  max-height: 80vh;
}
.modal .caption {
  color: #fff;
  text-align: center;
  margin-top: 12px;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
  align-items: start;
}
.contact .buttons {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
}
/* Footer */
.site-footer {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
}
/* Responsive */
@media (min-width: 960px) {
  .menu {
    display: flex;
  }
  .menu-btn {
    display: none;
  }
}
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--line);
}
.about-text {
  margin-left: 24px;
}
