/* ==========================================================================
   Schifferstube Joersfelde — Stylesheet
   Maritim/nautisches Vintage-Design, mobile-first
   ========================================================================== */

/* Schritt 18 (Performance): Nur tatsächlich verwendete Schriftschnitte laden.
   Geprüft per Grep im gesamten Projekt: font-weight kommt nur als 400 und 600
   vor (500 wird nirgends benutzt); Cormorant Garamond wird nirgends kursiv
   gesetzt (nur EB Garamond, u. a. für <em>-Platzhaltertexte). Das spart drei
   von neun Schriftdateien gegenüber der vorherigen Einbindung.
   Lokal gehostet (kein Google-Fonts-Fremdzugriff mehr, Vorbereitung IONOS-Umzug):
   Dateien liegen unter fonts/, unicode-range beschränkt auf den Latin-Bereich
   (deckt inkl. ä/ö/ü/ß vollständig ab), identisch zur vormals von Google
   ausgelieferten Untermenge. */
@font-face {
  font-family: 'Alex Brush';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/alex-brush-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/eb-garamond-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/eb-garamond-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/eb-garamond-italic-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Farben */
  --navy: #0e2a3f;
  --navy-dark: #081a28;
  --navy-light: #1c4262;
  --cream: #f3e9d3;
  --cream-light: #faf4e6;
  --gold: #b8975a;
  --gold-light: #d4b878;
  /* Schritt 17 (Barrierefreiheit): dunklerer Goldton für kleine Textelemente
     auf hellem Creme-Hintergrund. Das normale --gold erreicht dort nur rund
     2,3:1 Kontrast (zu wenig für Fließtext); --gold-dark erreicht ca. 5:1.
     Auf dunklen Navy-Flächen bleibt weiterhin --gold bzw. --gold-light im
     Einsatz, dort ist der Kontrast bereits ausreichend. */
  --gold-dark: #7a5e30;
  --ink: #2a2115;
  --white: #ffffff;

  /* Typografie */
  --font-script: 'Alex Brush', cursive;
  --font-serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-body: 'EB Garamond', Georgia, serif;

  /* Sonstiges */
  --max-width: 1180px;
  --radius: 4px;
  --shadow-soft: 0 6px 20px rgba(8, 26, 40, 0.18);
  --border-gold: 1px solid rgba(184, 151, 90, 0.55);
}

/* --------------------------------------------------------------------
   Job-Banner (Stellenangebot auf der Startseite)
   -------------------------------------------------------------------- */
.job-banner {
  background: var(--gold);
  border-bottom: var(--border-gold);
  padding: 2.2rem 0;
}
.job-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem 2rem;
  flex-wrap: wrap;
  text-align: center;
}
.job-banner-text {
  margin: 0;
  color: var(--navy-dark);
  font-family: var(--font-serif);
  font-size: 1.15rem;
}
.job-banner-text strong { color: var(--navy-dark); }
.job-banner-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}
.job-banner-actions .btn-primary {
  background-color: var(--navy-dark);
  color: var(--cream);
  border-color: var(--navy-dark);
}
.job-banner-actions .btn-primary:hover {
  background-color: var(--navy);
  color: var(--cream);
}
.job-banner-actions .btn-outline-navy:hover { background-color: var(--navy-dark); border-color: var(--navy-dark); }
.job-banner-actions .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
}

/* --------------------------------------------------------------------
   Reset & Basis
   -------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(rgba(120, 95, 50, 0.05) 1px, transparent 1px),
    radial-gradient(rgba(120, 95, 50, 0.04) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 2px 3px;
}

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

/* Schritt 18 (Performance): Bilder werden über <picture><source type="image/webp">
   in modernen Browsern als WebP geladen (kleinere Dateigröße), mit dem
   ursprünglichen JPEG/PNG als Fallback-<img>. <picture> ist standardmäßig
   inline und würde Grid-/Flex-Layouts stören, die bisher direkt auf <img>
   als Kind-Element ausgelegt waren – display:block sorgt dafür, dass sich
   am Layout nichts ändert. */
picture { display: block; }

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

/* Schritt 17 (Barrierefreiheit): sichtbarer Standard-Fokusring für Links
   und Buttons ohne eigene, spezifischere :focus-visible-Regel (z. B.
   Fließtext-Links, Footer-Links, Cookie-Banner-Buttons, Menü-Button).
   Doppelter Ring (Creme + Navy) statt einfarbigem Gold-Outline, damit der
   Kontrast unabhängig vom hellen oder dunklen Hintergrund ausreicht –
   Gold allein hätte auf cremefarbenem Hintergrund zu wenig Kontrast.
   Komponenten mit eigener :focus-visible-Regel (Buttons, Nav-Dropdown,
   Formularfelder usw.) überschreiben dies weiterhin gezielt. */
a:focus-visible, button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px var(--navy);
  border-radius: 2px;
}

/* Sichtbar-für-Sehende-versteckter Skip-Link: erscheint bei Tastaturfokus
   oben links, damit man die wiederkehrende Navigation überspringen kann. */
.skip-link {
  position: absolute;
  top: -3rem;
  left: 0.5rem;
  z-index: 1000;
  background-color: var(--navy);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-serif);
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus-visible {
  top: 0.5rem;
  outline: none;
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px var(--gold);
}

h1, h2, h3, h4 { margin: 0 0 0.5em; color: var(--navy); font-weight: 600; overflow-wrap: break-word; hyphens: auto; }

h1, h2 { font-family: var(--font-script); font-weight: 400; color: var(--navy); }

h1 { font-size: clamp(2.6rem, 7vw, 4.2rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.15; }
h3 { font-family: var(--font-serif); font-size: 1.5rem; letter-spacing: 0.02em; text-transform: uppercase; }

/* Schritt 17 (Barrierefreiheit): einige Abschnittsüberschriften wurden von
   <h3> auf <h2> angehoben, um Sprünge in der Überschriftenhierarchie
   (h1 → h3) zu vermeiden. Diese Klasse erhält das bisherige visuelle
   Erscheinungsbild von h3 (kleine, serifenlose Großbuchstaben-Optik statt
   der großen Schreibschrift von h1/h2), damit sich am Design nichts
   ändert – nur die Semantik wurde korrigiert. */
.heading-sub { font-family: var(--font-serif); font-weight: 600; font-size: 1.5rem; letter-spacing: 0.02em; text-transform: uppercase; }

p { margin: 0 0 1em; }

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

section { padding: 3.5rem 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-serif);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }

.divider-compass {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
  color: var(--gold);
}
.divider-compass svg { width: 42px; height: 42px; }
.compass-icon { width: 40px; height: auto; }

.house-illustration {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 2rem 0;
  opacity: 0.92;
}

/* --------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.92rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: var(--border-gold);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-1px);
}
.btn-primary:active {
  background-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(0);
}
.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 5px var(--navy);
}

.btn-outline {
  background-color: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline:hover { background-color: rgba(255,255,255,0.1); }

.btn-outline-navy {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background-color: var(--navy); color: var(--cream); }

/* --------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--navy);
  border-bottom: var(--border-gold);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.brand { display: flex; align-items: flex-start; gap: 0.8rem; color: var(--cream); min-width: 0; }
.brand svg { width: 46px; height: 46px; flex-shrink: 0; color: var(--gold-light); }
.brand-logo { width: 58px; height: auto; flex-shrink: 0; }
.brand-text { font-family: var(--font-script); font-size: 1.6rem; line-height: 1; color: var(--cream); }
.brand-text small {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.25rem;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}
.nav-toggle span { width: 26px; height: 2px; background-color: var(--cream); display: block; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background-color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 4.5rem 0 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 105;
}
.main-nav.is-open { transform: translateX(0); }

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.main-nav li { margin: 1.1rem 0; }
.main-nav a:not(.btn) {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav a:not(.btn):hover, .main-nav a:not(.btn)[aria-current="page"] { border-color: var(--gold); color: var(--gold-light); }

/* Dropdown "Speisekarte" (Untermenü: Speisekarte, Frühstück, Getränkekarte) */
.nav-dropdown-toggle {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin: 0;
  padding: 0.3rem 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown-toggle[aria-current="true"] {
  border-color: var(--gold);
  color: var(--gold-light);
}
.nav-dropdown-toggle:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
  border-radius: 2px;
}
.nav-dropdown-toggle-caret { width: 12px; height: 12px; flex-shrink: 0; transition: transform 0.2s ease; }
.nav-dropdown.is-open .nav-dropdown-toggle-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: none;
}
.nav-dropdown.is-open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { font-size: 1.05rem; opacity: 0.8; }

@media (min-width: 1240px) {
  .nav-toggle { display: none; }
  .main-nav {
    position: static;
    background: none;
    transform: none;
    display: block;
    width: auto;
    overflow: visible;
    padding: 0;
  }
  .main-nav ul { display: flex; align-items: center; gap: 1.6rem; flex-wrap: nowrap; }
  .main-nav li { margin: 0; flex-shrink: 0; }
  .main-nav a:not(.btn), .main-nav .nav-dropdown-toggle { font-size: 0.92rem; letter-spacing: 0.04em; }

  .nav-dropdown { position: relative; }
  .nav-dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0.5rem 0;
    min-width: 170px;
    background-color: var(--navy);
    border: var(--border-gold);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-dropdown-menu li { margin: 0; }
  .nav-dropdown-menu a {
    display: block;
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
    opacity: 1;
  }
}

/* Dezente "Beliebt"-Kennzeichnung auf der Frühstückskarte */
.menu-item-badge {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-dark);
  background-color: rgba(184, 151, 90, 0.35);
  border: 1px solid rgba(184, 151, 90, 0.6);
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* --------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  background: var(--navy-dark); /* Fallback, falls das Video nicht lädt */
  overflow-y: visible; /* Steuerrad darf über die Sektionsgrenze hinausragen */
  overflow-x: clip; /* verhindert horizontalen Seiten-Scrollbalken durch das rechts überstehende Steuerrad */
}

/* Dezentes Hintergrundvideo: Steak in der Pfanne, hinter dem gewohnten
   Navy-Verlauf des Hero. Soll durchscheinen, nicht dominieren. */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) saturate(0.9);
  z-index: 0;
  pointer-events: none;
}

.hero-video-verlauf {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8,26,40,0.3) 0%, rgba(8,26,40,0.85) 45%, rgba(8,26,40,0.92) 100%);
}

.hero-illustration {
  position: absolute;
  right: -60px;
  bottom: 0;
  transform: translateY(35%);
  width: 480px;
  max-width: 60vw;
  height: auto;
  opacity: 0.5;
  z-index: 1; /* über der hellen Folge-Section, aber unter deren Text (siehe .hero + section .container) */
  pointer-events: none;
}

/* Mobile: weniger Überlappung und kleiner, damit das Steuerrad nicht mit den
   Öffnungszeiten im Hero oder dem Folgetext kollidiert (Platz ist knapper). */
@media (max-width: 767px) {
  .hero-illustration {
    right: -20px;
    width: 150px;
    max-width: 38vw;
    transform: translateY(18%);
    opacity: 0.5;
  }
  /* Abstand zum Stellenanzeigen-Banner darüber: auf schmalen Viewports
     wirkt der Standard-Wert (siehe .hero .container oben) unverhältnismäßig
     groß, deshalb hier stärker reduziert als auf Desktop. */
  .hero .container {
    padding-top: 1.25rem;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "intro" "side" "hours";
  row-gap: 0;
}
.hero-intro { grid-area: intro; min-width: 0; }
.hero-side {
  grid-area: side;
  align-self: start;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.hero-hours { grid-area: hours; }

/* Ab ausreichend breitem Desktop: Bewertungsblock (Gesamtbewertung +
   Slideshow) rechts neben Schriftzug/Einleitung, Öffnungszeiten bleibt
   links unter den Buttons. Endgültiger Breakpoint nach visueller Prüfung
   (siehe Nachkorrektur): 1280px – darunter wirkte die rechte Spalte zu
   schmal bzw. kollidierte mit dem linken Text. */
@media (min-width: 1280px) {
  .hero .container {
    grid-template-columns: minmax(0, 1fr) 400px;
    column-gap: 3.5rem;
    grid-template-areas:
      "intro side"
      "hours side";
    align-items: start;
  }
  /* Bewertungsbox und Slideshow als ein zusammengehöriger Block: gleiche
     Breite, füllen die 400px-Spalte statt wie im einspaltigen Layout nur
     inhaltsbreit (Bewertungsbox) bzw. 320px (Slideshow) zu sein. */
  .hero-rating-badge { width: 100%; }
  .hero-reviews { max-width: none; }
}

/* Folge-Section: Text/Buttons/Bilder sollen über dem hereinragenden
   Steuerrad liegen (z-index 2 > .hero-illustration z-index 1) */
.hero + section .container { position: relative; z-index: 2; }

.hero-eyebrow {
  font-family: var(--font-serif);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero h1 { color: var(--cream); text-shadow: 0 4px 18px rgba(0,0,0,0.35); }

.hero-lead { max-width: 560px; font-size: 1.2rem; color: var(--cream-light); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }

.hero-hours {
  margin-top: 1rem;
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  background-color: rgba(243, 233, 211, 0.08);
  border: var(--border-gold);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  font-family: var(--font-serif);
}

@media (max-width: 699px) {
  /* Schmale Screens: Video-Ausschnitt zeigt hochkant vor allem den mittleren
     Streifen des 16:9-Frames - etwas nach rechts Richtung Steak schieben und
     stärker abdunkeln, da weniger Bildfläche für den Verlauf zur Verfügung steht. */
  .hero-video { object-position: 65% center; }
  .hero-video-verlauf {
    background: linear-gradient(180deg, rgba(8,26,40,0.5) 0%, rgba(8,26,40,0.88) 40%, rgba(8,26,40,0.95) 100%);
  }
}

/* --------------------------------------------------------------------
   Sections generic
   -------------------------------------------------------------------- */
.section-navy { background-color: var(--navy); color: var(--cream); }
.section-navy h2 { color: var(--cream); }
.section-navy .eyebrow { color: var(--gold-light); }

/* Seitenkopf mit Hintergrundvideo (Über uns, Services, Veranstaltungen, Speisekarte,
   Frühstück, Getränkekarte, Galerie, Kontakt). Nutzt dieselben .hero-video/
   .hero-video-verlauf-Bausteine wie der Startseiten-Hero, aber mit eigener,
   deutlich höherer Mindesthöhe (der Startseiten-Hero mit min-height:78vh war
   davon nicht betroffen und bleibt unverändert). min-height statt height, damit
   längere Texte (z. B. Frühstück mit Öffnungszeiten-Zeile) den Hero bei Bedarf
   weiter aufstoßen können, ohne dass etwas abgeschnitten wird. */
.page-header-video {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(300px, 280px + 12.5vw, 540px);
}
.page-header-video .container { position: relative; z-index: 2; }

/* Individueller Bildausschnitt je Video-Motiv, damit nicht überall derselbe
   object-position-Wert verwendet wird. Kommt in der Kaskade nach der
   allgemeinen .hero-video-Regel und der mobilen 65%-Anpassung weiter oben,
   damit die spezifischeren Werte pro Motiv greifen; der Startseiten-Hero
   (ohne Modifier-Klasse) verhält sich weiterhin genau wie zuvor. */
.hero-video--havel { object-position: center 60%; }

.hero-video--steak { object-position: 42% 55%; }
@media (min-width: 700px) {
  .hero-video--steak { object-position: center 50%; }
}

.hero-video--drinks { object-position: center 88%; }
@media (max-width: 699px) {
  .hero-video--drinks { object-position: 70% 85%; }
}

.card {
  background-color: var(--cream-light);
  border: var(--border-gold);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.grid { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* --------------------------------------------------------------------
   Hero-Bewertungsbox (Startseite) – unter den Hero-Buttons, linksbündig,
   vor der Öffnungszeitenbox. Bewusst kein position:absolute mehr (siehe
   Nachkorrektur): einfacher Bestandteil des normalen Hero-Inhaltsflusses,
   dadurch auf allen Breiten automatisch korrekt ausgerichtet.
   -------------------------------------------------------------------- */
.hero-rating-badge {
  display: flex;
  width: fit-content;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin-top: 1.4rem;
  padding: 0.6rem 1rem;
  max-width: 100%;
  background-color: rgba(8, 26, 40, 0.55);
  border: var(--border-gold);
  border-radius: var(--radius);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-serif);
  line-height: 1.3;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.hero-rating-badge-row { display: inline-flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; }
.hero-rating-badge-text { font-size: 0.88rem; font-weight: 600; color: var(--cream); }
.hero-rating-badge-stand { font-size: 0.72rem; color: var(--cream-light); opacity: 0.75; }

.hero-rating-badge:hover {
  background-color: rgba(8, 26, 40, 0.7);
  border-color: var(--gold);
}
.hero-rating-badge:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  background-color: rgba(8, 26, 40, 0.7);
  border-color: var(--gold);
}

@media (max-width: 375px) {
  .hero-rating-badge-row { gap: 0.4rem; }
}

/* --------------------------------------------------------------------
   Hero-Rezensionen-Slideshow (Startseite) – zwischen Bewertungsbox und
   Öffnungszeitenbox. Alle sechs Folien liegen per CSS Grid übereinander
   in derselben Zelle (grid-area:1/1) – dadurch bestimmt automatisch die
   höchste Folie die Boxhöhe, ganz ohne JS-Messung, und es gibt keinen
   Höhensprung beim Wechsel. Ohne JavaScript zeigt allein die Regel
   ".hero-review-slide:first-child" die erste Rezension; sobald das Skript
   läuft, setzt es die Klasse "js-active" auf den Container und übernimmt
   die Steuerung vollständig über "is-active" auf der jeweiligen Folie.
   -------------------------------------------------------------------- */
.hero-reviews { margin-top: 0.85rem; width: 100%; max-width: 320px; }

.hero-reviews-viewport {
  display: grid;
  padding: 0.65rem 0.9rem;
  background-color: rgba(8, 26, 40, 0.55);
  border: var(--border-gold);
  border-radius: var(--radius);
}

.hero-reviews-track { list-style: none; margin: 0; padding: 0; display: contents; }

.hero-review-slide {
  grid-area: 1 / 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--cream);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}
.hero-review-slide:first-child { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }

.hero-reviews.js-active .hero-review-slide:first-child { opacity: 0; visibility: hidden; pointer-events: none; transition-delay: 0.5s; }
.hero-reviews.js-active .hero-review-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.5s ease, visibility 0s linear 0s;
}

.hero-review-quote { margin: 0; font-size: 0.8rem; font-style: italic; line-height: 1.45; color: var(--cream); }
.hero-review-meta { margin: 0.05rem 0 0; display: flex; flex-direction: column; gap: 0.1rem; font-size: 0.76rem; }
.hero-review-name { font-weight: 600; color: var(--cream); }
.hero-review-source { font-size: 0.68rem; letter-spacing: 0.03em; text-transform: uppercase; color: var(--gold-light); opacity: 0.85; }

@media (prefers-reduced-motion: reduce) {
  .hero-review-slide { transition: none; }
}

.hero-reviews-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.hero-reviews-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(184, 151, 90, 0.5);
  border-radius: 50%;
  color: var(--cream);
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.hero-reviews-btn:hover { background-color: rgba(184, 151, 90, 0.18); border-color: var(--gold); }
.hero-reviews-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.hero-reviews-status { font-size: 0.75rem; color: var(--cream-light); min-width: 2.6rem; text-align: center; }
.hero-reviews-toggle { margin-left: auto; }

/* Sterne: rein dekorative Zeichen in ::before/::after, die eigentliche
   Information steckt in role="img" + aria-label auf .stars selbst. */
.stars {
  --rating: 5;
  position: relative;
  display: inline-block;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 2px;
  color: rgba(184, 151, 90, 0.35);
}
.stars::before { content: "★★★★★"; }
.stars::after {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  width: calc(var(--rating) / 5 * 100%);
  overflow: hidden;
  white-space: nowrap;
  color: var(--gold);
}
.stars--sm { font-size: 0.85rem; letter-spacing: 1.5px; }

.icon-badge {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background-color: rgba(184, 151, 90, 0.15);
  color: var(--gold);
  margin-bottom: 1rem;
}
.icon-badge svg { width: 28px; height: 28px; }

/* --------------------------------------------------------------------
   History / timeline (Über uns)
   -------------------------------------------------------------------- */
.timeline { border-left: 2px solid rgba(184, 151, 90, 0.5); margin: 0; padding-left: 1.75rem; }
.timeline-item { position: relative; margin-bottom: 2.2rem; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.35rem;
  top: 0.35rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background-color: var(--gold);
  border: 2px solid var(--cream);
}
.timeline-year { font-family: var(--font-serif); font-weight: 600; color: var(--gold-dark); letter-spacing: 0.05em; }

.placeholder-note {
  background-color: rgba(184, 151, 90, 0.15);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--navy);
  margin: 1.5rem 0;
}

/* --------------------------------------------------------------------
   Speisekarte / Getränkekarte
   -------------------------------------------------------------------- */
.menu-category { margin-bottom: 3rem; }
.menu-category h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  border-bottom: var(--border-gold);
  padding-bottom: 0.6rem;
  margin-bottom: 1.3rem;
}
.menu-category h3::before, .menu-category h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(184, 151, 90, 0.4);
  display: none;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dotted rgba(42, 33, 21, 0.25);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-family: var(--font-serif); font-weight: 600; }
.menu-item-desc { font-size: 0.95rem; color: rgba(42,33,21,0.7); display: block; margin-top: 0.15rem; }
.menu-item-price { font-family: var(--font-serif); font-weight: 600; white-space: nowrap; color: var(--navy); }

.menu-subcat {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold-dark);
  margin: 1.4rem 0 0.4rem;
}
.menu-subcat:first-child { margin-top: 0; }
.menu-item-sizes { display: flex; gap: 1.1rem; }
.menu-legend { font-size: 0.82rem; color: rgba(42,33,21,0.65); text-align: center; margin-top: 2rem; line-height: 1.6; }

/* --------------------------------------------------------------------
   Veranstaltungen
   -------------------------------------------------------------------- */
.event-card { text-align: left; margin-bottom: 1.25rem; }
.event-card-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.3rem 1.2rem;
}
.event-title { margin: 0; font-size: 1.2rem; text-transform: none; letter-spacing: normal; }
.event-date {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold-dark);
  white-space: nowrap;
}
.event-card .menu-item-desc { margin-top: 0.4rem; }

.past-events { border-top: var(--border-gold); padding-top: 1.5rem; }
.past-events summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--gold-dark);
  list-style: none;
}
.past-events summary::-webkit-details-marker { display: none; }
.past-events summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 0.5em;
  transition: transform 0.2s ease;
}
.past-events[open] summary::before { transform: rotate(90deg); }
.past-events summary:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------
   Services
   -------------------------------------------------------------------- */
.service-card { text-align: left; }

.service-group { display: flex; flex-direction: column; text-align: left; }
.service-group > h3 { margin-bottom: 1.4rem; }
.service-subitem { display: flex; gap: 1rem; margin-bottom: 1.6rem; }
.service-subitem .icon-badge { margin-bottom: 0; flex-shrink: 0; }
.service-subitem h3 { font-family: var(--font-serif); font-weight: 600; font-size: 1.05rem; letter-spacing: normal; text-transform: none; margin: 0 0 0.3rem; }
.service-subitem p { margin: 0; font-size: 0.95rem; color: rgba(42,33,21,0.75); }
.service-cta {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

/* --------------------------------------------------------------------
   Formular (Reservierung)
   -------------------------------------------------------------------- */
.form-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-serif); font-weight: 600; letter-spacing: 0.03em; font-size: 0.95rem; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(14, 42, 63, 0.3);
  border-radius: var(--radius);
  background-color: var(--white);
  color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 151, 90, 0.25);
}
.form-note { font-size: 0.9rem; color: rgba(42,33,21,0.7); margin-top: 1rem; }

/* --------------------------------------------------------------------
   Kontakt / Karte
   -------------------------------------------------------------------- */
.map-embed { border: var(--border-gold); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

.map-placeholder {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  text-align: center;
  padding: 2rem;
  background-color: var(--cream-light);
}
.map-placeholder p { max-width: 380px; margin: 0; font-size: 0.92rem; color: rgba(42,33,21,0.75); }
.map-placeholder svg { width: 36px; height: 36px; color: var(--gold); }

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: 0.75rem; margin-bottom: 1rem; align-items: flex-start; }
.contact-list svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold); margin-top: 0.2rem; }

/* --------------------------------------------------------------------
   Galerie
   -------------------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-grid a { display: block; }
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  border: var(--border-gold);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.gallery-grid a:hover img { transform: scale(1.03); }

.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 700px) { .photo-strip { grid-template-columns: repeat(4, 1fr); } }
.photo-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  border: var(--border-gold);
  box-shadow: var(--shadow-soft);
}

/* Frühstücksgalerie (fruehstueck.html): eigene Klasse, damit die geteilte
   .photo-strip (index.html, services.html) unverändert bleibt. */
.fruehstueck-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
@media (min-width: 1200px) {
  .fruehstueck-gallery { grid-template-columns: repeat(4, 1fr); }
}
.fruehstueck-gallery figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: var(--border-gold);
  box-shadow: var(--shadow-soft);
}
.fruehstueck-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.fruehstueck-gallery figure:hover img { transform: scale(1.015); }

.fg-englisch img { object-position: 85% center; }
.fg-bulettenteller img { object-position: 20% center; }
.fg-omelette img { object-position: center; }
.fg-ruehrei img { object-position: center; }

.gallery-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: var(--border-gold);
  background: repeating-linear-gradient(135deg, rgba(14,42,63,0.08), rgba(14,42,63,0.08) 10px, rgba(14,42,63,0.03) 10px, rgba(14,42,63,0.03) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: var(--navy-light);
  font-family: var(--font-serif);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------
   Payment note
   -------------------------------------------------------------------- */
.payment-note {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background-color: var(--cream-light);
  border: var(--border-gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.payment-note svg { width: 30px; height: 30px; color: var(--gold); flex-shrink: 0; }

/* --------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------- */
.site-footer {
  background-color: var(--navy-dark);
  color: var(--cream);
  padding: 3rem 0 1.5rem;
}
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; margin-bottom: 2rem; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-brand svg { width: 34px; height: 34px; color: var(--gold-light); }
.footer-brand .brand-logo { width: 34px; height: auto; }
.footer-brand span { font-family: var(--font-script); font-size: 1.4rem; }
.site-footer h2 { font-family: var(--font-serif); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.85rem; color: var(--gold-light); margin-bottom: 0.9rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; font-size: 0.95rem; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(243, 233, 211, 0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(243, 233, 211, 0.65);
}
.footer-bottom a { color: rgba(243, 233, 211, 0.65); }

/* --------------------------------------------------------------------
   Cookie-Consent-Banner
   -------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background-color: var(--navy-dark);
  border-top: var(--border-gold);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--cream-light);
  font-size: 0.92rem;
}
.cookie-banner-inner p { margin: 0; }
.cookie-banner-inner a { text-decoration: underline; color: var(--gold-light); }
.cookie-banner-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie-banner-actions .btn { font-size: 0.82rem; padding: 0.6rem 1.2rem; }

@media (min-width: 700px) {
  .cookie-banner-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-banner-inner p { flex: 1; }
}

/* --------------------------------------------------------------------
   Uhrzeit-Auswahl (rundes Ziffernblatt statt nativem Dropdown-Feld)
   -------------------------------------------------------------------- */
.time-picker { position: relative; }
.time-picker input {
  width: 100%;
  padding-right: 2.6rem;
  cursor: pointer;
  caret-color: transparent;
}
.time-picker-icon {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
  pointer-events: none;
}

.time-picker-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(8, 26, 40, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 200;
}
.time-picker-overlay[hidden] { display: none; }

.time-picker-panel {
  background-color: var(--cream-light);
  border: var(--border-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  width: 100%;
  max-width: 300px;
}

.time-picker-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}
.time-picker-unit {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: rgba(14, 42, 63, 0.35);
  background: none;
  border: none;
  padding: 0.1rem 0.35rem;
  border-radius: var(--radius);
  cursor: pointer;
  line-height: 1;
}
.time-picker-unit.is-active { color: var(--navy); background-color: rgba(184, 151, 90, 0.18); }
.time-picker-colon { font-family: var(--font-serif); font-size: 2.1rem; font-weight: 600; color: var(--navy); line-height: 1; }

.time-picker-clock {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid rgba(14, 42, 63, 0.15);
}
.time-picker-center {
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.time-picker-hand {
  position: absolute;
  top: 50%; left: 50%;
  width: 2px;
  height: 92px;
  background-color: var(--gold);
  transform-origin: top center;
  transform: translate(-50%, 0) rotate(0deg);
  border-radius: 2px;
  transition: transform 0.15s ease;
}
.time-picker-number {
  position: absolute;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.time-picker-number.is-selected { background-color: var(--navy); color: var(--cream); }

.time-picker-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.time-picker-actions .btn {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  font-size: 0.8rem;
  padding: 0.65rem 0.5rem;
}

/* --------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
