:root {
  --ff-display: 'Cormorant Garamond', 'Georgia', serif;
  --ff-body: 'Lora', 'Georgia', serif;
  --ff-script: 'Satisfy', cursive;

  --cream: #f5efe6;
  --cream-dark: #e0d5c4;
  --cream-light: #faf7f2;
  --forest: #1a3329;
  --forest-light: #2d5a3d;
  --forest-mid: #234a35;
  --gold: #c8963e;
  --gold-dark: #a67a2e;
  --gold-light: #d4a847;
  --gold-pale: #f0e4cc;
  --brown: #3d2b1f;
  --brown-light: #7a6555;
  --charcoal: #2a2a2a;
  --white: #fff;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================
   HEADER / NAV
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.35s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(26, 51, 41, 0.97);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
}

.site-header.hidden {
  transform: translateY(-100%);
}

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

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.nav-logo-w4 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.nav-logo-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.75);
  padding: 8px 16px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.nav-highlight-link {
  color: var(--gold-light) !important;
}

.nav-admin-link {
  opacity: 0.5;
  font-size: 0.8rem !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
  border-radius: 1px;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 800px) {
  .nav-toggle { display: flex; z-index: 120; }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 109;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .nav-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--forest);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
    z-index: 110;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; padding: 12px 16px; }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(45, 90, 61, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(200, 150, 62, 0.15) 0%, transparent 50%),
    linear-gradient(175deg, #0f1f16 0%, #1a3329 30%, #234a35 60%, #1a3329 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 40px;
  animation: heroFadeIn 1.2s ease both;
}

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

.hero-ornament-top,
.hero-ornament-bottom {
  display: flex;
  justify-content: center;
  color: var(--gold);
  opacity: 0.5;
}

.hero-ornament-top svg,
.hero-ornament-bottom svg {
  width: 120px;
  height: 12px;
}

.hero-pre {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  margin-top: 12px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
}

.hero-w4 {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 40px rgba(200, 150, 62, 0.2);
}

.hero-name {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.12em;
  margin-top: -4px;
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: rgba(245, 239, 230, 0.55);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s ease 0.4s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 239, 230, 0.3);
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint svg {
  width: 24px;
  height: 24px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 150, 62, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 239, 230, 0.3);
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(245, 239, 230, 0.08);
}

.btn-dark {
  background: var(--forest);
  color: var(--cream);
  padding: 12px 28px;
}

.btn-dark:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26, 51, 41, 0.3);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-label {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--forest);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

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

.section-ornament {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  color: var(--gold);
  opacity: 0.5;
}

.section-ornament svg {
  width: 200px;
  height: 16px;
}

/* ============================================
   HIGHLIGHTS
   ============================================ */

.highlights {
  padding: 100px 32px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200, 150, 62, 0.06) 0%, transparent 60%),
    var(--cream-light);
}

.highlights-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.highlight-card {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-animated .highlight-card {
  opacity: 0;
  transform: translateY(30px);
}

.js-animated .highlight-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.highlight-card:nth-child(2).visible { transition-delay: 0.15s; }
.highlight-card:nth-child(3).visible { transition-delay: 0.3s; }

.highlight-card-inner {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.highlight-card--active .highlight-card-inner {
  border-color: var(--gold);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(200, 150, 62, 0.05) 0%, transparent 60%),
    var(--white);
}

.highlight-card--active .highlight-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.highlight-badge {
  margin-bottom: 16px;
}

.highlight-badge-text {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 4px 12px;
  border-radius: 2px;
}

.highlight-card--active .highlight-badge-text {
  background: var(--forest);
  color: var(--gold-light);
}

.highlight-dates {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: var(--brown-light);
  margin-bottom: 12px;
}

.highlight-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 8px;
}

.highlight-desc {
  font-size: 0.95rem;
  color: var(--brown-light);
  flex-grow: 1;
}

.highlight-price {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: 16px;
}

.highlight-cta {
  margin-top: 20px;
}

.highlight-reserve {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--forest);
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.highlight-reserve:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  padding: 100px 32px;
  background: var(--cream);
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-animated .about-text {
  opacity: 0;
  transform: translateY(30px);
}

.js-animated .about-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-text .section-title {
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--brown);
  line-height: 1.8;
}

.about-text .btn {
  margin-top: 12px;
}

.about-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  padding: 28px;
  position: relative;
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.js-animated .info-card {
  opacity: 0;
  transform: translateY(20px);
}

.js-animated .info-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.info-card:nth-child(2).visible { transition-delay: 0.1s; }
.info-card:nth-child(3).visible { transition-delay: 0.2s; }

.info-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.info-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.info-card h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}

.info-card-hours {
  font-size: 0.9rem;
}

.info-card-hours div {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid var(--cream);
}

.info-card-hours div:last-child {
  border-bottom: none;
}

.info-card-hours dt {
  font-weight: 500;
  color: var(--charcoal);
}

.info-card-hours dd {
  color: var(--brown-light);
}

.info-card-note {
  font-size: 0.82rem;
  color: var(--gold-dark);
  margin-top: 8px;
  font-style: italic;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--brown);
  line-height: 1.6;
}

.info-card-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--forest-light);
  border-bottom: 1px solid var(--cream-dark);
  transition: border-color 0.2s;
}

.info-card-link:hover {
  border-color: var(--gold);
}

@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   MENU PREVIEW (Home)
   ============================================ */

.menu-preview {
  padding: 100px 32px;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(45, 90, 61, 0.04) 0%, transparent 60%),
    var(--cream-light);
}

.menu-preview-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.menu-preview-cat {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-animated .menu-preview-cat {
  opacity: 0;
  transform: translateY(20px);
}

.js-animated .menu-preview-cat.visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-preview-cat:nth-child(2).visible { transition-delay: 0.1s; }
.menu-preview-cat:nth-child(3).visible { transition-delay: 0.2s; }
.menu-preview-cat:nth-child(4).visible { transition-delay: 0.15s; }
.menu-preview-cat:nth-child(5).visible { transition-delay: 0.25s; }
.menu-preview-cat:nth-child(6).visible { transition-delay: 0.2s; }

.menu-preview-cat h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-dark);
}

.menu-preview-cat ul {
  list-style: none;
}

.menu-preview-cat li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.9rem;
}

.menu-preview-name {
  color: var(--charcoal);
  white-space: nowrap;
}

.menu-preview-dots {
  flex: 1;
  border-bottom: 1px dotted var(--cream-dark);
  min-width: 20px;
  margin-bottom: 4px;
}

.menu-preview-price {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
}

.menu-preview-more {
  color: var(--brown-light) !important;
  font-style: italic;
  font-size: 0.85rem !important;
  justify-content: flex-start !important;
}

.menu-preview-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   PAGE HERO (Speisekarte, etc.)
   ============================================ */

.page-hero {
  padding: 160px 32px 80px;
  background:
    radial-gradient(ellipse at 40% 60%, rgba(45, 90, 61, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(200, 150, 62, 0.1) 0%, transparent 50%),
    var(--forest);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.3'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

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

.page-hero .section-label {
  color: var(--gold-light);
  opacity: 0.7;
}

.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.08em;
}

.page-hero-sub {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: rgba(245, 239, 230, 0.6);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

/* ============================================
   FULL MENU (Speisekarte page)
   ============================================ */

.menu-full {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.menu-nav {
  position: sticky;
  top: 70px;
  z-index: 50;
  display: flex;
  gap: 4px;
  padding: 16px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-nav::-webkit-scrollbar { display: none; }

.menu-nav-item {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 3px;
  white-space: nowrap;
  color: var(--brown-light);
  transition: all 0.2s;
}

.menu-nav-item:hover {
  color: var(--forest);
  background: var(--cream-dark);
}

.menu-nav-item.active {
  color: var(--forest);
  background: var(--cream-dark);
  font-weight: 600;
}

.menu-category {
  padding: 48px 0 32px;
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.menu-category-header h2 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--forest);
  white-space: nowrap;
}

.menu-category-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--cream-dark), transparent);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-item {
  padding: 16px 20px;
  border-radius: 4px;
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s;
}

.js-animated .menu-item {
  opacity: 0;
  transform: translateY(10px);
}

.js-animated .menu-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-item:hover {
  background: var(--cream-light);
}

.menu-item-top {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.menu-item-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--cream-dark);
  min-width: 30px;
  margin-bottom: 4px;
}

.menu-item-price {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--brown-light);
  margin-top: 4px;
  padding-left: 2px;
  font-style: italic;
}

.menu-footer-note {
  text-align: center;
  padding: 48px 0 0;
  border-top: 1px solid var(--cream-dark);
  margin-top: 32px;
}

.menu-footer-note p {
  font-size: 0.82rem;
  color: var(--brown-light);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--forest);
  color: var(--cream);
  padding: 60px 32px 24px;
  position: relative;
}

.footer-ornament {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  transform: translateY(-50%);
  color: var(--gold);
  opacity: 0.3;
}

.ornament-svg {
  width: 200px;
  height: 20px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 40px;
}

.footer-brand-w4 {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--cream);
  display: block;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.5);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer-hours {
  font-size: 0.88rem;
}

.footer-hours div {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid rgba(245, 239, 230, 0.08);
}

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

.footer-hours dt {
  color: rgba(245, 239, 230, 0.7);
}

.footer-hours dd {
  color: var(--cream);
}

.footer-note {
  font-size: 0.78rem;
  color: var(--gold-dark);
  margin-top: 8px;
  font-style: italic;
}

.site-footer address {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(245, 239, 230, 0.8);
  line-height: 1.7;
}

.footer-contact-links {
  margin-top: 8px;
}

.footer-contact-links a {
  display: block;
  color: var(--cream);
  padding: 3px 0;
  border-bottom: 1px solid rgba(245, 239, 230, 0.1);
  transition: border-color 0.2s, color 0.2s;
  font-size: 0.85rem;
}

.footer-contact-links a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-social {
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 239, 230, 0.15);
  border-radius: 50%;
  color: rgba(245, 239, 230, 0.6);
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 150, 62, 0.08);
}

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 239, 230, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(245, 239, 230, 0.35);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 550px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================
   ADMIN (page-specific overrides for .page-admin)
   ============================================ */

.page-admin .site-header {
  background: var(--forest);
}

.page-admin main {
  background: var(--cream-light);
  min-height: 100vh;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 600px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .highlights {
    padding: 60px 20px;
  }
  .about {
    padding: 60px 20px;
  }
  .menu-preview {
    padding: 60px 20px;
  }
  .menu-full {
    padding: 0 16px 60px;
  }
  .menu-item {
    padding: 12px 8px;
  }
}
