/* ==========================================================================
   Ristorante I Quattro Mori - Bad Hersfeld
   Design System: Warm Italian Luxury (Ivory, Wine Red, Tuscan Gold)
   ========================================================================== */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond.woff2') format('woff2-variations');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans.woff2') format('woff2-variations');
}

:root {
  --bg-page: #fbf9f5;
  --bg-surface: #ffffff;
  --bg-subtle: #f5f0e8;
  --bg-cream: #f3ecdf;
  --bg-topbar: #1c1815;
  --bg-footer: #161210;
  
  --color-primary: #8a1c18;
  --color-primary-hover: #a5231e;
  --color-primary-light: #fbeeed;
  --color-gold: #b68936;
  --color-gold-light: #d8ad59;
  --color-olive: #3f523c;
  
  --text-main: #211c18;
  --text-secondary: #5c534a;
  --text-muted: #8c8276;
  --text-white: #ffffff;
  
  --border-light: #ede6dc;
  --border-gold: rgba(182, 137, 54, 0.3);
  
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(33, 28, 24, 0.04);
  --shadow-md: 0 8px 24px rgba(33, 28, 24, 0.08);
  --shadow-lg: 0 16px 40px rgba(33, 28, 24, 0.12);
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-page);
  color: var(--text-main);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary-hover);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   Typography & Helpers
   ========================================================================== */

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-main);
}

.text-center { text-align: center; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: var(--color-primary);
}

.section-title {
  font-size: clamp(2.1rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: var(--text-main);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.section-padding {
  padding: 5rem 0;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(138, 28, 24, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138, 28, 24, 0.35);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-subtle);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  font-size: 0.775rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid rgba(138, 28, 24, 0.2);
  white-space: nowrap;
}

.badge-gold {
  background: rgba(182, 137, 54, 0.12);
  color: var(--color-gold);
  border-color: rgba(182, 137, 54, 0.25);
}

.badge-tag {
  background: var(--bg-subtle);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  font-size: 0.75rem;
}

/* ==========================================================================
   Header & Top Utility Bar
   ========================================================================== */

.top-bar {
  background: var(--bg-topbar);
  color: #e5dfd7;
  font-size: 0.825rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #d1c8be;
  white-space: nowrap;
}

.top-bar-item a {
  color: #ffffff;
}

.top-bar-item a:hover {
  color: var(--color-gold-light);
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--color-gold);
  flex-shrink: 0;
}

/* Main Navigation Bar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(251, 249, 245, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(33, 28, 24, 0.02);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.5rem 0.15rem;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-open {
  background-color: #2e7d32;
  box-shadow: 0 0 6px rgba(46, 125, 50, 0.5);
}

.status-closed {
  background-color: #c62828;
  box-shadow: 0 0 6px rgba(198, 40, 40, 0.5);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 3rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(182, 137, 54, 0.07) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(138, 28, 24, 0.05) 0%, transparent 50%),
              var(--bg-page);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  max-width: 580px;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}

.hero-title span {
  color: var(--color-primary);
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.trust-text h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.trust-text p {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Hero Media Card */
.hero-media-card {
  position: relative;
  width: 100%;
}

.hero-main-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
}

.hero-main-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-main-img-wrap:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-md);
  max-width: 270px;
}

.hero-floating-badge h4 {
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}

.hero-floating-badge p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   Info Banner Ribbon
   ========================================================================== */

.info-ribbon {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ribbon-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ribbon-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ribbon-meta h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.ribbon-meta p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* ==========================================================================
   About / Story Section
   ========================================================================== */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.story-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.story-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.signature-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.signature-block h4 {
  font-size: 1.3rem;
  color: var(--color-primary);
}

.signature-block p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.story-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.story-img-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* ==========================================================================
   Speisekarte (Interactive & Elegant Italian Menu)
   ========================================================================== */

.menu-section {
  background: var(--bg-subtle);
  position: relative;
}

.menu-controls {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  overflow: hidden;
}

.menu-search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.menu-search-box {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.menu-search-box input {
  width: 100%;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.menu-search-box input:focus {
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(138, 28, 24, 0.1);
}

.search-icon-svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
  pointer-events: none;
}

.pdf-pills {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pdf-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.pdf-pill-link:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pdf-pill-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Category Tabs */
.menu-tabs-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.menu-tab-btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  white-space: nowrap;
  transition: var(--transition);
}

.menu-tab-btn:hover {
  background: var(--bg-cream);
  color: var(--text-main);
}

.menu-tab-btn.active {
  background: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(138, 28, 24, 0.2);
}

/* Filter Tags */
.menu-tag-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.filter-tag-btn {
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--bg-page);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tag-btn:hover,
.filter-tag-btn.active {
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-color: rgba(138, 28, 24, 0.3);
}

/* Menu Category Banner */
.menu-cat-intro {
  background: var(--bg-surface);
  border-left: 4px solid var(--color-primary);
  padding: 1.25rem 1.75rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.menu-cat-intro h3 {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.menu-cat-intro p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Menu Grid & Item Cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.menu-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.menu-card.is-special {
  border-color: var(--color-gold);
  background: linear-gradient(135deg, #ffffff 80%, rgba(182, 137, 54, 0.05));
}

.card-top-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.card-title-group {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.card-nr {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

.card-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

.card-desc {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.allergen-box {
  margin-top: 3rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.allergen-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.allergen-icon-circle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.allergen-box h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.allergen-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* ==========================================================================
   Öffnungszeiten & Tischreservierung Section
   ========================================================================== */

.hours-reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.content-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.schedule-list {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.schedule-row {
  border-bottom: 1px solid var(--border-light);
}

.schedule-row td {
  padding: 0.75rem 0.5rem;
  font-size: 0.95rem;
}

.schedule-day {
  font-weight: 600;
  color: var(--text-main);
  width: 35%;
}

.schedule-time {
  color: var(--text-secondary);
  text-align: right;
}

.current-day-badge {
  display: none;
  font-size: 0.7rem;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-left: 0.4rem;
  text-transform: uppercase;
}

.schedule-row.is-today {
  background: var(--color-primary-light);
}

.schedule-row.is-today .schedule-day,
.schedule-row.is-today .schedule-time {
  color: var(--color-primary);
  font-weight: 700;
}

.ruhetag-label {
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* Reservation Callout Card */
.reservation-card {
  background: linear-gradient(135deg, #ffffff, var(--bg-cream));
  border: 1px solid var(--border-gold);
}

.phone-highlight-box {
  text-align: center;
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin: 1.75rem 0;
  box-shadow: var(--shadow-sm);
}

.phone-big {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin: 0.5rem 0 1rem;
}

/* ==========================================================================
   Ambiance & Gallery Grid
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 270px;
  cursor: pointer;
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33, 28, 24, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ==========================================================================
   Contact & Location
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.contact-details-list {
  list-style: none;
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-item-text h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-item-text p,
.contact-item-text a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.location-map-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  background: radial-gradient(circle at center, var(--bg-cream) 0%, var(--bg-surface) 75%);
}

.location-pin-svg {
  width: 48px;
  height: 48px;
  fill: var(--color-primary);
  margin-bottom: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--bg-footer);
  color: #c9c1b6;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr 1.25fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--color-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #b3a99c;
  font-size: 0.925rem;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-legal-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-nav a {
  color: #9c9183;
}

.footer-legal-nav a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Modals & Lightbox
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 24, 21, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.is-open {
  display: flex;
}

.modal-window {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-main);
}

.lightbox-dialog {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-dialog img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-text {
  margin-top: 0.75rem;
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
}

/* Legal Content Wrap */
.legal-main-wrap {
  max-width: 840px;
  margin: 3rem auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.legal-main-wrap h2 {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.4rem;
}

.legal-main-wrap p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.legal-main-wrap ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.legal-main-wrap li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .top-bar {
    display: none;
  }
  .header-inner {
    height: 70px;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
  }
  .nav-links.nav-open {
    transform: translateX(0);
  }
  .header-actions .btn {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-trust-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .story-grid,
  .hours-reserve-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .legal-main-wrap {
    padding: 1.75rem;
    margin: 2rem auto;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .phone-big {
    font-size: 1.75rem;
  }
}
