:root {
  --bg: #060606;
  --bg-soft: #101010;
  --panel: rgba(18, 18, 18, 0.84);
  --panel-strong: rgba(9, 9, 9, 0.94);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f1ea;
  --muted: rgba(245, 241, 234, 0.72);
  --accent: #ff7b00;
  --accent-2: #ffb24c;
  --radius: 28px;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 123, 0, 0.16), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 45%, #050505 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

iframe {
  border: 0;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(8, 8, 8, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease,
    box-shadow 0.25s ease;
}

.topbar.is-sticky {
  backdrop-filter: blur(16px);
  background: rgba(6, 6, 6, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.26);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 92px;
  padding: 12px 0;
}

.brand,
.nav,
.hero-actions,
.stats,
.check-list,
.feature-list,
.contact-list {
  display: flex;
}

.brand {
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.brand-logo-wrap {
  width: 144px;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition:
    width 0.3s ease,
    height 0.3s ease,
    margin-top 0.3s ease,
    border-radius 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    padding 0.3s ease;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.topbar.is-sticky .brand-logo-wrap {
  width: 76px;
  height: 76px;
  margin-top: 0;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  border: 2px solid rgba(255, 123, 0, 0.38);
  box-shadow: var(--shadow);
}

.topbar.is-sticky .brand-logo {
  transform: scale(1.08);
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.25s ease;
}

.topbar.is-sticky .brand-copy strong {
  transform: translateX(-4px);
}

.nav a,
.eyebrow,
h1,
h2,
h3,
.button,
.service-card span,
.contact-list span {
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav {
  flex-wrap: wrap;
  gap: 24px;
}

.menu-toggle {
  display: none;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 123, 0, 0.45);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7b00, #ff9a2f);
  color: #1a1209;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
}

.nav a {
  font-size: 1rem;
  transition: color 0.2s ease;
}

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

.nav-mobile-action {
  display: none;
}

.nav-mobile-close {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}

.about-grid,
.info-grid,
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
}

h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

h3 {
  font-size: 1.55rem;
}

.about-copy p,
.service-card p,
.info-copy p,
.hero-lead {
  color: var(--muted);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #121212;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.button-secondary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1209;
}

.about-card,
.service-card,
.alert-banner,
.booking-card,
.why-box,
.contact-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-card span {
  color: var(--accent-2);
  font-size: 0.92rem;
}

.hero-slider {
  position: relative;
  min-height: 100vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.7) 38%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.6)),
    repeating-linear-gradient(
      120deg,
      rgba(255, 123, 0, 0.05) 0,
      rgba(255, 123, 0, 0.05) 14px,
      transparent 14px,
      transparent 34px
    );
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 160px 0 140px;
}

.hero-copy-inner {
  width: min(100%, 640px);
  padding-left: 294px;
}

.hero-copy .eyebrow {
  margin-bottom: 18px;
}

.hero-copy h1 {
  max-width: 14ch;
}

.hero-lead {
  max-width: 42ch;
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-pagination-wrap {
  position: relative;
  z-index: 5;
  margin-top: -86px;
  padding-bottom: 34px;
  display: flex;
  justify-content: center;
}

.hero-pagination {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.7);
  backdrop-filter: blur(16px);
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dot:hover,
.hero-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.section {
  padding: 84px 0;
}

.about-grid,
.info-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.about-copy p {
  max-width: 60ch;
}

.check-list,
.feature-list,
.contact-list {
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.feature-list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.check-list li::before,
.feature-list li::before {
  content: "+";
  margin-right: 10px;
  color: var(--accent);
  font-weight: 800;
}

.about-card {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 409px;
  object-fit: cover;
}

.stats {
  flex-wrap: wrap;
  gap: 0;
}

.stats article {
  flex: 1 1 180px;
  padding: 24px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.stats article:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: var(--accent);
  font-family: "Rajdhani", sans-serif;
  font-size: 2.2rem;
}

.stats span {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 28px;
}

.services .section-heading h2,
.booking .section-heading h2,
.gallery .section-heading h2,
.contact .section-heading h2,
.info-copy h2 {
  max-width: 18ch;
}

.services-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.service-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.service-filter {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-filter:hover,
.service-filter.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1209;
  transform: translateY(-1px);
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -28px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 123, 0, 0.24), transparent 70%);
}

.service-card h3 {
  margin-top: 14px;
}

.service-card.is-hidden {
  display: none;
}

.service-callout {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 123, 0, 0.22);
  background: rgba(255, 123, 0, 0.08);
}

.service-callout span {
  display: block;
  color: var(--accent-2);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-callout a {
  display: inline-block;
  margin-top: 8px;
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.booking {
  background:
    radial-gradient(circle at top right, rgba(255, 123, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #090909 0%, #111111 100%);
}

.alert-banner {
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 2px solid rgba(255, 123, 0, 0.7);
  background:
    linear-gradient(135deg, rgba(255, 123, 0, 0.28), rgba(255, 123, 0, 0.1)),
    rgba(25, 14, 4, 0.98);
  box-shadow:
    0 0 0 1px rgba(255, 185, 103, 0.14),
    0 26px 80px rgba(255, 123, 0, 0.18);
}

.alert-banner::before {
  content: "UWAGA";
  position: absolute;
  top: 16px;
  right: -34px;
  padding: 8px 44px;
  background: #fff1de;
  color: #311400;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  transform: rotate(24deg);
}

.alert-banner strong {
  display: block;
  margin-bottom: 10px;
  color: #fff4e8;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.alert-banner p {
  margin: 0;
  color: rgba(255, 245, 232, 0.92);
  font-size: 1.02rem;
  line-height: 1.8;
}

.booking-card {
  overflow: hidden;
  min-height: 950px;
  background: rgba(255, 255, 255, 0.03);
}

.booking-card iframe {
  width: 100%;
  min-height: 950px;
  border: none;
}

.info {
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.92), rgba(12, 12, 12, 0.82)),
    url("img/hero-slide-4.jpg") center/cover no-repeat;
}

.why-box {
  padding: 30px;
  background: var(--panel-strong);
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-thumb {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb:hover img {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.44);
}

.contact-card,
.map-card {
  overflow: hidden;
}

.contact-card {
  padding: 30px;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: stretch;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-hours-card h2 {
  max-width: 15ch;
}

.contact-card {
  height: 100%;
}

.contact-list article {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-list span {
  color: var(--accent-2);
  font-size: 0.92rem;
}

.contact-list strong {
  display: block;
  margin-top: 8px;
  line-height: 1.6;
}

.hours-list {
  margin-top: 22px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(245, 241, 234, 0.88);
}

.hours-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.hours-row span {
  color: #d7d1c4;
  font-weight: 600;
}

.hours-row strong {
  color: rgba(245, 241, 234, 0.92);
}

.hours-row span,
.hours-row strong {
  margin: 0;
}

.hours-row.is-today span,
.hours-row.is-today strong {
  color: #ff4d36;
  font-weight: 800;
}

.map-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent-2);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.map-link:hover {
  color: #fff2de;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 12px;
}

.floating-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
}

.floating-call {
  background: linear-gradient(135deg, #ff7b00, #ff9a2f);
  color: #1a1209;
}

.floating-map {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 10, 0.88);
  color: #fff6ec;
  backdrop-filter: blur(14px);
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  height: 420px;
}

.map-section {
  padding-top: 0;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  border-radius: 20px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.site-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.site-footer p {
  margin: 0;
  color: rgba(245, 241, 234, 0.7);
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .about-grid,
  .info-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 640px) {
  .topbar {
    position: fixed;
  }

  .topbar-inner,
  .about-grid,
  .info-grid,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 118px;
  }

  .nav {
    grid-column: 1 / -1;
    display: none !important;
    gap: 12px;
    margin-top: 10px;
    padding: 16px;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(8, 8, 8, 0.94);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    align-items: center;
  }

  .nav.is-open {
    display: flex !important;
  }

  .nav a {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
  }

  .nav-mobile-action {
    display: block;
    text-align: center;
  }

  .nav-mobile-action:first-of-type {
    background: linear-gradient(135deg, #ff7b00, #ff9a2f);
    color: #1a1209;
  }

  .nav-mobile-action:last-child {
    margin-bottom: 0;
  }

  .nav-mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    cursor: pointer;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
  }

  .nav-mobile-close:hover {
    border-color: rgba(255, 123, 0, 0.45);
    color: var(--accent);
  }

  .hero {
    min-height: auto;
  }

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

  .booking-card,
  .booking-card iframe {
    min-height: 950px;
  }

  .floating-actions {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  h2 {
    max-width: 100%;
  }

  .brand-logo-wrap {
    width: 96px;
    height: 96px;
    margin-top: 10px;
  }

  .service-card,
  .contact-card,
  .why-box {
    padding: 22px;
  }

  .hero-copy {
    padding: 148px 0 132px;
  }

  .hero-copy-inner {
    width: 100%;
    padding-left: 0;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-pagination-wrap {
    margin-top: -74px;
  }

  .stats article {
    border-right: 0;
  }

  .gallery-grid img {
    height: 220px;
  }

  .alert-banner {
    padding: 22px;
  }

  .alert-banner::before {
    top: 12px;
    right: -40px;
    font-size: 0.9rem;
  }

  .booking-card,
  .booking-card iframe {
    min-height: 950px;
  }

  .floating-actions {
    display: none;
  }

  .floating-button {
    width: 100%;
    min-width: 0;
  }

  .lightbox-nav {
    width: 48px;
    height: 48px;
    font-size: 1.9rem;
  }
}
