/* ===================================================
   Zum Torhaus — Berlin-Niederschönhausen
   Restaurant · Gaststätte · Veranstaltungen
   Production CSS — warm restaurant design
   =================================================== */

/* ----- Custom Properties ----- */
:root {
  --walnut: #5A4433;
  --walnut-light: #7A6650;
  --walnut-dark: #3B2F22;
  --cream: #E6D6B8;
  --warm-white: #F0E4CC;
  --sand: #D4C2A2;
  --amber: #F2C66D;
  --forest: #4a6741;
  --forest-light: #6a8761;
  --text-dark: #3B2F22;
  --text-medium: #4A4A4A;
  --text-light: #7A7A7A;
  --radius: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
  --transition: .3s ease;

  /* Warm-Modern additions */
  --walnut-rgb: 59, 47, 34;
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-blur: 16px;
  --radius-organic: 30% 70% 70% 30% / 30% 30% 70% 70%;
  --radius-soft: 24px;
  --shadow-warm-sm: 0 2px 12px rgba(59, 47, 34, 0.08);
  --shadow-warm-md: 0 8px 32px rgba(59, 47, 34, 0.10);
  --shadow-warm-lg: 0 20px 50px rgba(59, 47, 34, 0.14);
  --gradient-warm: linear-gradient(135deg, #E6D6B8 0%, #DCC9A8 50%, #D4C2A2 100%);
  --gradient-walnut: linear-gradient(135deg, #3B2F22 0%, #5A4433 50%, #7A6650 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

/* ----- Typography ----- */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.5rem; }

p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

/* ----- Utility ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: linear-gradient(135deg, var(--walnut), var(--walnut-dark));
  color: #fff;
  border-color: var(--walnut);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--walnut-dark), #2A2018);
  border-color: var(--walnut-dark);
}

.btn-outline {
  background: transparent;
  color: var(--walnut);
  border-color: var(--walnut);
}

.btn-outline:hover {
  background: var(--walnut);
  color: #fff;
}

.btn-accent {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}

.btn-accent:hover {
  background: #D4AD4E;
  border-color: #D4AD4E;
}

/* ----- Navigation ----- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background: rgba(230,214,184,.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(var(--walnut-rgb), 0.05);
}

.nav.scrolled {
  background: rgba(230,214,184,.95);
  box-shadow: var(--shadow-sm);
  padding: .6rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--walnut);
  letter-spacing: .02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  font-size: .92rem;
  font-weight: 400;
  color: var(--text-dark);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 10%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--walnut));
  transition: width var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 80%;
}

.nav-links .btn {
  font-size: .88rem;
  padding: .6rem 1.5rem;
}

.nav-links .btn-primary {
  color: #fff;
}

.nav-links .btn::after {
  display: none;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.nav-dropdown > a .dropdown-arrow {
  font-size: .65rem;
  transition: transform var(--transition);
}

.nav-dropdown:hover > a .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(240, 228, 204, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--shadow-warm-lg);
  padding: .6rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(8px);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: .55rem 1.4rem;
  font-size: .9rem;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: rgba(59,47,34,.08);
  color: var(--walnut);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----- Home Hero ----- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 2rem 5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242,198,109,0.12) 0%, transparent 70%);
  border-radius: var(--radius-organic);
  z-index: 0;
  animation: blobFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74,103,65,0.08) 0%, transparent 70%);
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  z-index: 0;
  animation: blobFloat 25s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 1;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -20px) rotate(5deg); }
  66% { transform: translate(-10px, 15px) rotate(-3deg); }
}

@keyframes blobMorph {
  0%, 100% { border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%; }
  33% { border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%; }
  66% { border-radius: 40% 60% 50% 50% / 60% 40% 40% 60%; }
}

.hero-text h1 {
  font-size: 3.6rem;
  margin-bottom: 1.2rem;
}

.hero-text h1 em {
  color: var(--walnut);
  font-style: italic;
}

.hero-text p {
  font-size: 1.15rem;
  margin-bottom: .5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-text .hero-hours {
  font-size: .95rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ----- Page Hero (inner pages) ----- */
.page-hero {
  background: linear-gradient(135deg, var(--walnut-dark), var(--walnut), var(--walnut-light));
  color: #fff;
  text-align: center;
  padding: 10rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(242,198,109,0.08) 0%, transparent 70%);
  border-radius: var(--radius-organic);
  animation: blobFloat 22s ease-in-out infinite;
  pointer-events: none;
}

.page-hero h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: .6rem;
}

.page-hero p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.2rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

.breadcrumb a {
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: #fff;
}

/* ----- Section Header ----- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: .6rem;
}

.section-header h2 {
  margin-bottom: .8rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ----- Sections ----- */
section {
  padding: 5rem 0;
}

section.bg-white {
  background: var(--warm-white);
}

section.bg-walnut {
  background: var(--walnut);
  color: #fff;
}

section.bg-walnut h2,
section.bg-walnut h3 {
  color: #fff;
}

section.bg-walnut p {
  color: rgba(255,255,255,.85);
}

section.bg-walnut .section-label {
  color: var(--sand);
}

/* ----- Menu Category Cards ----- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.menu-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-soft);
  padding: 2.2rem;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  text-align: center;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--walnut));
  opacity: 0;
  transition: opacity .4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-warm-lg);
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--walnut));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
}

.menu-card .card-icon svg {
  width: 28px;
  height: 28px;
}

@supports not (backdrop-filter: blur(1px)) {
  .menu-card,
  .info-card,
  .contact-method {
    background: rgba(255, 255, 255, 0.92);
  }
}

.menu-card h3 {
  margin-bottom: .5rem;
  font-size: 1.3rem;
}

.menu-card p {
  font-size: .93rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.menu-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--walnut);
  transition: gap var(--transition);
}

.menu-card:hover .card-arrow {
  gap: .7rem;
}

/* ----- Menu Items (Speisekarte / Getränke) ----- */
.menu-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--sand);
  color: var(--walnut);
  position: relative;
}

.menu-category h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .8rem .5rem;
  border-bottom: 1px dotted rgba(0,0,0,.06);
  border-radius: 8px;
  transition: background .3s ease;
}

.menu-item:hover {
  background: rgba(242,198,109,0.06);
}

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

.menu-item-info {
  flex: 1;
  padding-right: 1.5rem;
}

.menu-item-name {
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--text-dark);
}

.menu-item-desc {
  font-size: .88rem;
  color: var(--text-light);
  margin-top: .2rem;
}

.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--walnut);
  white-space: nowrap;
}

.menu-item-volume {
  font-size: .82rem;
  color: var(--text-light);
  margin-top: .1rem;
}

/* ----- Info Cards (Räumlichkeiten, Kontakt, etc.) ----- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-soft);
  padding: 2.2rem;
  text-align: center;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--walnut));
  opacity: 0;
  transition: opacity .4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-warm-lg);
}

.info-card:hover::before {
  opacity: 1;
}

.info-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--walnut));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
}

.info-card .card-icon svg {
  width: 28px;
  height: 28px;
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
}

.info-card p {
  font-size: .93rem;
  color: var(--text-medium);
}

/* ----- Quote / Philosophy ----- */
.philosophy {
  background: linear-gradient(135deg, var(--walnut-dark), #2A2018);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242,198,109,0.1) 0%, transparent 70%);
  border-radius: var(--radius-organic);
  animation: blobFloat 18s ease-in-out infinite;
  pointer-events: none;
}

.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
}

.philosophy blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  opacity: .95;
}

.philosophy cite {
  font-style: normal;
  opacity: .7;
  font-size: 1rem;
}

/* ----- Contact Section ----- */
.contact {
  background: linear-gradient(135deg, var(--walnut-dark), var(--walnut));
  color: #fff;
  text-align: center;
}

.contact h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.contact > .container > .text-center > p {
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

.contact-methods {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.contact-method {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-soft);
  padding: 2rem 2.5rem;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--walnut));
  opacity: 0;
  transition: opacity .4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-warm-lg);
}

.contact-method:hover::before {
  opacity: 1;
}

.contact-method .method-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(59,47,34,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  color: var(--walnut);
}

.contact-method h3 {
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.contact-method p {
  font-size: .9rem;
}

.contact-method a {
  color: var(--walnut);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-method a:hover {
  color: var(--walnut-dark);
}

/* ----- Hours Table ----- */
.hours-table {
  max-width: 500px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: .6rem .8rem;
  border-bottom: 1px dotted rgba(0,0,0,.06);
  font-size: .95rem;
  border-radius: 8px;
  transition: background .3s ease;
}

.hours-row:hover {
  background: rgba(242,198,109,0.06);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 500;
  color: var(--text-dark);
}

.hours-row .time {
  color: var(--text-medium);
}

.hours-row.closed .time {
  color: var(--text-light);
  font-style: italic;
}

/* ----- Detail Page ----- */
.detail-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.detail-content h2 {
  margin: 2rem 0 1rem;
}

.detail-content h3 {
  margin: 1.5rem 0 .8rem;
}

.detail-content p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.detail-content ul,
.detail-content ol {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

.detail-content ul li {
  list-style: disc;
  margin-bottom: .4rem;
  color: var(--text-medium);
}

.detail-content ol li {
  list-style: decimal;
  margin-bottom: .4rem;
  color: var(--text-medium);
}

.detail-content blockquote {
  border-left: 4px solid var(--walnut);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: var(--warm-white);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

/* ----- About Layout (Home) ----- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
  overflow: hidden;
  aspect-ratio: 4/3;
  animation: blobMorph 12s ease-in-out infinite;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-warm-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.about-inner h2 {
  margin-bottom: 1rem;
}

.about-inner p {
  font-size: 1.02rem;
}

/* ----- Map Embed ----- */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
}

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

/* ----- Footer ----- */
.site-footer {
  background: linear-gradient(180deg, #2a2a2a, #1e1e1e);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--walnut), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
}

.footer-brand .brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}

.footer-brand p {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.2rem;
}

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

.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: .8rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--amber), var(--walnut));
  border-color: transparent;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

.footer-contact-info {
  margin-top: 1rem;
}

.footer-contact-info p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .3rem;
}

/* ----- Animations ----- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1), transform .7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* ----- CTA Banner ----- */
.cta-banner {
  background: var(--walnut);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: .8rem;
}

.cta-banner p {
  color: rgba(255,255,255,.85);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

/* ----- Responsive: Tablet (968px) ----- */
@media (max-width: 968px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }

  .hero {
    min-height: auto;
    padding: 8rem 2rem 3rem;
  }

  .hero-text h1 {
    font-size: 2.6rem;
  }

  .hero::before { width: 300px; height: 300px; }
  .hero::after { width: 250px; height: 250px; }
  .philosophy::before { width: 250px; height: 250px; }
  .page-hero::after { width: 200px; height: 200px; }

  .menu-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Nav - mobile */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(0,0,0,.05);
  }

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

  .nav-links a {
    padding: .7rem 0;
    width: 100%;
    font-size: .95rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .btn {
    margin-top: .5rem;
    align-self: flex-start;
  }

  /* Mobile dropdown */
  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 1rem;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }

  .nav-dropdown.dropdown-open .dropdown-menu {
    max-height: 300px;
  }

  .dropdown-menu a {
    padding: .4rem 0;
    font-size: .9rem;
    color: var(--text-light);
  }
}

/* ----- Responsive: Mobile (600px) ----- */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.25rem; }

  .container {
    padding: 0 1.2rem;
  }

  section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 7rem 1.2rem 2rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero::before { width: 200px; height: 200px; }
  .hero::after { width: 150px; height: 150px; }
  .philosophy::before { width: 180px; height: 180px; }
  .page-hero::after { width: 150px; height: 150px; }

  .page-hero {
    padding: 8rem 1.2rem 3rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .menu-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .contact-method {
    max-width: 100%;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .btn {
    padding: .75rem 1.5rem;
    font-size: .9rem;
  }

  .philosophy blockquote {
    font-size: 1.6rem;
  }

  .menu-section {
    padding: 3rem 1.2rem;
  }

  .menu-category h2 {
    font-size: 1.5rem;
  }

  .map-container {
    height: 300px;
  }
}
