:root {
  --bg: #140c0c;
  --bg-deep: #0e0808;
  --bg-card: #1f1214;
  --bg-burgundy: #4a2230;
  --border: rgba(201, 169, 98, 0.18);
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #f5f0eb;
  --text-muted: rgba(245, 240, 235, 0.55);
  --gold: #c9a962;
  --gold-light: #e2c98a;
  --burgundy: #6b2d3c;
  --burgundy-dark: #3d1824;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
  max-width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(14, 8, 8, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
  padding: 10px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--burgundy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-main a {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-main a:hover { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  font-family: var(--sans);
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-primary {
  background: var(--burgundy);
  border: 1px solid var(--burgundy);
  color: var(--text);
}

.btn-primary:hover { background: #7a3545; }

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(245, 240, 235, 0.35);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.35rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(14, 8, 8, 0.55) 0%, rgba(14, 8, 8, 0.75) 50%, rgba(14, 8, 8, 0.95) 100%),
    url("assets/img/magaza-gorselleri-1.jpeg") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-meta {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.hero-emblem {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--burgundy);
  border: 1px solid rgba(201, 169, 98, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.35rem;
}

.hero-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 0.15rem;
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-pill {
  display: inline-block;
  padding: 0.45rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-scroll {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll svg {
  width: 14px;
  height: 14px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Section common */
.section {
  padding: 5.5rem 0;
  overflow-x: clip;
  max-width: 100%;
}

.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* Philosophy */
.philosophy {
  background: var(--bg-deep);
  position: relative;
}

.philosophy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/img/magaza-gorselleri-2.jpeg") center/cover no-repeat;
  opacity: 0.08;
}

.philosophy-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-width: 0;
}

.philosophy-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  max-width: 480px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat {
  border: 1px solid var(--border-soft);
  padding: 1.25rem 1rem;
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.philosophy-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
  min-width: 0;
}

.philosophy-visual .img-main {
  grid-row: span 2;
  border-radius: 2px;
  overflow: hidden;
  min-height: 380px;
}

.philosophy-visual .img-main img,
.philosophy-visual .img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-visual .img-small {
  border-radius: 2px;
  overflow: hidden;
  min-height: 140px;
}

.philosophy-visual .brand-card {
  background: var(--burgundy-dark);
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 140px;
  text-align: center;
}

.brand-card .logo-mark {
  width: 42px;
  height: 42px;
  margin-bottom: 0.5rem;
}

.brand-card p {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Quote */
.quote-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem;
  overflow-x: clip;
  max-width: 100%;
}

.quote-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(14, 8, 8, 0.7), rgba(14, 8, 8, 0.85)),
    url("assets/img/magaza-gorselleri-3.jpeg") center/cover no-repeat;
}

.quote-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  text-align: center;
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  background: rgba(20, 12, 12, 0.6);
  backdrop-filter: blur(8px);
}

.quote-mark {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  line-height: 1.55;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.quote-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1rem;
  opacity: 0.5;
}

.quote-author {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* QR Section */
.qr-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.qr-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(74, 34, 48, 0.4) 0%, rgba(14, 8, 8, 0.95) 60%),
    url("assets/img/alfredo.jpeg") center/cover no-repeat;
  opacity: 0.35;
}

.qr-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-width: 0;
}

.qr-text .section-title { margin-bottom: 1rem; }

.qr-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 440px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.qr-card {
  background: rgba(31, 18, 20, 0.85);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}

.qr-card-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.qr-card-brand span {
  font-family: var(--serif);
  font-size: 1rem;
}

.qr-code-wrap {
  background: #fff;
  padding: 1rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1rem;
}

.qr-code-wrap img {
  width: 160px;
  height: 160px;
}

.qr-card-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.qr-card-url {
  font-size: 0.78rem;
  color: var(--gold);
}

/* Menu preview */
.menu-preview {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-soft);
}

.menu-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.menu-cat {
  padding: 0.55rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s;
}

.menu-cat.active,
.menu-cat:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.menu-items {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border-soft);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-soft);
  min-width: 0;
}

.menu-item-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

.menu-item > div:first-child {
  min-width: 0;
  flex: 1;
}

.menu-item-price {
  font-family: var(--serif);
  font-size: 1.05rem;
  white-space: nowrap;
}

.menu-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gallery-item {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
  min-width: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.04); }

/* Reservation */
.reservation {
  background: var(--bg-deep);
  text-align: center;
}

.reservation-box {
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.reservation-box p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
}

.reservation-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reservation-contact a:hover { color: var(--gold); }

/* Workshops / Atölye */
.workshops {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.workshops-intro {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.workshops-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  min-width: 0;
}

.schedule-panel {
  border: 1px solid var(--border-soft);
  background: rgba(31, 18, 20, 0.5);
  padding: 1.5rem;
  min-width: 0;
  overflow: hidden;
}

.schedule-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-soft);
}

.schedule-panel-head h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.schedule-badge {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 98, 0.3);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.week-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.week-day {
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.25rem;
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  border-radius: 2px;
}

.week-day.active {
  background: var(--gold-soft);
  border-color: rgba(201, 169, 98, 0.35);
  color: var(--gold);
}

.time-slots {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.time-slot {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border-soft);
  background: rgba(20, 12, 12, 0.4);
  min-width: 0;
}

.time-slot-clock {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.time-range {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--text);
}

.time-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.time-slot-body strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.time-slot-body p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.workshop-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  min-width: 0;
}

.time-slot-price {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
}

.workshop-card {
  border: 1px solid var(--border-soft);
  background: rgba(31, 18, 20, 0.45);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.workshop-card:hover {
  border-color: rgba(201, 169, 98, 0.25);
}

.workshop-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(74, 34, 48, 0.45) 0%, rgba(31, 18, 20, 0.6) 100%);
  border-color: rgba(201, 169, 98, 0.22);
}

.workshop-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.workshop-tag {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.workshop-price {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
}

.workshop-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
}

.workshop-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.workshop-link {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: opacity 0.2s;
}

.workshop-link:hover { opacity: 0.75; }

.workshops-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border-soft);
}

.workshops-note-icon {
  width: 18px;
  height: 18px;
  border: 1px solid var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.workshops-note p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Footer */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-soft);
  padding: 4rem 0 0;
  overflow-x: clip;
  max-width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.65rem; }

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-tags {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.6rem;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(14, 8, 8, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--text);
}

.mobile-nav .btn { margin-top: 1rem; }

@media (max-width: 960px) {
  .philosophy-grid,
  .qr-grid,
  .workshops-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .workshop-card.featured { grid-column: span 1; }

  .philosophy-visual .img-main { min-height: 280px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .time-slot {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .time-slot-price { justify-self: start; }
}

@media (max-width: 720px) {
  .container {
    width: min(1140px, calc(100% - 1.25rem));
  }

  .nav-main,
  .header-actions { display: none; }

  .nav-toggle { display: block; flex-shrink: 0; }

  .section { padding: 3.5rem 0; }

  .hero-meta {
    letter-spacing: 0.14em;
    font-size: 0.58rem;
  }

  .hero-pill {
    letter-spacing: 0.1em;
    padding: 0.45rem 0.85rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .stats { grid-template-columns: 1fr; }

  .philosophy-visual {
    grid-template-columns: 1fr;
  }

  .philosophy-visual .img-main {
    grid-row: auto;
    min-height: 240px;
  }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-tags {
    letter-spacing: 0.1em;
  }

  .gallery-grid { grid-template-columns: 1fr; }

  .quote-box { padding: 2rem 1.25rem; }

  .schedule-panel { padding: 1rem; }

  .week-day {
    font-size: 0.52rem;
    padding: 0.4rem 0.1rem;
    letter-spacing: 0;
  }

  .schedule-badge {
    letter-spacing: 0.08em;
  }

  .workshop-cards { grid-template-columns: 1fr; }

  .menu-item {
    flex-wrap: wrap;
  }

  .menu-item-price {
    flex-shrink: 0;
  }

  .menu-cats {
    gap: 0.4rem;
  }

  .menu-cat {
    padding: 0.5rem 0.75rem;
    font-size: 0.6rem;
  }

  .qr-card {
    padding: 1.5rem 1rem;
    width: 100%;
  }

  .qr-code-wrap img {
    max-width: 100%;
    height: auto;
  }

  .gallery-item:hover img {
    transform: none;
  }
}
