/* ============================================
   AXEOM CONTENT STUDIO — Obsidian Sapphire
   ============================================ */

:root {
  --bg-void: #040609;
  --bg-deep: #091020;
  --bg-surface: #0F1C38;
  --border: #142040;
  --sapphire-deep: #163572;
  --sapphire: #1E5AAA;
  --sapphire-accent: #6B94CC;
  --sapphire-pale: #A3BDE0;
  --text-primary: #ECF0F7;
  --text-secondary: #D6E2F0;
  --text-body: #8A95A8;
  --text-muted: #5E6B7E;
  --glow: rgba(30, 90, 170, 0.4);
  --glow-soft: rgba(22, 53, 114, 0.22);

  --container: 1180px;
  --pad-x: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 9vw, 112px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-void);
  color: var(--text-body);
  font-family: "DM Sans", Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
button { appearance: none; -webkit-appearance: none; background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }
a { color: var(--sapphire-accent); text-decoration: none; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.center { text-align: center; }

/* Typography */
.display, .h1, .h2, h1, h2, h3 {
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 .5em;
}
.display {
  font-size: clamp(34px, 5.6vw, 60px);
  letter-spacing: -0.02em;
  font-weight: 600;
}
.h1 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
}
.h2, h2 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 500; }
h3 { font-size: clamp(17px, 1.6vw, 20px); font-weight: 500; }
p { margin: 0 0 1em; }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sapphire-accent);
  margin: 0 0 14px;
}
.micro-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sapphire-accent);
  margin: 0 0 28px;
}
.section-sub {
  color: var(--text-body);
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 64ch;
  margin: 0 0 36px;
}
.accent-italic {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--sapphire-accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.005em;
  text-align: center;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--sapphire-accent);
  outline-offset: 3px;
}
.btn-primary {
  background-image: linear-gradient(135deg, var(--sapphire-deep), #2a6fcf);
  color: var(--text-primary);
  box-shadow: 0 0 36px rgba(30,90,170,0.55), 0 6px 22px rgba(0,0,0,0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 48px rgba(30,90,170,0.75), 0 8px 26px rgba(0,0,0,0.4);
  filter: brightness(1.06);
}
.btn-cta { animation: ctaPulse 2.6s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 32px rgba(30,90,170,0.5), 0 6px 22px rgba(0,0,0,0.35); }
  50%      { box-shadow: 0 0 56px rgba(30,90,170,0.78), 0 8px 26px rgba(0,0,0,0.4); }
}
.btn-lg { padding: 18px 30px; font-size: 17px; }
.btn-sm { padding: 11px 16px; font-size: 14px; }
.btn-rental {
  background-image: linear-gradient(135deg, var(--sapphire), #2a78d4);
  color: var(--text-primary);
  padding: 12px 18px;
  font-size: 14px;
  box-shadow: 0 0 18px rgba(30,90,170,0.32);
}
.btn-rental:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(30,90,170,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--sapphire-accent);
  border: 1px solid var(--sapphire);
}
.btn-outline:hover {
  background: rgba(30,90,170,0.08);
  color: var(--text-primary);
  border-color: var(--sapphire-accent);
}

.text-link {
  color: var(--sapphire-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.text-link:hover { color: var(--text-primary); }
.link-right { text-align: right; margin-top: 18px; font-size: 14px; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(4, 6, 9, 0.78);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}
.nav-logo img {
  height: 24px;
  width: auto;
  filter: brightness(1.05);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-spots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(30,90,170,0.10);
  color: var(--sapphire-pale);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.header-spots::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: #6ad08a;
  box-shadow: 0 0 8px rgba(106,208,138,0.8);
}

/* ============================================
   SECTION 1 — HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(80px, 12vh, 160px);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/images/hero-wide.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,6,9,0.55) 0%, rgba(4,6,9,0.78) 70%, rgba(4,6,9,0.92) 100%);
  z-index: 1;
}
.hero-glow {
  position: absolute;
  width: 720px; height: 720px;
  left: 50%; top: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(22,53,114,0.45) 0%, rgba(22,53,114,0) 65%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 940px;
}
.hero-sub {
  color: var(--text-secondary);
  font-size: clamp(16px, 1.7vw, 19px);
  max-width: 720px;
  margin: 18px 0 34px;
  line-height: 1.55;
}
.hero-foot {
  color: var(--text-secondary);
  font-size: 13px;
  margin: 18px 0 0;
}

/* Founding counter (under hero CTA) */
.founding-counter {
  margin: 22px 0 0;
  max-width: 420px;
}
.founding-counter .bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(30,90,170,0.18);
  border: 1px solid var(--border);
  overflow: hidden;
}
.founding-counter .bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--sapphire), var(--sapphire-accent));
  box-shadow: 0 0 12px rgba(30,90,170,0.55);
  transition: width .4s ease;
}
.founding-counter .label {
  margin: 10px 0 0;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}
.founding-counter .label strong {
  color: var(--sapphire-pale);
  font-weight: 600;
}

/* ============================================
   SECTION 2 — SOCIAL PROOF
   ============================================ */
.section { padding-block: var(--section-y); }
.social { background: var(--bg-void); border-top: 1px solid var(--border); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-quote {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.review-attr {
  color: var(--text-body);
  font-size: 14px;
  margin: 0;
}
.review-stars {
  color: var(--sapphire-accent);
  font-size: 15px;
  letter-spacing: 0.06em;
  margin: 0;
}

/* ============================================
   SECTION 3 — WHAT YOU GET
   ============================================ */
.what { background: var(--bg-deep); }
.what-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  margin-bottom: 36px;
}
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.45;
}
.checklist .check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: var(--sapphire);
}
.what-photo img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.guarantee {
  color: var(--sapphire-accent);
  font-weight: 500;
  text-align: center;
  margin: 8px 0 32px;
  font-size: 15px;
  letter-spacing: 0.02em;
}

/* ============================================
   SECTION 4 — HOW IT WORKS
   ============================================ */
.how { background: var(--bg-void); }
.steps {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 26px;
}
.step-num {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--sapphire-accent);
  margin-bottom: 18px;
}
.step-title {
  color: var(--text-primary);
  font-size: 19px;
  margin: 0 0 10px;
}
.step p {
  color: var(--text-body);
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

/* ============================================
   SECTION 5 — LOCATION
   ============================================ */
.location { background: var(--bg-deep); }
.map-wrap {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-surface);
  margin: 8px 0 32px;
}
.map-wrap iframe { display: block; width: 100%; height: 450px; border: 0; }
.from-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 8px 0 28px;
}
.from-cell {
  background: var(--bg-void);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
}

/* ============================================
   SECTION 6 — ADD-ONS
   ============================================ */
.addons { background: var(--bg-void); }
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 12px;
}
.addon-card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 28px;
}
.addon-title {
  color: var(--text-primary);
  font-size: 20px;
  margin: 0 0 14px;
}
.addon-price {
  color: var(--sapphire-accent);
  font-weight: 500;
}
.addon-card p {
  color: var(--text-body);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   SECTION 7 — CTA REPEAT
   ============================================ */
.cta-repeat {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  width: 800px; height: 500px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(22,53,114,0.35) 0%, rgba(22,53,114,0) 65%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.cta-repeat .container { position: relative; z-index: 1; }
.cta-sub { margin: -6px 0 28px; }

/* ============================================
   SECTION 8 — RENTALS
   ============================================ */
.rentals { background: var(--bg-void); }
.rental-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 10px 0 28px;
}
.rental-card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.rental-dur {
  color: var(--sapphire-accent);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0;
}
.rental-price {
  margin: 4px 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.rental-price .strike {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 14px;
}
.rental-price .now {
  color: var(--text-primary);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.btn-rental { width: 100%; }
.rentals-foot {
  color: var(--text-body);
  text-align: center;
  font-size: 14px;
  max-width: 70ch;
  margin: 0 auto;
}

/* ============================================
   SECTION 9 — WHATSAPP
   ============================================ */
.whatsapp { background: var(--bg-deep); }
.wa-foot {
  color: var(--text-muted);
  font-size: 13px;
  margin: 16px 0 0;
}

/* ============================================
   SECTION 10 — FAQ
   ============================================ */
.faq { background: var(--bg-void); }
.faq-list {
  margin-top: 20px;
  border-top: 1px solid var(--border);
}
.faq details {
  border-bottom: 1px solid var(--border);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  position: relative;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 1.5px solid var(--sapphire-accent);
  border-bottom: 1.5px solid var(--sapphire-accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq summary:hover { color: var(--sapphire-accent); }
.faq details p {
  color: var(--text-body);
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  max-width: 72ch;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-void);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-col p { margin: 0 0 8px; color: var(--text-body); font-size: 14px; }
.footer-logo {
  height: 26px;
  width: auto;
  margin-bottom: 16px;
}
.footer-head {
  color: var(--text-primary);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-strip {
  border-top: 1px solid var(--border);
  padding: 22px var(--pad-x);
  text-align: center;
}
.footer-strip p {
  margin: 0 0 6px;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-strip p:last-child { margin-bottom: 0; }
.footer-legal {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a { font-size: 13px; }
.footer-legal span { color: var(--text-muted); }

/* Sticky mobile booking bar */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background-image: linear-gradient(135deg, var(--sapphire-deep), #2a6fcf);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  text-align: center;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 32px rgba(0,0,0,0.45), 0 -2px 0 rgba(30,90,170,0.45);
  transform: translateY(120%);
  transition: transform .25s ease;
  display: none;
}
.sticky-cta:focus-visible { outline: 2px solid var(--sapphire-accent); outline-offset: 3px; }
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  .sticky-cta.visible { transform: translateY(0); }
  body.has-sticky-cta { padding-bottom: 72px; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .review-grid { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .from-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .rental-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .link-right { text-align: left; }
}

@media (max-width: 768px) {
  .header-spots { display: none; }
}

@media (max-width: 560px) {
  .nav-inner { padding-block: 12px; }
  .nav-logo img { height: 22px; }
  .btn-sm { padding: 10px 14px; font-size: 13px; }
  .btn-lg { padding: 14px 22px; font-size: 15px; }
  .rental-grid { grid-template-columns: 1fr; }
  .review-card { padding: 22px 20px; }
  .step { padding: 26px 22px; }
  .addon-card { padding: 26px 22px; }
  .map-wrap iframe { height: 360px; }
  .hero { min-height: 92vh; min-height: 92dvh; }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal { background: var(--bg-void); }
.legal-inner { max-width: 760px; }
.legal-inner h2 { margin-top: 2em; }
.legal-inner ul { color: var(--text-secondary); padding-left: 1.2em; }
.legal-inner ul li { margin-bottom: .5em; }
.legal-updated { color: var(--text-muted); font-size: 13px; margin-bottom: 28px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
  .btn-cta { animation: none; }
  .sticky-cta { transition: none; }
}
