*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
a { text-decoration: none; color: inherit; }
html { scroll-behavior:smooth; scroll-padding-top: 72px; }

:root {
  --black:  #F2F5FB;
  --dark:   #E6EAF5;
  --card:   #FFFFFF;
  --border: rgba(14,30,61,0.09);
  --gold:   #1B3A72;
  --gold2:  #2549A4;
  --white:  #0E1E3D;
  --muted:  rgba(14,30,61,0.62);
  --r: 16px;
}

body {
  font-family: 'Epilogue', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── GRAIN TEXTURE ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(242,245,251,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo span { color: var(--gold); }

nav { display: flex; align-items: center; gap: 32px; }

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 52px;
}

nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

nav a:hover { color: var(--white); }

.nav-status-link {
  position: relative;
  padding-left: 20px;
  color: var(--muted) !important;
}
.nav-status-link::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: var(--border);
}

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-family: 'Syne', sans-serif;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover { background: var(--gold2) !important; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 140px 48px 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(27,58,114,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(27,58,114,0.05) 0%, transparent 60%);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-tag::before,
.hero-tag::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
  color: var(--white);
}

.hero h1 .accent { color: var(--gold); }
.hero h1 .thin { font-weight: 400; color: var(--muted); }

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 52px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 32px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  border: none; cursor: pointer;
}

.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(27,58,114,0.18); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.3); }

/* HERO STATS */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  justify-content: center;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--muted); font-weight: 300; }

/* ── SECTIONS ── */
section { padding: 120px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 64px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Kontakt – keep left-aligned */
.contact-section .section-tag { justify-content: flex-start; }
.contact-section .section-title { text-align: left; }
.contact-section .section-sub { text-align: left; margin-left: 0; }

/* ── SERVICES ── */
.services-section { background: var(--dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.service-card {
  background: var(--card);
  padding: 40px 36px;
  position: relative;
  transition: background 0.25s;
  cursor: default;
}

.service-card:hover { background: #EDF0FA; }

.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.7;
}

.service-icon {
  width: 44px; height: 44px;
  background: rgba(27,58,114,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── WHY ── */
.why-section { background: var(--black); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  transition: border-color 0.2s, transform 0.2s;
}

.why-card:hover { border-color: rgba(27,58,114,0.22); transform: translateY(-2px); }

.why-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 16px;
}

.why-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.why-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── PRICE ── */
.price-section {
  background: var(--dark);
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.price-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.price-title {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.price-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.price-list li {
  font-size: 15px;
  color: rgba(14,30,61,0.62);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 300;
}

.price-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.price-right { text-align: center; }

.price-from {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-num {
  font-family: 'Syne', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 8px;
}

.price-unit { font-size: 14px; color: var(--muted); margin-bottom: 32px; }

.rot-badge {
  display: inline-block;
  background: rgba(27,58,114,0.09);
  border: 1px solid rgba(27,58,114,0.22);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  padding: 10px 22px;
  border-radius: 100px;
  margin-bottom: 28px;
}

/* ── CONTACT ── */
.contact-section { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 14px; }

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.2s;
}

.contact-card:hover { border-color: rgba(27,58,114,0.22); transform: translateX(4px); }

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(27,58,114,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-val { font-size: 16px; font-weight: 500; font-family: 'Syne', sans-serif; }

/* FORM */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}

.contact-form h3 {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--white);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }

.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(14,30,61,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'Epilogue', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(14,30,61,0.3); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(27,58,114,0.45); }

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(14,30,61,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--card); }
.form-group textarea { min-height: 110px; resize: vertical; }

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

.form-submit:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(27,58,114,0.15); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.footer-logo span { color: var(--gold); }
.footer-text { font-size: 13px; color: var(--muted); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag   { animation: fadeUp 0.7s 0.1s ease both; }
.hero h1    { animation: fadeUp 0.7s 0.2s ease both; }
.hero-sub   { animation: fadeUp 0.7s 0.35s ease both; }
.hero-btns  { animation: fadeUp 0.7s 0.45s ease both; }
.hero-stats { animation: fadeUp 0.7s 0.55s ease both; }


/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 44px; height: 44px;
  flex-shrink: 0;
  position: relative; z-index: 101;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1),
#nav-check:checked ~ header .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2),
#nav-check:checked ~ header .hamburger span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3),
#nav-check:checked ~ header .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(242,245,251,0.98);
  border-bottom: 1px solid var(--border);
  z-index: 99999;
  display: none;
  flex-direction: column;
  padding: 16px 0 24px;
}
.mobile-menu.open,
#nav-check:checked ~ .mobile-menu { display: flex; }
.mobile-link {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.mobile-link:hover { color: var(--white); background: rgba(14,30,61,0.05); }
.mobile-link--cta {
  margin: 12px 24px 0;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--black) !important;
  border-radius: 100px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  text-align: center;
}
.mobile-link--cta:hover { background: var(--gold2) !important; }

/* ── HERO CANVAS & ORBS ── */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-orb--1 {
  width: 500px; height: 500px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(27,58,114,0.11) 0%, transparent 70%);
}
.hero-orb--2 {
  width: 350px; height: 350px;
  bottom: 0; left: 10%;
  background: radial-gradient(circle, rgba(27,58,114,0.07) 0%, transparent 70%);
}
.hero-orb--3 {
  width: 250px; height: 250px;
  top: 40%; right: 20%;
  background: radial-gradient(circle, rgba(27,58,114,0.05) 0%, transparent 70%);
}

/* ── PROCESS SECTION ── */
.process-section { background: var(--dark); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 64px;
}

.process-step {
  flex: 1;
  padding: 40px 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.process-step:hover { border-color: rgba(27,58,114,0.18); transform: translateY(-3px); }

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  align-self: center;
  color: var(--muted);
  opacity: 0.5;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 24px;
}
.step-icon {
  width: 44px; height: 44px;
  background: rgba(27,58,114,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── GALLERY ── */
.gallery-section { background: var(--black); overflow: hidden; }
.gallery-section .section-inner { margin-bottom: 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 400px;
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 4px;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  filter: brightness(0.92);
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(1); }

/* ── REVIEWS ── */
.reviews-section { background: var(--dark); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover { border-color: rgba(27,58,114,0.18); transform: translateY(-2px); }

.review-stars { display: flex; gap: 4px; }

.review-text {
  font-size: 15px;
  color: rgba(14,30,61,0.68);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}

.review-author { margin-top: auto; }
.review-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.review-meta { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  background: var(--gold);
  color: var(--black);
  padding: 14px 24px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(27,58,114,0.22);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.sticky-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta:hover { background: var(--gold2); }

/* ── FORM STATES ── */
.form-inline-err {
  display: none;
  font-size: 13px;
  color: #f87171;
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px 0 8px;
}
.form-success-icon {
  width: 52px; height: 52px;
  background: rgba(27,58,114,0.09);
  border: 1px solid rgba(27,58,114,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}
.form-success h4 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.form-success p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }

.booking-id-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(27,58,114,0.07);
  border: 1px solid rgba(27,58,114,0.15);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.booking-id-display span:last-child {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 15px;
}

.btn-status-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  border: 1px solid rgba(27,58,114,0.22);
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-status-link:hover { background: rgba(27,58,114,0.07); border-color: rgba(27,58,114,0.45); }

/* ── ROUTE ROW ── */
.route-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.route-row select { flex: 1; }
.route-arrow {
  flex-shrink: 0;
  color: var(--muted);
  display: flex; align-items: center;
}

/* ── MISC ── */
.btn-gold--full { width: 100%; justify-content: center; margin-top: 8px; }
.contact-card--static { cursor: default; }
.contact-card--static:hover { transform: none; border-color: var(--border); }

.footer-status-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-status-link:hover { color: var(--gold); }



/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  header { padding: 0 24px; gap: 12px; }
  .hero { padding: 120px 24px 80px; }
  section { padding: 80px 24px; }
  .hero h1 { font-size: clamp(44px, 12vw, 80px); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .price-card { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .price-right { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  nav .nav-links { display: none; }
  nav .nav-cta { display: none; }
  nav { gap: 12px; }
  .hamburger { display: flex; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; }

  .process-steps {
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
  }
  .process-arrow { transform: rotate(90deg); align-self: flex-start; margin-left: 36px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px;
    max-height: none;
  }
  .gallery-item--tall { grid-column: span 2; }

  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .reviews-grid .reveal:nth-child(2),
  .reviews-grid .reveal:nth-child(3) { display: block; }
}

@media (max-width: 600px) {
  header { padding: 0 16px; }
  .hero { padding: 100px 16px 72px; }
  section { padding: 64px 16px; }

  .hero h1 { font-size: clamp(38px, 13vw, 64px); line-height: 0.9; }
  .hero-sub { font-size: 15px; margin-bottom: 36px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-gold, .btn-ghost { width: 100%; justify-content: center; }

  .hero-stats {
    gap: 20px 32px;
    margin-top: 52px;
    padding-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stat-num { font-size: 32px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }

  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 28px 24px; }
  .why-number { font-size: 36px; }

  .process-step { padding: 28px 24px; }
  .process-arrow { display: none; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    max-height: none;
    gap: 4px;
  }
  .gallery-item { height: 240px; }
  .gallery-item--tall { grid-column: auto; height: 280px; }

  .review-card { padding: 24px 20px; }

  .price-card { padding: 28px 20px; }
  .price-title { font-size: 26px; }
  .price-num { font-size: 64px; }
  .rot-badge { font-size: 12px; padding: 8px 16px; }

  .contact-form { padding: 24px 20px; }
  .route-row { flex-direction: column; align-items: stretch; gap: 8px; }
  .route-arrow { display: none; }

  .sticky-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }

  footer { padding: 32px 16px; }
  .section-title { font-size: clamp(28px, 9vw, 44px); }
}