:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --card: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f4f4f4;
  --muted: #b7b7b7;
  --accent: #d7ff3f;
  --accent-2: #75ff9c;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: linear-gradient(to bottom, rgba(0,0,0,.90), rgba(0,0,0,.30));
  backdrop-filter: blur(10px);
}
.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-btn span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}
.nav a { text-decoration: none; }
.nav a:hover { color: var(--accent); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  min-width: 44px;
  height: 36px;
  font-weight: 800;
  cursor: pointer;
}
.lang-btn.active {
  background: var(--accent);
  color: #050505;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px 22px 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/18.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: grayscale(25%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(215,255,63,.18), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.62), rgba(0,0,0,.86));
}
.hero-content {
  position: relative;
  width: min(var(--max), 100%);
  padding-top: 40px;
}
.hero-logo {
  width: min(540px, 76vw);
  margin: 8px 0 24px;
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 800;
}
h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: .98;
  letter-spacing: -.04em;
}
.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #e8e8e8;
  font-size: clamp(18px, 2vw, 24px);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: #050505; background: var(--accent); }
.btn.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.06); }

.section-wrap { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
.intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  padding: 96px 0 70px;
  border-bottom: 1px solid var(--line);
}
h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -.04em;
}
.intro p:last-child { margin: 34px 0 0; color: var(--muted); font-size: 18px; }
.services { padding: 86px 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.service-card {
  min-height: 290px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}
.number { color: var(--accent-2); font-weight: 800; }
.service-card h3 { margin: 44px 0 12px; font-size: 24px; line-height: 1.08; letter-spacing: -.03em; }
.service-card p { margin: 0; color: var(--muted); }

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 10px;
  width: min(1380px, calc(100% - 24px));
  margin: 0 auto;
}
.gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  filter: saturate(.9) contrast(1.05);
}
.gallery img:first-child { height: 470px; }
.gallery img:nth-child(2), .gallery img:nth-child(3), .gallery img:nth-child(4) { margin-top: 110px; }

.booking {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: 28px;
  padding: 96px 0;
}
.booking-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 85% 15%, rgba(215,255,63,.15), transparent 26%),
    var(--bg-soft);
}
.booking-card p:not(.section-kicker) { color: var(--muted); max-width: 720px; font-size: 18px; }
.booking-image img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; border-radius: 34px; }
.contact-actions, .contact-list { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.contact-actions a, .contact-list a {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  background: rgba(255,255,255,.05);
}
.contact-actions a:hover, .contact-list a:hover { border-color: var(--accent); color: var(--accent); }
.contact { padding: 0 0 90px; text-align: center; }
.contact p:not(.section-kicker) { color: var(--muted); }
.contact .contact-list { justify-content: center; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(22px, 4vw, 58px);
  border-top: 1px solid var(--line);
  color: #8e8e8e;
  font-size: 14px;
}
.footer p { margin: 0; }


.booking-form {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.form-field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.form-field-row .form-field {
  min-width: 0;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-field label {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 15px 16px;
  font: inherit;
  outline: none;
}
.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.form-field select option {
  background: #101010;
  color: var(--text);
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(215,255,63,.10);
}
.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
  border-color: #ff7a7a;
  box-shadow: 0 0 0 4px rgba(255,90,90,.10);
}
.field-error {
  margin: 0;
  color: #ffb4b4;
  font-size: 13px;
  font-weight: 700;
}
.form-submit {
  border: 0;
  cursor: pointer;
  width: fit-content;
}
.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.form-status {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
}
.form-status--success {
  color: #d7ff3f;
  background: rgba(215,255,63,.08);
  border: 1px solid rgba(215,255,63,.24);
}
.form-status--error {
  color: #ffb4b4;
  background: rgba(255,90,90,.08);
  border: 1px solid rgba(255,90,90,.24);
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.turnstile-wrap {
  min-height: 65px;
}
.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px !important;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255,255,255,.05);
  color: var(--text);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(215,255,63,.08);
}
.social-links a:not(.social-icon),
.footer-socials a {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  background: rgba(255,255,255,.05);
}
.social-links a:not(.social-icon):hover,
.footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-socials a {
  padding: 8px 12px;
  font-size: 13px;
}


@media (max-width: 920px) {
  .site-header {
    align-items: center;
  }
  .mobile-menu-btn {
    display: inline-flex;
    order: 3;
  }
  .header-actions {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(5,5,5,.96);
    box-shadow: 0 24px 80px rgba(0,0,0,.55);
  }
  .header-actions.is-open {
    display: flex;
  }
  .nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 16px;
  }
  .nav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
  }
  .lang-switch {
    width: 100%;
    justify-content: center;
  }
  .intro, .booking { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery img, .gallery img:first-child { height: 300px; }
  .gallery img:nth-child(n) { margin-top: 0; }
  .booking-image img { min-height: 320px; }
}
@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }
  .brand-logo { height: 34px; }
  .mobile-menu-btn {
    width: 42px;
    height: 42px;
  }
  .hero {
    min-height: 92svh;
    padding: 112px 18px 56px;
    place-items: end start;
  }
  .hero-content {
    padding-top: 0;
  }
  .hero-logo {
    width: min(360px, 82vw);
    margin-bottom: 18px;
  }
  h1 {
    font-size: clamp(30px, 10vw, 44px);
  }
  .lead {
    font-size: 17px;
  }
  .cta-row,
  .contact-actions,
  .contact-list {
    flex-direction: column;
  }
  .btn,
  .contact-actions a,
  .contact-list a,
  .social-links a:not(.social-icon) {
    width: 100%;
    text-align: center;
  }
  .social-links {
    flex-direction: row;
    justify-content: center;
  }
  .social-icon {
    width: 52px;
  }
  .section-wrap {
    width: min(var(--max), calc(100% - 32px));
  }
  .intro {
    gap: 18px;
    padding: 70px 0 54px;
  }
  .services {
    padding: 64px 0;
  }
  .service-grid, .gallery { grid-template-columns: 1fr; }
  .service-card {
    min-height: auto;
    padding: 24px;
  }
  .service-card h3 {
    margin-top: 34px;
  }
  .gallery {
    width: min(100%, calc(100% - 24px));
  }
  .gallery img,
  .gallery img:first-child {
    height: 260px;
    border-radius: 20px;
  }
  .booking {
    padding: 68px 0;
  }
  .booking-card {
    border-radius: 26px;
    padding: 24px;
  }
  .booking-image img {
    min-height: 260px;
    border-radius: 26px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }
  .form-field-row {
    grid-template-columns: 1fr;
  }
  .form-submit { width: 100%; }
  .contact {
    padding-bottom: 68px;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-socials {
    margin-top: 4px;
    width: 100%;
  }
  .footer-socials a {
    flex: 1;
    text-align: center;
  }
}


@media (max-width: 380px) {
  .brand-logo { height: 30px; }
  .hero-logo { width: min(300px, 84vw); }
  h2 { font-size: 30px; }
  .booking-card { padding: 20px; }
  .lang-btn {
    min-width: 40px;
    height: 34px;
  }
}
