/* =========================================================
   U Míšků — Modern redesign
   A warm, elegant single-page site for a Czech country inn
   ========================================================= */

:root {
  --cream: #f6efe1;
  --cream-2: #efe5d2;
  --paper: #fbf6ec;
  --ink: #20180f;
  --espresso: #271c12;
  --espresso-2: #1b130c;
  --brown: #4a3626;
  --amber: #b07a2c;
  --amber-soft: #d7a95c;
  --amber-glow: rgba(215, 169, 92, 0.25);
  --muted: #7c6b55;
  --muted-light: #a99a83;
  --line: rgba(32, 24, 15, 0.14);
  --line-light: rgba(246, 239, 225, 0.18);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-label: "Jost", "Helvetica Neue", sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --radius: 4px;
  --shadow-soft: 0 24px 60px -28px rgba(32, 24, 15, 0.45);
  --shadow-card: 0 18px 40px -24px rgba(32, 24, 15, 0.5);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(72px, 11vw, 150px) 0;
  position: relative;
}

.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  font-weight: 500;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--amber);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--amber);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: 0.01em; }

.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--ink);
  margin-bottom: 20px;
}
.section-title.light { color: var(--cream); }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 40px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  will-change: transform;
}
.btn-solid {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 14px 30px -12px var(--amber-glow);
}
.btn-solid:hover { background: var(--brown); transform: translateY(-3px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 239, 225, 0.4);
}
.btn-ghost:hover { border-color: var(--amber-soft); color: var(--amber-soft); transform: translateY(-3px); }
.btn-dark {
  background: var(--espresso);
  color: var(--cream);
}
.btn-dark:hover { background: var(--amber); transform: translateY(-3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(27, 19, 12, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.7);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 52px; width: auto; transition: height 0.4s var(--ease); }
.site-header.scrolled .nav-logo img { height: 42px; }

.nav-menu { display: flex; align-items: center; gap: 38px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--amber-soft);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--amber-soft); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-social { display: flex; align-items: center; gap: 18px; }
.nav-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(246, 239, 225, 0.28);
  border-radius: 50%;
  color: var(--cream);
  transition: all 0.3s var(--ease);
}
.nav-social a:hover { background: var(--amber); border-color: var(--amber); transform: translateY(-2px); }
.nav-social svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/jirkaPhotos/frontpage.JPG") center 40% / cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 8, 0.72) 0%, rgba(20, 14, 8, 0.55) 45%, rgba(20, 14, 8, 0.85) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 760px; }
.hero .eyebrow { color: var(--amber-soft); }
.hero .eyebrow::before { background: var(--amber-soft); }
.hero h1 {
  font-size: clamp(3.6rem, 10vw, 7.5rem);
  line-height: 0.94;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--amber-soft); }
.hero-sub {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: clamp(12px, 1.4vw, 15px);
  color: rgba(246, 239, 225, 0.85);
  margin-bottom: 30px;
  padding-left: 4px;
}
.hero-text {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 48ch;
  color: rgba(246, 239, 225, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246, 239, 225, 0.7);
}
.hero-scroll .mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(246, 239, 225, 0.5);
  border-radius: 14px;
  position: relative;
}
.hero-scroll .mouse::after {
  content: "";
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 6px;
  background: var(--amber-soft);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scrollDot 1.7s ease-in-out infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 10px); } 100% { opacity: 0; } }

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--espresso);
  color: var(--amber-soft);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.strip-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
}
.strip-track span { display: inline-flex; align-items: center; gap: 60px; }
.strip-track span::after { content: "✦"; color: var(--amber); font-style: normal; font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}
.about-media .frame {
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--amber);
  border-radius: var(--radius);
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: -28px; right: -18px;
  background: var(--espresso);
  color: var(--cream);
  padding: 20px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.about-badge strong {
  font-family: var(--font-display);
  font-size: 2.6rem;
  display: block;
  color: var(--amber-soft);
  line-height: 1;
}
.about-badge span {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
}
.about-content p { color: var(--muted); margin-bottom: 18px; }
.about-content .intro {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-style: italic;
  color: var(--brown);
  line-height: 1.35;
  margin-bottom: 26px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.feature {
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.feature .ico { font-size: 1.8rem; margin-bottom: 12px; }
.feature h4 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 6px; }
.feature p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ---------- History ---------- */
.history {
  background: var(--espresso-2);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.history-media { position: relative; }
.history-media img {
  width: 100%;
  border-radius: var(--radius);
  filter: sepia(0.25) contrast(1.02);
  box-shadow: var(--shadow-soft);
}
.history-media .caption {
  margin-top: 14px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
  text-align: center;
}
.history-content .lead { color: rgba(246, 239, 225, 0.78); }
.history-content p { color: rgba(246, 239, 225, 0.72); margin-bottom: 18px; }
.history-content .more-text { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease); }
.history-content .more-text.open { max-height: 1400px; }
.history-timeline {
  display: flex;
  gap: 30px;
  margin: 34px 0;
  flex-wrap: wrap;
}
.history-timeline .yr { position: relative; padding-left: 20px; }
.history-timeline .yr::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
}
.history-timeline .yr strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--amber-soft);
  display: block;
  line-height: 1;
}
.history-timeline .yr span { font-size: 0.82rem; color: var(--muted-light); }
.link-more {
  background: none;
  border: 0;
  color: var(--amber-soft);
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 0;
  border-bottom: 1px solid var(--amber);
  transition: color 0.3s var(--ease);
}
.link-more:hover { color: var(--cream); }

/* ---------- Menu ---------- */
.menu { background: var(--cream); }
.menu-head { text-align: center; margin-bottom: 56px; }
.menu-head .lead { margin: 0 auto; }

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}
.menu-tab {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.menu-tab:hover { border-color: var(--amber); color: var(--brown); }
.menu-tab.active { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }

.menu-panels { max-width: 900px; margin: 0 auto; }
.menu-panel { display: none; animation: fadeUp 0.5s var(--ease); }
.menu-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.menu-columns { column-count: 2; column-gap: 60px; }
@media (max-width: 700px) { .menu-columns { column-count: 1; } }

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  break-inside: avoid;
}
.menu-item .name { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); white-space: nowrap; }
.menu-item .name small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--muted-light);
  letter-spacing: 0.04em;
  margin-left: 8px;
  text-transform: none;
}
.menu-item .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.menu-item .price { font-family: var(--font-label); font-weight: 500; color: var(--amber); font-size: 0.95rem; white-space: nowrap; }
.menu-item .price .alt { color: var(--muted-light); }

.menu-colhead {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 6px;
}
.menu-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--muted);
}

/* ---------- Gallery ---------- */
.gallery { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 14, 8, 0.55));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item .plus {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 42px; height: 42px;
  border: 1px solid rgba(246, 239, 225, 0.6);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
  z-index: 2;
  font-size: 20px;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .plus { opacity: 1; transform: translateY(0); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 6, 0.94);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
  padding: 30px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute;
  background: rgba(246, 239, 225, 0.08);
  border: 1px solid rgba(246, 239, 225, 0.25);
  color: var(--cream);
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: var(--amber); border-color: var(--amber); }
.lightbox .lb-close { top: 28px; right: 28px; }
.lightbox .lb-nav.prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-nav.next { right: 28px; top: 50%; transform: translateY(-50%); }

/* ---------- Contact ---------- */
.contact { background: var(--espresso); color: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.contact .eyebrow { color: var(--amber-soft); }
.contact .eyebrow::before { background: var(--amber-soft); }
.contact-info { display: flex; flex-direction: column; }
.info-block { margin-bottom: 34px; }
.info-block h4 {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--amber-soft);
  margin-bottom: 14px;
  font-weight: 500;
}
.info-block p { color: rgba(246, 239, 225, 0.82); margin: 0; }
.info-block a { color: rgba(246, 239, 225, 0.82); transition: color 0.3s var(--ease); }
.info-block a:hover { color: var(--amber-soft); }

.hours-table { width: 100%; }
.hours-table .row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-light);
}
.hours-table .row span:first-child {
  font-family: var(--font-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--cream);
}
.hours-table .row span:last-child { color: var(--amber-soft); font-weight: 500; letter-spacing: 0.04em; }
.hours-note { margin-top: 18px; font-style: italic; font-family: var(--font-display); font-size: 1.15rem; color: var(--muted-light); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line-light);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; min-height: 420px; filter: grayscale(0.3) contrast(1.05); }

/* ---------- Footer ---------- */
.footer { background: var(--espresso-2); color: var(--cream); padding: 60px 0 30px; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { height: 60px; width: auto; }
.footer-brand p { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--amber-soft); max-width: 32ch; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 239, 225, 0.7);
  transition: color 0.3s var(--ease);
}
.footer-links a:hover { color: var(--amber-soft); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--muted-light);
}
.footer-bottom a { color: var(--amber-soft); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid, .history-grid, .contact-grid { grid-template-columns: 1fr; }
  .history-media { order: -1; }
  .about-badge { right: 12px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 1; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 360px);
    background: var(--espresso);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 80px 40px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    box-shadow: -20px 0 60px -30px rgba(0, 0, 0, 0.8);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-links { flex-direction: column; gap: 26px; align-items: flex-start; }
  .nav-links a { font-size: 16px; }
  .features { grid-template-columns: 1fr; }
  .history-timeline { gap: 22px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.tall { grid-row: span 1; }
  .about-badge { position: static; margin-top: 30px; display: inline-block; }
  .about-media .frame { display: none; }
  .menu-item .name { font-size: 1.2rem; white-space: normal; }
}
