:root {
  --ink: #151515;
  --ink-soft: #5b5b5b;
  --accent: #1f1f1f;
  --accent-2: #7a7a7a;
  --line: rgba(22, 22, 22, 0.16);
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --radius: 24px;
  --shadow: 0 18px 50px rgba(18, 18, 18, 0.14);
  --container: min(1200px, calc(100% - 2.2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(120% 85% at -8% -10%, rgba(232, 232, 232, 0.6) 0%, rgba(232, 232, 232, 0) 58%),
    radial-gradient(90% 70% at 108% 8%, rgba(213, 213, 213, 0.5) 0%, rgba(213, 213, 213, 0) 62%),
    radial-gradient(95% 78% at 50% 106%, rgba(240, 240, 240, 0.68) 0%, rgba(240, 240, 240, 0) 60%),
    repeating-linear-gradient(
      112deg,
      rgba(98, 98, 98, 0.045) 0,
      rgba(98, 98, 98, 0.045) 1px,
      transparent 1px,
      transparent 46px
    ),
    linear-gradient(180deg, #f8f8f8 0%, #efefef 42%, #e8e8e8 100%);
  overflow-x: hidden;
  position: relative;
}

body.menu-lock,
html.menu-lock {
  overflow: hidden;
  height: 100dvh;
}

body::before {
  content: "";
  position: fixed;
  inset: -32vmax;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 74% 65%, rgba(168, 168, 168, 0.18) 0%, rgba(168, 168, 168, 0) 55%);
  animation: marbleShift 26s ease-in-out infinite alternate;
}

@keyframes marbleShift {
  0% {
    transform: translate3d(-2%, -1.5%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 1.5%, 0) scale(1.04);
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3rem, 7.1vw, 5.85rem);
}

h2 {
  font-size: clamp(2.15rem, 4.7vw, 3.85rem);
}

h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(3.8rem, 8vw, 7rem) 0;
}

.kicker {
  margin: 0 0 0.8rem;
  font-size: 0.81rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: #36576e;
}

.display {
  font-size: clamp(2.65rem, 6.4vw, 5.55rem);
}

.lead {
  font-size: clamp(1rem, 1.7vw, 1.17rem);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 2700;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(239, 246, 252, 0.86), rgba(239, 246, 252, 0.76));
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(78, 109, 130, 0), rgba(78, 109, 130, 0.45), rgba(78, 109, 130, 0));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.topbar.is-scrolled {
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.94), rgba(243, 249, 254, 0.88));
  border-color: rgba(64, 89, 107, 0.18);
  box-shadow: 0 14px 34px rgba(20, 31, 43, 0.16);
}

.topbar.is-scrolled::after {
  opacity: 1;
}

.topbar-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  position: relative;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  position: static;
  right: auto;
  top: auto;
  transform: none;
  line-height: 1;
  z-index: 6;
  justify-self: start;
}

.lang-sep {
  display: none;
}

.lang-btn {
  width: 38px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(54, 79, 96, 0.3);
  background: rgba(247, 252, 255, 0.78);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.74;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, opacity 0.24s ease;
}

.lang-btn.is-active {
  opacity: 1;
  border-color: rgba(47, 85, 109, 0.58);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(27, 44, 58, 0.2);
}

.lang-btn:hover,
.lang-btn:focus-visible {
  opacity: 1;
  transform: translateY(-1px) scale(1.03);
  border-color: rgba(47, 85, 109, 0.56);
  background: rgba(255, 255, 255, 0.95);
}

.lang-btn:focus-visible {
  outline: 2px solid rgba(47, 85, 109, 0.42);
  outline-offset: 3px;
}

.flag-chip {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(16, 24, 32, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  display: block;
}

.flag-de {
  background: linear-gradient(
    to bottom,
    #17191d 0%,
    #17191d 33.333%,
    #b3262e 33.333%,
    #b3262e 66.666%,
    #f0c64f 66.666%,
    #f0c64f 100%
  );
}

.flag-en {
  background-color: #012169;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3CclipPath id='a'%3E%3Cpath d='M0 0v30h60V0z'/%3E%3C/clipPath%3E%3CclipPath id='b'%3E%3Cpath d='M30 15h30v15zm0 0v-15h30zM30 15H0v15zm0 0V0H0z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M0 0v30h60V0z' fill='%23012169'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' clip-path='url(%23b)' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.brand {
  justify-self: start;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.brand img {
  width: min(186px, 45vw);
  filter: drop-shadow(0 12px 18px rgba(40, 58, 72, 0.18));
}

.nav {
  justify-self: end;
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 0.68rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
  color: #334b5c;
  padding: 0.42rem 0.55rem;
  border-radius: 10px;
  transition: color 0.24s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.3rem;
  height: 1.6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(49, 84, 108, 0.2), rgba(49, 84, 108, 0.8), rgba(49, 84, 108, 0.2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.26s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #203a4c;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.84rem 1.34rem;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 12%, rgba(255, 255, 255, 0.3) 45%, rgba(255, 255, 255, 0) 82%);
  transform: translateX(-130%);
  transition: transform 0.52s ease;
  pointer-events: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn:focus-visible {
  outline: 2px solid rgba(49, 84, 108, 0.34);
  outline-offset: 3px;
}

.btn-primary {
  color: #f6fbff;
  background: linear-gradient(135deg, #2f556d, #45667f);
  box-shadow: 0 14px 32px rgba(47, 85, 109, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 38px rgba(47, 85, 109, 0.38);
}

.btn-secondary {
  color: #2f4a5c;
  border-color: rgba(47, 85, 109, 0.3);
  background: rgba(118, 142, 160, 0.14);
}

.btn-light {
  color: #253d4f;
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.9);
}

.btn-header {
  color: #233e51;
  background: linear-gradient(135deg, #dde9f2, #c8d9e6);
  border-color: rgba(66, 92, 111, 0.2);
}

.btn-booking {
  color: #f5fbff;
  background: linear-gradient(138deg, #2c4f66 0%, #355f78 46%, #4a7491 100%);
  border-color: rgba(47, 85, 109, 0.24);
  box-shadow: 0 16px 36px rgba(37, 62, 80, 0.3);
}

.btn-booking:hover,
.btn-booking:focus-visible {
  color: #ffffff;
  box-shadow: 0 22px 44px rgba(37, 62, 80, 0.35);
}

.menu-toggle {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  border: 1px solid rgba(52, 71, 85, 0.24);
  background: rgba(249, 252, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  position: relative;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  -webkit-touch-callout: none;
  user-select: none;
  transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.menu-toggle,
.menu-toggle * {
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #20323f;
  transition: transform 0.26s cubic-bezier(0.22, 0.88, 0.24, 1), opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-4px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(4px);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(52, 71, 85, 0.4);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  transform: rotate(-45deg);
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(49, 84, 108, 0.34);
  outline-offset: 3px;
}

.menu-toggle:focus {
  outline: none;
}

.menu-toggle:active {
  transform: none;
  background: rgba(249, 252, 255, 0.9);
  border-color: rgba(52, 71, 85, 0.24);
}

@media (pointer: coarse) {
  .menu-toggle:hover,
  .menu-toggle:focus-visible,
  .menu-toggle:active {
    transform: none;
    box-shadow: none;
    background: rgba(249, 252, 255, 0.9);
    border-color: rgba(52, 71, 85, 0.24);
  }

  .menu-toggle:focus-visible {
    outline: none;
  }
}

.ui-veil {
  position: fixed;
  inset: 0;
  z-index: 2400;
  background: linear-gradient(180deg, rgba(10, 19, 26, 0.46), rgba(10, 19, 26, 0.58));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.ui-veil[hidden] {
  display: none !important;
}

body.overlay-open .ui-veil {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2600;
  transform: translateY(-101%);
  visibility: hidden;
  opacity: 1;
  pointer-events: none;
  transition: transform 0.42s cubic-bezier(0.22, 0.88, 0.24, 1), visibility 0s linear 0.42s;
  border-bottom: 1px solid rgba(47, 85, 109, 0.24);
  background:
    radial-gradient(95% 120% at 110% -10%, rgba(152, 181, 201, 0.3) 0%, rgba(152, 181, 201, 0) 72%),
    linear-gradient(180deg, rgba(246, 251, 255, 0.99), rgba(233, 243, 250, 0.99));
  padding: calc(env(safe-area-inset-top, 0px) + 5.9rem) 1.35rem calc(env(safe-area-inset-bottom, 0px) + 1.45rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 0.78rem;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu.is-visible {
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.42s cubic-bezier(0.22, 0.88, 0.24, 1), visibility 0s linear 0s;
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
  gap: 0.42rem;
}

.mobile-menu a {
  display: block;
  width: 100%;
  padding: 0.58rem 0;
  border: 0;
  background: transparent;
  color: #233d50;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(9px);
  transition: opacity 0.24s ease, transform 0.31s cubic-bezier(0.22, 0.88, 0.24, 1), color 0.22s ease;
  transition-delay: calc(var(--item-index, 0) * 36ms + 80ms);
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.mobile-menu a.active {
  color: #162d3d;
}

.mobile-menu.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu .mobile-booking {
  margin-top: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 800;
  width: fit-content;
  color: #f5f9fd;
  background: linear-gradient(138deg, #2c4f66 0%, #355f78 46%, #4a7491 100%);
  box-shadow: 0 14px 30px rgba(47, 85, 109, 0.3);
}

.mobile-menu .mobile-booking:hover,
.mobile-menu .mobile-booking:focus-visible {
  color: #ffffff;
}

.mobile-menu-meta {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(47, 85, 109, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 0.88, 0.24, 1);
  transition-delay: 300ms;
}

.mobile-menu.is-open .mobile-menu-meta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.mobile-social-link {
  border-radius: 999px;
  border: 1px solid rgba(47, 85, 109, 0.22);
  background: rgba(255, 255, 255, 0.84);
  color: #2f4c5f;
  padding: 0.42rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-lang-switch .lang-btn {
  width: 42px;
  height: 30px;
}

.mobile-lang-switch .lang-btn:focus-visible {
  outline: 2px solid rgba(47, 85, 109, 0.36);
  outline-offset: 3px;
}

.mobile-lang-switch .flag-chip {
  width: 22px;
  height: 14px;
}

.mobile-lang-switch .lang-sep {
  display: none;
}

.surface {
  border-radius: 30px;
  border: 1px solid rgba(47, 85, 109, 0.14);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(2px);
  padding: clamp(1.25rem, 2.8vw, 2rem);
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(47, 85, 109, 0.14);
  background: var(--surface-strong);
  box-shadow: 0 14px 34px rgba(24, 37, 50, 0.11);
  padding: clamp(1rem, 2.2vw, 1.35rem);
}

.grid-two {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.meta-list,
.hours-list,
.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.meta-list {
  display: grid;
  gap: 0.8rem;
}

.meta-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(47, 85, 109, 0.22);
}

.meta-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.meta-list span {
  color: #3f5f74;
  font-weight: 700;
  min-width: 108px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.84rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(47, 85, 109, 0.2);
  color: var(--ink-soft);
  font-weight: 600;
}

.price-list li:last-child {
  border-bottom: 0;
}

.price-list li span:last-child {
  color: #28485d;
  font-weight: 800;
  white-space: nowrap;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.56rem 0;
  border-bottom: 1px dashed rgba(47, 85, 109, 0.2);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.footer {
  padding: 2rem 0 2.8rem;
  color: #4f6270;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.footer-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.footer-lang-switch .lang-btn {
  width: 34px;
  height: 24px;
  border-color: rgba(55, 82, 103, 0.34);
  background: rgba(255, 255, 255, 0.85);
}

.footer-lang-switch .lang-btn.is-active {
  border-color: rgba(47, 85, 109, 0.6);
}

.footer-lang-switch .flag-chip {
  width: 17px;
  height: 11px;
}

.footer-links a,
.footer-cookie {
  font-weight: 700;
  color: #375267;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-cookie:hover,
.footer-cookie:focus-visible {
  color: #223b4d;
}

.footer-cookie {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-credit {
  margin: 0.5rem 0 0;
  text-align: center;
  color: rgba(55, 82, 103, 0.64);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.footer-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2800;
  border-radius: 22px;
  border: 1px solid rgba(47, 85, 109, 0.2);
  background: linear-gradient(160deg, rgba(247, 252, 255, 0.98), rgba(233, 244, 251, 0.98));
  box-shadow: 0 22px 52px rgba(21, 33, 45, 0.24);
  backdrop-filter: blur(7px);
  padding: 1rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-grid {
  display: grid;
  gap: 0.78rem;
  align-items: center;
}

.cookie-title {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.42rem, 2.4vw, 1.95rem);
  line-height: 1.02;
}

.cookie-text {
  margin: 0;
  color: #435b6d;
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-link {
  display: inline-flex;
  align-items: center;
  color: #2f4f67;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.panel-menu-opening .cookie-banner,
body.panel-menu-open .cookie-banner,
body.panel-menu-closing .cookie-banner {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

body.cursor-enabled,
body.cursor-enabled * {
  cursor: none !important;
}

.cursor-core {
  position: fixed;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1.35px solid rgba(24, 39, 50, 0.82);
  background: rgba(24, 39, 50, 0.08);
  pointer-events: none;
  z-index: 99999;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.17s ease, height 0.17s ease, border-color 0.17s ease, background 0.17s ease, box-shadow 0.17s ease;
  will-change: transform;
}

.cursor-core.is-active {
  width: 30px;
  height: 30px;
  border-color: rgba(24, 39, 50, 0.98);
  background: rgba(24, 39, 50, 0.12);
}

.cursor-core.is-light {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.34), 0 0 18px rgba(255, 255, 255, 0.52);
}

.cursor-core.is-active.is-light {
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px rgba(0, 0, 0, 0.42);
}

.legal-shell,
.legal-card,
.meta-list strong,
.meta-list a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Monochrome design refresh */
.kicker {
  color: #505050;
}

.topbar {
  background: linear-gradient(180deg, rgba(246, 246, 246, 0.9), rgba(241, 241, 241, 0.8));
}

.topbar::after {
  background: linear-gradient(90deg, rgba(90, 90, 90, 0), rgba(90, 90, 90, 0.38), rgba(90, 90, 90, 0));
}

.topbar.is-scrolled {
  background: linear-gradient(180deg, rgba(250, 250, 250, 0.96), rgba(244, 244, 244, 0.9));
  border-color: rgba(36, 36, 36, 0.16);
  box-shadow: 0 14px 34px rgba(18, 18, 18, 0.14);
}

.brand img {
  filter: drop-shadow(0 12px 18px rgba(24, 24, 24, 0.14));
}

.nav-link {
  color: #353535;
}

.nav-link::after {
  background: linear-gradient(90deg, rgba(30, 30, 30, 0.2), rgba(30, 30, 30, 0.72), rgba(30, 30, 30, 0.2));
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #111111;
}

.lang-btn {
  border-color: rgba(34, 34, 34, 0.3);
  background: rgba(250, 250, 250, 0.82);
}

.lang-btn.is-active {
  border-color: rgba(24, 24, 24, 0.56);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 18px rgba(18, 18, 18, 0.16);
}

.lang-btn:hover,
.lang-btn:focus-visible {
  border-color: rgba(24, 24, 24, 0.5);
  background: rgba(255, 255, 255, 0.96);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.mobile-lang-switch .lang-btn:focus-visible,
.footer-lang-switch .lang-btn:focus-visible {
  outline: 2px solid rgba(24, 24, 24, 0.32);
}

.btn-primary,
.btn-booking,
.mobile-menu .mobile-booking {
  color: #ffffff;
  background: linear-gradient(135deg, #151515, #303030);
  border-color: rgba(24, 24, 24, 0.32);
  box-shadow: 0 14px 30px rgba(14, 14, 14, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-booking:hover,
.btn-booking:focus-visible {
  box-shadow: 0 18px 38px rgba(10, 10, 10, 0.36);
}

.btn-secondary {
  color: #222222;
  border-color: rgba(24, 24, 24, 0.28);
  background: rgba(70, 70, 70, 0.12);
}

.btn-light,
.btn-header {
  color: #171717;
  border-color: rgba(22, 22, 22, 0.2);
  background: linear-gradient(135deg, #ffffff, #ebebeb);
}

.menu-toggle {
  border-color: rgba(30, 30, 30, 0.24);
  background: rgba(250, 250, 250, 0.94);
}

.menu-toggle span {
  background: #1f1f1f;
}

.ui-veil {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.44), rgba(10, 10, 10, 0.62));
}

.mobile-menu {
  border-bottom: 1px solid rgba(28, 28, 28, 0.2);
  background:
    radial-gradient(95% 120% at 110% -10%, rgba(170, 170, 170, 0.24) 0%, rgba(170, 170, 170, 0) 72%),
    linear-gradient(180deg, rgba(250, 250, 250, 0.99), rgba(240, 240, 240, 0.99));
}

.mobile-menu a {
  color: #232323;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.mobile-menu a.active {
  color: #000000;
}

.mobile-menu-meta {
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}

.mobile-social-link {
  border: 1px solid rgba(24, 24, 24, 0.24);
  background: rgba(255, 255, 255, 0.9);
  color: #232323;
}

.surface,
.card,
.cookie-banner {
  border-color: rgba(30, 30, 30, 0.15);
  box-shadow: 0 14px 34px rgba(16, 16, 16, 0.1);
}

.meta-list li,
.price-list li,
.hours-list li {
  border-bottom-color: rgba(36, 36, 36, 0.2);
}

.meta-list span,
.price-list li span:last-child {
  color: #2a2a2a;
}

.footer {
  color: #555555;
}

.footer-lang-switch .lang-btn {
  border-color: rgba(48, 48, 48, 0.28);
  background: rgba(255, 255, 255, 0.9);
}

.footer-lang-switch .lang-btn.is-active {
  border-color: rgba(24, 24, 24, 0.56);
}

.footer-links a,
.footer-cookie,
.cookie-link {
  color: #2f2f2f;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-cookie:hover,
.footer-cookie:focus-visible,
.cookie-link:hover,
.cookie-link:focus-visible {
  color: #0f0f0f;
}

.footer-credit {
  color: rgba(60, 60, 60, 0.62);
}

@media (max-width: 1099px) {
  .topbar-inner {
    min-height: 84px;
    grid-template-columns: auto 1fr auto;
  }

  .lang-switch {
    display: none;
  }

  .brand img {
    width: min(170px, 48vw);
  }

  .nav {
    display: none !important;
  }
}

@media (max-width: 740px) {
  .topbar-inner {
    min-height: 78px;
    gap: 0.7rem;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .mobile-menu {
    padding: calc(env(safe-area-inset-top, 0px) + 5rem) 1.05rem calc(env(safe-area-inset-bottom, 0px) + 1.2rem);
  }

  .mobile-menu a {
    font-size: 1.34rem;
  }

  .mobile-menu .mobile-booking {
    font-size: 0.92rem;
  }

  .meta-list li,
  .hours-list li {
    flex-direction: column;
    gap: 0.25rem;
  }

  .meta-list span {
    min-width: 0;
  }
}

@media (min-width: 780px) {
  .cookie-banner {
    width: min(960px, calc(100% - 2rem));
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .cookie-grid {
    grid-template-columns: 1fr auto;
    gap: 0.9rem 1rem;
  }
}

@media (min-width: 920px) {
  .grid-two {
    grid-template-columns: 1.12fr 0.88fr;
  }
}

@media (min-width: 1100px) {
  .nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu,
  .ui-veil {
    display: none !important;
  }
}

@media (pointer: coarse), (max-width: 1024px) {
  body.cursor-enabled,
  body.cursor-enabled * {
    cursor: auto !important;
  }

  .cursor-core {
    display: none !important;
  }
}

/* Gentlemens Barbier design system mapped to roc structure */
:root {
  --bg-main: #ececee;
  --bg-soft: #e1e1e4;
  --bg-surface: #ffffff;
  --bg-contrast: #090909;
  --text-main: #101113;
  --text-muted: #50535a;
  --line: #d0d2d7;
  --line-strong: #111111;
  --accent: #111111;
  --accent-soft: #2a2a2f;
  --max-width: 1240px;
  --shadow-soft: 0 12px 36px rgba(7, 7, 8, 0.08);
  --shadow-strong: 0 18px 46px rgba(7, 7, 8, 0.18);
  --ease-out: cubic-bezier(0.22, 0.9, 0.2, 1);
}

body {
  font-family: Arial, Helvetica, sans-serif !important;
  color: var(--text-main) !important;
  background:
    linear-gradient(180deg, #f7f7f8 0%, #ececef 52%, #e3e3e7 100%),
    repeating-linear-gradient(120deg, rgba(15, 15, 16, 0.02) 0 1px, transparent 1px 18px) !important;
}

h1,
h2,
h3,
.display {
  font-family: Arial, Helvetica, sans-serif !important;
}

.container {
  width: min(var(--max-width), calc(100% - 1.2rem)) !important;
}

.section {
  position: relative;
  margin: 0.94rem 0 !important;
  padding: 1.04rem !important;
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: var(--shadow-soft) !important;
}

.topbar {
  background: #000 !important;
  border: 0 !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24) !important;
  backdrop-filter: none !important;
  transition: none !important;
}

.topbar::after {
  display: none !important;
}

.topbar.is-scrolled {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24) !important;
}

.topbar-inner {
  width: min(var(--max-width), calc(100% - 1.2rem)) !important;
  min-height: 88px !important;
  grid-template-columns: auto 1fr auto !important;
}

.brand img {
  height: 76px !important;
  width: auto !important;
  filter: none !important;
}

.lang-btn {
  border-radius: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.lang-btn.is-active {
  border-color: #fff !important;
  background: rgba(255, 255, 255, 0.14) !important;
  box-shadow: none !important;
}

.nav {
  gap: 0.14rem !important;
  white-space: nowrap !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.11em !important;
  font-size: 0.77rem !important;
  font-weight: 700 !important;
  border-radius: 0 !important;
  padding: 0.45rem 0.42rem !important;
}

.nav-link::after {
  left: 0.4rem !important;
  right: 0.4rem !important;
  bottom: 0.14rem !important;
  height: 1px !important;
  background: #fff !important;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #fff !important;
}

.btn,
.mobile-booking {
  border-radius: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  padding: 0.68rem 1.02rem !important;
}

.btn-primary,
.btn-booking {
  color: #fff !important;
  border-color: #111 !important;
  background: linear-gradient(145deg, #202022, #0e0f10) !important;
  box-shadow: 0 10px 20px rgba(8, 8, 9, 0.3) !important;
}

.btn-secondary,
.btn-light,
.btn-header {
  color: #111 !important;
  border-color: #222 !important;
  background: #fff !important;
  box-shadow: none !important;
}

.btn-header {
  height: 40px !important;
  padding: 0 1.05rem !important;
}

.menu-toggle {
  border-radius: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.menu-toggle span {
  background: #fff !important;
}

.ui-veil {
  background: rgba(8, 8, 10, 0.44) !important;
}

.mobile-menu {
  border-radius: 0 !important;
  border: 0 !important;
  background: #060607 !important;
}

.mobile-menu a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.42rem !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
}

.mobile-menu .mobile-booking {
  background: transparent !important;
  border: 1px solid #fff !important;
  color: #fff !important;
}

.mobile-menu-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.mobile-social-link {
  border: 0 !important;
  background: none !important;
  color: #fff !important;
  border-radius: 0 !important;
  padding: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  text-decoration: none !important;
}

.mobile-social-link:hover,
.mobile-social-link:focus-visible {
  color: #ffffff !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

.kicker,
.eyebrow {
  color: var(--accent-soft) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
}

.surface,
.card,
.price-card,
.review-card,
.social-card,
.legal-card,
.cta-shell,
.gallery-card,
.goal-card,
.accent-box,
.list li,
.pill {
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: var(--shadow-soft) !important;
}

.meta-list li,
.price-list li,
.hours-list li {
  border-bottom: 1px solid #e5e6ea !important;
}

.feature-list li::before {
  content: "\2713" !important;
  width: 0.9rem !important;
  height: 0.9rem !important;
  border-radius: 0 !important;
  background: #000 !important;
  color: #fff !important;
  border: 1px solid #fff !important;
  font-size: 0.64rem !important;
  font-weight: 700 !important;
  top: 0.06rem !important;
}

.price-list li span:last-child,
.review-name,
.social-open,
.discover-link,
.review-link {
  color: #101113 !important;
}

.review-stars {
  color: #151515 !important;
}

.hero-shell,
.gallery-hero-shell,
.career-shell {
  border-radius: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: linear-gradient(145deg, rgba(8, 8, 10, 0.82), rgba(16, 17, 19, 0.65)) !important;
  box-shadow: var(--shadow-strong) !important;
  backdrop-filter: none !important;
}

.hero-shell .kicker,
.hero-shell h1,
.hero-shell p,
.gallery-hero-shell .kicker,
.gallery-hero-shell h1,
.gallery-hero-shell p,
.career-shell .kicker,
.career-shell h1,
.career-shell p {
  color: #fff !important;
}

.hero-shell .kicker {
  text-transform: lowercase !important;
  letter-spacing: 0.1em !important;
}

.hero-badges span {
  border-radius: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(8, 8, 10, 0.6) !important;
  color: #fff !important;
}

.social-shell,
.legal-shell {
  border-radius: 0 !important;
  border: 1px solid var(--line) !important;
  background: #fff !important;
  box-shadow: var(--shadow-soft) !important;
}

.site-footer,
.footer {
  width: 100% !important;
  margin-top: 1.2rem !important;
  padding: 0 !important;
  background: #000 !important;
  border-top: 1px solid #121315 !important;
  color: #f4f4f5 !important;
}

.footer-inner {
  width: min(var(--max-width), calc(100% - 1.2rem)) !important;
  margin: 0 auto !important;
  padding: 0.98rem 0 !important;
  border: 0 !important;
}

.footer-links a,
.footer-cookie {
  color: #d0d4dd !important;
  text-decoration: none !important;
}

.footer-links a:hover,
.footer-cookie:hover,
.footer-links a:focus-visible,
.footer-cookie:focus-visible {
  color: #fff !important;
}

.cookie-banner {
  border-radius: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background: linear-gradient(140deg, rgba(12, 12, 14, 0.95), rgba(17, 18, 21, 0.95)) !important;
  box-shadow: var(--shadow-strong) !important;
}

.cookie-title,
.cookie-banner p,
.cookie-banner a {
  color: #edf0f7 !important;
}

@media (max-width: 980px) {
  .nav {
    display: none !important;
  }

  .topbar-inner {
    min-height: 64px !important;
    width: calc(100% - 0.9rem) !important;
  }

  .brand img {
    height: 44px !important;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    min-height: 58px !important;
    width: calc(100% - 0.7rem) !important;
  }

  .brand img {
    height: 40px !important;
  }

  .container,
  .site-main,
  .legal-main {
    width: calc(100% - 0.7rem) !important;
  }

  .section {
    padding: 0.82rem !important;
    margin: 0.74rem 0 !important;
  }
}

/* Final corrective pass (requested) */
html,
body,
button,
input,
select,
textarea,
h1,
h2,
h3,
.display,
.kicker,
.btn,
.nav-link,
.mobile-link {
  font-family: Arial, Helvetica, sans-serif !important;
}

.brand {
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
}

.brand img {
  width: auto !important;
  height: 42px !important;
  display: block !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) contrast(1.05) !important;
  transform: translateY(-3px) !important;
}

.lang-btn {
  min-width: 44px !important;
  height: 30px !important;
  padding: 0 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  background: transparent !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
}

.lang-btn .flag-chip,
.lang-btn .sr-only {
  display: none !important;
}

.lang-btn::before {
  content: attr(data-lang) !important;
  text-transform: uppercase !important;
}

.lang-btn.is-active {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #fff !important;
  box-shadow: none !important;
}

.header-lang-mini {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  width: 44px !important;
  height: 40px !important;
  margin-left: 0 !important;
  border: 1px solid #222 !important;
  background: #fff !important;
}

.nav .btn-header {
  margin-right: 0 !important;
}

.nav .btn-header + .header-lang-mini {
  margin-left: calc(-0.14rem) !important;
  border-left: 1px solid rgba(17, 17, 17, 0.3) !important;
}

.header-lang-mini .lang-btn {
  min-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  flex: 1 1 50% !important;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(17, 17, 17, 0.22) !important;
  background: transparent !important;
  color: #111 !important;
  letter-spacing: 0.08em !important;
}

.header-lang-mini .lang-btn:last-of-type {
  border-bottom: 0 !important;
}

.header-lang-mini .lang-btn.is-active {
  background: rgba(17, 17, 17, 0.08) !important;
  color: #000 !important;
}

.footer,
.site-footer {
  background: #0f0f0f !important;
  color: #d8d8df !important;
  border-top: 1px solid #121315 !important;
}

.footer-inner.footer-standard {
  display: block !important;
  padding: 2rem 0 1.3rem !important;
}

.footer-standard .footer-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr 0.8fr !important;
  gap: 1.5rem !important;
}

.footer-standard .footer-title {
  margin: 0 0 0.42rem !important;
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
}

.footer-standard .footer-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  gap: 0.44rem !important;
}

.footer-standard .footer-list a,
.footer-standard .footer-list .footer-cookie {
  color: #d8d8df !important;
  text-decoration: none !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  font-size: 0.93rem !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  justify-content: flex-start !important;
  min-height: auto !important;
  box-shadow: none !important;
}

.footer-standard .footer-list a:hover,
.footer-standard .footer-list .footer-cookie:hover,
.footer-standard .footer-list a:focus-visible,
.footer-standard .footer-list .footer-cookie:focus-visible {
  color: #fff !important;
}

.footer-standard .footer-bottom {
  margin-top: 1.5rem !important;
  padding-top: 1rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
  display: flex !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 0.72rem !important;
  color: rgba(216, 216, 223, 0.86) !important;
  font-size: 0.86rem !important;
}

.footer-map-link {
  color: #d8d8df !important;
  text-decoration: none !important;
}

.footer-map-link:hover,
.footer-map-link:focus-visible {
  color: #fff !important;
}

.footer-standard .footer-lang-switch {
  margin-top: 1.1rem !important;
  display: inline-flex !important;
  gap: 0.4rem !important;
}

.footer-standard .footer-creditline {
  margin-top: 0.95rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(216, 216, 223, 0.84);
  font-size: 0.84rem;
  text-align: center;
}

.footer-standard .footer-creditline a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: #d8d8df;
  text-decoration: none;
}

.footer-standard .footer-creditline a:hover,
.footer-standard .footer-creditline a:focus-visible {
  color: #fff;
}

.footer-creditline .footer-credit-label {
  display: block;
}

.footer-creditline .frisys-logo {
  display: block;
  width: 118px;
  height: auto;
}

.location-section .map-wrap {
  min-height: 420px;
  border: 1px solid #161617;
  overflow: hidden;
  background: #0d0d0f;
  position: relative;
}

.location-section .map-wrap iframe {
  width: 100%;
  min-height: 420px;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}

.location-section .map-wrap.is-loaded iframe {
  display: block;
}

.location-section .map-consent-overlay {
  min-height: 420px;
  padding: 1rem;
  color: #ececef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.72rem;
  background:
    linear-gradient(145deg, rgba(10, 10, 12, 0.95), rgba(15, 16, 19, 0.78)),
    radial-gradient(circle at 84% 14%, rgba(110, 113, 122, 0.36), transparent 50%);
}

.location-section .map-consent-overlay p {
  margin: 0;
  max-width: 42ch;
}

.location-section .map-consent-overlay {
  display: none;
}

.location-section .map-wrap.is-loaded .map-consent-overlay {
  display: none;
}

@media (max-width: 980px) {
  .brand img {
    height: 36px !important;
  }

  .topbar-inner {
    grid-template-columns: auto 1fr auto !important;
  }

  .footer-standard .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 760px) {
  .brand img {
    height: 32px !important;
  }

  .footer-standard .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 0.7rem !important;
  }

  .location-section .map-wrap,
  .location-section .map-wrap iframe {
    min-height: 320px;
  }
}

/* Editorial refinement pass */
.topbar {
  isolation: isolate;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(52% 180% at 16% -80%, rgba(255, 255, 255, 0.1), transparent 72%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.025) 48%, transparent);
}

.topbar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.52rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s var(--ease-out);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 15, 16, 0.035) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(15, 15, 16, 0.03) 0 1px, transparent 1px 100%);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 70%);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), border-color 0.34s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-insights {
  position: relative;
  z-index: 2;
  margin-top: -4.2rem;
  padding: 0 0 clamp(2.2rem, 4vw, 4rem);
  pointer-events: none;
}

.scroll-insights-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.4rem);
}

.insight-card {
  position: relative;
  min-height: 188px;
  padding: clamp(1.05rem, 2vw, 1.55rem);
  overflow: hidden;
  pointer-events: auto;
  color: #101010;
  border: 1px solid rgba(13, 13, 13, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(235, 235, 232, 0.76)),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.035) 0 1px, transparent 1px 48px);
  box-shadow: 0 18px 44px rgba(15, 15, 15, 0.12);
}

.insight-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: #111;
}

.insight-card::after {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -44%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
}

.insight-card:nth-child(2) {
  margin-top: 1.8rem;
}

.insight-card:nth-child(3) {
  margin-top: 3.4rem;
}

.insight-index {
  display: inline-flex;
  margin-bottom: 2.2rem;
  color: rgba(0, 0, 0, 0.44);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.insight-card .kicker {
  margin-bottom: 0.45rem;
}

.insight-card strong {
  display: block;
  max-width: 16ch;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.insight-card span:last-child {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 27ch;
  margin-top: 1.1rem;
  color: rgba(16, 16, 16, 0.66);
  line-height: 1.6;
}

.section::before {
  content: "";
  position: absolute;
  top: clamp(1rem, 2vw, 1.7rem);
  right: clamp(1rem, 3vw, 3rem);
  width: clamp(52px, 8vw, 130px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12, 12, 12, 0.34));
  pointer-events: none;
}

.price-card,
.review-card,
.legal-card,
.card,
.pill,
.list li {
  transition: transform 0.28s var(--ease-out), border-color 0.28s var(--ease-out), background 0.28s var(--ease-out);
}

.price-card:hover,
.review-card:hover,
.legal-card:hover,
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 16, 16, 0.34) !important;
}

.subpage-hero,
.legal-hero {
  position: relative;
  overflow: hidden;
  min-height: min(58svh, 620px);
  display: flex;
  align-items: flex-end;
  padding: clamp(5.8rem, 10vw, 9rem) 0 clamp(2.8rem, 6vw, 5rem) !important;
  background:
    radial-gradient(82% 95% at 92% 20%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.46) 44%, transparent 74%),
    linear-gradient(112deg, #bebebb 0%, #ddddda 42%, #f8f8f5 100%);
}

.subpage-hero::after,
.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 38%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.03) 0 1px, transparent 1px 84px);
}

.subpage-hero::before,
.legal-hero::before {
  content: "";
  position: absolute;
  top: -26%;
  right: clamp(3%, 8vw, 12%);
  width: clamp(180px, 30vw, 480px);
  height: 150%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.56), transparent);
  transform: skewX(-12deg);
  opacity: 0.72;
}

.subpage-shell,
.legal-shell {
  position: relative;
  z-index: 1;
  max-width: 860px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.subpage-shell h1,
.legal-shell h1 {
  max-width: 9ch;
  color: #090909;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: clamp(4.6rem, 8.8vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.subpage-shell h1::after,
.legal-shell h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin: clamp(1.5rem, 3vw, 2.6rem) 0 0;
  background: #171717;
}

.subpage-shell p,
.legal-shell p {
  max-width: 58ch;
  color: #202020;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
}

.editorial-page .section {
  margin: 0 !important;
  padding: clamp(4.5rem, 8vw, 8rem) 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #d2d2cf !important;
  background:
    radial-gradient(60% 100% at 110% 12%, rgba(255, 255, 255, 0.78), transparent 68%),
    #f5f5f2 !important;
  box-shadow: none !important;
}

.editorial-page .section > .container {
  position: relative;
}

.editorial-page .section > .container::after {
  content: "roc hair concept";
  position: absolute;
  top: -2.1rem;
  right: 0;
  color: rgba(15, 15, 15, 0.38);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: lowercase;
}

.editorial-page .section:nth-of-type(even) {
  background:
    radial-gradient(70% 100% at -10% 0%, rgba(255, 255, 255, 0.82), transparent 70%),
    #ecece8 !important;
}

.editorial-page .section h2,
.editorial-page .section h3 {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.035em !important;
}

.editorial-page .section h2 {
  font-size: clamp(3rem, 5.4vw, 6.2rem);
  line-height: 0.92;
}

.editorial-page .price-grid,
.editorial-page .review-grid,
.editorial-page .social-grid,
.editorial-page .contact-grid,
.editorial-page .legal-grid,
.editorial-page .section-grid {
  gap: clamp(2rem, 5vw, 5rem) !important;
}

.editorial-page .price-card,
.editorial-page .review-card,
.editorial-page .social-card,
.editorial-page .legal-card,
.editorial-page .card,
.editorial-page .pill,
.editorial-page .list li {
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.55) !important;
  box-shadow: none !important;
}

.editorial-page .price-card,
.editorial-page .review-card,
.editorial-page .legal-card,
.editorial-page .card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.1rem, 2.2vw, 2rem) !important;
  border: 1px solid rgba(12, 12, 12, 0.16) !important;
}

.editorial-page .price-card::before,
.editorial-page .review-card::before,
.editorial-page .legal-card::before,
.editorial-page .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(54px, 22%, 120px);
  height: 2px;
  background: #111;
  transition: width 0.35s var(--ease-out);
}

.editorial-page .price-card:hover::before,
.editorial-page .review-card:hover::before,
.editorial-page .legal-card:hover::before,
.editorial-page .card:hover::before {
  width: 100%;
}

.editorial-page .price-list li,
.editorial-page .meta-list li,
.editorial-page .hours-list li {
  border-bottom: 1px solid rgba(12, 12, 12, 0.18) !important;
}

.editorial-page .social-card {
  border-top: 1px solid rgba(12, 12, 12, 0.22) !important;
  border-bottom: 1px solid rgba(12, 12, 12, 0.22) !important;
  padding: 1.3rem 0 !important;
}

.editorial-page .map-wrap {
  border-radius: 0 !important;
}

.discover-grid-single {
  grid-template-columns: minmax(0, 0.72fr) !important;
}

@media (prefers-reduced-motion: no-preference) {
  .subpage-shell,
  .legal-shell,
  .editorial-page .section > .container {
    animation: editorial-rise 0.72s var(--ease-out) both;
  }

  .editorial-page .section:nth-of-type(2) > .container {
    animation-delay: 0.08s;
  }

  @keyframes editorial-rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 760px) {
  .scroll-insights {
    margin-top: -2.4rem;
  }

  .scroll-insights-inner {
    grid-template-columns: 1fr;
  }

  .insight-card,
  .insight-card:nth-child(2),
  .insight-card:nth-child(3) {
    min-height: auto;
    margin-top: 0;
  }

  .subpage-hero,
  .legal-hero {
    min-height: 520px;
    padding: 4.8rem 0 2.4rem !important;
  }

  .subpage-shell h1,
  .legal-shell h1 {
    font-size: clamp(3.7rem, 18vw, 5.5rem);
  }

  .editorial-page .section {
    padding: 3.8rem 0 !important;
  }

  .editorial-page .section > .container::after {
    top: -1.7rem;
  }
}

/* Shared final header */
.topbar {
  position: sticky !important;
  top: 0 !important;
  min-height: 112px !important;
  background: #070707 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.topbar-inner {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: clamp(1rem, 2vw, 2rem) !important;
  min-height: 112px !important;
}

.brand {
  height: auto !important;
  color: #f7f7f7 !important;
  text-decoration: none !important;
}

.brand img {
  display: none !important;
}

.brand-wordmark {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 0.42rem !important;
  color: #f7f7f7 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 1.78rem !important;
  font-weight: 300 !important;
  letter-spacing: -0.035em !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.brand-wordmark strong {
  font-size: 2.45rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.06em !important;
}

.nav {
  display: flex !important;
  justify-content: flex-end !important;
  gap: clamp(0.72rem, 1.25vw, 1.4rem) !important;
}

.nav-link {
  padding: 0.65rem 0 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border-radius: 0 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.17em !important;
  font-weight: 700 !important;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #fff !important;
}

.nav-link::after {
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  height: 1px !important;
  background: currentColor !important;
}

.btn-header {
  height: 58px !important;
  margin-left: 0.35rem !important;
  padding: 0 1.45rem !important;
  border: 1px solid rgba(255, 255, 255, 0.68) !important;
  color: #fff !important;
  background: transparent !important;
  box-shadow: none !important;
  letter-spacing: 0.14em !important;
}

.btn-header:hover,
.btn-header:focus-visible {
  color: #111 !important;
  background: #fff !important;
}

.header-lang-mini {
  display: inline-flex !important;
  width: 44px !important;
  height: 58px !important;
  margin-left: calc(-1 * clamp(0.72rem, 1.25vw, 1.4rem)) !important;
  border-color: rgba(255, 255, 255, 0.68) !important;
  border-left-color: rgba(255, 255, 255, 0.28) !important;
  background: #080808 !important;
}

.header-lang-mini .lang-btn {
  color: rgba(255, 255, 255, 0.66) !important;
  border-bottom-color: rgba(255, 255, 255, 0.22) !important;
  background: transparent !important;
}

.header-lang-mini .lang-btn:hover,
.header-lang-mini .lang-btn:focus-visible,
.header-lang-mini .lang-btn.is-active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 1100px) {
  .topbar {
    min-height: 72px !important;
  }

  .topbar-inner {
    min-height: 72px !important;
    grid-template-columns: auto 1fr auto !important;
  }

  .nav {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    border-radius: 0 !important;
    border-color: rgba(255, 255, 255, 0.42) !important;
    background: transparent !important;
  }

  .menu-toggle span {
    background: #fff !important;
  }

  .brand-wordmark {
    font-size: 1.42rem !important;
  }

  .brand-wordmark strong {
    font-size: 1.9rem !important;
  }
}

/* Career page without image overlay */
body[data-page="karriere"] .career-shell.hero-shell {
  max-width: 880px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body[data-page="karriere"] .career-shell.hero-shell::before {
  display: none !important;
}

body[data-page="karriere"] .career-shell .kicker {
  color: rgba(0, 0, 0, 0.62) !important;
}

body[data-page="karriere"] .career-shell h1 {
  max-width: 8ch !important;
  color: #090909 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: clamp(4.8rem, 9vw, 9.8rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.055em !important;
  line-height: 0.82 !important;
}

body[data-page="karriere"] .career-shell h1::after {
  background: #171717 !important;
}

body[data-page="karriere"] .career-shell .lead {
  max-width: 62ch !important;
  color: #202020 !important;
}

@media (max-width: 740px) {
  body[data-page="karriere"] .career-shell h1 {
    font-size: clamp(4rem, 18vw, 5.9rem) !important;
  }
}

/* Mobile overflow guard */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .container,
  .topbar-inner {
    width: calc(100% - 2rem) !important;
    max-width: calc(100vw - 2rem) !important;
  }

  .cookie-banner {
    left: 1rem !important;
    right: clamp(1.25rem, 10vw, 4rem) !important;
    width: auto !important;
    max-width: calc(100vw - 2rem) !important;
    padding: 1rem !important;
    transform: none !important;
  }

  .cookie-grid,
  .cookie-grid > *,
  .cookie-banner p,
  .cookie-banner a,
  .cookie-title,
  .cookie-text {
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .cookie-title {
    font-size: 1.45rem !important;
    line-height: 1.08 !important;
  }

  .cookie-text {
    max-width: 30ch !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }

  .topbar .menu-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    top: 50% !important;
    right: clamp(1.25rem, 10vw, 4rem) !important;
    z-index: 3 !important;
    justify-self: end !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    border: 1px solid rgba(255, 255, 255, 0.42) !important;
    background: transparent !important;
    transform: translateY(-50%) !important;
  }

  .topbar .menu-toggle span {
    display: block !important;
    background: #fff !important;
  }

  .cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .cookie-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  body[data-page="karriere"] .career-hero {
    width: 100% !important;
    max-width: 100vw !important;
    min-height: 560px !important;
    padding: 4.8rem 0 3.2rem !important;
  }

  body[data-page="karriere"] .career-hero::after {
    right: -1rem !important;
    width: min(38vw, 150px) !important;
  }

  body[data-page="karriere"] .career-content,
  body[data-page="karriere"] .career-shell.hero-shell {
    width: calc(100vw - 2rem) !important;
    max-width: calc(100vw - 2rem) !important;
    min-width: 0 !important;
  }

  body[data-page="karriere"] .career-shell h1 {
    max-width: 7ch !important;
  }

  body[data-page="karriere"] .career-shell .lead {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body[data-page="karriere"] .hero-actions {
    width: 100% !important;
    gap: 0.7rem !important;
  }

  body[data-page="karriere"] .hero-actions .btn {
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
  }
}
