/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #f7f9fb;
  --bg-alt:    #eaf0f5;
  --white:     #ffffff;
  --ink:       #101c2b;
  --ink-soft:  #4d5d6c;
  --ink-faint: #8497a5;
  --line:      #d7e2ea;
  --blue:      #1670b3;
  --blue-deep: #0d3f61;
  --blue-soft: rgba(22,112,179,.08);
  --gold:      #b8863a;
  --gold-soft: rgba(184,134,58,.12);
  --radius:    8px;
  --shadow:    0 2px 14px rgba(13,63,97,.08);
  --transition:.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15; font-weight: 600; color: var(--ink);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--ink-soft); }
a  { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-deep); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,248,243,.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled { background: rgba(250,248,243,.98); box-shadow: 0 4px 26px rgba(13,63,97,.10); }
.navbar-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 11px;
  color: var(--ink); font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.28rem;
  text-decoration: none; letter-spacing: -.01em;
}
.navbar-logo-mark {
  height: 40px; width: auto; flex-shrink: 0; display: block;
}
.navbar-nav { display: flex; align-items: center; gap: 6px; list-style: none; }
.navbar-nav a {
  color: var(--ink-soft); font-size: .92rem; font-weight: 500;
  padding: 9px 16px; border-radius: 100px;
  transition: all var(--transition); text-decoration: none;
}
.navbar-nav a:hover,
.navbar-nav a.active { color: var(--ink); background: var(--bg-alt); }
.navbar-cta {
  background: var(--blue) !important; color: #fff !important; margin-left: 6px;
}
.navbar-cta:hover { background: var(--blue-deep) !important; color: #fff !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--transition); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: all var(--transition); text-decoration: none; border: 2px solid transparent;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-deep); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #9c6f2c; color: #fff; }

/* ===== HERO ===== */
.hero {
  padding: 168px 0 96px;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -140px; right: -160px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,112,179,.12), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; bottom: -180px; left: -140px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,58,.08), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-size: .82rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--blue); }
.hero-lead { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 36px; max-width: 480px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex; gap: 0; border-top: 1px solid var(--line); padding-top: 26px;
}
.trust-item { padding-right: 28px; margin-right: 28px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.trust-number { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 700; color: var(--ink); line-height: 1; }
.trust-label { font-size: .78rem; color: var(--ink-faint); margin-top: 5px; }

/* ===== HERO VISUAL (echtes Foto) ===== */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual-frame {
  width: 100%; max-width: 420px; aspect-ratio: 4/5;
  border-radius: 6px; overflow: hidden; position: relative;
  box-shadow: 0 30px 70px rgba(13,63,97,.22);
}
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-visual-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,46,.55) 0%, transparent 38%);
  pointer-events: none;
}
.hero-visual-tag {
  position: absolute; bottom: -18px; left: -18px; z-index: 2;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow);
  padding: 14px 20px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 700; color: var(--ink);
}
.hero-visual-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stats-strip-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 26px 22px; display: flex; align-items: center; gap: 14px;
  border-right: 1px solid var(--line);
}
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 1.3rem; flex-shrink: 0; }
.stat-text strong { display: block; font-size: .98rem; font-weight: 700; color: var(--ink); }
.stat-text span { font-size: .82rem; color: var(--ink-faint); }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--blue-deep); }
.section-header { margin-bottom: 56px; max-width: 640px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag::before { content: ''; width: 22px; height: 2px; background: var(--gold); display: inline-block; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.02rem; }
.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p { color: rgba(255,255,255,.6); }
.section-dark .section-tag { color: var(--gold); }

/* ===== SPLIT SECTION ===== */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px; overflow: hidden;
}
.split-visual {
  position: relative; overflow: hidden; background: var(--blue-deep);
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-content {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.split-content .section-tag { margin-bottom: 14px; }
.split-content h2 { margin-bottom: 18px; }
.split-content p { margin-bottom: 16px; font-size: 1rem; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature-card { background: var(--white); padding: 40px 34px; }
.feature-icon {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--blue); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 24px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: .93rem; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card {
  background: var(--white); padding: 38px 32px;
  transition: background var(--transition); display: flex; flex-direction: column;
}
.service-card:hover { background: var(--bg-alt); }
.service-icon {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 22px;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.08rem; }
.service-card p { font-size: .92rem; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-size: .87rem; font-weight: 600;
  margin-top: 20px; transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* ===== CHECKMARKS ===== */
.checkmarks { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.checkmarks li { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; color: var(--ink-soft); }
.checkmarks li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}

/* ===== PROCESS ===== */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.process-step { border-top: 2px solid var(--ink); padding-top: 20px; }
.step-number { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 14px; }
.process-step h3 { font-size: 1.02rem; margin-bottom: 8px; }
.process-step p { font-size: .88rem; }

/* ===== BOOKING EMBED ===== */
.booking-embed {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--white); max-width: 920px; margin: 0 auto;
}
.booking-embed iframe { width: 100%; height: 700px; border: none; display: block; }
@media (max-width: 600px) {
  .booking-embed iframe { height: 860px; }
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--blue); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); margin-bottom: 3px; }
.contact-item-text a, .contact-item-text span { font-size: .96rem; color: var(--ink); font-weight: 500; }

/* ===== FORM ===== */
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px; }
.contact-form h3 { margin-bottom: 26px; font-size: 1.25rem; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: .83rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
input, textarea, select {
  width: 100%; padding: 13px 16px; border-radius: 6px;
  border: 1.5px solid var(--line); font-size: .95rem;
  font-family: inherit; color: var(--ink);
  background: var(--bg); transition: border-color var(--transition); outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--blue); background: #fff; }
textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; color: var(--ink-soft); }
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; font-size: 1rem; padding: 15px; }
.required { color: var(--gold); }

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value-card { background: var(--white); padding: 34px; text-align: center; }
.value-icon { font-size: 1.9rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: .87rem; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 1.02rem; color: var(--ink);
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--blue); flex-shrink: 0;
  transition: transform var(--transition); line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; font-size: .94rem; max-width: 640px; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--blue-deep); padding: 84px 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.62); font-size: 1.03rem; margin-bottom: 34px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--bg-alt); padding: 148px 0 72px; border-bottom: 1px solid var(--line); }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); font-size: 1.03rem; max-width: 560px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--ink-faint); margin-bottom: 18px;
}
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--line); }

/* ===== FOOTER ===== */
.footer { background: #0a1c2c; padding: 60px 0 0; color: rgba(255,255,255,.55); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px; }
.footer-brand p { font-size: .87rem; line-height: 1.75; max-width: 280px; margin-top: 16px; }
.footer-col h4 {
  color: #fff; font-size: .8rem; font-weight: 700; font-family: 'Inter', sans-serif;
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,.55); font-size: .87rem; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; text-align: center; font-size: .82rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); margin: 0 12px; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ===== SERVICE DETAIL ===== */
.service-detail {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px;
  align-items: center; padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:first-child { padding-top: 0; }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { grid-template-columns: 1.15fr .85fr; }
.service-detail.reverse .service-detail-visual { order: 2; }
.service-detail-visual {
  background: var(--blue-deep); border-radius: 6px; overflow: hidden;
  aspect-ratio: 4/3; box-shadow: 0 20px 50px rgba(13,63,97,.16);
}
.service-detail-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-detail-text .section-tag { margin-bottom: 14px; }
.service-detail-text h2 { margin-bottom: 16px; font-size: 1.7rem; }
.service-detail-text p { margin-bottom: 14px; }
.service-detail-text ul { list-style: none; margin: 16px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.service-detail-text ul li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--ink-soft); }
.service-detail-text ul li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ===== INFO BOX ===== */
.info-box { background: var(--bg-alt); border-radius: 6px; padding: 22px 26px; margin: 16px 0; border-left: 3px solid var(--blue); }
.info-box p { margin: 0; font-size: .93rem; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 740px; margin: 0 auto; padding: 76px 24px 96px; }
.legal-content h1 { margin-bottom: 12px; font-size: 1.9rem; }
.legal-content .lead { color: var(--ink-faint); font-size: .98rem; margin-bottom: 44px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.legal-section { margin-bottom: 38px; }
.legal-section h2 { font-size: 1.1rem; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.legal-section h3 { font-size: 1rem; margin: 18px 0 8px; }
.legal-section p { font-size: .94rem; margin-bottom: 10px; }
.legal-section ul { padding-left: 20px; margin: 8px 0 14px; }
.legal-section ul li { font-size: .94rem; color: var(--ink-soft); margin-bottom: 5px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 600; font-size: .89rem; margin-bottom: 32px; }
.back-link:hover { gap: 12px; }
.toc { background: var(--bg-alt); border-radius: 6px; padding: 22px 26px; margin-bottom: 44px; }
.toc h3 { font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.toc ol { padding-left: 20px; }
.toc ol li { font-size: .89rem; margin-bottom: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-strip-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .split-section, .service-detail, .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-visual { order: 0; }
  .split-visual { min-height: 300px; }
  .split-content { padding: 56px 44px; }
  .features-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .navbar-nav.open {
    display: flex; flex-direction: column; gap: 4px;
    position: fixed; top: 76px; left: 0; right: 0; z-index: 999;
    background: var(--bg); padding: 16px 20px 24px; border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .navbar-nav.open a { padding: 12px 16px; font-size: .97rem; border-radius: 8px; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .page-hero { padding: 116px 0 52px; }
  .cta-banner { padding: 60px 0; }
  .hero { padding: 140px 0 64px; }
  .split-content { padding: 44px 28px; }
  .contact-form { padding: 30px 22px; }
  .features-grid, .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero-trust { flex-wrap: wrap; row-gap: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 44px 0; }
  .navbar-inner { padding: 0 18px; }
  .navbar-logo { font-size: 1.05rem; }
  .navbar-logo-mark { height: 34px; width: auto; }
  .hero-inner { padding: 0 18px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .values-grid, .process-steps, .stats-strip-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--line); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { text-align: center; justify-content: center; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== STICKY BOOKING CTA ===== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  display: flex; justify-content: center; padding: 14px 20px;
  background: rgba(247,249,251,.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.sticky-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sticky-cta .btn { width: 100%; max-width: 420px; justify-content: center; }
@media (min-width: 769px) {
  .sticky-cta {
    left: auto; right: 28px; bottom: 28px; padding: 0;
    background: none; border: none; backdrop-filter: none;
  }
  .sticky-cta .btn { width: auto; box-shadow: 0 12px 32px rgba(13,63,97,.32); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .sticky-cta { transition: none; }
}
