/* ---------- Reset & tokens ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-dark: #0a0a0a;
  --bg-dark-2: #191919;
  --bg-light: #ffffff;
  --bg-gray: #f0f0f0;
  --text-dark: #111111;
  --text-light: #ffffff;
  --text-muted-dark: rgba(17, 17, 17, 0.6);
  --text-muted-light: rgba(255, 255, 255, 0.66);
  --border-light: rgba(17, 17, 17, 0.12);
  --border-dark: rgba(255, 255, 255, 0.14);
  --accent: #111111;
  --accent-dim: rgba(17, 17, 17, 0.3);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --max: 1240px;
  --font-display: "Inter", -apple-system, sans-serif;
  --font-body: "Inter", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}
.eyebrow.on-dark { color: var(--text-muted-light); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h2 { font-size: clamp(30px, 3.6vw, 44px); }

.section-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 19px;
  color: var(--text-muted-dark);
  margin-top: 10px;
}
.section-sub.on-dark { color: var(--text-muted-light); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary-dark { background: var(--text-dark); color: var(--bg-light); }
.btn-primary-dark:hover { background: #2a2a2a; }

.btn-primary-light { background: var(--bg-light); color: var(--text-dark); }
.btn-primary-light:hover { background: #e5e5e5; }

.btn-ghost-dark { border-color: rgba(17, 17, 17, 0.22); color: var(--text-dark); }
.btn-ghost-dark:hover { border-color: rgba(17, 17, 17, 0.45); }

.btn-ghost-light { border-color: rgba(255, 255, 255, 0.35); color: var(--text-light); }
.btn-ghost-light:hover { border-color: rgba(255, 255, 255, 0.65); }

.btn-block { width: 100%; padding: 16px 26px; border-radius: 9px; font-size: 16px; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.logo-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}
.logo-word.on-dark { color: var(--text-light); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 13.5px;
  padding: 10px 20px;
  text-align: center;
  position: relative;
}
.topbar span { opacity: 0.92; }
.topbar-close {
  position: absolute;
  right: 18px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--text-light);
  opacity: 0.6; font-size: 16px; line-height: 1; padding: 4px;
}
.topbar-close:hover { opacity: 1; }
.topbar.hidden { display: none; }

/* ---------- Nav ---------- */
.nav {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  position: sticky; top: 0; z-index: 50;
}
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  font-size: 14.5px; font-weight: 500;
}
.nav-links a { color: var(--text-dark); display: flex; align-items: center; gap: 4px; }
.nav-links a:hover { color: var(--accent); }
.nav-links .chev { font-size: 10px; opacity: 0.6; }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-region {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; padding: 6px 8px; border-radius: 8px;
}
.nav-region:hover { background: var(--bg-gray); }
.nav-burger { display: none; background: none; border: none; font-size: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 760px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 42%, rgba(0,0,0,0.15) 68%, rgba(0,0,0,0.35) 100%),
              linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 30%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 90px 40px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero-content .eyebrow { margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  color: var(--text-light);
  max-width: 780px;
}
.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
}
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-benefits {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 30px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
}
.hero-benefits li { display: flex; align-items: center; gap: 7px; }
.hero-benefits svg { flex-shrink: 0; opacity: 0.85; }

/* ---------- Moments section ---------- */
.section { padding: 110px 0; }
.section.dark { background: var(--bg-dark); color: var(--text-light); }
.section.gray { background: var(--bg-gray); }
.section-head { max-width: 640px; margin-bottom: 54px; }

.moments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.moment-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10.2;
  background: var(--bg-dark-2);
}
.moment-card video,
.moment-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.moment-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0) 75%);
}
.moment-text {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2; padding: 28px 30px;
}
.moment-text h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--text-light); margin-bottom: 6px; }
.moment-text p { font-size: 14.5px; color: rgba(255,255,255,0.72); }

/* ---------- Rent G1 section ---------- */
.rent-g1 { background: var(--bg-light); }
.rent-g1 .wrap {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.rent-g1 h2 { margin-bottom: 22px; }
.rent-g1 p { font-size: 17px; line-height: 1.6; color: var(--text-muted-dark); max-width: 480px; }
.rent-g1 p + p { margin-top: 16px; }
.rent-g1 .learn-link {
  display: inline-block; margin-top: 26px; font-weight: 600; font-size: 15px;
  border-bottom: 1.5px solid var(--text-dark); padding-bottom: 3px;
}
.rent-g1-image { display: flex; justify-content: center; align-items: center; background: var(--bg-light); }
.rent-g1-image img { max-width: 200px; width: 100%; filter: drop-shadow(0 26px 34px rgba(17,17,17,0.16)); }

/* ---------- Carousel ---------- */
.carousel-section { background: var(--bg-dark); color: var(--text-light); padding: 100px 0; }
.carousel-head { text-align: center; margin-bottom: 40px; }
.carousel-wrap { position: relative; padding: 0 54px; }
.carousel-track {
  display: flex; align-items: center; gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 14px 0 20px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-tile {
  position: relative;
  flex: 0 0 calc((100% - 72px) / 5);
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-dark-2);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.carousel-tile:hover {
  filter: brightness(1.15) saturate(1.1);
}
.carousel-tile.playing {
  transform: scale(1.045);
  z-index: 2;
}
.carousel-tile video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.carousel-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.05) 45%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.tile-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 21.5%; aspect-ratio: 1;
  background: none; border: none;
  display: flex; align-items: center; justify-content: center;
  z-index: 3; transition: transform 0.2s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
.tile-play:hover { transform: translate(-50%, -50%) scale(1.08); }
.tile-play svg { width: 100%; height: 100%; margin-left: 2px; }
.carousel-tile.playing .tile-play svg { margin-left: 0; }
.tile-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 16px 18px; font-size: 14.5px; font-weight: 600; color: var(--text-light);
}
.carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  background: none; border: none;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff; z-index: 5;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
  transition: transform 0.2s ease;
}
.carousel-nav:hover { transform: translateY(-50%) scale(1.1); }
.carousel-nav svg { width: 100%; height: 100%; }
.carousel-nav.prev { left: 8px; }
.carousel-nav.next { right: 8px; }

/* ---------- Pricing ---------- */
.pricing-head { text-align: center; max-width: 560px; margin: 0 auto 50px; }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; max-width: 800px; margin: 0 auto;
}
.price-card {
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  border: 1px solid var(--border-light);
}
.price-card.light { background: var(--bg-light); }
.price-card.dark { background: var(--bg-dark); color: var(--text-light); border-color: transparent; }
.price-card-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(17,17,17,0.06); margin-bottom: 18px;
}
.price-card.dark .price-card-icon { background: rgba(255,255,255,0.1); }
.price-card-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted-dark); display: flex; align-items: center; gap: 6px;
}
.price-card.dark .price-card-label { color: var(--text-muted-light); }
.price-card-label .qmark {
  width: 15px; height: 15px; border-radius: 50%; border: 1px solid currentColor;
  font-size: 10px; display: flex; align-items: center; justify-content: center; opacity: 0.55;
}
.price-amount { font-family: var(--font-display); font-weight: 600; font-size: 34px; margin-top: 10px; }
.price-amount span { font-size: 15px; font-weight: 500; font-family: var(--font-body); color: var(--text-muted-dark); }
.price-card.dark .price-amount span { color: var(--text-muted-light); }
.price-desc { font-size: 14.5px; color: var(--text-muted-dark); margin-top: 12px; line-height: 1.55; }
.price-card.dark .price-desc { color: var(--text-muted-light); }
.price-tags { margin-top: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13.5px; }
.tag-pill {
  border: 1px solid rgba(17,17,17,0.18); border-radius: 100px; padding: 5px 12px;
}
.price-card.dark .tag-pill { border-color: rgba(255,255,255,0.22); }
.pricing-cta { text-align: center; margin-top: 40px; }

/* ---------- FAQ ---------- */
.faq-head { max-width: 500px; margin: 0 auto 20px; text-align: center; }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-dark); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 4px; font-size: 17px; font-weight: 500; cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0; position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--text-light);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 1.6px; }
.faq-icon::after { width: 1.6px; height: 14px; transition: transform 0.2s ease, opacity 0.2s ease; }
.faq-item[open] .faq-icon::after { opacity: 0; }
.faq-body { padding: 0 4px 26px; font-size: 15px; color: var(--text-muted-light); line-height: 1.6; max-width: 640px; }

/* ---------- Booking page ---------- */
.booking-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 24px;
}
.booking-page-wrap { max-width: 680px; width: 100%; }
.booking-page-hero {
  display: flex; align-items: center; gap: 40px;
  margin-bottom: 36px;
}
.booking-page-hero .booking-visual-wrap { flex-shrink: 0; width: 150px; }
.booking-page-hero img { width: 100%; display: block; }
.booking-page-hero h1 { font-size: clamp(28px, 3.6vw, 40px); }
.booking-visual-wrap { position: relative; display: inline-block; }
.qbubble {
  position: absolute; top: 8px; right: -8px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--text-dark); color: var(--bg-light); font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.booking-intro { font-size: 16px; color: var(--text-muted-dark); margin-top: 18px; line-height: 1.6; }
.booking-intro.timer { margin-top: 10px; font-weight: 500; color: var(--text-dark); }

.booking-form { margin-top: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.field label {
  display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted-dark); margin-bottom: 8px;
}
.field input, .field select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--border-light);
  border-radius: 8px; font-size: 15px; font-family: var(--font-body); background: var(--bg-light);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--text-dark); }
.field { margin-bottom: 18px; }
.field-hint { font-size: 12.5px; color: var(--text-muted-dark); margin-top: 7px; }

.booking-disclaimer {
  font-size: 13px; color: var(--text-muted-dark); text-align: center;
  margin-top: 16px; line-height: 1.55;
}
.secure-row {
  margin-top: 18px; padding: 13px; border-radius: 8px; background: var(--bg-gray);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 500;
}
.trust-row {
  margin-top: 12px; padding: 16px; border-radius: 8px; background: var(--bg-gray);
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px;
  font-size: 13.5px; font-weight: 600; text-align: center;
}
.trust-row span { display: inline-flex; align-items: center; gap: 5px; justify-content: center; }
.qmark-sm {
  width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(17,17,17,0.4);
  font-size: 9px; font-weight: 500; display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted-dark);
}

/* ---------- Info tooltips (qmark / qmark-sm / qbubble) ---------- */
[data-tip]:not(.qbubble) { position: relative; }
[data-tip] { cursor: help; }
[data-tip]::after {
  content: attr(data-tip);
  position: absolute; bottom: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--text-dark); color: var(--bg-light);
  padding: 9px 12px; border-radius: 7px;
  font-size: 12.5px; font-weight: 500; line-height: 1.4;
  text-transform: none; letter-spacing: normal; font-family: var(--font-body);
  width: max-content; max-width: 220px; text-align: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 30;
}
[data-tip]::before {
  content: ""; position: absolute; bottom: calc(100% + 4px); left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--text-dark);
  opacity: 0; transition: opacity 0.15s ease;
  pointer-events: none; z-index: 30;
}
[data-tip]:hover::after, [data-tip]:focus-visible::after,
[data-tip]:hover::before, [data-tip]:focus-visible::before {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
.form-msg {
  margin-top: 16px; padding: 14px 16px; border-radius: 8px; background: #f0f0f0;
  border: 1px solid #111111; font-size: 14px; display: none;
}
.form-msg.show { display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: var(--text-light); padding: 80px 0 30px; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid var(--border-dark);
}
.footer-brand p { font-size: 14.5px; color: var(--text-muted-light); margin-top: 16px; max-width: 260px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: rgba(255,255,255,0.08); }
.footer-col h4 { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted-light); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; font-size: 14.5px; }
.footer-col ul li a { color: rgba(255,255,255,0.85); }
.footer-col ul li a:hover { color: var(--text-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 26px; font-size: 13px; color: var(--text-muted-light); flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .wrap { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .moments-grid { grid-template-columns: 1fr; }
  .rent-g1 .wrap { grid-template-columns: 1fr; gap: 40px; }
  .rent-g1-image { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 640px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero-content { padding: 60px 20px; }
  .trust-row { grid-template-columns: 1fr; }
  .booking-page-hero { flex-direction: column; align-items: flex-start; gap: 20px; }
  .booking-page-hero .booking-visual-wrap { width: 160px; }
}
