/* ==========================================================
   La Vie Est Belle - Mediterrane Küche · Tapas und mehr
   Ruhrstraße 33, 58452 Witten
   ========================================================== */

:root {
  --color-primary: #0d2818;
  --color-primary-dark: #061810;
  --color-primary-light: #1a3d2e;
  --color-accent: #d4a741;
  --color-accent-soft: #e8c877;
  --color-accent-dark: #b8892b;
  --color-cream: #faf7f2;
  --color-cream-dark: #f0ebe0;
  --color-text: #1a1a1a;
  --color-text-muted: #5a5a5a;
  --color-border: rgba(13, 40, 24, 0.1);
  --shadow-sm: 0 2px 8px rgba(13, 40, 24, 0.08);
  --shadow-md: 0 6px 24px rgba(13, 40, 24, 0.12);
  --shadow-lg: 0 20px 60px rgba(13, 40, 24, 0.2);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  transition: all var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(13, 40, 24, 0.95);
  backdrop-filter: blur(14px);
  padding: 14px 40px;
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-accent);
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  display: grid;
  place-items: center;
  border: 1.5px solid var(--color-accent);
  flex-shrink: 0;
}

.nav-logo-mark svg {
  width: 26px;
  height: 26px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-accent);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.nav-logo-text span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent-soft);
  margin-top: 4px;
  opacity: 0.85;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-accent);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switcher {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid rgba(212, 167, 65, 0.3);
}

.lang-switcher button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 999px;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.lang-switcher button.active {
  background: var(--color-accent);
  color: var(--color-primary);
}

.lang-switcher button:hover:not(.active) {
  color: #fff;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-accent);
  font-size: 26px;
  cursor: pointer;
  padding: 4px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(6, 24, 16, 0.78) 0%, rgba(13, 40, 24, 0.6) 100%),
    radial-gradient(ellipse at 20% 30%, #1a4a32 0%, #0d2818 40%, #061810 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-accent);
}

.hero-leaves {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cg fill='%231a3d2e' opacity='0.55'%3E%3Cpath d='M100,200 Q60,100 140,80 Q180,120 160,200 Q200,240 160,280 Q100,280 100,200 Z'/%3E%3Cpath d='M450,350 Q420,250 510,240 Q550,300 520,370 Q560,410 520,450 Q450,430 450,350 Z'/%3E%3Cpath d='M250,450 Q210,380 290,350 Q340,380 330,450 Q380,480 330,520 Q250,520 250,450 Z'/%3E%3Cpath d='M500,80 Q470,20 540,0 Q580,50 560,100 Q600,130 560,160 Q500,150 500,80 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 900px 900px;
  background-position: center;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(6, 24, 16, 0.6) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-accent-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}

.hero-tag::before,
.hero-tag::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--color-accent-soft);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--color-accent);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: fadeUp 1.2s 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  display: block;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--color-accent-soft), var(--color-accent), var(--color-accent-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 1.2s 0.7s forwards;
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.2s 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid var(--color-accent);
  transition: all var(--transition);
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 167, 65, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
}

.btn-ghost:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-accent-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounceDown 2.5s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--color-accent-soft));
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ========== SECTIONS ========== */
.section {
  padding: 120px 40px;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--color-accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--color-accent-dark);
}

.section-lead {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px auto 40px;
  color: var(--color-accent);
}

.ornament-line {
  width: 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.ornament-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ========== ABOUT ========== */
.about {
  background: var(--color-cream);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image:hover img {
  transform: scale(1.04);
}

.about-image-frame {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
  pointer-events: none;
  z-index: 2;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.2;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-accent);
  transform: rotate(-8deg);
}

.about-badge strong {
  display: block;
  font-size: 20px;
  font-style: italic;
  margin-top: 4px;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
  margin-bottom: 24px;
}

.about-content p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--color-accent-dark);
  margin-top: 24px;
}

.about-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ========== FEATURED / HIGHLIGHTS ========== */
.highlights {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.highlights::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cg fill='%231a3d2e' opacity='0.18'%3E%3Cpath d='M80,180 Q50,100 120,80 Q170,110 150,180 Q200,220 150,260 Q80,260 80,180 Z'/%3E%3Cpath d='M300,320 Q270,240 350,220 Q400,260 370,330 Q410,370 370,400 Q300,390 300,320 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 500px 500px;
  opacity: 0.8;
}

.highlights .section-title,
.highlights .section-eyebrow,
.highlights .section-lead {
  color: var(--color-accent);
}

.highlights .section-title em {
  color: var(--color-accent-soft);
}

.highlights .section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 167, 65, 0.2);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
}

.highlight-card h3 {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== MENU (fullpage variation) ========== */
.menu-hero {
  padding: 160px 24px 80px;
  background: var(--color-primary);
  color: var(--color-accent);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.menu-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cg fill='%231a3d2e' opacity='0.3'%3E%3Cpath d='M100,200 Q60,100 140,80 Q180,120 160,200 Q200,240 160,280 Q100,280 100,200 Z'/%3E%3Cpath d='M450,350 Q420,250 510,240 Q550,300 520,370 Q560,410 520,450 Q450,430 450,350 Z'/%3E%3Cpath d='M250,450 Q210,380 290,350 Q340,380 330,450 Q380,480 330,520 Q250,520 250,450 Z'/%3E%3Cpath d='M500,80 Q470,20 540,0 Q580,50 560,100 Q600,130 560,160 Q500,150 500,80 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 900px 900px;
  opacity: 0.7;
  pointer-events: none;
}

.menu-hero-inner {
  position: relative;
  z-index: 2;
}

.menu-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-accent);
}

.menu-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--color-accent-soft), var(--color-accent), var(--color-accent-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 20px auto 0;
}

.menu-tabs {
  position: sticky;
  top: 0;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  z-index: 50;
  padding: 16px 24px;
  box-shadow: var(--shadow-sm);
}

.menu-tabs.scrolled {
  top: 70px;
}

.menu-tabs-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.menu-tabs-inner::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.menu-tab:hover {
  color: var(--color-primary);
  background: rgba(13, 40, 24, 0.05);
}

.menu-tab.active {
  background: var(--color-primary);
  color: var(--color-accent);
  border-color: var(--color-primary);
}

.menu-body {
  padding: 80px 24px 100px;
  background: var(--color-cream);
}

.menu-body-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.menu-category {
  margin-bottom: 80px;
  scroll-margin-top: 160px;
}

.menu-category-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.menu-category-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--color-primary);
  display: inline-block;
  position: relative;
  padding: 0 40px;
}

.menu-category-title::before,
.menu-category-title::after {
  content: "❧";
  color: var(--color-accent);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
}

.menu-category-title::before { left: 0; transform: translateY(-50%) scaleX(-1); }
.menu-category-title::after { right: 0; }

.menu-category-sub {
  color: var(--color-text-muted);
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 10px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(13, 40, 24, 0.15);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-left h4 {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.menu-item-left h4 .allergen {
  color: var(--color-text-muted);
  font-size: 0.75em;
  font-weight: 400;
  font-family: var(--font-body);
  vertical-align: super;
  margin-left: 6px;
}

.menu-item-left p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-accent-dark);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.menu-notice {
  background: rgba(212, 167, 65, 0.08);
  border-left: 3px solid var(--color-accent);
  padding: 14px 20px;
  margin-bottom: 30px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-style: italic;
  border-radius: 4px;
}

.menu-allergens-card {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 40px;
  border-radius: var(--radius-md);
  margin-top: 60px;
  box-shadow: var(--shadow-sm);
}

.menu-allergens-title {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  text-align: center;
}

.menu-allergens-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.menu-allergens-cols h5 {
  color: var(--color-accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.menu-allergens-cols ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.menu-allergens-cols li {
  display: flex;
  gap: 12px;
  margin-bottom: 6px;
}

.menu-allergens-cols li span:first-child {
  color: var(--color-accent-dark);
  font-weight: 600;
  min-width: 20px;
}

/* ========== GALLERY ========== */
.gallery-hero {
  padding: 160px 24px 60px;
  background: var(--color-primary);
  color: var(--color-accent);
  text-align: center;
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-item.tall {
  aspect-ratio: 3 / 4;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 40, 24, 0.85));
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-item-caption {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  transform: translateY(10px);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-item-caption {
  transform: translateY(0);
}

/* ========== CONTACT ========== */
.contact {
  background: var(--color-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.contact-detail {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent);
  display: grid;
  place-items: center;
}

.contact-detail h4 {
  color: var(--color-primary);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.contact-detail p,
.contact-detail a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-detail a:hover {
  color: var(--color-accent-dark);
}

.hours-table {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  background: #fff;
  padding: 32px 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.hours-table h3 {
  grid-column: 1 / -1;
  color: var(--color-primary);
  font-size: 1.4rem;
  margin-bottom: 16px;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.hours-table .day {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
}

.hours-table .hours {
  color: var(--color-accent-dark);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
}

.hours-note {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.map-embed {
  margin-top: 32px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== CTA ========== */
.cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-accent);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(212, 167, 65, 0.15), transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-accent);
}

.cta h2 em {
  font-style: italic;
  color: var(--color-accent-soft);
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 20px auto 36px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 40px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(212, 167, 65, 0.15);
}

.footer-brand .nav-logo-text {
  font-size: 24px;
}

.footer-brand p {
  margin-top: 20px;
  max-width: 320px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h5 {
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 167, 65, 0.3);
  display: grid;
  place-items: center;
  color: var(--color-accent);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 680px;
  margin: 0 auto;
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 167, 65, 0.25);
  z-index: 1000;
  display: none;
  animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  display: block;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner h4 {
  color: var(--color-accent);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-banner p a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 12px 22px;
  font-size: 12px;
}

.cookie-btn-accept {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.cookie-btn-decline,
.cookie-btn-settings {
  background: transparent;
  color: var(--color-accent);
  border-color: rgba(212, 167, 65, 0.4);
}

.cookie-btn-accept:hover { background: var(--color-accent-soft); }
.cookie-btn-decline:hover,
.cookie-btn-settings:hover { border-color: var(--color-accent); background: rgba(212, 167, 65, 0.1); }

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 24, 16, 0.8);
  backdrop-filter: blur(6px);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  max-width: 500px;
  width: 100%;
  border-radius: var(--radius-md);
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
}

.cookie-option {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

.cookie-option:last-of-type { border-bottom: none; }

.cookie-option h4 {
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 6px;
}

.cookie-option p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ddd;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle input:checked + .toggle-slider {
  background: var(--color-primary);
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle input:disabled + .toggle-slider {
  background: var(--color-accent-dark);
  cursor: not-allowed;
  opacity: 0.6;
}

/* ========== LEGAL PAGES ========== */
.legal-hero {
  padding: 140px 24px 60px;
  background: var(--color-primary);
  color: var(--color-accent);
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-accent);
}

.legal-content {
  padding: 80px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin: 40px 0 14px;
}

.legal-content h3 {
  color: var(--color-primary);
  font-size: 1.15rem;
  margin: 24px 0 10px;
}

.legal-content p,
.legal-content ul {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content ul li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

.legal-content strong {
  color: var(--color-primary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .nav {
    padding: 16px 20px;
  }
  .nav.scrolled { padding: 12px 20px; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-primary);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(212, 167, 65, 0.2);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-logo-text {
    font-size: 16px;
  }
  .nav-logo-text span { font-size: 7px; }

  .about-grid,
  .contact-grid,
  .highlights-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
  }

  .section { padding: 80px 20px; }
  .menu-body { padding: 60px 20px 80px; }
  .menu-allergens-cols { grid-template-columns: 1fr; gap: 30px; }
  .menu-allergens-card { padding: 28px 24px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }
}

/* ========== PLACEHOLDER TILE (for photos not yet available) ========== */
.placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 30%, #1a4a32 0%, #0d2818 55%, #061810 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--color-accent);
}

.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cg fill='%231a3d2e' opacity='0.55'%3E%3Cpath d='M100,200 Q60,100 140,80 Q180,120 160,200 Q200,240 160,280 Q100,280 100,200 Z'/%3E%3Cpath d='M450,350 Q420,250 510,240 Q550,300 520,370 Q560,410 520,450 Q450,430 450,350 Z'/%3E%3Cpath d='M250,450 Q210,380 290,350 Q340,380 330,450 Q380,480 330,520 Q250,520 250,450 Z'/%3E%3Cpath d='M500,80 Q470,20 540,0 Q580,50 560,100 Q600,130 560,160 Q500,150 500,80 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(6, 24, 16, 0.4) 100%);
}

.placeholder-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  max-width: 80%;
}

.placeholder-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--color-accent);
  opacity: 0.85;
}

.placeholder-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.placeholder-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-accent);
  margin-bottom: 4px;
  line-height: 1.3;
}

.placeholder-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent-soft);
  opacity: 0.6;
}

/* Larger placeholder for About section */
.placeholder-about {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.placeholder-about .placeholder-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.placeholder-about .placeholder-title {
  font-size: 1.6rem;
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ==========================================================
   CONTACT & RESERVATION
   ========================================================== */
.contact-hero {
  background: linear-gradient(180deg, var(--color-primary) 0%, #081a10 100%);
  color: var(--color-cream);
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212,167,65,0.08), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(212,167,65,0.06), transparent 60%);
  pointer-events: none;
}
.contact-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.contact-hero h1 em {
  font-style: italic;
  color: var(--color-cream);
}
.contact-hero-sub {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
}

.contact-section {
  background: var(--color-cream);
  padding: 80px 0 100px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

.contact-info-col .contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info-col .contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-primary);
  margin: 0 0 4px;
  font-weight: 500;
}
.contact-info-col p {
  margin: 0;
  color: var(--color-text, #333);
  line-height: 1.6;
}
.contact-info-col a {
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(13,40,24,0.2);
}
.contact-info-col a:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* Reservation card */
.reserve-card {
  background: var(--color-primary);
  color: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 44px 40px 40px;
  box-shadow: 0 20px 60px rgba(13,40,24,0.25);
  position: relative;
  overflow: hidden;
}
.reserve-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,167,65,0.12), transparent 70%);
  pointer-events: none;
}
.reserve-title {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.15;
  color: var(--color-cream);
  margin: 0 0 6px;
  font-weight: 500;
  position: relative;
}
.reserve-title em {
  font-style: italic;
  color: var(--color-accent);
}
.reserve-sub {
  color: rgba(255,255,255,0.7);
  margin: 0 0 28px;
  font-size: 14px;
  position: relative;
}
.reserve-form { position: relative; }
.reserve-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 500px) {
  .reserve-row { grid-template-columns: 1fr; gap: 18px; }
}
.reserve-field { margin-bottom: 22px; }
.reserve-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 10px;
}
.reserve-input-wrap {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  transition: border-color 0.2s ease;
}
.reserve-input-wrap:focus-within { border-bottom-color: var(--color-accent); }
.reserve-icon {
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.reserve-input-wrap input[type="date"],
.reserve-input-wrap input[type="text"],
.reserve-input-wrap input[type="number"],
.reserve-input-wrap select,
.reserve-input-wrap textarea {
  flex: 1;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 16px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}
.reserve-input-wrap textarea {
  font-family: var(--font-body);
  font-size: 14px;
  resize: vertical;
  min-height: 40px;
}
.reserve-input-wrap input::placeholder,
.reserve-input-wrap textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.reserve-input-wrap select {
  cursor: pointer;
}
.reserve-input-wrap select option {
  background: var(--color-primary);
  color: var(--color-cream);
}
/* Date input icon visibility (Safari/Chrome) */
.reserve-input-wrap input[type="date"]::-webkit-calendar-picker-indicator,
.reserve-input-wrap input[type="date"]::-webkit-inner-spin-button {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  cursor: pointer;
}
.reserve-input-wrap input[type="number"]::-webkit-outer-spin-button,
.reserve-input-wrap input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Guests with stepper */
.reserve-guests { gap: 14px; }
.reserve-guests input[type="number"] {
  max-width: 50px;
  flex: 0 0 auto;
  font-size: 18px;
  text-align: left;
}
.reserve-guests-label {
  flex: 1;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--color-cream);
}
.reserve-guests-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.reserve-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--color-cream);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reserve-step:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary);
}

/* Reserve button */
.reserve-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  margin-top: 8px;
  position: relative;
}
.reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(212,167,65,0.35);
  background: #e0b656;
}
.reserve-btn:active { transform: translateY(0); }
.reserve-btn svg { transition: transform 0.2s ease; }
.reserve-btn:hover svg { transform: translateX(3px); }

.reserve-hint {
  margin: 14px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.5;
}

/* ==========================================================
   NEWS / AKTUELLES (haberler)
   ========================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  border: 1px solid rgba(13, 40, 24, 0.06);
  outline: none;
}
.news-card:hover,
.news-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 167, 65, 0.3);
}
.news-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(212, 167, 65, 0.4), var(--shadow-lg);
}

.news-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #f4efe6, #e8ded0);
  position: relative;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-card:hover .news-card-image img {
  transform: scale(1.05);
}
.news-card-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(13, 40, 24, 0.25);
}
.news-card-image-placeholder svg {
  width: 56px;
  height: 56px;
}

.news-card-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-date {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.news-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  color: var(--color-primary);
  margin: 0 0 12px;
  font-weight: 500;
}
.news-card-excerpt {
  color: var(--color-text-muted, #5a5a5a);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-self: flex-start;
  transition: color 0.2s ease, transform 0.2s ease;
}
.news-card:hover .news-card-more {
  color: var(--color-accent);
  transform: translateX(3px);
}

/* News modal */
.news-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 14, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.news-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.news-modal {
  background: var(--color-cream, #faf7f2);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-modal-overlay.show .news-modal {
  transform: translateY(0) scale(1);
}
.news-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.news-modal-close:hover {
  background: var(--color-accent);
  color: #fff;
  transform: rotate(90deg);
}
.news-modal-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eee;
}
.news-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-modal-body {
  padding: 36px 42px 42px;
}
.news-modal-date {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.news-modal-title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 20px;
  font-weight: 500;
}
.news-modal-content {
  color: var(--color-text, #2d2d2d);
  font-size: 16px;
  line-height: 1.75;
}
.news-modal-content p {
  margin: 0 0 1em;
}
.news-modal-content p:last-child {
  margin-bottom: 0;
}
.news-modal-content a {
  color: var(--color-accent);
  text-decoration: underline;
}
.news-modal-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1em 0;
}
.news-modal-content h2,
.news-modal-content h3,
.news-modal-content h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin: 1.2em 0 0.6em;
  font-weight: 500;
}
.news-modal-content ul,
.news-modal-content ol {
  padding-left: 24px;
  margin: 0 0 1em;
}
.news-modal-content li {
  margin-bottom: 0.4em;
}

@media (max-width: 600px) {
  .news-modal-body {
    padding: 28px 24px 32px;
  }
  .news-modal-title {
    font-size: 26px;
  }
  .news-card-body {
    padding: 20px 22px 22px;
  }
  .news-card-title {
    font-size: 20px;
  }
}
