:root {
  --olive: #54662d;
  --olive-light: #37b041;
  --orange: #f2962a;
  --beige: #f5f5dc;
  --text: #555555;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--beige);
}

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

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

h1,
h2,
h3,
h4 {
  font-weight: 400;
  line-height: 1.15;
}

.container {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
}

.container-narrow {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

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

/* Cookie bar */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8000;
  background: #111;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 14px;
}

.cookie-bar.hidden {
  display: none;
}

.cookie-ok {
  background: var(--olive-light);
  color: #fff;
  border: 0;
  padding: 6px 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
}

.cookie-bar a {
  color: #fff;
  text-decoration: underline;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--olive);
  padding: 4px 0;
}

.header-border {
  border-top: 1px solid var(--olive-light);
  border-bottom: 1px solid var(--olive-light);
}

.header-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 90px;
  position: relative;
  padding-left: 220px;
}

.logo-badge {
  position: absolute;
  top: -28px;
  left: 0;
  z-index: 20;
  background: var(--beige);
  padding: 12px 10px 8px;
  width: 186px;
  text-align: center;
  border-radius: 0 0 84px 84px;
  outline: 1px solid var(--olive-light);
  outline-offset: -5px;
  color: var(--olive);
}

.logo-badge img {
  width: 100%;
  height: auto;
  display: block;
  image-orientation: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--beige);
  font-family: inherit;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  align-items: center;
  gap: 10px;
  padding: 12px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--beige);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--beige);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.site-nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 10px 14px 8px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* Hero / carousel */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
}

.hero-slides {
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: min(1100px, 92%);
  text-align: center;
  text-shadow: 1px 1px 10px #000;
}

.hero-icon {
  width: 180px;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 16px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
  image-orientation: none;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 60px);
  text-transform: uppercase;
  font-weight: 400;
}

.hero h1 span {
  display: block;
  font-size: clamp(36px, 6vw, 70px);
}

.caption-sm {
  font-size: clamp(18px, 2.4vw, 28px);
}

.caption-xl {
  font-size: clamp(28px, 4vw, 48px);
  margin: 6px 0 18px;
}

.caption-xl a {
  color: #fff;
}

.icon-phone::before,
.icon-home::before,
.icon-time::before,
.icon-pin::before,
.icon-mail::before,
.icon-web::before {
  display: inline-block;
  margin-right: 10px;
  font-style: normal;
}

.icon-phone::before {
  content: "☎";
}

.icon-home::before {
  content: "⌂";
}

.icon-time::before {
  content: "◷";
}

.icon-pin::before {
  content: "⌖";
}

.icon-mail::before {
  content: "✉";
}

.icon-web::before {
  content: "🌐";
}

.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  min-width: 200px;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 18px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
}

.btn:hover {
  filter: brightness(1.05);
}

.hero .btn {
  margin-top: 10px;
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 42px;
  cursor: pointer;
  line-height: 1;
}

.hero-nav.prev {
  left: 12px;
}

.hero-nav.next {
  right: 12px;
}

/* Welcome */
.welcome {
  padding: 80px 0;
  background: var(--beige);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.welcome-copy {
  text-align: center;
  padding: 30px 40px;
}

.h2big {
  margin: 15px 0 0;
  color: var(--orange);
  font-size: clamp(34px, 4vw, 54px);
  text-transform: uppercase;
}

.h3big {
  margin: 0 0 30px;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
}

.welcome-photo-b {
  margin-top: 50px;
}

.welcome-photo img,
.welcome-photo-b img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
}

.placeholder-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
}

/* Hours band */
.hours-band {
  position: relative;
  background: url("../images/hours-bg.jpg") center 18% / cover no-repeat;
  color: #fff;
  font-size: 28px;
  text-align: center;
}

.hours-band .overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.55) 62%,
    rgba(0, 0, 0, 0.4) 100%
  );
  padding: 100px 20px;
}

.hours-band h3,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 54px);
  color: var(--orange);
  text-transform: uppercase;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 50px);
}

.hours-band a {
  color: #fff;
}

/* Page hero */
.page-hero {
  background: url("../images/hours-bg.jpg") center 30% / cover no-repeat fixed;
  color: #fff;
}

.page-hero--menu {
  background-image: url("../images/slider-1.jpg");
  background-position: center 55%;
}

.page-hero--gallery {
  background-image: url("../images/slider-1.jpg");
  background-position: center;
}

.page-hero--guestbook {
  background-image: url("../images/hours-bg.jpg");
  background-position: center 12%;
}

.page-hero--location {
  background-image: url("../images/slider-2.jpg");
  background-position: center;
}

.page-hero--reserve {
  background-image: url("../images/kafenion.jpg");
  background-position: center 72%;
}

.page-hero .overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.55) 62%,
    rgba(0, 0, 0, 0.4) 100%
  );
  padding: 140px 20px 90px;
  text-align: center;
}

.page-section {
  padding: 80px 0;
}

.page-section--menu {
  padding-top: 36px;
}

/* Cards / contact */
.content-card {
  background: #fff;
  padding: 30px 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

.contact-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.phone-big {
  color: var(--olive);
  font-size: 24px;
}

.legal h2,
.content-card h2 {
  color: var(--olive);
  font-size: 34px;
  margin-top: 0;
}

.legal p,
.legal li {
  max-width: 900px;
}

/* Menu */
.menu-hero-lead {
  margin: -8px 0 22px;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.88);
}

.menu-hero-meta {
  margin: 12px 0 0;
  font-size: 13px;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.72);
}

.btn-pdf {
  background: var(--orange);
  min-width: 260px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.btn-pdf--compact {
  min-width: 0;
  padding: 8px 18px;
  font-size: 15px;
  white-space: nowrap;
}

.menu-toolbar {
  position: sticky;
  top: 100px;
  z-index: 900;
  background: rgba(245, 245, 220, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(84, 102, 45, 0.18);
}

.menu-toolbar .container {
  padding-left: 210px;
}

.menu-toolbar-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0 6px;
}

.menu-search {
  flex: 1;
}

.menu-search input {
  width: 100%;
  border: 1px solid #d7d2b8;
  border-radius: 999px;
  padding: 8px 14px;
  background: #fff;
  font-size: 14px;
}

.menu-jump {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.menu-jump-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 0 8px;
}

.menu-jump a {
  flex: 0 0 auto;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--olive);
  font-size: 13px;
  letter-spacing: 0.3px;
  border: 1px solid #d7d2b8;
}

.menu-jump a:hover,
.menu-jump a.is-active {
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
}

.menu-sheet {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  padding: 48px 42px 56px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  color: #1a1c1e;
  font-family: "Alan Sans", "Jost", sans-serif;
}

.menu-sheet::before {
  content: "";
  position: absolute;
  inset: 8% 8% 12%;
  background: url("../images/menu-watermark.png") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.menu-intro,
.menu-group,
.menu-weinkarte-title {
  position: relative;
  z-index: 1;
  scroll-margin-top: 220px;
}

.menu-intro h2 {
  margin: 0 auto 28px;
  max-width: 280px;
  background: #f4ebc4;
  color: #1a1c1e;
  font-family: "Alan Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  padding: 8px 18px 10px;
}

.menu-intro p {
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
  color: #2a2c2e;
  margin: 0 0 18px;
}

.menu-intro-em {
  font-weight: 500;
}

.menu-intro-sign {
  font-family: "Alan Sans", sans-serif !important;
  font-style: normal !important;
  font-weight: 700;
  font-size: 22px !important;
  margin-top: 28px !important;
}

.menu-allergy {
  font-size: 13px !important;
  color: #666 !important;
  margin-top: 28px !important;
}

.menu-group {
  margin-top: 48px;
}

.menu-group-head {
  text-align: center;
  margin-bottom: 16px;
}

.menu-group-head h2,
.menu-weinkarte-title h2 {
  margin: 0;
  font-family: "Alan Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 34px);
  color: #15181a;
}

.menu-greek {
  margin: 4px 0 0;
  color: #e89040;
  font-family: "Alan Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.menu-sub {
  margin: 4px 0 0;
  font-size: 14px;
  color: #444;
}

.menu-weinkarte-title {
  text-align: center;
  margin: 56px 0 8px;
}

.menu-list {
  display: grid;
}

.menu-dish {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 18px;
  align-items: start;
  padding: 9px 12px 10px;
}

.menu-dish:nth-child(odd) {
  background: #f4ebc4;
}

.menu-dish:nth-child(even) {
  background: #fff;
}

.menu-dish-body {
  display: flex;
  gap: 10px;
  min-width: 0;
}

.menu-nr {
  flex: 0 0 2.1em;
  font-weight: 700;
  font-size: 15px;
  padding-top: 1px;
}

.menu-dish-copy h4 {
  margin: 0;
  font-family: "Alan Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #15181a;
}

.menu-dish-copy h4 sup {
  font-size: 10px;
  font-weight: 600;
}

.menu-dish-copy p {
  margin: 2px 0 0;
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.45;
  color: #4a4d50;
}

.menu-dish-copy p strong {
  font-style: normal;
  font-family: "Alan Sans", sans-serif;
  font-weight: 700;
  color: #15181a;
}

.menu-price {
  font-family: "Alan Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  padding-top: 1px;
}

.menu-price-stack {
  text-align: right;
}

.menu-price-note {
  display: block;
  font-size: 13px;
  margin-top: 4px;
  color: #444;
  white-space: nowrap;
}

.menu-sizes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  font-family: "Alan Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  padding-top: 1px;
}

.menu-sizes em {
  font-style: italic;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  margin-right: 6px;
  color: #555;
}

.menu-wine {
  align-items: start;
  padding-bottom: 14px;
}

.menu-beilage {
  margin: 16px 8px 0;
  padding: 10px 14px;
  text-align: center;
  border: 1px solid #f4ebc4;
  font-size: 14px;
  color: #333;
}

.menu-additives,
.menu-empty {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 13px;
  color: #666;
  margin: 36px 0 0;
}

.menu-download-footer {
  text-align: center;
  margin-top: 40px;
}

.menu-download-footer p {
  margin: 12px 0 0;
  color: #777;
  font-size: 14px;
}

.menu-dish[hidden],
.menu-group[hidden],
.menu-intro[hidden],
.menu-weinkarte-title[hidden],
.menu-empty[hidden] {
  display: none !important;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  background: #fff;
  padding: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.gallery-item:hover {
  transform: rotate(3deg) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

/* Guestbook */
.comment {
  border-bottom: 2px dotted #ececec;
  padding: 15px 0;
}

.comment-h {
  color: var(--olive);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
}

.comment-h span {
  font-size: 12px;
  font-weight: 400;
  color: #777;
}

.guestbook-form {
  margin-top: 36px;
  background: #fff;
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 16px;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  color: var(--olive);
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
}

/* Map */
.map-wrap {
  position: relative;
  min-height: 420px;
  background: #ddd;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  background: rgba(84, 102, 45, 0.92);
  color: #fff;
}

.map-consent.hidden {
  display: none;
}

/* Footer */
.site-footer {
  background: var(--olive);
  color: #fff;
  padding: 5px 0;
}

.site-footer .header-border {
  padding: 40px 0;
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.socials .fb {
  background: #3e5a9b;
}

.socials .ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.socials .ig svg {
  display: block;
}

.socials .ta {
  background: #35e0a1;
  color: #0b3d2e;
}

.mobile-actions {
  display: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .welcome-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .welcome-photo-b {
    margin-top: 0;
  }

  .site-nav a {
    letter-spacing: 2px;
    padding: 10px 8px 8px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .site-header {
    position: static;
    background: var(--olive);
    padding: 0;
  }

  .header-border {
    border: 0;
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 0;
    padding: 0;
  }

  .logo-badge {
    display: block;
    position: static;
    width: 56px;
    margin: 6px 0 6px 12px;
    border-radius: 50%;
    outline: none;
    padding: 3px;
    background: var(--beige);
    overflow: hidden;
    flex-shrink: 0;
  }

  .logo-badge img {
    width: 100%;
  }

  .nav-toggle {
    display: flex;
    width: auto;
    justify-content: flex-end;
    background: transparent;
  }

  .site-nav {
    display: none;
    background: var(--olive);
    width: 100%;
    flex-basis: 100%;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    display: block;
    padding: 8px 16px 20px;
    width: 100%;
  }

  .site-nav li {
    display: block;
    width: 100%;
  }

  .site-nav a {
    display: block;
    text-align: right;
    font-size: 20px;
    padding: 13px 8px;
    width: 100%;
  }

  .hero {
    height: auto;
    min-height: 600px;
  }

  .hero-slide > img {
    min-height: 600px;
  }

  .hero-content {
    top: 42%;
  }

  .hero-icon {
    width: 88px;
    max-width: 88px;
    height: auto;
    margin-bottom: 12px;
  }

  .welcome-grid,
  .split,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .welcome-copy,
  .content-card {
    padding: 24px 18px;
  }

  .hours-band {
    font-size: 18px;
    background-attachment: scroll;
  }

  .page-hero {
    background-attachment: scroll;
  }

  .page-hero .overlay {
    padding: 50px 16px 40px;
  }

  .menu-toolbar {
    top: 0;
  }

  .menu-toolbar .container {
    padding-left: 20px;
  }

  .menu-toolbar-inner {
    padding: 8px 0 6px;
  }

  .menu-search {
    flex: 1 1 160px;
  }

  .menu-jump-inner {
    flex-wrap: nowrap;
    width: max-content;
    max-width: none;
  }

  .page-hero--menu .overlay {
    padding: 22px 16px 18px;
  }

  .page-menu .mobile-actions {
    bottom: 78px;
  }

  .menu-jump-inner {
    padding-right: 72px;
  }

  .menu-intro,
  .menu-group,
  .menu-weinkarte-title {
    scroll-margin-top: 118px;
  }

  .menu-intro h2 {
    font-size: 22px;
    max-width: 220px;
  }

  .menu-dish {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .menu-sizes,
  .menu-price,
  .menu-price-stack {
    text-align: left;
    justify-content: flex-start;
    padding-left:  calc(2.1em + 10px);
  }

  .menu-dish:not(:has(.menu-nr)) .menu-sizes,
  .menu-dish:not(:has(.menu-nr)) .menu-price,
  .menu-dish:not(:has(.menu-nr)) .menu-price-stack {
    padding-left: 0;
  }

  .menu-price-note {
    white-space: normal;
  }

  .btn-pdf {
    min-width: 0;
    width: auto;
  }

  .mobile-actions {
    display: flex;
    position: fixed;
    right: 18px;
    bottom: 24px;
    z-index: 7000;
    gap: 8px;
  }

  .mobile-actions a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--olive);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  .mobile-actions .icon-phone::before,
  .mobile-actions .icon-pin::before {
    margin: 0;
    line-height: 1;
  }
}
