/* ==========================================================================
   Metzgerei Vogt — Theme Stylesheet
   Clean rewrite — all styles in one file, no inline <style> blocks needed.
   ========================================================================== */


/* ==========================================================================
   1. @FONT-FACE DECLARATIONS
   ========================================================================== */

/* Oswald — Display / Headings */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/oswald-v57-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/oswald-v57-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/oswald-v57-latin-700.woff2') format('woff2');
}

/* Source Sans 3 — Body / UI */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/source-sans-3-v19-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/source-sans-3-v19-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/source-sans-3-v19-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/source-sans-3-v19-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/source-sans-3-v19-latin-300italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/source-sans-3-v19-latin-italic.woff2') format('woff2');
}


/* ==========================================================================
   2. CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
  --bg-page: #F7F3EF;
  --bg-dark: #1A1A1A;
  --bg-dark-lighter: #2D2D2D;
  --bg-dark-footer: #111;
  --accent: #A9344F;
  --text-primary: #333;
  --text-light: rgba(255, 255, 255, 0.55);
  --text-light-muted: rgba(255, 255, 255, 0.4);
  --white: #fff;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  --max-width: 1280px;
  --header-h: 72px;
}


/* ==========================================================================
   3. BASE RESET + BODY + HEADINGS + LINKS + CONTAINER
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--text-primary);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.vogt-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .vogt-container {
    padding: 0 40px;
  }
}


/* ==========================================================================
   4. HEADER — Sticky dark bar
   ========================================================================== */

.vogt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vogt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-h);
}

@media (min-width: 768px) {
  .vogt-header__inner {
    padding: 0 40px;
  }
}

/* Brand */
.vogt-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}

.vogt-header__logo {
  height: 40px;
  width: auto;
  display: block;
}

.vogt-header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.vogt-header__brand-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.vogt-header__brand-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}


/* ==========================================================================
   5. DESKTOP NAVIGATION
   ========================================================================== */

.vogt-nav {
  display: none;
}

@media (min-width: 1024px) {
  .vogt-nav {
    display: block;
  }
}

.vogt-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vogt-nav__item {
  position: relative;
}

.vogt-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.vogt-nav__link:hover,
.vogt-nav__link:focus-visible {
  color: var(--white);
}

.vogt-nav__item.current-menu-item > .vogt-nav__link,
.vogt-nav__item.current-menu-ancestor > .vogt-nav__link {
  color: var(--white);
}

.vogt-nav__chevron {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.vogt-nav__item:hover > .vogt-nav__link .vogt-nav__chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}


/* ==========================================================================
   6. DROPDOWN SUBMENU
   ========================================================================== */

.vogt-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-dark-footer);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.vogt-nav__item:hover > .vogt-dropdown,
.vogt-nav__item:focus-within > .vogt-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vogt-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vogt-dropdown__item {
  display: block;
}

.vogt-dropdown__link {
  display: block;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}

.vogt-dropdown__link:hover,
.vogt-dropdown__link:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}


/* ==========================================================================
   7. HAMBURGER (mobile only)
   ========================================================================== */

.vogt-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
}

.vogt-header__hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animated X state */
.vogt-header__hamburger[aria-expanded="true"] .vogt-header__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.vogt-header__hamburger[aria-expanded="true"] .vogt-header__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.vogt-header__hamburger[aria-expanded="true"] .vogt-header__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .vogt-header__hamburger {
    display: none;
  }
}


/* ==========================================================================
   8. MOBILE MENU
   ========================================================================== */

.vogt-mobile-menu {
  display: none;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 20px 1.5rem;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}

.vogt-mobile-menu[aria-hidden="false"] {
  display: block;
}

@media (min-width: 1024px) {
  .vogt-mobile-menu {
    display: none !important;
  }
}

.vogt-mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vogt-mobile-menu__list .vogt-nav__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vogt-mobile-menu__list .vogt-nav__link {
  display: block;
  padding: 0.75rem 0;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vogt-mobile-menu__list .vogt-nav__link:hover {
  color: var(--accent);
}

/* Mobile dropdown (flat) */
.vogt-mobile-menu__list .vogt-dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 0.5rem 1rem;
  min-width: 0;
}

.vogt-mobile-menu__list .vogt-dropdown__link {
  padding: 0.4rem 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.vogt-mobile-menu__list .vogt-dropdown__link:hover {
  color: var(--white);
  background: transparent;
}

.vogt-mobile-menu__list .vogt-nav__chevron {
  display: none;
}


/* ==========================================================================
   9. HERO SLIDER
   ========================================================================== */

.vogt-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--bg-dark);
}

@media (min-width: 768px) {
  .vogt-hero {
    height: 520px;
  }
}

.vogt-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.vogt-hero__slide--active {
  opacity: 1;
  z-index: 2;
}

.vogt-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vogt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 2;
}

.vogt-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 3;
}

.vogt-hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  background: rgba(169, 52, 79, 0.15);
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.vogt-hero__label {
  margin-bottom: 0.5rem;
}

.vogt-hero__headline {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  max-width: 550px;
}

@media (min-width: 768px) {
  .vogt-hero__headline {
    font-size: 3rem;
  }
}

.vogt-hero__text {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.vogt-hero__cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vogt-hero__cta:hover,
.vogt-hero__cta:focus-visible {
  background: #8a2a40;
  color: var(--white);
  transform: translateY(-1px);
}

/* Dots */
.vogt-hero__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.vogt-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.vogt-hero__dot--active,
.vogt-hero__dot:hover {
  background: var(--white);
  border-color: var(--white);
}


/* ==========================================================================
   10. SERVICES BAR
   ========================================================================== */

.vogt-services {
  background: var(--bg-dark);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vogt-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .vogt-services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.vogt-services__item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.vogt-services__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: var(--accent);
}

.vogt-services__icon svg {
  stroke: var(--accent);
}

.vogt-services__title {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}

.vogt-services__desc {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}


/* ==========================================================================
   11. TAGESESSEN
   ========================================================================== */

.vogt-tagesessen {
  background: var(--bg-page);
  padding: 60px 0;
}

.vogt-tagesessen__list {
  margin-top: 1.5rem;
}

.vogt-tagesessen__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.vogt-tagesessen__row:last-child {
  border-bottom: none;
}

.vogt-tagesessen__day {
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vogt-tagesessen__day-abbr {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.vogt-tagesessen__day-num {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}

.vogt-tagesessen__info {
  flex: 1;
  min-width: 0;
}

.vogt-tagesessen__name {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.vogt-tagesessen__sides {
  display: block;
  font-size: 13px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 2px;
}

.vogt-tagesessen__price {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}


/* ==========================================================================
   12. PHILOSOPHIE
   ========================================================================== */

.vogt-philosophie {
  background: var(--bg-dark);
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.vogt-philosophie__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.5) 20px,
    rgba(255, 255, 255, 0.5) 21px
  );
  pointer-events: none;
}

.vogt-philosophie__inner {
  position: relative;
  z-index: 2;
}

.vogt-philosophie__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .vogt-philosophie__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
}

.vogt-philosophie__motto {
  font-family: var(--font-body);
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.vogt-philosophie__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.vogt-philosophie__desc:last-child {
  margin-bottom: 0;
}

/* Features grid */
.vogt-philosophie__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .vogt-philosophie__features {
    grid-template-columns: 1fr 1fr;
  }
}

.vogt-philosophie__feature {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.vogt-philosophie__feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: var(--accent);
}

.vogt-philosophie__feature-icon svg {
  stroke: var(--accent);
}

.vogt-philosophie__feature-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.25rem;
  letter-spacing: 0.3px;
}

.vogt-philosophie__feature-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0;
}


/* ==========================================================================
   13. CATERING
   ========================================================================== */

.vogt-catering {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-lighter) 100%);
  padding: 60px 0;
}

.vogt-catering__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .vogt-catering__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.vogt-catering__desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vogt-catering__cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vogt-catering__cta:hover,
.vogt-catering__cta:focus-visible {
  background: #8a2a40;
  color: var(--white);
  transform: translateY(-1px);
}

.vogt-catering__image {
  display: flex;
  justify-content: center;
}

.vogt-catering__image img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .vogt-catering__image img {
    width: 320px;
    height: 320px;
  }
}


/* ==========================================================================
   14. SUBPAGE HERO
   ========================================================================== */

.vogt-subpage-hero {
  background: var(--bg-dark);
  padding: 4rem 0;
}

.vogt-subpage-hero__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
}

@media (min-width: 768px) {
  .vogt-subpage-hero__title {
    font-size: 2.5rem;
  }
}

.vogt-subpage-hero__desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  max-width: 640px;
  margin: 0;
}


/* ==========================================================================
   15. PAGE CONTENT
   ========================================================================== */

.vogt-content {
  padding: 3rem 0;
}

.vogt-page-content {
  max-width: 700px;
}

.vogt-page-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
}

.vogt-page-content h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem;
}

.vogt-page-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.vogt-page-content ul,
.vogt-page-content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.vogt-page-content ol {
  list-style: decimal;
}

.vogt-page-content li {
  margin-bottom: 0.35rem;
}

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

.vogt-page-content a:hover {
  color: var(--text-primary);
}

.vogt-page-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.02);
}

.vogt-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.vogt-page-content th,
.vogt-page-content td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.vogt-page-content th {
  font-weight: 600;
}


/* ==========================================================================
   16. FOOTER
   ========================================================================== */

.vogt-footer {
  background: var(--bg-dark-footer);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  border-top: 3px solid var(--accent);
}

.vogt-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .vogt-footer__inner {
    padding: 0 40px;
  }
}

.vogt-footer__heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light-muted);
  margin: 0 0 1.25rem;
}

/* Row 1: Brand + Services */
.vogt-footer__top {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vogt-footer__top .vogt-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .vogt-footer__top .vogt-footer__inner {
    grid-template-columns: 35% 1fr;
    gap: 3rem;
  }
}

/* Brand column */
.vogt-footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.vogt-footer__brand-link {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.vogt-footer__logo {
  height: 50px;
  width: auto;
}

.vogt-footer__brand-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.vogt-footer__brand-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.vogt-footer__claim {
  margin: 0.5rem 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.vogt-footer__email {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.35rem;
  transition: color 0.2s ease;
}

.vogt-footer__email:hover,
.vogt-footer__email:focus-visible {
  color: var(--white);
}

/* Services column */
.vogt-footer__services-col {
  /* no special layout needed */
}

.vogt-footer__services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vogt-footer__service {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.vogt-footer__service-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: var(--accent);
}

.vogt-footer__service-text {
  display: flex;
  flex-direction: column;
}

.vogt-footer__service-text strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
}

.vogt-footer__service-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Row 2: Standorte */
.vogt-footer__locations {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vogt-footer__locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .vogt-footer__locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .vogt-footer__locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vogt-footer__location {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.vogt-footer__location-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: rgba(169, 52, 79, 0.1);
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 0.25rem;
}

.vogt-footer__location-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.3px;
}

.vogt-footer__location-address {
  font-style: normal;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.vogt-footer__location-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin: 0.15rem 0;
  transition: color 0.2s ease;
}

.vogt-footer__location-phone:hover,
.vogt-footer__location-phone:focus-visible {
  color: var(--accent);
}

.vogt-footer__location-phone svg {
  color: var(--accent);
}

.vogt-footer__location-hours {
  margin: 0.35rem 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.vogt-footer__hours-row {
  display: flex;
  gap: 0.5rem;
}

.vogt-footer__hours-row dt {
  min-width: 110px;
  font-weight: 600;
  color: var(--text-light);
}

.vogt-footer__hours-row dd {
  margin: 0;
}

/* Bottom bar */
.vogt-footer__bottom {
  padding: 1.25rem 0;
}

.vogt-footer__bottom .vogt-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.vogt-footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.vogt-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
}

.vogt-footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vogt-footer__legal a:hover,
.vogt-footer__legal a:focus-visible {
  color: var(--white);
}

.vogt-footer__sep {
  color: rgba(255, 255, 255, 0.2);
}


/* ==========================================================================
   17. COOKIE BANNER
   ========================================================================== */

.vogt-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.vogt-cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .vogt-cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.vogt-cookie-banner__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

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

.vogt-cookie-banner__text a:hover {
  color: var(--white);
}

.vogt-cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.vogt-cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.vogt-cookie-banner__btn--accept {
  background: var(--accent);
  color: var(--white);
}

.vogt-cookie-banner__btn--accept:hover {
  background: #8a2a40;
}

.vogt-cookie-banner__btn--decline {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.vogt-cookie-banner__btn--decline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}


/* ==========================================================================
   18. UTILITIES
   ========================================================================== */

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.accent-text {
  color: var(--accent);
}

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


/* ==========================================================================
   19. WP ADMIN BAR FIX
   ========================================================================== */

.admin-bar .vogt-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .vogt-header {
    top: 46px;
  }
}


/* ==========================================================================
   20. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Small: 640px — services grid, footer locations 2-col */
/* Already handled inline above */

/* Medium: 768px — hero height, container padding, footer brand+services grid,
   cookie banner row layout, section-title size */
/* Already handled inline above */

/* Large: 1024px — desktop nav visible, hamburger hidden, mobile menu killed,
   philosophie 2-col, catering 2-col */
/* Already handled inline above */


/* ==========================================================================
   21. PRINT STYLES
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }

  .vogt-header,
  .vogt-header__hamburger,
  .vogt-mobile-menu,
  .vogt-hero__dots,
  .vogt-cookie-banner,
  .vogt-footer__legal {
    display: none !important;
  }

  .vogt-hero {
    height: auto;
    page-break-after: avoid;
  }

  .vogt-hero__slide {
    position: static;
    opacity: 1;
  }

  .vogt-hero__slide:not(:first-child) {
    display: none;
  }

  .vogt-hero__overlay {
    display: none;
  }

  .vogt-hero__content {
    position: static;
  }

  .vogt-container {
    max-width: 100%;
    padding: 0;
  }

  .vogt-footer {
    border-top: 1px solid #ccc;
  }

  .vogt-tagesessen__row,
  .vogt-footer__hours-row {
    page-break-inside: avoid;
  }
}
