:root {
  --bg: #161412;
  --bg-soft: #1c1a17;
  --bg-card: #211f1a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(212, 173, 102, 0.2);
  --gold: #d4ad66;
  --gold-soft: #e7c98a;
  --gold-mute: #a8884e;
  --accent: #b85a3a;
  --text: #f5f0e5;
  --text-dim: #b5ab98;
  --text-faint: #7a7265;
  --placeholder-bg: #fff3a8;
  --placeholder-text: #4a3a00;
}

* { box-sizing: border-box; margin: 0; padding: 0; }


[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-size: 15px;
}

::selection { background: var(--gold); color: var(--bg); }


.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 11, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: none;
  margin: 0;
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-brand span { color: var(--gold); }

.nav-logo {
  height: 56px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }


.lang-pill {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-left: 0.75rem;
}
.lang-pill-btn {
  background: transparent;
  color: var(--text-dim);
  border: none;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-pill-btn[aria-checked="true"] {
  background: var(--gold);
  color: var(--bg);
}
.lang-pill-btn:hover:not([aria-checked="true"]) { color: var(--gold); }

.nav-links a.nav-cta {
  color: var(--bg);
  background: var(--gold);
  padding: 0.45rem 0.95rem;
  border-radius: 4px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-links a.nav-cta:hover {
  background: var(--gold-soft);
  color: var(--bg);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
}


.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(212, 173, 102, 0.04), transparent),
    var(--bg);
}
.hero-content { max-width: 760px; position: relative; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.hero-greeting {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-dim);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-title img.hero-logo {
  display: block;
  width: clamp(240px, 42vw, 440px);
  height: auto;
  margin: 0 auto;
}

.hero-divider {
  display: none !important;
}


html {
  scrollbar-color: var(--gold-mute) transparent;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--gold-mute);
  border-radius: 5px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}
.hero-tagline {
  color: var(--text-dim);
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}
.hero-location {
  color: var(--text-faint);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.3px;
}
.hero-buttons {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  min-width: 15rem;
  white-space: nowrap;
  text-align: center;
}
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 2px;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }


.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 1.5rem;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-sub {
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto;
  font-size: 0.98rem;
}


.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.strip span { color: var(--gold); margin: 0 1rem; }


.menu-categories {
  display: grid;
  gap: 4rem;
}
.menu-category {
  position: relative;
}
.menu-category-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-strong);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.menu-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.3px;
}
.menu-category-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.menu-category-tag {
  color: var(--text-faint);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.menu-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-item:last-child { border-bottom: none; }




.menu-item-photo,
.menu-item-image img {
  cursor: zoom-in;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
  animation: lightbox-fade 0.18s ease-out;
}
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.6rem;
}
@keyframes lightbox-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.menu-item.has-photo {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.menu-item-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  flex-shrink: 0;
}
.menu-item-content {
  flex: 1;
  min-width: 0;
}
@media (max-width: 540px) {
  .menu-item-photo {
    width: 64px;
    height: 64px;
  }
}
.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.menu-item-title {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.2px;
}
.menu-item-code {
  color: var(--gold-mute);
  font-weight: 500;
  margin-right: 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.menu-item-allergens {
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 400;
  margin-left: 0.4rem;
}
.menu-item-price {
  color: var(--gold);
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.menu-item-desc {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-top: 0.5rem;
  font-style: italic;
  max-width: 580px;
  line-height: 1.55;
}
.menu-variants {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.45rem;
}
.menu-variant {
  display: flex;
  justify-content: space-between;
  padding: 0.15rem 0;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.menu-variant-label {
  display: flex;
  gap: 0.7rem;
}
.menu-variant-letter {
  color: var(--gold-mute);
  font-weight: 500;
  min-width: 1rem;
  font-size: 0.85rem;
}
.menu-variant-price {
  color: var(--text);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}


.allergens-box {
  margin-top: 4rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--text-faint);
  line-height: 1.7;
}
.allergens-box strong {
  display: block;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.6rem;
}


.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.info-card {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.info-card:last-child { border-right: none; }
.info-card-label {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.info-card-title {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.info-card-content {
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 0.95rem;
}
.info-card-content a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.2s, color 0.2s;
}
.info-card-content a:hover { color: var(--gold); border-color: var(--gold); }
.hours-line {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  font-variant-numeric: tabular-nums;
}
.hours-line.closed { color: var(--text-faint); }


.map-wrap {
  margin-top: 3rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  filter: grayscale(0.4) contrast(0.95) brightness(0.85);
  transition: filter 0.3s;
}
.map-wrap:hover { filter: grayscale(0) contrast(1) brightness(1); }
.map-wrap iframe { display: block; }


.order-banner {
  margin-top: 5rem;
  text-align: center;
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.order-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.order-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 1rem 1.75rem;
  text-decoration: none;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  transition: all 0.25s;
  min-width: 220px;
  text-align: left;
}
.order-btn-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-faint);
}
.order-btn-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 500;
}
.order-btn-call:hover {
  border-color: var(--gold);
}
.order-btn-call:hover .order-btn-value { color: var(--gold); }
.order-btn-call:hover .order-btn-label { color: var(--gold); }
.order-btn-online {
  
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 173, 102, 0.08), transparent);
}
.order-btn-online .order-btn-value { color: var(--gold); }
.order-btn-online:hover {
  background: linear-gradient(180deg, rgba(212, 173, 102, 0.15), transparent);
  border-color: var(--gold-soft);
}
.order-btn-online:hover .order-btn-value { color: var(--gold-soft); }
.order-btn-online:hover .order-btn-label { color: var(--gold-soft); }
.order-banner-eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.order-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text);
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.order-banner h3 em { font-style: italic; color: var(--gold); font-weight: 400; }
.order-banner p {
  color: var(--text-dim);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.order-banner .phone {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.5rem;
  transition: border-color 0.2s;
}
.order-banner .phone:hover { border-color: var(--gold); }



.reviews-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  
  margin-top: -2.5rem;
}
.reviews-meta-sep { color: var(--text-faint); }
.reviews-meta-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.reviews-meta-num {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}
.reviews-meta-count { color: var(--text-dim); }
.reviews-meta-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.reviews-meta-link:hover { color: var(--gold-soft); border-color: var(--gold); }

.reviews-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, transform 0.25s;
}
.review-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.review-card-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.review-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-mute), var(--gold));
  color: var(--bg);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}
.review-author-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.review-author {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1;
}
.review-stars-empty { color: var(--line-strong); }
.review-text {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
}
.review-time {
  color: var(--text-faint);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  margin-top: auto;
}


.placeholder {
  background: var(--placeholder-bg);
  color: var(--placeholder-text);
  padding: 0.15rem 0.55rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.88em;
}
.placeholder::before { content: '⚠ '; }


.footer {
  padding: 4rem 1.5rem 2rem;
  text-align: center;
  color: var(--text-faint);
  border-top: 1px solid var(--line);
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.footer-brand em { color: var(--gold); font-style: italic; font-weight: 400; }
.footer-logo {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto 0.75rem;
}
.footer-tagline {
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.78rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--text-faint);
  letter-spacing: 0.3px;
}


.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.legal-content h1 {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
}
.legal-content p {
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 0.96rem;
}
.legal-content p a { color: var(--gold-soft); }
.legal-content .small {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 1rem;
  line-height: 1.7;
}


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes lineGrow {
  from { width: 0; }
  to { width: 60px; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.hero-content {
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hero-divider {
  animation: lineGrow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
.strip {
  animation: fadeIn 0.6s ease 0.4s both;
}

.nav {
  animation: fadeIn 0.5s ease both;
}


.menu-item {
  transition: background 0.25s ease;
  border-radius: 4px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.menu-item:hover {
  background: rgba(212, 173, 102, 0.04);
}

.info-card {
  transition: background 0.3s ease;
}
.info-card:hover {
  background: rgba(212, 173, 102, 0.03);
}


.gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem 2rem;
}
.gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg-card);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.4s ease;
  filter: brightness(0.85) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 11, 10, 0.6) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 0.4; }

.gallery-item-label {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-soft));
  color: var(--text-faint);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.gallery-placeholder-icon {
  font-size: 2rem;
  opacity: 0.3;
}


@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-content, .hero-divider, .strip, .nav { animation: none; }
  .gallery-item img { transition: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-soft);
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .section { padding: 4rem 1.25rem; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card { border-right: none; border-bottom: 1px solid var(--line); }
  .info-card:last-child { border-bottom: none; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
  .order-actions { flex-direction: column; align-items: center; }
  .order-btn { min-width: 280px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
  .review-card { padding: 1.5rem; }
  .reviews-meta { font-size: 0.85rem; gap: 0.6rem; }
  .reviews-meta-sep { display: none; }
}
