:root {
  --cream: #f4efe6;
  --cream-soft: #ece4d4;
  --charcoal: #1c1a17;
  --charcoal-soft: #4a443c;
  --gold: #b78c4f;
  --gold-light: #d9bd8b;
  --white: #fffdf9;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--gold); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 600;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(180deg, rgba(8, 7, 5, 0.6) 0%, rgba(8, 7, 5, 0.25) 65%, rgba(8, 7, 5, 0) 100%);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav.nav-scrolled {
  background: rgba(244, 239, 230, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
  box-shadow: 0 8px 30px rgba(28, 26, 23, 0.1);
}

.nav-logo {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.32em;
  padding-left: 0.32em;
  color: var(--white);
  transition: color 0.4s ease;
}

.nav.nav-scrolled .nav-logo { color: var(--charcoal); }

.nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.1rem);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.nav-links a {
  position: relative;
  padding: 0.2rem 0;
  color: var(--white);
  transition: color 0.4s ease;
}

.nav.nav-scrolled .nav-links:not(.nav-open) a { color: var(--charcoal); }

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--gold-light);
}

.nav.nav-scrolled .nav-links:not(.nav-open) a:not(.nav-cta):hover { color: var(--gold); }

.nav-links a:not(.nav-cta):hover::after { width: 100%; }

/* Language switch */
.lang-switch {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(244, 239, 230, 0.32);
  border-radius: 999px;
  color: var(--white);
  transition: border-color 0.4s ease, color 0.4s ease;
}

.nav.nav-scrolled .nav-links:not(.nav-open) .lang-switch { border-color: rgba(28, 26, 23, 0.16); color: var(--charcoal); }

.lang-switch button {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: inherit;
  opacity: 0.55;
  cursor: pointer;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.lang-switch button.is-active { opacity: 1; color: var(--gold-light); }
.nav.nav-scrolled .nav-links:not(.nav-open) .lang-switch button.is-active { color: var(--gold); }

.lang-switch-sep { font-size: 0.7rem; opacity: 0.3; }

.nav-cta {
  position: relative;
  z-index: 1;
  border: 1px solid var(--gold-light);
  background: rgba(183, 140, 79, 0.14);
  color: var(--white);
  font-weight: 500;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nav.nav-scrolled .nav-links:not(.nav-open) .nav-cta {
  color: var(--charcoal);
  border-color: var(--gold);
  background: rgba(183, 140, 79, 0.1);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(183, 140, 79, 0.35);
}

.nav-burger {
  position: relative;
  z-index: 1;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.4s ease;
}

.nav.nav-scrolled .nav-burger span { background: var(--charcoal); }

/* ---------- Page-wide scrubbed video background ---------- */
.page-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.1) saturate(1.05);
  z-index: -2;
}

.page-scrim {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,7,5,0.55) 0%, rgba(8,7,5,0.35) 40%, rgba(8,7,5,0.4) 60%, rgba(8,7,5,0.6) 100%);
  z-index: -1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 clamp(1.5rem, 8vw, 6rem);
  color: var(--white);
  margin-top: 2rem;
}

.hero-kicker {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.1;
  max-width: 780px;
}

.hero-sub {
  margin-top: 1.4rem;
  font-size: 1.05rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: 2.2rem 0 2.4rem;
}

.hero-fact { display: flex; flex-direction: column; gap: 0.3rem; }

.hero-fact-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.65);
}

.hero-fact-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-light);
}

.hero-cta { border-color: var(--gold-light); color: var(--white); }
.hero-cta:hover { color: var(--charcoal); }

/* ---------- Shared section styling ---------- */
section:not(.hero) {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 6vw, 6rem);
}

.section-head { position: relative; z-index: 1; text-align: center; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }

#rezerwacja .section-head .section-title,
#uslugi .section-head .section-title,
#galeria .section-head .section-title,
#opinie .section-head .section-title { color: var(--white); }

.section-kicker, .intro-kicker {
  display: block;
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
}

/* ---------- Booking widget ---------- */
.booking {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
  background: var(--white);
  color: var(--charcoal);
  border-radius: 18px;
  padding: 2.2rem clamp(1.2rem, 4vw, 2.6rem) 1.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  text-align: left;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

/* ---------- Stepper ---------- */
.booking-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 2.1rem;
}

.booking-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 16.6667%;
  right: 16.6667%;
  height: 1px;
  background: rgba(28, 26, 23, 0.12);
}

.booking-steps-fill {
  content: '';
  position: absolute;
  top: 15px;
  left: 16.6667%;
  right: 16.6667%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(var(--fill, 0));
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.booking-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  opacity: 0.55;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.booking-step::before {
  content: attr(data-step-label);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid currentColor;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.booking-step.is-active {
  opacity: 1;
  color: var(--gold);
}

.booking-step.is-active::before {
  transform: scale(1.08);
  box-shadow: 0 0 0 4px rgba(183, 140, 79, 0.15);
}

.booking-step.is-done {
  opacity: 1;
  color: var(--charcoal);
}

.booking-step.is-done::before {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.booking-pane { display: none; }
.booking-pane.is-active { display: block; animation: paneIn 0.4s ease; }

@keyframes paneIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Service option cards ---------- */
.booking-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.8rem;
}

.service-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--font-sans);
  background: var(--cream-soft);
  border: 1px solid rgba(28,26,23,0.1);
  border-radius: 12px;
  padding: 1.1rem 1.1rem 1rem;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-option::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120px 80px at 20% 0%, rgba(183, 140, 79, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-option:hover {
  border-color: var(--gold);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(28, 26, 23, 0.12);
}

.service-option:hover::after { opacity: 1; }

.service-option:active { transform: translateY(-1px) scale(0.98); }

.service-option-icon {
  position: relative;
  width: 26px;
  height: 26px;
  color: var(--gold);
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-option:hover .service-option-icon { transform: scale(1.12) rotate(-4deg); color: var(--gold); }

.service-option-name {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}

.service-option-price {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--charcoal-soft);
}

/* ---------- Day / hour pickers ---------- */
.booking-days button, .booking-hours button {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  background: var(--cream);
  border: 1px solid rgba(28,26,23,0.12);
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.booking-days button:hover, .booking-hours button:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(28, 26, 23, 0.1);
}

.booking-days button.is-selected, .booking-hours button.is-selected {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(183, 140, 79, 0.35);
}

.booking-days { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1rem; }
.booking-days button { min-width: 86px; text-align: center; }
.booking-days button span { display: block; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }
.booking-days button small { display: block; color: inherit; font-family: var(--font-serif); font-size: 1.2rem; margin-top: 0.15rem; }

.booking-hours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.55rem;
}

.booking-hour-tag {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.booking-hours button.is-selected .booking-hour-tag { color: var(--white); opacity: 0.85; }

.booking-back {
  margin-top: 1.2rem;
  background: none;
  border: none;
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  cursor: pointer;
  padding: 0.3rem 0;
}

.booking-back:hover { color: var(--gold); }

.booking-summary {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  font-size: 0.92rem;
  line-height: 2;
}

.booking-summary strong { font-weight: 600; }
.booking-summary .sum-price { color: var(--gold); }

.booking-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.booking-confirm { border-color: var(--gold); color: var(--charcoal); font-weight: 500; }

.booking-confirmed { text-align: center; padding: 1.6rem 0 0.6rem; }

.booking-confirmed-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.9rem;
  animation: popIn 0.45s cubic-bezier(0.2, 1.4, 0.4, 1);
}

@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }

.booking-confirmed p { font-size: 1.05rem; line-height: 1.6; }
.booking-confirmed small { color: var(--charcoal-soft); font-size: 0.82rem; }

.booking-note {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 0.72rem;
  color: var(--charcoal-soft);
  letter-spacing: 0.03em;
}

/* ---------- Ox-Ram showcase ---------- */
.oxram { color: var(--cream); text-align: center; }
.oxram-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.oxram-logo {
  display: block;
  width: clamp(90px, 12vw, 130px);
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 10px 26px rgba(183, 140, 79, 0.35));
}

.oxram-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  margin: 0.8rem 0 1.2rem;
}

.oxram-text {
  color: rgba(244, 239, 230, 0.75);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1.6rem;
}

.oxram-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.oxram-badges span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  border: 1px solid rgba(217, 189, 139, 0.4);
  color: var(--gold-light);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
}

.oxram-cta { border-color: var(--gold-light); color: var(--cream); }
.oxram-cta:hover { color: var(--charcoal); }

.oxram-sign {
  margin-top: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.45);
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(244, 239, 230, 0.12);
  border: 1px solid rgba(244, 239, 230, 0.16);
}

.service-card {
  background: rgba(20, 17, 14, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.2rem 2rem;
  transition: background 0.35s ease, transform 0.35s ease;
}
.service-card:hover { background: rgba(32, 27, 20, 0.68); transform: translateY(-4px); }

.service-num { font-family: var(--font-serif); font-style: italic; color: var(--gold-light); font-size: 1.1rem; }

.service-card h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.3rem; margin: 0.9rem 0 0.7rem; color: var(--white); }

.service-card p { color: rgba(244, 239, 230, 0.72); font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.3rem; }

.service-price {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  border-top: 1px solid rgba(217, 189, 139, 0.3);
  padding-top: 0.8rem;
}

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }

.gallery-item {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(244, 239, 230, 0.18);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s ease, filter 0.6s ease, box-shadow 0.6s ease;
  filter: saturate(0.95) brightness(0.94);
  cursor: zoom-in;
}

.gallery-item:hover {
  transform: scale(1.03);
  filter: saturate(1.1) brightness(1);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
}
.gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.8rem; }

.testimonial-card {
  background: rgba(20, 17, 14, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.2rem 2rem;
  border-left: 2px solid var(--gold-light);
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.testimonial-card cite { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--gold-light); font-style: normal; }

/* ---------- CTA button shared ---------- */
.cta-button {
  position: relative;
  display: inline-block;
  padding: 1.05rem 2.6rem;
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  overflow: hidden;
  transition: color 0.4s ease;
}

.cta-button span { position: relative; z-index: 2; }

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}

.cta-button:hover::before { transform: scaleX(1); }

/* ---------- Footer ---------- */
.footer { background: var(--cream-soft); padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 6rem) 2rem; }

.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; margin-bottom: 2.5rem; }

.footer-logo { font-family: var(--font-serif); font-size: 1.4rem; letter-spacing: 0.3em; padding-left: 0.3em; margin-bottom: 0.6rem; }

.footer-note { font-size: 0.82rem; color: var(--charcoal-soft); }

.footer h4 { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }

.footer p { font-size: 0.88rem; color: var(--charcoal-soft); line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid rgba(28, 26, 23, 0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--charcoal-soft);
}

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 550;
  background: var(--gold);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.28);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease;
}

.floating-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.floating-cta:hover { background: var(--charcoal); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(12, 10, 8, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  border-radius: 4px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}

.lightbox-close, .lightbox-arrow {
  position: absolute;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-family: var(--font-serif);
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.lightbox-close:hover, .lightbox-arrow:hover { opacity: 1; }
.lightbox-close { top: 1.2rem; right: 1.6rem; font-size: 2.4rem; }
.lightbox-arrow { top: 50%; transform: translateY(-50%); font-size: 3.4rem; padding: 1rem; }
.lightbox-prev { left: 0.8rem; }
.lightbox-next { right: 0.8rem; }

/* ---------- Reveal animation base ---------- */
.reveal { opacity: 0; transform: translateY(32px); }

.service-card.emerge { transform: translateY(32px) scale(0.92); filter: blur(14px); }

/* ---------- Mobile nav ---------- */
@media (max-width: 860px) {
  .nav-burger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--charcoal);
    color: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    font-size: 1.05rem;
    transform: translateX(100%);
    transition: transform 0.5s ease;
  }

  .nav-links.nav-open { transform: translateX(0); }
  .nav-links a { color: var(--cream); }
  .nav-cta { border-color: var(--gold-light); color: var(--cream); }
  .lang-switch { color: var(--cream); border-color: rgba(244, 239, 230, 0.32); }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/10; }
  .hero-facts { gap: 1.2rem 1.8rem; }
  .floating-cta { padding: 0.8rem 1.2rem; font-size: 0.78rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
