/* ==========================================================================
   bass78-shop — Luxus-Editorial CSS
   ========================================================================== */

/* === RESET / BASE === */
* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  touch-action: manipulation;
}

a { touch-action: manipulation; }

section[id], header[id] {
  scroll-margin-top: 72px;
}

::selection {
  background: rgba(245, 212, 134, 0.32);
  color: var(--cream);
}

/* === LAYOUT === */
.page-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

main { display: block; }

/* === TYPOGRAPHY === */
h1, h2, h3, .display {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: var(--text-display);
  letter-spacing: -0.022em;
  line-height: 0.96;
  font-weight: 600;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}

h2 {
  font-size: var(--text-3xl);
  letter-spacing: -0.018em;
  line-height: 1;
  font-weight: 600;
}

h3 {
  font-size: var(--text-xl);
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

.lead {
  font-size: var(--text-md);
  color: var(--muted);
  line-height: 1.75;
  max-width: 56ch;
  text-wrap: pretty;
}

.eyebrow {
  font-family: "Oswald", sans-serif;
  margin: 0 0 var(--space-3);
  color: var(--gold-bright);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.eyebrow-rule {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--gold-champagne);
}

.eyebrow-rule::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold-champagne);
  opacity: 0.65;
}

.section-head {
  margin-bottom: var(--space-7);
  display: grid;
  gap: var(--space-3);
  max-width: 56rem;
}

.section-head .eyebrow { margin: 0; }
.section-head h2 { max-width: 22ch; }
.section-head.narrow { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.narrow .eyebrow-rule { justify-content: center; }
.section-head.narrow h2 { margin-left: auto; margin-right: auto; }

/* === BUTTONS === */
.button, .link-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    background var(--dur-med) var(--ease-out);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button:hover, .link-button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button-primary {
  background:
    linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  color: #14181d;
  box-shadow:
    inset 0 1px 0 rgba(255, 232, 178, 0.55),
    0 14px 40px rgba(184, 132, 44, 0.28);
}

.button-primary:hover {
  background-position: 100% 100%;
  box-shadow:
    inset 0 1px 0 rgba(255, 232, 178, 0.65),
    0 22px 56px rgba(184, 132, 44, 0.34);
}

.button-secondary, .link-button {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border-color: rgba(245, 212, 134, 0.28);
  color: var(--cream);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.button-secondary:hover, .button-secondary:focus-visible,
.link-button:hover, .link-button:focus-visible {
  border-color: var(--gold-champagne);
  background: linear-gradient(180deg, rgba(245, 212, 134, 0.1), rgba(255, 255, 255, 0.02));
  color: var(--gold-champagne);
}

.button-whatsapp {
  border-color: rgba(167, 230, 190, 0.22);
  background: linear-gradient(180deg, #2faa68 0%, #1a6e44 100%);
  color: #ecfff1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 36px rgba(14, 56, 33, 0.28);
}

.button-whatsapp:hover, .button-whatsapp:focus-visible {
  background: linear-gradient(180deg, #36b873 0%, #1c7c4d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 48px rgba(14, 56, 33, 0.34);
}

.button:focus-visible, .link-button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* === GENERIC PANELS === */
.panel, .info-card, .service-card {
  position: relative;
  border: 1px solid rgba(245, 212, 134, 0.14);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(24, 32, 40, 0.92) 0%, rgba(11, 15, 20, 0.96) 100%);
  box-shadow: var(--shadow-card);
}

/* === TOPBAR (global, sticky) === */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) max(20px, calc((100vw - 1280px) / 2));
  background: linear-gradient(180deg, rgba(7, 9, 12, 0.72) 0%, rgba(7, 9, 12, 0) 100%);
  transition: background var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), padding var(--dur-med) var(--ease-out);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.topbar.is-scrolled {
  background: rgba(11, 15, 20, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 rgba(245, 212, 134, 0.12), 0 8px 28px rgba(0, 0, 0, 0.32);
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: var(--cream);
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 0.94;
  text-transform: none;
  letter-spacing: -0.01em;
  max-width: 22ch;
}

.brand > span:first-child {
  font-size: clamp(1.5rem, 1rem + 1.2vw, 2.1rem);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.brand-break {
  display: block;
  color: var(--gold-bright);
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 4px;
}

.menu-toggle {
  display: none;
  justify-self: end;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--gold-bright);
  outline: none;
}

.menu-icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon-close { display: block; }

.nav-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: "Manrope", sans-serif;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color var(--dur-fast) var(--ease-out);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-med) var(--ease-out);
}

.nav-links a:hover, .nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--cream);
}

.nav-links a:hover::after, .nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* === HERO (cinematic full-bleed) === */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(640px, 92vh, 940px);
  margin-top: -88px;
  padding-top: 88px;
  overflow: hidden;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: -10% -2% -2%;
  z-index: -2;
  will-change: transform;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.05) contrast(1.04);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.72) 0%, rgba(7, 9, 12, 0.50) 40%, rgba(7, 9, 12, 0.85) 85%, var(--ink-1) 100%),
    linear-gradient(90deg, rgba(7, 9, 12, 0.85) 0%, rgba(7, 9, 12, 0.35) 55%, transparent 100%),
    radial-gradient(ellipse 100% 70% at 50% 110%, rgba(184, 132, 44, 0.12), transparent 75%);
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: clamp(48px, 8vh, 120px);
}

.hero-content {
  display: grid;
  gap: var(--space-5);
  max-width: 920px;
  padding-top: var(--space-7);
}

.hero-content h1 {
  max-width: 16ch;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.hero-content .eyebrow {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 24px rgba(0, 0, 0, 0.7);
}

.hero-content .lead {
  color: rgba(245, 238, 226, 0.88);
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  font-size: var(--text-lg);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-5);
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: var(--hairline-soft);
}

.hero-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 22px;
  border: 1px solid rgba(245, 212, 134, 0.28);
  border-radius: var(--radius-md);
  background: rgba(11, 15, 20, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.hero-badge .hero-badge-label {
  font-family: "Oswald", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.hero-badge strong {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.hero-badge span:not(.hero-badge-label) {
  font-size: 0.92rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-family: "Oswald", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transition: color var(--dur-fast) var(--ease-out);
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold-bright), transparent);
  animation: heroScroll 1.8s ease-in-out infinite;
  transform-origin: top;
}

.hero-scroll:hover, .hero-scroll:focus-visible { color: var(--cream); }

@keyframes heroScroll {
  0%, 100% { transform: scaleY(0.3); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* === SECTION SHELL (shared) === */
.section {
  padding: clamp(72px, 10vh, 140px) 0;
}

.trust-section,
.services-section,
.pricing-section,
.gallery-section,
.team-section,
.booking-section,
.contact-section {
  padding-top: clamp(72px, 10vh, 140px);
  padding-bottom: clamp(72px, 10vh, 140px);
  position: relative;
}

.trust-section + .services-section,
.services-section + .pricing-section,
.pricing-section + .gallery-section,
.gallery-section + .booking-section,
.booking-section + .contact-section,
.team-section + * {
  border-top: var(--hairline-soft);
}

/* === TRUST SECTION === */
.trust-section .section-head { margin-bottom: var(--space-7); }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.info-card {
  position: relative;
  padding: var(--space-6) var(--space-5) var(--space-5);
  display: grid;
  gap: 14px;
  border-radius: var(--radius-lg);
  transition:
    transform var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out);
  counter-increment: trust-counter;
}

.trust-section { counter-reset: trust-counter; }

.info-card::before {
  content: counter(trust-counter, decimal-leading-zero);
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-champagne);
  opacity: 0.7;
}

.info-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-champagne), transparent 65%);
  opacity: 0.5;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 212, 134, 0.35);
  box-shadow: var(--shadow-cinematic);
}

.info-label {
  display: block;
  color: var(--gold-bright);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  margin-bottom: 4px;
}

.info-card h3 {
  font-size: 1.45rem;
  margin: 0;
  color: var(--cream);
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.trust-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-7);
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  counter-reset: service-counter;
}

.service-card {
  position: relative;
  padding: var(--space-6) var(--space-5) var(--space-5);
  display: grid;
  gap: 14px;
  transition:
    transform var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out);
  counter-increment: service-counter;
}

.service-card::before {
  content: counter(service-counter, decimal-leading-zero);
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-champagne);
  opacity: 0.7;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-champagne), transparent 65%);
  opacity: 0.5;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 212, 134, 0.35);
  box-shadow: var(--shadow-cinematic);
}

.service-card h3 {
  font-size: 1.45rem;
  color: var(--cream);
  margin: 0;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-card-arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  font-family: "Oswald", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.service-card-arrow svg {
  transition: transform var(--dur-med) var(--ease-out);
}

.service-card:hover .service-card-arrow svg { transform: translateX(6px); }

/* === PRICING === */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  max-width: 880px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: var(--space-6) var(--space-5);
  display: grid;
  gap: var(--space-3);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 212, 134, 0.16);
  background:
    linear-gradient(180deg, rgba(24, 32, 40, 0.94) 0%, rgba(11, 15, 20, 0.97) 100%);
  box-shadow: var(--shadow-card);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0.5;
}

.price-group {
  position: relative;
  display: block;
  border-bottom: var(--hairline-soft);
}

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

.price-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-3);
  cursor: pointer;
  list-style: none;
  transition: color var(--dur-fast) var(--ease-out);
}

.price-summary::-webkit-details-marker { display: none; }
.price-summary::marker { content: ""; }

.price-summary:hover { color: var(--gold-bright); }

.price-group h3 {
  margin: 0;
  font-size: 1.55rem;
  color: var(--cream);
  font-family: "Fraunces", serif;
}

.price-group:hover h3 { color: var(--gold-bright); }

.price-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid rgba(245, 212, 134, 0.4);
  border-radius: var(--radius-pill);
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.price-toggle::before, .price-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.4px;
  background: var(--gold-bright);
  transform: translate(-50%, -50%);
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}

.price-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.price-group[open] .price-toggle { background: rgba(245, 212, 134, 0.12); border-color: var(--gold-bright); }
.price-group[open] .price-toggle::after { opacity: 0; transform: translate(-50%, -50%) rotate(0); }

.price-items {
  display: grid;
  gap: var(--space-3);
  padding: 0 var(--space-3) var(--space-5);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding-bottom: 12px;
  position: relative;
  align-items: baseline;
  font-size: 1rem;
}

.price-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  border-bottom: 1px dotted rgba(245, 212, 134, 0.22);
  z-index: -1;
}

.price-row span {
  background: var(--ink-1);
  padding-right: 10px;
  color: var(--cream);
}

.price-row strong {
  background: var(--ink-1);
  padding-left: 10px;
  color: var(--gold-bright);
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: var(--space-3);
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 212, 134, 0.1);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}

.gallery-card-large {
  grid-column: span 8;
  grid-row: span 3;
}

.gallery-card-wide {
  grid-column: span 8;
  grid-row: span 2;
}

.gallery-card-tall {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-med) var(--ease-out);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 9, 12, 0.55) 100%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity var(--dur-med) var(--ease-out);
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-cinematic);
}

.gallery-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.1);
}

.gallery-card:hover::after { opacity: 0.85; }

.gallery-text-card {
  display: flex;
  align-items: end;
  padding: var(--space-5);
  background: linear-gradient(135deg, rgba(184, 132, 44, 0.08), rgba(11, 15, 20, 0.9));
}

.gallery-text-card p {
  margin: 0;
  color: var(--cream);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
}

/* === BOOKING === */
.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-6);
  align-items: start;
}

.booking-content {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-7) var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 212, 134, 0.14);
  background: linear-gradient(180deg, rgba(24, 32, 40, 0.94) 0%, rgba(11, 15, 20, 0.97) 100%);
  box-shadow: var(--shadow-card);
}

.booking-content h2 {
  font-size: var(--text-2xl);
  max-width: 14ch;
}

.booking-content p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.booking-actions {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.booking-form-card {
  padding: var(--space-7) var(--space-6);
  display: grid;
  gap: var(--space-5);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 212, 134, 0.18);
  background:
    linear-gradient(180deg, rgba(28, 36, 44, 0.94) 0%, rgba(11, 15, 20, 0.97) 100%);
  box-shadow: var(--shadow-cinematic);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.booking-form-head {
  display: grid;
  gap: 8px;
}

.booking-form-head h3 {
  font-size: 1.7rem;
  color: var(--cream);
}

.booking-form-intro, .booking-form-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.booking-form { display: grid; gap: var(--space-4); }

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.booking-field { display: grid; gap: 8px; }

.booking-field span {
  font-family: "Oswald", sans-serif;
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.booking-field-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.booking-inline-note {
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  font-family: "Manrope", sans-serif;
}

.booking-field-full { grid-column: 1 / -1; }

.booking-field input,
.booking-field select {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(245, 212, 134, 0.16);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(20, 28, 35, 0.94), rgba(11, 15, 20, 0.97));
  color: var(--cream);
  font-family: inherit;
  font-size: 0.98rem;
  outline: none;
  transition:
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}

.booking-field input[type="date"] { color-scheme: dark; }

.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.9) sepia(0.4) saturate(1.2) hue-rotate(350deg);
}

.booking-field input::placeholder { color: rgba(170, 184, 194, 0.7); }

.booking-field input:hover, .booking-field select:hover {
  border-color: rgba(245, 212, 134, 0.4);
}

.booking-field input:focus-visible, .booking-field select:focus-visible {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(245, 212, 134, 0.14);
  background: linear-gradient(180deg, rgba(28, 38, 48, 0.94), rgba(14, 19, 24, 0.97));
}

.booking-field select:disabled {
  cursor: not-allowed;
  color: rgba(170, 184, 194, 0.6);
  opacity: 0.7;
}

.booking-submit {
  width: 100%;
  min-height: 60px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-form-points {
  margin: 0;
  color: rgba(224, 232, 239, 0.72);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-align: center;
  text-wrap: balance;
}

.hours-card {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 212, 134, 0.12);
  background: linear-gradient(180deg, rgba(20, 28, 35, 0.92) 0%, rgba(11, 15, 20, 0.96) 100%);
  box-shadow: var(--shadow-card);
  align-self: start;
  margin-top: var(--space-5);
  grid-column: 1 / -1;
}

.hours-card-head {
  display: grid;
  gap: 8px;
}

.hours-card-head h3, .hours-card h3 {
  font-size: 1.45rem;
  color: var(--cream);
}

.hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 14px 0;
  border-bottom: var(--hairline-soft);
  font-size: 0.96rem;
}

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

.hours-list span { color: var(--muted); }

.hours-list strong {
  color: var(--cream);
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* === CONTACT === */
.contact-section { padding-top: clamp(72px, 10vh, 140px); padding-bottom: clamp(72px, 10vh, 140px); }

.contact-panel {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-7) var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 212, 134, 0.14);
  background: linear-gradient(180deg, rgba(24, 32, 40, 0.94) 0%, rgba(11, 15, 20, 0.97) 100%);
  box-shadow: var(--shadow-card);
  max-width: 880px;
  margin: 0 auto;
}

.contact-panel h2 {
  font-size: var(--text-2xl);
  max-width: 18ch;
  margin-bottom: var(--space-3);
}

.contact-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.contact-address {
  margin: 0;
  color: var(--cream);
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-phone { margin: var(--space-2) 0 var(--space-3); }

.contact-phone a {
  color: var(--cream);
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.contact-phone a:hover, .contact-phone a:focus-visible {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-3);
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid rgba(245, 212, 134, 0.22);
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition:
    transform var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}

.contact-links a:hover, .contact-links a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: linear-gradient(180deg, rgba(245, 212, 134, 0.08), rgba(255, 255, 255, 0.02));
}

.contact-links svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

/* === FOOTER === */
.footer {
  padding: var(--space-7) 0 var(--space-7);
  border-top: var(--hairline-soft);
  display: grid;
  gap: var(--space-5);
  color: var(--muted);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: var(--hairline-soft);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.footer-meta p { margin: 0; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer .link-button {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* === LEGAL MODAL === */
.legal-modal {
  width: min(760px, calc(100% - 24px));
  max-height: min(86vh, 760px);
  padding: 0;
  overflow: hidden;
  overscroll-behavior: contain;
  color: var(--cream);
  border: 1px solid rgba(245, 212, 134, 0.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(24, 32, 40, 0.98) 0%, rgba(11, 15, 20, 0.99) 100%);
  box-shadow: var(--shadow-cinematic);
  flex-direction: column;
}

.legal-modal[open] {
  display: flex;
}

.legal-modal:not([open]) {
  display: none;
}

.legal-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-head, .modal-body { padding: var(--space-5) var(--space-6); }
.modal-head { margin: 0; }

.modal-head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-bottom: var(--hairline-soft);
  background: linear-gradient(180deg, rgba(24, 32, 40, 0.99) 0%, rgba(20, 28, 35, 0.98) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-head h2 { font-size: 1.5rem; margin: 0; }

.modal-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
  overscroll-behavior: contain;
}

.modal-close {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(245, 212, 134, 0.28);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(245, 212, 134, 0.08);
}

.modal-body p { color: var(--muted); line-height: 1.75; font-size: 0.96rem; }
.modal-body p { overflow-wrap: anywhere; word-break: break-word; }
.modal-body a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.modal-body a:hover { color: var(--cream); }

.modal-foot {
  margin: 0;
  padding: var(--space-4) var(--space-6) var(--space-5);
  display: flex;
  justify-content: center;
  border-top: var(--hairline-soft);
  background: linear-gradient(180deg, rgba(20, 28, 35, 0.96) 0%, rgba(11, 15, 20, 0.98) 100%);
}

.modal-foot-close {
  min-height: 48px;
  min-width: 200px;
}

/* === FLOATING WHATSAPP === */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  justify-content: center;
  border: 1px solid rgba(167, 230, 190, 0.22);
  background: linear-gradient(180deg, #2faa68 0%, #1a6e44 100%);
  color: #ecfff1;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 38px rgba(0, 0, 0, 0.36);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.floating-whatsapp:hover, .floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 24px 48px rgba(0, 0, 0, 0.4);
}

/* === ABOUT PAGE === */
.about-page .hero {
  min-height: clamp(360px, 50vh, 520px);
  align-items: center;
}

.about-intro {
  padding: var(--space-7) var(--space-6);
  margin-bottom: var(--space-7);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 212, 134, 0.14);
  background: linear-gradient(180deg, rgba(24, 32, 40, 0.92) 0%, rgba(11, 15, 20, 0.96) 100%);
  box-shadow: var(--shadow-card);
}

.about-lead { max-width: 56rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.team-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 212, 134, 0.18);
  background: linear-gradient(180deg, rgba(30, 40, 49, 0.96), rgba(16, 22, 28, 0.98));
  box-shadow: var(--shadow-card);
  transition:
    transform var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 212, 134, 0.34);
  box-shadow: var(--shadow-cinematic);
}

.team-photo {
  min-height: 360px;
  border-bottom: var(--hairline-soft);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.team-photo-ali img, .team-photo-mehmet img, .team-photo-hassan img {
  transform: scale(1.06);
  object-position: center 18%;
}

.team-card:hover .team-photo img { transform: scale(1.1); }

.team-content {
  display: grid;
  gap: 12px;
  padding: var(--space-5);
}

.team-content .eyebrow { margin-bottom: 0; }

.team-content h2 {
  max-width: none;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.team-content p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* === REVEAL ANIMATIONS === */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

[data-reveal="fade"] { transform: none; }
[data-reveal="up-sm"] { transform: translateY(12px); }
[data-reveal="up-lg"] { transform: translateY(40px); }

/* === RESPONSIVE === */
@media (max-width: 1280px) {
  .hero-content h1 { font-size: clamp(3rem, 6vw, 5.4rem); }
}

@media (max-width: 1024px) {
  .booking-section { grid-template-columns: 1fr; }
  .quick-grid, .services-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-auto-rows: 160px; }
  .gallery-card-large, .gallery-card-tall, .gallery-card-wide { grid-column: span 6; grid-row: span 2; }
  .gallery-card { grid-column: span 6; }
}

@media (max-width: 940px) {
  .topbar {
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
  }
  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-top: var(--space-3);
  }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .quick-grid, .services-grid, .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-card, .gallery-card-large, .gallery-card-wide, .gallery-card-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-card-large { grid-row: span 2; }

  .booking-form-grid { grid-template-columns: 1fr; }
  .booking-field-full { grid-column: auto; }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: var(--space-3);
    padding: var(--space-2) var(--space-4) var(--space-3);
    border-radius: var(--radius-lg);
    background: rgba(10, 14, 18, 0.97);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }

  .nav-links.is-open { display: flex; }

  .nav-links a {
    padding: 15px 8px;
    border: none;
    border-bottom: 1px solid rgba(245, 212, 134, 0.1);
    border-radius: 0;
    background: transparent;
    color: var(--cream);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: left;
  }

  .nav-links a:last-child { border-bottom: none; }

  .nav-links a::after { display: none; }

  .nav-links a:hover, .nav-links a:focus-visible {
    color: var(--gold-bright);
    background: transparent;
    border-bottom-color: rgba(245, 212, 134, 0.25);
  }

  .hero { min-height: clamp(560px, 80vh, 720px); }

  .hero-actions, .booking-actions, .contact-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button, .link-button, .contact-links a { width: 100%; }

  .hero-meta { flex-direction: column; align-items: stretch; gap: var(--space-4); }
  .hero-scroll { align-self: flex-start; }
}

@media (max-width: 640px) {
  .page-shell { width: min(100% - 20px, 1280px); }
  body { padding-bottom: 92px; }

  .hero-content { padding-top: var(--space-5); }
  .hero-frame { padding-bottom: var(--space-6); }
  .hero-content .eyebrow { display: none; }
  .hero-backdrop img { object-position: center 20%; }

  .info-card, .pricing-card, .booking-content,
  .booking-form-card, .hours-card, .contact-panel,
  .about-intro, .gallery-text-card, .service-card {
    padding: var(--space-5);
  }

  .pricing-card { padding: var(--space-5) var(--space-3); }

  h2 { max-width: none; }
  .info-card h3 { font-size: 1.3rem; }
  .service-card h3 { font-size: 1.4rem; }
  .price-group h3 { font-size: 1.3rem; }
  .booking-content h2 { font-size: 1.85rem; }
  .footer-brand { font-size: 1.6rem; }

  .price-summary { padding: var(--space-4) var(--space-2); }
  .price-items { padding: 0 var(--space-2) var(--space-4); }

  .floating-whatsapp {
    right: 14px;
    bottom: 16px;
    width: 60px;
    min-width: 60px;
    min-height: 60px;
    padding: 0;
    border-radius: var(--radius-pill);
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .floating-whatsapp::before {
    content: "";
    width: 26px;
    height: 26px;
    display: block;
    background:
      center / contain no-repeat
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23ecfff1' d='M19.11 17.21c-.27-.14-1.6-.79-1.85-.88-.25-.09-.43-.14-.61.14-.18.27-.7.88-.86 1.06-.16.18-.32.2-.59.07-.27-.14-1.15-.42-2.18-1.35-.8-.72-1.35-1.61-1.51-1.88-.16-.27-.02-.41.12-.54.12-.12.27-.32.41-.48.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.48-.84-2.03-.22-.52-.44-.45-.61-.46h-.52c-.18 0-.48.07-.73.34-.25.27-.95.93-.95 2.27s.98 2.64 1.11 2.82c.14.18 1.92 2.93 4.66 4.11.65.28 1.16.45 1.56.57.66.21 1.26.18 1.73.11.53-.08 1.6-.65 1.82-1.28.23-.63.23-1.16.16-1.28-.06-.11-.24-.18-.5-.32Z'/%3E%3Cpath fill='%23ecfff1' d='M27.2 4.79A15.82 15.82 0 0 0 16.02.02C7.28.02.16 7.13.16 15.88c0 2.78.73 5.5 2.1 7.89L0 32l8.45-2.22a15.84 15.84 0 0 0 7.56 1.93h.01c8.74 0 15.86-7.12 15.86-15.86 0-4.24-1.65-8.23-4.68-11.06Zm-11.18 24.2h-.01a13.1 13.1 0 0 1-6.66-1.82l-.48-.28-5.02 1.32 1.34-4.9-.31-.5a13.08 13.08 0 0 1-2.02-6.94c0-7.24 5.9-13.14 13.16-13.14 3.51 0 6.81 1.37 9.29 3.85a13.03 13.03 0 0 1 3.85 9.29c0 7.25-5.9 13.14-13.15 13.14Z'/%3E%3C/svg%3E");
  }

  .price-row { flex-direction: column; align-items: stretch; gap: 4px; }
  .price-row::before { display: none; }
  .price-row span, .price-row strong { background: transparent; padding: 0; }
}

@media (max-width: 480px) {
  .page-shell { width: min(100% - 16px, 1280px); }
  .topbar { padding: var(--space-3) max(14px, calc((100vw - 1280px) / 2)); }
  .brand { gap: 4px; max-width: none; }
  .brand > span:first-child { font-size: 1.35rem; }
  .brand-break { font-size: 0.66rem; letter-spacing: 0.28em; }

  .hero-content, .booking-content, .booking-form-card, .hours-card,
  .contact-panel, .about-intro, .info-card, .service-card, .pricing-card {
    padding: var(--space-4);
  }

  .pricing-card { padding: var(--space-4) var(--space-2); }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-card-large { grid-row: span 1; }

  .button, .link-button, .contact-links a { min-height: 50px; padding: 0 18px; font-size: 0.92rem; }
}

/* ==========================================================================
   ENHANCEMENTS — Polish, A11y, Mobile-CTA, Lightbox, Validation
   ========================================================================== */

/* --- Skip-Link (sichtbar erst bei Fokus) --- */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--ink-1);
  border: 1px solid var(--gold-bright);
  border-radius: var(--radius-sm);
  color: var(--gold-bright);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transform: translateY(-150%);
  transition: transform var(--dur-med) var(--ease-out);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(8px);
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* --- Globaler Focus-Ring fuer interaktive Elemente --- */
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* --- Aktive Section-Hervorhebung in der Sticky-Nav --- */
.nav-links a[aria-current="location"] {
  color: var(--gold-bright);
}

.nav-links a[aria-current="location"]::after {
  transform: scaleX(1);
  opacity: 1;
}

/* --- Booking-Form: native Validierungs-Stile --- */
.booking-field input:user-invalid:not(:placeholder-shown),
.booking-field select:user-invalid {
  border-color: rgba(232, 110, 96, 0.55);
  box-shadow: 0 0 0 4px rgba(232, 110, 96, 0.10);
}

.booking-field input:user-valid:not(:placeholder-shown),
.booking-field select:user-valid {
  border-color: rgba(245, 212, 134, 0.55);
}

/* Submit-Loading-State */
.booking-submit[aria-busy="true"] {
  pointer-events: none;
  opacity: 0.85;
}

.booking-submit[aria-busy="true"]::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  animation: bookingSpin 0.7s linear infinite;
  vertical-align: -3px;
}

@keyframes bookingSpin {
  to { transform: rotate(360deg); }
}

/* --- Hero: zusaetzliche Lesbarkeitsschicht --- */
.hero-gradient {
  background:
    linear-gradient(105deg, rgba(7, 9, 12, 0.72) 0%, rgba(7, 9, 12, 0.30) 35%, transparent 60%),
    linear-gradient(180deg, transparent 30%, rgba(7, 9, 12, 0.55) 100%);
}

/* --- Galerie: Buttons als Karten --- */
.gallery-card-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(245, 212, 134, 0.1);
  border-radius: var(--radius-lg);
  background: transparent;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  text-align: left;
}

.gallery-card-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-med) var(--ease-out);
}

.gallery-card-trigger:hover img,
.gallery-card-trigger:focus-visible img {
  transform: scale(1.04);
  filter: brightness(1.05) saturate(1.08);
}

/* --- Lightbox --- */
.lightbox {
  width: min(96vw, 1200px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cream);
}

.lightbox::backdrop {
  background: rgba(7, 9, 12, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
}

.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.lightbox-image-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
  line-height: 0;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-cinematic);
  background: var(--ink-2);
}

.lightbox-caption {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--cream-soft);
  font-size: 1rem;
  text-align: center;
  max-width: 60ch;
}

.lightbox-caption:empty { display: none; }

.lightbox-close,
.lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(245, 212, 134, 0.32);
  border-radius: var(--radius-pill);
  background: rgba(11, 15, 20, 0.7);
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(7, 9, 12, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: rgba(245, 212, 134, 0.12);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.lightbox-nav:hover { transform: scale(1.06); }

@media (max-width: 640px) {
  .lightbox[open] {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    gap: var(--space-3);
  }
  .lightbox-figure {
    grid-row: 1;
    grid-column: 1;
  }
  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
    grid-column: 1;
  }
  .lightbox-prev { justify-self: start; margin-left: 12px; }
  .lightbox-next { justify-self: end; margin-right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox-nav:hover { transform: none; }
}

/* --- Sticky Mobile-CTA --- */
.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 30;
  display: none;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: calc(100vw - 32px);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--ink-0);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 14px 36px rgba(7, 9, 12, 0.5);
  transform: translate(-50%, 120%);
  transition: transform var(--dur-med) var(--ease-out);
}

.mobile-cta.is-visible {
  transform: translate(-50%, 0);
}

.mobile-cta-arrow {
  font-size: 1.1rem;
  transition: transform var(--dur-fast) var(--ease-out);
}

.mobile-cta:hover .mobile-cta-arrow,
.mobile-cta:focus-visible .mobile-cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .mobile-cta { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-cta { transition: none; }
}

/* --- Mobile-Politur: Hero h1, Eyebrow, Tap-Target Akkordeon --- */
@media (max-width: 640px) {
  .hero-content h1 {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
    line-height: 1.05;
  }
  .hero-content .eyebrow { display: inline-flex; }
  .price-summary { padding: var(--space-4) var(--space-3); min-height: 56px; }
}

@media (max-width: 768px) {
  /* Floating-WhatsApp leicht heben, damit er nicht mit Mobile-CTA kollidiert */
  .floating-whatsapp { bottom: 84px; }

  /* Impressum / Datenschutz im Footer breit, zentriert wie Social-Buttons */
  .footer-top {
    align-items: stretch;
  }
  .footer-links {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  .footer .link-button {
    width: 100%;
    min-height: 50px;
    justify-content: center;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 1px solid rgba(245, 212, 134, 0.22);
    border-radius: var(--radius-pill);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  }
  .footer .link-button:hover,
  .footer .link-button:focus-visible {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    background: linear-gradient(180deg, rgba(245, 212, 134, 0.08), rgba(255, 255, 255, 0.02));
  }
}

/* --- Legal-Modal Mobile-Politur (Vollbild) --- */
@media (max-width: 640px) {
  .legal-modal {
    width: 100%;
    max-width: none;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
    border: 0;
    background:
      linear-gradient(180deg, rgba(34, 44, 56, 0.99) 0%, rgba(20, 28, 35, 0.99) 100%);
  }
  .legal-modal::backdrop {
    background: rgba(0, 0, 0, 0.66);
  }
  .legal-modal[open] {
    animation: legalModalUp var(--dur-med) var(--ease-out);
  }
  .modal-head {
    position: sticky;
    top: 0;
    padding: 14px 18px;
  }
  .modal-body { padding: 18px 18px 32px; }
  .modal-head h2 { font-size: 1.35rem; }
  .modal-body p { font-size: 1rem; line-height: 1.7; }
  .modal-body p + p { margin-top: 0.85em; }
  .modal-close { min-width: 48px; min-height: 48px; font-size: 1.4rem; }
}

@keyframes legalModalUp {
  from { transform: translateY(2%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .legal-modal[open] { animation: none; }
}

/* Sehr kleine Devices: weniger gedraengter Innenabstand */
@media (max-width: 380px) {
  .hero-content,
  .booking-content,
  .booking-form-card,
  .hours-card,
  .contact-panel,
  .info-card,
  .service-card,
  .pricing-card {
    padding: 18px 14px;
  }
  .price-row::before { display: none; }
  .price-row span,
  .price-row strong { background: transparent; padding: 0; }
}
