/* =========
   Base / reset
   ========= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: #ffffff;
  color: #111827;
}

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

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

details > summary {
  list-style: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

/* =========
   Color tokens
   ========= */
:root {
  --white: #ffffff;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;

  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-950: #042f2e;

  --sky-50: #f0f9ff;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --sky-800: #075985;

  --violet-50: #f5f3ff;
  --violet-700: #6d28d9;
  --violet-800: #5b21b6;
}

/* =========
   Layout / sizing
   ========= */
.w-full { width: 100%; }
.w-auto { width: auto; }

.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }

.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }

.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.block { display: block; }
.hidden { display: none; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

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

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.overflow-hidden { overflow: hidden; }

/* =========
   Spacing
   ========= */
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }

.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pb-6 { padding-bottom: 1.5rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-14 { margin-top: 3.5rem; }

.-mt-\[1px\] { margin-top: -1px; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }

/* =========
   Typography
   ========= */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.tracking-tight { letter-spacing: -0.025em; }

/* =========
   Colors
   ========= */
.text-white { color: var(--white); }
.text-gray-200 { color: var(--gray-200); }
.text-gray-300 { color: var(--gray-300); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-900 { color: var(--gray-900); }

.text-teal-100 { color: var(--teal-100); }
.text-teal-200 { color: var(--teal-200); }
.text-teal-600 { color: var(--teal-600); }
.text-teal-700 { color: var(--teal-700); }
.text-teal-800 { color: var(--teal-800); }

.text-sky-700 { color: var(--sky-700); }
.text-sky-800 { color: var(--sky-800); }

.text-violet-700 { color: var(--violet-700); }
.text-violet-800 { color: var(--violet-800); }

.bg-white { background-color: var(--white); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-900 { background-color: var(--gray-900); }
.bg-gray-950 { background-color: var(--gray-950); }

.bg-teal-50 { background-color: var(--teal-50); }
.bg-sky-50 { background-color: var(--sky-50); }
.bg-violet-50 { background-color: var(--violet-50); }

.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-white\/15 { background-color: rgba(255, 255, 255, 0.15); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.10); }
.bg-white\/8 { background-color: rgba(255, 255, 255, 0.08); }

.bg-teal-200\/30 { background-color: rgba(153, 246, 228, 0.3); }

.text-gray-200\/90 { color: rgba(229, 231, 235, 0.9); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }

/* =========
   Borders / radius / shadows
   ========= */
.border {
  border-width: 1px;
  border-style: solid;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
}

.border-gray-200 { border-color: var(--gray-200); }
.border-teal-100 { border-color: var(--teal-100); }
.border-teal-200 { border-color: var(--teal-200); }
.border-sky-100 { border-color: #e0f2fe; }
.border-violet-100 { border-color: #ede9fe; }

.border-white\/10 { border-color: rgba(255, 255, 255, 0.10); }
.border-white\/15 { border-color: rgba(255, 255, 255, 0.15); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.20); }
.border-white\/25 { border-color: rgba(255, 255, 255, 0.25); }

.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.06); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.12), 0 10px 10px rgba(0, 0, 0, 0.06); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25); }

/* =========
   Positioning
   ========= */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 { top: 0; }
.-top-32 { top: -8rem; }
.left-1\/2 { left: 50%; }

.z-50 { z-index: 50; }

.-translate-x-1\/2 { transform: translateX(-50%); }

.w-\[900px\] { width: 900px; }
.h-\[500px\] { height: 500px; }

/* =========
   Effects / transitions
   ========= */
.opacity-30 { opacity: 0.3; }
.pointer-events-none { pointer-events: none; }

.backdrop-blur { backdrop-filter: blur(10px); }
.backdrop-blur-sm { backdrop-filter: blur(6px); }

.blur-\[120px\] { filter: blur(120px); }

.transition-colors {
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.transition-shadow {
  transition: box-shadow 0.2s ease;
}

.transition-transform {
  transition: transform 0.15s ease;
}

.transition-all {
  transition: all 0.2s ease;
}

.transition-filter {
  transition: filter 0.2s ease;
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover\:drop-shadow-lg {
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.18));
}

.hover\:bg-gray-50:hover { background-color: var(--gray-50); }
.hover\:bg-gray-100:hover { background-color: var(--gray-100); }
.hover\:bg-gray-800:hover { background-color: var(--gray-800); }
.hover\:bg-white\/15:hover { background-color: rgba(255, 255, 255, 0.15); }

.hover\:text-white:hover { color: var(--white); }
.hover\:text-teal-100:hover { color: var(--teal-100); }
.hover\:text-teal-600:hover { color: var(--teal-600); }
.hover\:text-teal-700:hover { color: var(--teal-700); }
.hover\:text-teal-800:hover { color: var(--teal-800); }
.hover\:text-sky-800:hover { color: var(--sky-800); }
.hover\:text-violet-800:hover { color: var(--violet-800); }

.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.06); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.12), 0 10px 10px rgba(0, 0, 0, 0.06); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }

/* =========
   Background gradients
   ========= */
.bg-gradient-to-br {
  background-image: linear-gradient(
    to bottom right,
    var(--tw-from, transparent),
    var(--tw-via, transparent),
    var(--tw-to, transparent)
  );
}

.from-gray-950 { --tw-from: var(--gray-950); }
.via-teal-950 { --tw-via: var(--teal-950); }
.to-gray-900 { --tw-to: var(--gray-900); }

.from-teal-500 { --tw-from: var(--teal-500); }
.to-sky-500 { --tw-to: var(--sky-500); }

.from-teal-600 { --tw-from: var(--teal-600); }
.via-sky-600 { --tw-via: var(--sky-600); }
.to-teal-700 { --tw-to: var(--teal-700); }

/* =========
   Grid helpers
   ========= */
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* =========
   Misc
   ========= */
.cursor-pointer { cursor: pointer; }

/* =========
   Booking section
   ========= */
.booking-cta {
  display: flex;
  justify-content: center;
  padding: 32px 20px;
  background: #f3f4f6;
}

.booking-card {
  width: 100%;
  max-width: 760px;
  background: #f8f8f8;
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
}

.booking-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #111827;
}

.booking-card p {
  margin: 18px 0 28px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #374151;
}

.lumant-booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 88px;
  padding: 18px 28px;
  background: #1e2b45;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  overflow: hidden;
  max-width: 100%;
}

.lumant-booking-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.28);
}

.lumant-booking-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 240px;
  flex-shrink: 1;
  min-width: 0;
}

.lumant-booking-text {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
}

/* =========
   Map embed
   ========= */
.map-embed {
  position: relative;
  width: 100%;
  background: var(--gray-50);
}

.map-embed::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========
   Responsive
   sm: 640px
   md: 768px
   lg: 1024px
   ========= */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }

  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }

  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:inline { display: inline; }
  .md\:inline-flex { display: inline-flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }

  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }

  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }

  .lg\:p-8 { padding: 2rem; }
  .lg\:p-12 { padding: 3rem; }

  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }

  .lg\:flex-row { flex-direction: row; }
  .lg\:items-end { align-items: flex-end; }
  .lg\:justify-between { justify-content: space-between; }
}

@media (max-width: 640px) {
  .booking-card {
    padding: 32px 20px;
  }

  .booking-card h2 {
    font-size: 2.1rem;
    line-height: 1.1;
  }

  .booking-card p {
    font-size: 1rem;
    margin: 16px 0 24px;
  }

  .lumant-booking-button {
    width: 100%;
    min-height: auto;
    padding: 18px 16px;
    border-radius: 20px;
    flex-direction: column;
    gap: 12px;
  }

  .lumant-booking-logo {
    height: auto;
    width: 100%;
    max-width: 170px;
  }

  .lumant-booking-text {
    font-size: 1rem;
    white-space: normal;
  }

  .w-\[900px\] {
    width: min(900px, 100vw - 2rem);
  }
}