/* ===================================================================
   Andis Coiffeur — Stylesheet
   Modern, minimal barbershop aesthetic. Dark base, warm gold accent.
   =================================================================== */

:root {
  --bg:        #0c0c0e;
  --bg-soft:   #141417;
  --bg-card:   #16161a;
  --line:      rgba(255, 255, 255, 0.08);
  --text:      #f4f1ea;
  --muted:     #a09a8e;
  --gold:      #c9a24b;
  --gold-soft: #e0c074;
  --radius:    18px;
  --maxw:      1140px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: "Oswald", "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

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

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

.eyebrow {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 18px;
}

.section {
  padding: clamp(64px, 11vw, 130px) 0;
}

.section-title {
  font-size: clamp(2rem, 6vw, 3.6rem);
}

.section-lead {
  color: var(--muted);
  max-width: 560px;
  margin-top: 18px;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) 30px;
  border-radius: 100px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease),
              color .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1206;
  box-shadow: 0 10px 30px -10px rgba(201, 162, 75, 0.6);
}
.btn-gold:hover { box-shadow: 0 16px 40px -12px rgba(201, 162, 75, 0.75); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }

.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(12, 12, 14, 0.8);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand .dot { color: var(--gold); }
.brand-logo {
  height: 34px;
  width: auto;
  transition: transform .5s var(--ease);
}
.brand:hover .brand-logo { transform: rotate(-8deg) scale(1.06); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--muted);
  position: relative;
  transition: color .3s var(--ease);
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  --pad-y: 11px;
  padding: 11px 24px;
  font-size: 13px;
  margin-left: 26px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
}
.burger span {
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  background: rgba(12, 12, 14, 0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 32px 80px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .5s var(--ease), opacity .4s var(--ease);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 1px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(110% 90% at 80% 10%, rgba(201,162,75,0.16), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(201,162,75,0.07), transparent 50%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(75% 75% at 50% 40%, #000, transparent 80%);
          mask-image: radial-gradient(75% 75% at 50% 40%, #000, transparent 80%);
  opacity: .5;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(3rem, 13vw, 8rem);
  line-height: 0.92;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero p.tagline {
  color: var(--muted);
  max-width: 480px;
  margin: 26px 0 40px;
  font-size: 1.1rem;
}

/* the two big home buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 460px;
}
.hero-actions .btn { flex: 1 1 180px; --pad-y: 20px; font-size: 16px; }

.hero-meta {
  margin-top: 54px;
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.hero-meta .k {
  display: block;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ---------- Generic page header (sub pages) ---------- */
.page-head {
  padding: 150px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 90% -10%, rgba(201,162,75,0.14), transparent 55%);
}
.page-head .container { position: relative; }
.page-head h1 { font-size: clamp(2.5rem, 9vw, 5.5rem); }

/* ---------- Services ---------- */
.service-list {
  display: grid;
  gap: 14px;
  margin-top: 50px;
}
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 30px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .35s var(--ease), transform .35s var(--ease),
              background .35s var(--ease);
}
.service-row:hover {
  border-color: rgba(201,162,75,0.5);
  transform: translateX(6px);
  background: #1b1b20;
}
.service-row .info h3 {
  font-size: 1.4rem;
  text-transform: none;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
}
.service-row .info p { color: var(--muted); font-size: 0.92rem; margin-top: 2px; }
.service-row .price {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  color: var(--gold-soft);
  white-space: nowrap;
}
.service-row .price small {
  display: block;
  text-align: right;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 1px;
}

/* ---------- Feature cards (home/about) ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.card:hover { border-color: rgba(201,162,75,0.4); transform: translateY(-6px); }
.card .num {
  font-family: "Oswald", sans-serif;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.card h3 { font-size: 1.35rem; margin: 16px 0 10px; text-transform: none; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Split (about) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split .visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 120% at 30% 10%, rgba(201,162,75,0.22), transparent 55%),
    repeating-linear-gradient(45deg, #161616 0 14px, #1b1b1b 14px 28px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
.split .visual .badge {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(12,12,14,0.7);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
}
.prose p { color: var(--muted); margin-bottom: 18px; }
.prose p:first-of-type { color: var(--text); font-size: 1.15rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 50px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .35s var(--ease);
}
.contact-card:hover { border-color: rgba(201,162,75,0.4); }
.contact-card .label {
  font-family: "Oswald", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-card .value { font-size: 1.3rem; font-family: "Oswald", sans-serif; }
.contact-card a.value:hover { color: var(--gold-soft); }
.contact-card.full { grid-column: 1 / -1; }

.hours-list { list-style: none; margin-top: 4px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:last-child { color: var(--text); }

.map-embed {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 340px; border: 0; filter: grayscale(0.4) contrast(1.05); }

.socials { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 14px;
  color: var(--muted);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.socials a:hover { border-color: var(--gold); color: var(--gold-soft); }

/* ---------- CTA strip ---------- */
.cta-strip {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(40px, 7vw, 80px) 30px;
  background:
    radial-gradient(80% 140% at 50% 0%, rgba(201,162,75,0.14), transparent 60%),
    var(--bg-soft);
}
.cta-strip h2 { font-size: clamp(1.8rem, 5vw, 3rem); }
.cta-strip p { color: var(--muted); margin: 14px auto 30px; max-width: 480px; }
.cta-strip .actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- Legal / prose pages ---------- */
.legal { padding: 150px 0 100px; }
.legal h1 { font-size: clamp(2.2rem, 7vw, 4rem); margin-bottom: 12px; }
.legal h2 {
  font-size: 1.3rem;
  margin: 40px 0 12px;
  text-transform: none;
  font-family: "Oswald", sans-serif;
  color: var(--gold-soft);
}
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--gold-soft); }
.legal .container { max-width: 800px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 36px;
  background: var(--bg-soft);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer .brand { font-size: 1.5rem; margin-bottom: 16px; }
.footer p { color: var(--muted); font-size: 0.95rem; max-width: 320px; }
.footer h4 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--muted); font-size: 0.95rem; transition: color .3s var(--ease); }
.footer ul a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split .visual { aspect-ratio: 16 / 11; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .hero-actions { flex-direction: column; max-width: 100%; }
  .hero-actions .btn { flex: none; width: 100%; }
  .service-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .service-row .price small { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .service-row:hover { transform: none; }
}

/* ===================================================================
   Home hero, Galerie, Buchungs-Leiste & Logo-Elemente
   =================================================================== */

/* ---------- Hero: zentriert, mit Salon-Foto im Hintergrund ---------- */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/img/shop-2.jpg") center 40% / cover no-repeat;
  filter: grayscale(0.45) contrast(1.05) brightness(0.9);
  transform: scale(1.04);
  animation: heroDrift 26s ease-in-out infinite alternate;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,14,0.72) 0%, rgba(12,12,14,0.86) 45%, var(--bg) 100%);
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(0, -1.5%, 0); }
}

.hero.hero-center { text-align: center; }
.hero.hero-center .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero.hero-center p.tagline { margin-left: auto; margin-right: auto; }
.hero.hero-center .hero-actions {
  justify-content: center;
  max-width: 640px;
  width: 100%;
}
.hero.hero-center .hero-meta { justify-content: center; }

.hero-logo {
  width: clamp(104px, 17vw, 148px);
  height: auto;
  margin-bottom: 26px;
  filter: drop-shadow(0 12px 40px rgba(201, 162, 75, 0.28));
}

/* Haupt-Buchungsbutton */
.btn-xl {
  --pad-y: 21px;
  padding-left: 42px;
  padding-right: 42px;
  font-size: 17px;
  letter-spacing: 2px;
}
.btn-pulse { position: relative; isolation: isolate; }
.btn-pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 100px;
  border: 1px solid rgba(201, 162, 75, 0.6);
  animation: pulseRing 3s var(--ease) infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes pulseRing {
  0%   { transform: scale(1);    opacity: 0.85; }
  70%  { transform: scale(1.14); opacity: 0; }
  100% { transform: scale(1.14); opacity: 0; }
}

.hero-scroll {
  margin-top: 54px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  color: var(--muted);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes scrollHint {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: top; }
  50%      { opacity: 1;    transform: scaleY(1);   transform-origin: top; }
}

/* ---------- Galerie ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.gal-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.gal-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.04);
  transition: transform .9s var(--ease), filter .6s var(--ease);
}
.gal-item:hover img { transform: scale(1.06); filter: none; }
.gal-item::before {
  content: "";
  position: absolute;
  inset: 40% 0 0 0;
  background: linear-gradient(180deg, transparent, rgba(12, 12, 14, 0.8));
  pointer-events: none;
  z-index: 1;
}
.gal-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  padding: 9px 17px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: rgba(12, 12, 14, 0.6);
  backdrop-filter: blur(8px);
}

/* Foto in der "Über uns"-Split-Ansicht */
.split .visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  transition: transform .9s var(--ease);
}
.split .visual:hover img { transform: scale(1.05); }
.split .visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,14,0.15), rgba(12,12,14,0.8));
}
.split .visual .badge { position: relative; z-index: 2; }

/* ---------- Fixe Buchungs-Leiste (Mobile) ---------- */
.book-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 12, 14, 0.9);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
body.menu-open .book-bar { transform: translateY(110%); opacity: 0; }

/* ---------- Öffnungszeiten ---------- */
.hours-list li.closed span:last-child { color: var(--muted); }
.hours-list li.today {
  color: var(--text);
}
.hours-list li.today span:first-child { color: var(--gold-soft); }

.footer .hours-list li {
  font-size: 0.92rem;
  padding: 6px 0;
}

/* ---------- Footer mit vier Spalten ---------- */
.footer-top { grid-template-columns: 1.5fr 0.8fr 1.1fr 1.1fr; }
.footer .brand-logo { height: 40px; }

/* ---------- Responsive Ergänzungen ---------- */
@media (max-width: 1000px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-cta { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .book-bar { display: block; }
  body { padding-bottom: 86px; }
  .mobile-menu { padding-bottom: 110px; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero.hero-center .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo { animation: none; transform: none; }
  .btn-pulse::after,
  .hero-scroll::after { animation: none; }
  .gal-item:hover img,
  .split .visual:hover img { transform: none; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
  cursor: zoom-out;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  width: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transform: scale(0.96);
  transition: transform .45s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold-soft); }

/* ---------- Hero-Feinschliff: Buchungs-Button ohne Scrollen sichtbar ---------- */
.hero.hero-center { padding: 104px 0 56px; }
.hero.hero-center h1 { font-size: clamp(2.5rem, 8.4vw, 5.6rem); }
.hero-logo { width: clamp(86px, 13vw, 118px); margin-bottom: 20px; }
.hero.hero-center p.tagline { margin: 22px auto 34px; max-width: 520px; }
.hero.hero-center .hero-meta { margin-top: 40px; gap: 32px; }
.hero-scroll { margin-top: 38px; }

@media (max-height: 780px) and (min-width: 861px) {
  .hero.hero-center h1 { font-size: clamp(2.2rem, 6.4vw, 4.2rem); }
  .hero-logo { width: 88px; margin-bottom: 14px; }
  .hero.hero-center p.tagline { margin: 16px auto 26px; font-size: 1rem; }
  .hero.hero-center .hero-meta { margin-top: 28px; }
  .hero-scroll { display: none; }
}

/* Buchungs-Button im Mobile-Menü nicht wie ein Menülink rendern */
.mobile-menu .btn {
  margin-top: 30px;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 19px 30px;
  border-bottom: none;
  color: #1a1206;
}
