/* ── Variables ──────────────────────────────────────────────────────────────── */
:root {
  /* Fonts — system default; Google Fonts override applied via .gf class on <html> */
  --font-display: system-ui, -apple-system, sans-serif;
  --font-body:    "Segoe UI", system-ui, -apple-system, sans-serif;

  --bg:          #040404;
  --bg-soft:     #0c0c0d;
  --surface:     rgba(17, 17, 18, 0.96);
  --surface-2:   rgba(196, 255, 61, 0.05);
  --border:      rgba(255, 255, 255, 0.10);
  --border-hi:   rgba(196, 255, 61, 0.42);
  --text:        #ffffff;
  --muted:       #9f9f9f;
  --cyan:        #c4ff3d;
  --cyan-dim:    rgba(196, 255, 61, 0.14);
  --orange:      #ffd54a;
  --orange-dim:  rgba(255, 213, 74, 0.18);
  --violet:      #b83dff;
  --radius-xl:   20px;
  --radius-lg:   14px;
  --radius-md:   8px;
  --container:   1240px;
  --header-h:    64px;
  --section-py:  80px;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Google Fonts overrides (class added by JS after consent) */
html.gf {
  --font-display: "Barlow Condensed", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background-color: var(--bg);
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 52% at 0% 0%, rgba(196, 255, 61, .06), transparent),
    radial-gradient(ellipse 60% 40% at 100% 10%, rgba(184, 61, 255, .08), transparent),
    radial-gradient(ellipse 72% 60% at 50% 100%, rgba(14, 14, 15, .72), transparent);
}

/* Dot grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .10) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 20%, transparent 100%);
  opacity: .28;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ─────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  background: rgba(10, 10, 10, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 44px; width: auto; object-fit: contain; }

.main-nav { display: flex; gap: 4px; }

.main-nav a {
  color: var(--muted);
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 7px 13px;
  border-radius: var(--radius-md);
  transition: color 150ms, background 150ms;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--cyan); background: var(--cyan-dim); }

.lang-switch {
  display: inline-flex;
  gap: 3px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  flex-shrink: 0;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 5px 13px;
  border-radius: 999px;
  cursor: pointer;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .07em;
  transition: color 150ms, background 150ms;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.is-active { color: var(--bg); background: var(--cyan); }

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero { padding: 56px 0 40px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.hero-copy {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
  opacity: .6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .68rem;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  flex-shrink: 0;
}

h1 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .92;
  letter-spacing: -.05em;
  font-weight: 800;
  text-wrap: balance;
}

h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #ffffff 0%, #c4ff3d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(196, 255, 61, .18));
}

.hero-text {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.75;
  font-size: .97rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  transition: transform 160ms, box-shadow 160ms;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, #c4ff3d 0%, #dfff7a 100%);
  color: #050505;
  box-shadow: 0 4px 24px rgba(196, 255, 61, .24);
}
.btn-primary:hover { box-shadow: 0 8px 34px rgba(196, 255, 61, .34); }

.btn-secondary {
  background: rgba(184, 61, 255, .08);
  border: 1px solid rgba(184, 61, 255, .4);
  color: #dfb7ff;
}
.btn-secondary:hover {
  background: rgba(184, 61, 255, .14);
  box-shadow: 0 0 24px rgba(184, 61, 255, .18);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.hero-stats article {
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 12px;
  transition: border-color 200ms;
}
.hero-stats article:hover { border-color: var(--border-hi); }

.hero-stats strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -.03em;
  margin-bottom: 4px;
}

.hero-stats span { color: var(--muted); font-size: .75rem; line-height: 1.4; }

/* ── Carousel ───────────────────────────────────────────────────────────────── */
.hero-visual { position: relative; }

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  height: 100%;
  min-height: 520px;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 560ms cubic-bezier(.22, 1, .36, 1);
}

.slide { min-width: 100%; height: 100%; position: relative; }

.slide img { width: 100%; height: 100%; object-fit: cover; }

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, transparent 40%, rgba(3, 5, 10, .88) 100%);
}

.slide-caption {
  position: absolute;
  bottom: 64px;
  left: 22px;
  right: 22px;
  z-index: 1;
}

.slide-caption strong { display: block; font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.slide-caption span { color: rgba(220, 230, 245, .65); font-size: .84rem; }

.carousel-ui {
  position: absolute;
  inset: auto 16px 16px 16px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.carousel-dots { display: flex; gap: 6px; }

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 200ms, width 200ms;
}
.dot.is-active { width: 24px; border-radius: 4px; background: var(--cyan); }

.carousel-nav { display: flex; gap: 8px; }

.carousel-nav button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(3, 5, 10, .7);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  transition: border-color 150ms, background 150ms;
}
.carousel-nav button:hover { border-color: var(--cyan); background: var(--cyan-dim); }

/* ── Sections ───────────────────────────────────────────────────────────────── */
.section { padding: var(--section-py) 0; }

.section-head { max-width: 680px; margin-bottom: 36px; }

.section-head h2 {
  margin: 12px 0 16px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: .94;
  letter-spacing: -.04em;
  font-weight: 800;
}

.section-head p { color: var(--muted); line-height: 1.75; font-size: .95rem; }

/* ── Feature strip ──────────────────────────────────────────────────────────── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 240ms, box-shadow 240ms, transform 200ms;
}
.feature-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan) 50%, transparent);
  opacity: 0;
  transition: opacity 240ms;
}
.feature-card:hover {
  border-color: var(--border-hi);
  box-shadow: 0 0 30px rgba(196, 255, 61, .10), 0 16px 40px rgba(0, 0, 0, .34);
  transform: translateY(-3px);
}
.feature-card:hover::after { opacity: 1; }

.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 18px;
}

.feature-card .tag {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--cyan);
  font-weight: 700;
}

.feature-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 8px 0 10px;
  color: var(--text);
}

.feature-card p { color: var(--muted); font-size: .87rem; line-height: 1.7; }

/* ── Cards grid ─────────────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 220ms, transform 200ms, box-shadow 220ms;
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-dim), transparent);
  opacity: 0;
  transition: opacity 220ms;
}
.info-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
}
.info-card:hover::before { opacity: 1; }

.card-num {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--cyan);
  opacity: .5;
  margin-bottom: 14px;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.info-card p { color: var(--muted); font-size: .87rem; line-height: 1.7; }

/* ── Pricing ────────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 220ms, box-shadow 220ms;
}
.pricing-card:hover {
  border-color: var(--border-hi);
  box-shadow: 0 0 28px rgba(196, 255, 61, .08);
}

.pricing-card--featured {
  border-color: rgba(184, 61, 255, .32);
  background: linear-gradient(180deg, rgba(184, 61, 255, .08), rgba(17, 17, 18, .96));
  box-shadow: 0 0 36px rgba(184, 61, 255, .10);
}

.pricing-card h3 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.pricing-card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 0;
}

.pricing-card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}
.pricing-card li:last-child { border-bottom: 0; }
.pricing-card li span { color: var(--muted); font-size: .84rem; }
.pricing-card li strong { color: var(--text); font-size: .92rem; white-space: nowrap; font-weight: 700; }

/* ── Gallery Slider ─────────────────────────────────────────────────────────── */
.gallery-section { padding-bottom: var(--section-py); }

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.gallery-header h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: .94;
  letter-spacing: -.04em;
  font-weight: 800;
  margin-top: 12px;
}

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.gallery-counter {
  font-size: .8rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 72px;
  text-align: center;
}

.gallery-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 150ms, background 150ms, transform 150ms;
}
.gallery-btn:hover {
  border-color: var(--cyan);
  background: var(--cyan-dim);
  transform: scale(1.06);
}
.gallery-btn:disabled {
  opacity: .3;
  cursor: default;
  transform: none;
}

.gallery-slider-wrap {
  position: relative;
  /* bleed beyond container to create edge-to-edge feel */
  padding: 0 max(16px, calc((100vw - var(--container)) / 2));
}

.gallery-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding-bottom: 4px;
}
.gallery-slider::-webkit-scrollbar { display: none; }
.gallery-slider.is-dragging { cursor: grabbing; scroll-behavior: auto; }

.gallery-slide {
  flex: 0 0 calc((100% - 28px) / 3);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  transition: border-color 220ms, transform 220ms;
}
.gallery-slide:hover { border-color: var(--border-hi); transform: scale(1.01); }

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* ── Reviews ────────────────────────────────────────────────────────────────── */
.review-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.review-top article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 26px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 200ms, transform 200ms;
}
.review-top article:hover { border-color: var(--border-hi); transform: translateY(-3px); }

.review-top strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -.04em;
  margin-bottom: 6px;
  text-shadow: 0 0 22px rgba(196, 255, 61, .18);
}

.review-top span { color: var(--muted); font-size: .8rem; }

/* ── Location ───────────────────────────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 16px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 0;
}

.contact-card li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.contact-card li:first-child { padding-top: 0; }
.contact-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-card li > span { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; }
.contact-card li > strong { color: var(--text); font-size: .94rem; font-weight: 600; }
.contact-card a { color: var(--cyan); }
.contact-card a:hover { text-decoration: underline; }

.map-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.map-card iframe {
  width: 100%;
  min-height: 380px;
  height: 100%;
  border: 0;
  display: block;
}

/* ── Languages ──────────────────────────────────────────────────────────────── */
.lang-section { padding: 0 0 var(--section-py); }

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

.lang-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 200ms, transform 200ms;
}
.lang-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }

.lang-card .flag { font-size: 2.2rem; margin-bottom: 14px; display: block; }

.lang-card h4 {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 8px;
}

.lang-card p { color: var(--muted); font-size: .84rem; line-height: 1.7; }

/* ── Review CTA ─────────────────────────────────────────────────────────────── */
.review-cta {
  margin-top: 24px;
  display: flex;
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(12, 12, 12, .98), rgba(4, 4, 4, .98));
}

.footer-map {
  width: 100%;
  height: 340px;
  min-height: 340px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  position: relative;
}

/* When showing placeholder (no iframe), allow natural height */
.footer-map:not(:has(iframe)) {
  height: auto;
  min-height: 0;
  overflow: visible;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(30%) contrast(1.1);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, .9fr);
  gap: 40px;
  padding: 38px 0 34px;
  align-items: start;
}

.footer-contact {
  min-width: 0;
}

.footer-contact strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 18px;
  max-width: 34ch;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  font-size: .92rem;
  line-height: 1.55;
}

.footer-contact li > span:first-child {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
  padding-top: 2px;
}

.footer-contact li > span:last-child,
.footer-contact li > a {
  color: var(--text);
  min-width: 0;
}
.footer-contact a:hover { color: var(--cyan); text-decoration: underline; }

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: start;
  align-content: start;
  padding: 2px 0 0;
}

.footer-links a,
.footer-legal-btn {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
  transition: color 150ms;
}

.footer-links a { transition: color 150ms; }
.footer-links a:hover { color: var(--cyan); }

.footer-legal-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
}
.footer-legal-btn:hover { color: var(--cyan); }

/* ── Map placeholder ─────────────────────────────────────────────────────────── */
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(10, 10, 10, .86);
  color: var(--muted);
  text-align: center;
  padding: 40px 24px;
}

.map-placeholder svg { opacity: .4; color: var(--cyan); }

.map-placeholder p {
  font-size: .88rem;
  max-width: 34ch;
  line-height: 1.6;
  margin: 0;
}

.map-placeholder .btn {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

/* ── Cookie Banner ───────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background:
    radial-gradient(circle at 50% 100%, rgba(184, 61, 255, .10), transparent 42%),
    rgba(8, 8, 8, .8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: overlay-fade 220ms ease;
}

@keyframes cookie-slide-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-banner[hidden] { display: none; }

.cookie-inner {
  width: min(100%, 680px);
  background: linear-gradient(180deg, rgba(20, 20, 21, .98), rgba(11, 11, 12, .98));
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .48);
  padding: 32px;
  animation: cookie-slide-up 320ms cubic-bezier(.22, 1, .36, 1);
}

.cookie-body { display: flex; flex-direction: column; gap: 14px; }

.cookie-mark {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cookie-title {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 650;
  letter-spacing: -.04em;
  color: var(--text);
  margin: 0;
}

.cookie-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.cookie-link {
  background: none;
  border: none;
  color: var(--cyan);
  font-size: .98rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: inherit;
  width: fit-content;
}
.cookie-link:hover { opacity: .8; }

.cookie-options {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.cookie-option {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .02);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 150ms, background 150ms, transform 150ms;
}

.cookie-option:hover {
  border-color: rgba(196, 255, 61, .32);
  background: rgba(196, 255, 61, .04);
  transform: translateY(-1px);
}

.cookie-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.cookie-option-box {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .02);
  margin-top: 2px;
  position: relative;
}

.cookie-option input:checked + .cookie-option-box {
  background: linear-gradient(135deg, #c4ff3d 0%, #dfff7a 100%);
  border-color: #dfff7a;
  box-shadow: 0 0 0 4px rgba(196, 255, 61, .10);
}

.cookie-option input:checked + .cookie-option-box::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #17120c;
  border-bottom: 2px solid #17120c;
  transform: rotate(45deg);
}

.cookie-option-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.cookie-option-copy strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  line-height: 1.25;
}

.cookie-option-copy span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
  font-size: .96rem;
  max-width: none;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.cookie-actions .btn,
.cookie-actions .btn-ghost {
  min-height: 54px;
  border-radius: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .86rem;
}

.cookie-actions-full {
  grid-column: 1 / -1;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .87rem;
  cursor: pointer;
  transition: border-color 150ms, color 150ms;
  font-family: inherit;
}
.btn-ghost:hover { border-color: var(--text); color: var(--text); }

@media (max-width: 640px) {
  .cookie-inner { padding: 24px 20px; }
  .cookie-option {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }
  .cookie-option-box {
    width: 20px;
    height: 20px;
  }
  .cookie-option input:checked + .cookie-option-box::after {
    left: 5px;
    top: 1px;
  }
  .cookie-actions { grid-template-columns: 1fr; }
  .cookie-actions-full { grid-column: auto; }
}

/* ── Modals ──────────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: overlay-fade 200ms ease;
}

@keyframes overlay-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-overlay[hidden] { display: none; }

.modal-box {
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-xl);
  width: min(100%, 640px);
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .7);
  animation: modal-pop 260ms cubic-bezier(.22, 1, .36, 1);
}

@keyframes modal-pop {
  from { opacity: 0; transform: scale(.95) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms, color 150ms;
  z-index: 1;
}
.modal-close:hover { background: rgba(255, 255, 255, .1); color: var(--text); }

.modal-content {
  padding: 36px 36px 32px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.modal-content h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  margin: 0 0 6px;
  color: var(--text);
  padding-right: 40px; /* space for close button */
}

.modal-eyebrow {
  color: var(--cyan);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 0 28px;
}

.modal-content h3 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--cyan);
  font-weight: 700;
  margin: 24px 0 8px;
}

.modal-content p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.75;
  margin: 0 0 4px;
}

.modal-content a { color: var(--cyan); }
.modal-content a:hover { text-decoration: underline; }

.modal-content code {
  font-family: monospace;
  font-size: .82rem;
  background: rgba(255, 255, 255, .06);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text);
}

.ds-badge {
  display: inline-block;
  font-size: .65rem;
  background: rgba(184, 61, 255, .12);
  color: var(--cyan);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 8px;
  vertical-align: middle;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}

/* ── Reveal ─────────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════════════════ */

/* ── Wide screens (> 1400px) ──────────────────────────────────────────────── */
@media (min-width: 1400px) {
  :root { --section-py: 100px; }
  .hero { padding: 72px 0 52px; }
}

/* ── Medium-large (≤ 1100px) ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .carousel { min-height: 420px; }

  .feature-strip { grid-template-columns: repeat(3, 1fr); }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .review-top { grid-template-columns: repeat(3, 1fr); }

  .location-grid { grid-template-columns: 1fr; }

  .gallery-slide { flex: 0 0 calc((100% - 14px) / 2); }
}

/* ── Tablet (≤ 900px) ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root {
    --section-py: 60px;
    --header-h: 60px;
  }

  .hero { padding: 36px 0 28px; }

  .feature-strip { grid-template-columns: repeat(2, 1fr); }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .review-top { grid-template-columns: repeat(3, 1fr); }

  .gallery-slide { flex: 0 0 calc((100% - 14px) / 2); }

  .lang-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}

/* ── Mobile-large (≤ 700px) ───────────────────────────────────────────────── */
@media (max-width: 700px) {
  .main-nav { display: none; }

  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-stats strong { font-size: 1.1rem; }
  .hero-stats span { font-size: .7rem; }

  .cards-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .review-top { grid-template-columns: 1fr; }

  .gallery-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .gallery-slide { flex: 0 0 80%; }

  .lang-grid { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .footer-contact strong { max-width: none; }
  .footer-contact li { grid-template-columns: 1fr; gap: 4px; }
  .footer-links { justify-items: start; }
  .footer-map { height: auto; min-height: 0; overflow: visible; }
  .map-placeholder {
    padding: 40px 18px;
    gap: 14px;
  }
}

/* ── Mobile-small (≤ 480px) ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --section-py: 48px;
    --header-h: 56px;
  }

  .container { width: calc(100% - 24px); }

  .brand img { height: 36px; }

  .hero { padding: 24px 0 20px; }

  .hero-copy { padding: 22px 18px; }

  h1 { font-size: 2.1rem; }

  .hero-stats { grid-template-columns: repeat(3, 1fr); }

  .btn { min-height: 46px; padding: 0 20px; font-size: .87rem; }

  .feature-strip { grid-template-columns: 1fr; }

  .section-head h2 { font-size: 1.7rem; }

  .gallery-slide { flex: 0 0 88%; }

  .gallery-slider-wrap { padding: 0 16px; }

  .review-top { grid-template-columns: 1fr; }

  .map-card iframe { min-height: 260px; }

  .carousel { min-height: 280px; }
}

/* ── Tiny screens (≤ 360px) ───────────────────────────────────────────────── */
@media (max-width: 360px) {
  h1 { font-size: 1.85rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 8px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ── Reduced motion ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
