@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #242424;
  --white: #FFFFFF;
  --gray: rgba(255,255,255,0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
h1 { font-size: clamp(52px, 7vw, 92px); line-height: 1.0; letter-spacing: -1px; }
h2 { font-size: clamp(34px, 4vw, 58px); line-height: 1.1; }
h3 { font-size: clamp(22px, 2.5vw, 30px); }
em { font-style: italic; color: var(--gold); }
p { font-weight: 300; line-height: 1.85; color: var(--gray); }

/* ── HELPERS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-pad { padding: 110px 0; }
.section-label {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.gold-line { width: 60px; height: 1px; background: var(--gold); margin: 28px 0; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

.btn {
  display: inline-block; padding: 15px 40px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  transition: all 0.3s; border: none;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 35px rgba(201,168,76,0.28); }
.btn-outline-gold { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }
.btn-outline-white { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { border-color: var(--white); color: var(--white); }

/* ── NAVIGATION ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(10,10,10,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: all 0.3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 48px;
}
@media (max-width: 640px) {
  .nav-inner { height: 60px; padding: 0 18px; }
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; letter-spacing: 5px; color: var(--gold); }
.nav-logo span { color: rgba(255,255,255,0.5); }
.nav-menu { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-menu a {
  font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.65); transition: color 0.3s; position: relative; padding-bottom: 2px;
}
.nav-menu a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-cta { background: var(--gold); color: var(--black) !important; padding: 9px 22px; font-size: 11px; font-weight: 600 !important; letter-spacing: 2px; transition: background 0.3s !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 24px; height: 1px; background: var(--white); transition: all 0.3s; display: block; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile { display: none; flex-direction: column; background: var(--dark); border-top: 1px solid rgba(201,168,76,0.1); padding: 24px 32px 32px; gap: 0; }
.nav-mobile a { font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.3s; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  background: #0A0A0A;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
}
.hero-content { position: relative; z-index: 2; padding-top: 72px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: calc(100vh - 72px); align-items: stretch; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 80px 60px 80px 0; }
.hero-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; display: flex; align-items: center; gap: 14px; }
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.hero-title { margin-bottom: 28px; }
.hero-subtitle { font-size: 16px; max-width: 420px; margin-bottom: 48px; line-height: 1.9; }
.hero-badges { display: flex; gap: 20px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.55); }
.hero-badge-icon { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; }
.hero-right-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(15%); }
.hero-right-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,0.5) 0%, transparent 40%); }
.hero-right-stat {
  position: absolute; bottom: 48px; left: -24px;
  background: var(--gold); padding: 22px 28px; text-align: center;
}
.hero-right-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: var(--black); line-height: 1; }
.hero-right-stat .lbl { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,0.6); margin-top: 4px; }

/* ── PAGE HEADER (innere Seiten) ── */
.page-header {
  padding: 140px 0 80px; background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-header-inner { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(40px, 5vw, 70px); margin-bottom: 16px; }
.page-header p { font-size: 15px; max-width: 500px; }

/* ── NOTICE BAR ── */
.notice-bar { background: var(--dark2); border-top: 2px solid var(--gold); border-bottom: 1px solid rgba(255,255,255,0.05); }
.notice-inner { display: flex; gap: 0; }
.notice-item { flex: 1; padding: 28px 32px; border-right: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 16px; }
.notice-item:last-child { border-right: none; }
.notice-icon { font-size: 22px; flex-shrink: 0; }
.notice-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.notice-text span { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ── GALLERY MOSAIC ── */
.gallery-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 380px 380px; gap: 4px; }
.gm-item { overflow: hidden; position: relative; }
.gm-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(15%); transition: filter 0.5s, transform 0.6s; }
.gm-item:hover img { filter: grayscale(0%); transform: scale(1.04); }
.gm-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gm-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.gm-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.gm-item:nth-child(4) { grid-column: span 4; grid-row: span 1; }
.gm-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }
.gm-item:nth-child(6) { grid-column: span 7; grid-row: span 1; }
.gm-label { position: absolute; bottom: 14px; left: 14px; background: rgba(10,10,10,0.75); padding: 4px 12px; font-size: 11px; letter-spacing: 1.5px; color: var(--gold); opacity: 0; transition: opacity 0.3s; }
.gm-item:hover .gm-label { opacity: 1; }

/* Mobile: hide desktop gallery, show scroll strip */
.mob-gallery-scroll { display: none; }
.desk-only { display: grid; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { background: var(--dark2); padding: 44px 36px; position: relative; overflow: hidden; transition: background 0.4s, transform 0.3s; border: 1px solid rgba(255,255,255,0.04); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.4s; }
.service-card:hover { background: var(--dark3); transform: translateY(-4px); }
.service-card:hover::after { width: 100%; }
.sc-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: rgba(201,168,76,0.18); line-height: 1; margin-bottom: 20px; }
.sc-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; margin-bottom: 14px; }
.sc-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.48); line-height: 1.8; }
.sc-badge { display: inline-block; margin-top: 16px; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); padding: 4px 12px; }

/* ── PRICES ── */
.prices-section { background: var(--dark); }
.price-tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 56px; }
.price-tab-btn { padding: 14px 36px; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); background: none; border: none; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.3s; }
.price-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.price-tab-btn:hover:not(.active) { color: rgba(255,255,255,0.7); }
.price-panel { display: none; }
.price-panel.active { display: block; }
.price-panels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.price-group { margin-bottom: 44px; }
.price-group-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--gold); margin-bottom: 6px; }
.price-group-sub { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.price-row:hover { background: rgba(201,168,76,0.03); padding-left: 6px; transition: padding 0.2s; }
.price-row .name { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.78); }
.price-row .price { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--gold); font-weight: 300; white-space: nowrap; }
.price-note { font-size: 12px; color: rgba(255,255,255,0.3); font-style: italic; margin-top: 8px; }
.price-legend { display: flex; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; background: rgba(201,168,76,0.05); padding: 16px 20px; border-left: 2px solid var(--gold); }
.price-legend span { font-size: 12px; color: rgba(255,255,255,0.55); }
.price-legend strong { color: var(--gold); }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-images { position: relative; height: 600px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 76%; height: 82%; object-fit: cover; object-position: center top; filter: grayscale(20%); }
.about-img-accent { position: absolute; bottom: 0; right: 0; width: 50%; height: 50%; object-fit: cover; border: 4px solid var(--dark); filter: grayscale(20%); }
.about-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--gold); width: 120px; height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2; }
.about-badge .yr { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 300; color: var(--black); line-height: 1; }
.about-badge .snc { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,0.55); margin-top: 3px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; padding-top: 44px; border-top: 1px solid rgba(255,255,255,0.08); }
.ast-num { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 300; color: var(--gold); line-height: 1; }
.ast-lbl { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.38); letter-spacing: 1px; margin-top: 5px; }

/* ── OPENING HOURS ── */
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; }
.hours-list .day { font-weight: 400; color: var(--white); }
.hours-list .time { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--gold); }
.hours-list .closed .time { color: rgba(255,255,255,0.28); font-style: italic; font-size: 15px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.contact-card { background: var(--dark2); padding: 44px 36px; border: 1px solid rgba(255,255,255,0.04); transition: border-color 0.3s; }
.contact-card:hover { border-color: rgba(201,168,76,0.25); }
.contact-icon { font-size: 32px; margin-bottom: 22px; }
.contact-lbl { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.contact-val { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; }
.contact-val a { color: var(--white); transition: color 0.3s; }
.contact-val a:hover { color: var(--gold); }
.contact-sub { font-size: 13px; color: rgba(255,255,255,0.38); margin-top: 8px; line-height: 1.7; }

/* ── BOOKING FORM ── */
.booking-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.booking-sidebar {}
.booking-form-wrap { background: var(--dark); padding: 52px; border: 1px solid rgba(255,255,255,0.06); }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 300; margin-bottom: 8px; }
.form-subtitle { font-size: 13px; color: rgba(255,255,255,0.38); margin-bottom: 40px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fgroup { margin-bottom: 22px; }
.fgroup label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.fgroup input, .fgroup select, .fgroup textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); padding: 14px 16px; font-size: 14px; font-family: 'Barlow', sans-serif;
  outline: none; transition: border-color 0.3s; appearance: none;
}
.fgroup select option { background: #1A1A1A; color: var(--white); }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.fgroup input::placeholder, .fgroup textarea::placeholder { color: rgba(255,255,255,0.22); }
.fgroup textarea { height: 100px; resize: none; }
.gender-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gender-btn input[type=radio] { display: none; }
.gender-btn label {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border: 1px solid rgba(255,255,255,0.1); cursor: pointer;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.45); transition: all 0.3s;
}
.gender-btn input:checked + label { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.07); }
.lady-hint { display: none; background: rgba(201,168,76,0.07); border-left: 2px solid var(--gold); padding: 12px 16px; font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.gent-hint { display: none; background: rgba(255,255,255,0.03); border-left: 2px solid rgba(255,255,255,0.2); padding: 12px 16px; font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 22px; }
.form-submit-btn { width: 100%; background: var(--gold); color: var(--black); border: none; padding: 18px; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; margin-top: 10px; }
.form-submit-btn:hover { background: var(--gold-light); }
.form-error { color: #e05555; font-size: 12px; margin-top: 6px; display: none; }
.form-error.show { display: block; }
.success-box { text-align: center; padding: 60px 24px; display: none; }
.success-box .check { width: 70px; height: 70px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 30px; color: var(--gold); }
.success-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; margin-bottom: 14px; }
.success-box p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; }
.alert-box { padding: 14px 18px; margin-bottom: 22px; font-size: 13px; border-radius: 0; display: none; }
.alert-box.show { display: block; }
.alert-success { background: rgba(78,200,122,0.1); border-left: 3px solid #4ec87a; color: #4ec87a; }
.alert-error { background: rgba(224,85,85,0.1); border-left: 3px solid #e05555; color: #e05555; }

/* ── FOOTER ── */
footer { background: #060606; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding: 64px 0; }
.footer-brand {}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; letter-spacing: 5px; color: var(--gold); margin-bottom: 16px; }
.footer-logo span { color: rgba(255,255,255,0.38); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col p { font-size: 13px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 1px; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* ── ADMIN ── */
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.admin-login-box { background: var(--dark); border: 1px solid rgba(201,168,76,0.2); padding: 60px 48px; width: 100%; max-width: 420px; text-align: center; }
.admin-wrap { padding-top: 72px; min-height: 100vh; }
.admin-topbar { background: var(--dark); border-bottom: 1px solid rgba(201,168,76,0.12); padding: 0 48px; height: 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 72px; z-index: 50; }
.admin-topbar .title { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.admin-actions { display: flex; gap: 12px; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 40px; }
.stat-card { background: var(--dark); border: 1px solid rgba(255,255,255,0.05); padding: 28px 24px; }
.stat-card .snum { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-card .slbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 8px; }
.filter-row { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; align-items: center; }
.filter-row input, .filter-row select { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: var(--white); padding: 10px 14px; font-size: 13px; font-family: 'Barlow', sans-serif; outline: none; }
.filter-row input:focus, .filter-row select:focus { border-color: var(--gold); }
.filter-row select option { background: var(--dark2); }
.tbl-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
thead th { text-align: left; padding: 12px 16px; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); border-bottom: 1px solid rgba(201,168,76,0.15); white-space: nowrap; }
tbody tr { border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.2s; }
tbody tr:hover { background: rgba(201,168,76,0.04); }
tbody td { padding: 15px 16px; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.72); vertical-align: middle; }
.badge { display: inline-block; padding: 3px 10px; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.badge-new { background: rgba(201,168,76,0.14); color: var(--gold); border: 1px solid rgba(201,168,76,0.28); }
.badge-confirmed { background: rgba(78,200,122,0.12); color: #4ec87a; border: 1px solid rgba(78,200,122,0.28); }
.badge-cancelled { background: rgba(224,85,85,0.12); color: #e05555; border: 1px solid rgba(224,85,85,0.28); }
.badge-dame { background: rgba(180,100,220,0.12); color: #d088f0; border: 1px solid rgba(180,100,220,0.22); }
.badge-herr { background: rgba(80,160,240,0.12); color: #6ab4f5; border: 1px solid rgba(80,160,240,0.22); }
.action-btns { display: flex; gap: 6px; }
.abtn { padding: 5px 10px; font-size: 10px; font-weight: 600; letter-spacing: 1px; border: none; cursor: pointer; transition: all 0.2s; text-transform: uppercase; }
.abtn-green { background: rgba(78,200,122,0.13); color: #4ec87a; border: 1px solid rgba(78,200,122,0.28); }
.abtn-red { background: rgba(224,85,85,0.1); color: #e05555; border: 1px solid rgba(224,85,85,0.28); }
.abtn-del { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.08); }
.abtn-del:hover { background: rgba(224,85,85,0.1); color: #e05555; }
.empty-tbl { text-align: center; padding: 70px; }
.empty-tbl .ei { font-size: 44px; opacity: 0.35; margin-bottom: 16px; }
.empty-tbl p { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: rgba(255,255,255,0.3); }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 800; display: none; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--dark); border: 1px solid rgba(201,168,76,0.18); padding: 48px; max-width: 520px; width: 90%; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close-btn { position: absolute; top: 16px; right: 20px; background: none; border: none; color: rgba(255,255,255,0.3); font-size: 22px; cursor: pointer; transition: color 0.2s; }
.modal-close-btn:hover { color: var(--gold); }
.modal-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13px; }
.modal-row .mk { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.modal-row .mv { color: var(--white); text-align: right; max-width: 300px; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-1 { transition-delay: 0.1s; }
.reveal-2 { transition-delay: 0.2s; }
.reveal-3 { transition-delay: 0.3s; }
.reveal-4 { transition-delay: 0.4s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.hero-anim-1 { animation: fadeUp 0.8s 0.1s both; }
.hero-anim-2 { animation: fadeUp 0.8s 0.3s both; }
.hero-anim-3 { animation: fadeUp 0.8s 0.5s both; }
.hero-anim-4 { animation: fadeUp 0.8s 0.7s both; }


/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .nav-menu, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { height: 380px; }
  .hero-left { padding: 48px 0 32px; }
  .hero-right-stat { left: 16px; bottom: 16px; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gm-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 200px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .price-panels-grid { grid-template-columns: 1fr; gap: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 340px; }
  .notice-inner { flex-wrap: wrap; }
  .notice-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .admin-topbar { padding: 0 20px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤640px)
   Modern, clean, full-width design
══════════════════════════════════════ */
@media (max-width: 640px) {

  /* Base */
  .container { padding: 0 16px; }
  .section-pad { padding: 56px 0; }

  /* ── NAV ── */
  #navbar { border-bottom: 1px solid rgba(201,168,76,0.15); }
  .nav-inner { height: 58px; padding: 0 16px; }
  .nav-inner img { height: 36px !important; }
  .nav-mobile { padding: 20px 16px 28px; }
  .nav-mobile a { padding: 14px 0; font-size: 14px; }

  /* ── HERO ── */
  .hero { min-height: auto; background: var(--black); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { padding-top: 58px; }
  /* Image FIRST on mobile */
  .hero-right { height: 56vw; min-height: 220px; max-height: 320px; order: 0; }
  .hero-right-stat { display: none; }
  .hero-left { order: 1; padding: 28px 0 36px; }
  h1 { font-size: clamp(34px, 9vw, 46px); line-height: 1.05; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 3px; margin-bottom: 14px; }
  .hero-title { margin-bottom: 14px; }
  .hero-subtitle { font-size: 14px; line-height: 1.8; margin-bottom: 22px; max-width: 100%; }
  .hero-badges { gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
  .hero-badge { font-size: 12px; }
  .hero-badge-icon { width: 32px; height: 32px; font-size: 15px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn, .hero-btns button { width: 100%; text-align: center; padding: 16px 20px; font-size: 11px; }

  /* ── NOTICE BAR ── */
  .notice-inner { flex-direction: column; gap: 0; }
  .notice-item { flex: 1 1 100%; padding: 14px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .notice-icon { font-size: 20px; }
  .notice-text strong { font-size: 13px; }
  .notice-text span { font-size: 12px; }

  /* ── GALLERY: horizontal scroll on mobile ── */
  .mob-gallery-scroll {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 0 16px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mob-gallery-scroll::-webkit-scrollbar { display: none; }
  .mob-gal-item {
    flex: 0 0 72vw;
    height: 56vw;
    min-height: 200px;
    max-height: 280px;
    overflow: hidden;
    border-radius: 0;
    position: relative;
  }
  .mob-gal-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  /* hide desktop gallery on mobile */
  .desk-only { display: none !important; }

  /* ── SECTION HEADINGS ── */
  h2 { font-size: clamp(28px, 7vw, 38px); }
  .section-label { font-size: 9px; }

  /* ── SERVICES ── */
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { padding: 26px 20px; }
  .sc-num { font-size: 40px; margin-bottom: 12px; }
  .sc-name { font-size: 22px; }
  .sc-desc { font-size: 13px; }

  /* ── ABOUT ── */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-images { height: 70vw; min-height: 240px; max-height: 320px; }
  .about-img-accent { width: 44%; height: 46%; }
  .about-badge { width: 80px; height: 80px; }
  .about-badge .yr { font-size: 26px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; padding-top: 24px; }
  .ast-num { font-size: 36px; }

  /* ── PRICES ── */
  .price-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price-tab-btn { padding: 12px 18px; font-size: 10px; white-space: nowrap; }
  .price-panels-grid { grid-template-columns: 1fr; }
  .price-row .name { font-size: 13px; }
  .price-row .price { font-size: 18px; }

  /* ── CONTACT ── */
  .contact-card { padding: 24px 18px; }
  .contact-icon { font-size: 26px; margin-bottom: 14px; }
  .contact-val { font-size: 17px; }

  /* ── CTA BANNER ── */
  section[style*="padding:72px"] { padding: 48px 0 !important; }
  section[style*="padding:80px"] { padding: 48px 0 !important; }

  /* ── FOOTER ── */
  .footer-top { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
  .footer-logo { font-size: 20px; }
  .footer-tagline { font-size: 12px; }
  .footer-col h4 { margin-bottom: 14px; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-bottom { flex-direction: column; gap: 12px; padding: 16px 0; text-align: center; }
  .footer-copy { font-size: 11px; }

  /* ── PAGE HEADERS ── */
  .page-header { padding: 96px 0 44px; }
  .page-header h1 { font-size: clamp(30px, 8vw, 44px); }

  /* ── ADMIN ── */
  .stats-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-card { padding: 16px 12px; }
  .stat-card .snum { font-size: 32px; }
  .filter-row { flex-direction: column; }
  .filter-row input, .filter-row select { width: 100%; }
  tbody td { font-size: 11px; padding: 10px 6px; }
  thead th { padding: 10px 6px; font-size: 9px; }
  .action-btns { flex-direction: column; gap: 4px; }

  /* ── FLOATING BUTTON ── */
  #floatBtn { width: 54px !important; height: 54px !important; bottom: 18px !important; right: 14px !important; box-shadow: 0 4px 20px rgba(201,168,76,0.5) !important; }
  #floatBtn svg { width: 20px !important; height: 20px !important; }
  #floatBtn span { font-size: 7px !important; }
}

/* ══════════════════════════════════════
   SAFARI / WEBKIT FIXES
══════════════════════════════════════ */
/* Prevent iOS zoom on input focus (inputs < 16px get zoomed) */
input, select, textarea { font-size: 16px !important; -webkit-text-size-adjust: 100%; }
/* But keep nav/btn text small */
.nav-menu a, .btn { font-size: revert; }

/* Fix Safari 100vh bug */
@supports (-webkit-touch-callout: none) {
  .hero { min-height: -webkit-fill-available; }
}

/* Fix sticky navbar on Safari iOS */
#navbar { -webkit-transform: translateZ(0); transform: translateZ(0); }

/* Fix backdrop-filter on older Safari */
@supports not (backdrop-filter: blur(1px)) {
  #navbar { background: rgba(10,10,10,0.99); }
}

/* Fix flex wrapping on Safari */
.hero-btns { -webkit-flex-wrap: wrap; flex-wrap: wrap; }
.notice-inner { -webkit-flex-wrap: wrap; flex-wrap: wrap; }

/* Fix date input Safari appearance */
input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  min-height: 44px;
}

/* Fix select Safari appearance */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Smooth scrolling for mobile gallery */
.mob-gallery-scroll {
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.mob-gal-item { scroll-snap-align: start; }

/* Fix popup on Safari iOS */
#bpOverlay {
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
}
