/* ============================================================
   ORIENT RENTAL CAR — "Desert Dusk" design system
   ============================================================ */
:root {
  --ink: #0A141F;
  --ink-2: #0E1E2D;
  --ink-3: #12283A;
  --sand: #F1E7D6;
  --sand-dim: #C7B79C;
  --sand-faint: #8A7E6C;
  --gold: #E7A94A;
  --gold-deep: #C6842A;
  --rust: #C85A38;
  --teal: #1C4A55;
  --line: rgba(241, 231, 214, .12);
  --line-2: rgba(241, 231, 214, .22);
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-mono: "Space Grotesk", sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --maxw: 1240px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

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

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--sand);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

::selection {
  background: var(--gold);
  color: var(--ink)
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px
}

.section {
  padding: 120px 0;
  position: relative
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: .7
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -.02em
}

.h-sec {
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  margin: 22px 0
}

.lead {
  color: var(--sand-dim);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 52ch
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .5s var(--ease), background .35s, color .35s, box-shadow .5s var(--ease);
  will-change: transform
}

.btn svg {
  width: 17px;
  height: 17px;
  transition: transform .5s var(--ease)
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 30px -12px rgba(231, 169, 74, .6)
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(231, 169, 74, .75)
}

.btn-primary:hover svg {
  transform: translateX(4px)
}

.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--sand)
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px)
}

.btn-sm {
  padding: 11px 20px;
  font-size: .86rem
}

/* nav */
header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .45s var(--ease), padding .45s var(--ease), border-color .45s;
  border-bottom: 1px solid transparent
}

header.nav.solid {
  background: rgba(10, 20, 31, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line)
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.22rem
}

.brand .mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--gold), var(--gold-deep));
  display: grid;
  place-items: center;
  color: var(--ink);
  box-shadow: 0 6px 18px -8px rgba(231, 169, 74, .7)
}

.logo{
  width: 150px;
  height: 150px;
}

.brand .mark svg {
  width: 22px;
  height: 22px
}

.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .28em;
  color: var(--sand-faint);
  font-weight: 400;
  margin-top: 2px
}

.brand b {
  line-height: 1
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px
}

.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--sand-dim);
  position: relative;
  transition: color .3s
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1.5px;
  width: 0;
  background: var(--gold);
  transition: width .4s var(--ease)
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sand)
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px
}

.nav-phone {
  font-family: var(--font-mono);
  font-size: .9rem;
  color: var(--sand);
  display: flex;
  align-items: center;
  gap: 8px
}

.nav-phone svg {
  width: 15px;
  height: 15px;
  color: var(--gold)
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1px solid var(--line-2);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center
}

.burger span {
  width: 19px;
  height: 2px;
  background: var(--sand);
  border-radius: 2px;
  transition: .35s var(--ease)
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.burger.open span:nth-child(2) {
  opacity: 0
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  padding: 120px 28px 40px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
  display: flex;
  flex-direction: column
}

.mobile-menu.open {
  transform: translateY(0)
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--sand)
}

.mobile-menu .btn {
  margin-top: 32px;
  justify-content: center
}

/* ── nav dropdown ─────────────────────────────────────────── */
.nav-dropdown {
  position: relative
}

.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 500;
  color: var(--sand-faint);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color .25s
}

.nav-dropdown-btn:hover {
  color: var(--sand)
}

.nav-dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform .25s var(--ease)
}

.nav-dropdown-btn[aria-expanded="true"] .nav-dropdown-arrow {
  transform: rotate(180deg)
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: rgba(14, 27, 41, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease)
}

.nav-dropdown-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0)
}

.nav-dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--sand-faint);
  padding: 10px 14px;
  border-radius: 8px;
  transition: background .18s, color .18s
}

.nav-dropdown-item:hover {
  background: rgba(255,255,255,.07);
  color: var(--sand)
}

/* ── mobile dropdown group ────────────────────────────────── */
.mobile-dropdown-group {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line)
}

.mobile-dropdown-label {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  padding: 16px 0 8px;
  color: var(--sand-faint)
}

.mobile-dropdown-item {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--sand-faint);
  padding: 10px 16px;
  border-radius: 8px;
  transition: background .18s, color .18s
}

.mobile-dropdown-item:hover {
  background: rgba(255,255,255,.07);
  color: var(--sand)
}

/* ── info popup modal ─────────────────────────────────────── */
.info-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s var(--ease)
}

.info-overlay.open {
  opacity: 1;
  pointer-events: auto
}

.info-modal {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 18px;
  width: 100%;
  max-width: 700px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  transform: translateY(14px) scale(.97);
  transition: transform .28s var(--ease)
}

.info-overlay.open .info-modal {
  transform: none
}

.info-modal-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0
}

.info-modal-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sand)
}

.info-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--sand-faint);
  transition: background .18s, color .18s
}

.info-modal-close:hover {
  background: rgba(255,255,255,.07);
  color: var(--sand)
}

.info-modal-close svg {
  width: 18px;
  height: 18px
}

.info-modal-bd {
  overflow-y: auto;
  padding: 24px 26px 28px;
  color: var(--sand-faint);
  font-size: .93rem;
  line-height: 1.75
}

.info-modal-bd h4 {
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 20px 0 8px
}

.info-modal-bd h4:first-child {
  margin-top: 0
}

.info-modal-bd p {
  margin: 0 0 12px
}

.info-modal-bd ul {
  margin: 0 0 12px;
  padding-left: 20px
}

.info-modal-bd li {
  margin-bottom: 5px
}

.info-modal-bd strong {
  color: var(--sand)
}

.info-loader {
  display: flex;
  justify-content: center;
  padding: 40px 0
}

.info-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .7s linear infinite
}

@keyframes spin {
  to { transform: rotate(360deg) }
}

/* hero (home) */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden
}

.sky {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 96%, rgba(200, 90, 56, .55) 0%, rgba(200, 90, 56, 0) 42%), radial-gradient(90% 70% at 50% 100%, rgba(231, 169, 74, .5) 0%, rgba(231, 169, 74, 0) 40%), linear-gradient(180deg, #070E17 0%, #0A1826 40%, #14283A 68%, #22384A 100%)
}

.stars {
  position: absolute;
  inset: 0;
  opacity: .55
}

.sun {
  position: absolute;
  left: 50%;
  bottom: 14%;
  transform: translateX(-50%);
  width: min(46vw, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #FFE7B0 0%, #F3B44E 34%, #D97A34 62%, rgba(200, 90, 56, 0) 72%);
  filter: blur(2px);
  animation: sunPulse 7s ease-in-out infinite
}

@keyframes sunPulse {

  0%,
  100% {
    opacity: .9;
    transform: translateX(-50%) scale(1)
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.03)
  }
}

.scene {
  position: absolute;
  inset: 0
}

.layer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  will-change: transform
}

.dune {
  width: 100%;
  display: block
}

.d1 {
  bottom: 0;
  z-index: 2
}

.d2 {
  bottom: 0;
  z-index: 1;
  opacity: .9
}

.d3 {
  bottom: 0;
  z-index: 0;
  opacity: .75
}

.road-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  z-index: 3;
  overflow: hidden
}

.road {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%
}

.dash {
  stroke: var(--gold);
  stroke-width: 6;
  stroke-dasharray: 26 34;
  animation: dashMove 1.1s linear infinite
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -60
  }
}

.car-hero {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: clamp(120px, 16vw, 210px);
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, .55));
  animation: carBob 4s ease-in-out infinite
}

@keyframes carBob {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(-6px)
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(180deg, rgba(10, 20, 31, .5) 0%, rgba(10, 20, 31, 0) 26%, rgba(10, 20, 31, 0) 55%, rgba(10, 20, 31, .72) 100%)
}

.hero-in {
  position: relative;
  z-index: 6;
  width: 100%;
  padding-bottom: 9vh
}

.hero h1 {
  font-size: clamp(2.9rem, 8.2vw, 7.2rem);
  font-weight: 800;
  letter-spacing: -.03em
}

.hero h1 .line {
  display: block;
  overflow: hidden
}

.hero h1 .line span {
  display: block;
  transform: translateY(110%);
  animation: riseUp 1s var(--ease) forwards
}

.hero h1 .line:nth-child(1) span {
  animation-delay: .15s
}

.hero h1 .line:nth-child(2) span {
  animation-delay: .3s
}

.hero h1 .accent {
  color: var(--gold)
}

@keyframes riseUp {
  to {
    transform: translateY(0)
  }
}

.hero-sub {
  margin-top: 26px;
  max-width: 46ch;
  color: var(--sand-dim);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  opacity: 0;
  animation: fadeUp 1s var(--ease) .6s forwards
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .78s forwards
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-badges {
  margin-top: 52px;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .95s forwards
}

.hbadge {
  display: flex;
  align-items: center;
  gap: 12px
}

.hbadge .n {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--sand)
}

.hbadge .t {
  font-size: .82rem;
  color: var(--sand-faint);
  line-height: 1.25;
  max-width: 14ch
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--sand-faint);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .3em
}

.scroll-cue .bar {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: cueFall 1.8s ease-in-out infinite
}

@keyframes cueFall {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  45% {
    transform: scaleY(1);
    transform-origin: top
  }

  55% {
    transform: scaleY(1);
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

/* marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--ink-2);
  overflow: hidden;
  white-space: nowrap
}

.marquee .track {
  display: inline-flex;
  animation: scrollX 32s linear infinite
}

.marquee:hover .track {
  animation-play-state: paused
}

.marquee .item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--sand);
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding: 0 34px
}

.marquee .item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold)
}

.marquee .item.dim {
  color: transparent;
  -webkit-text-stroke: 1px var(--sand-faint)
}

@keyframes scrollX {
  to {
    transform: translateX(-50%)
  }
}

/* about */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center
}

.about-copy p {
  margin-top: 20px;
  color: var(--sand-dim)
}

.about-copy p.big {
  color: var(--sand);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.5;
  font-weight: 500
}

.about-copy p.big em {
  font-style: normal;
  color: var(--gold)
}

.about-points {
  list-style: none;
  margin-top: 38px;
  display: grid;
  gap: 2px
}

.about-points li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--line)
}

.about-points li:last-child {
  border-bottom: 1px solid var(--line)
}

.about-points .ic {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  color: var(--gold);
  margin-top: 2px
}

.about-points b {
  font-family: var(--font-display);
  display: block;
  font-size: 1.05rem
}

.about-points span {
  color: var(--sand-faint);
  font-size: .92rem
}

.about-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #12283A, #0A141F);
  border: 1px solid var(--line-2)
}

.about-visual .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 70% 20%, rgba(231, 169, 74, .28), transparent 60%)
}

.mini-scene {
  position: absolute;
  inset: 0
}

.about-visual .stamp {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 3
}

.about-visual .stamp .yr {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1
}

.about-visual .stamp small {
  font-family: var(--font-mono);
  letter-spacing: .24em;
  font-size: .66rem;
  color: var(--sand-dim);
  text-transform: uppercase
}

.about-visual .compass {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 3;
  width: 78px;
  height: 78px;
  opacity: .85;
  animation: spin 26s linear infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

/* services (home) */
.services {
  background: linear-gradient(180deg, var(--ink) 0%, #081019 100%)
}

.svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px
}

.svc-list {
  display: grid;
  gap: 22px
}

.svc {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 40px 44px;
  border-radius: 20px;
  background: linear-gradient(150deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .6s var(--ease), border-color .5s, box-shadow .6s var(--ease);
  cursor: pointer
}

.svc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .6s var(--ease)
}

.svc:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .7)
}

.svc:hover::before {
  transform: scaleY(1)
}

.svc .num {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .2em;
  align-self: flex-start
}

.svc-ico {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(231, 169, 74, .1);
  border: 1px solid rgba(231, 169, 74, .25);
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: .5s var(--ease)
}

.svc:hover .svc-ico {
  background: var(--gold);
  color: var(--ink);
  transform: rotate(-6deg) scale(1.05)
}

.svc-ico svg {
  width: 32px;
  height: 32px
}

.svc-body h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem)
}

.svc-body p {
  color: var(--sand-dim);
  margin-top: 10px;
  max-width: 56ch
}

.svc-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.svc-tags span {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--sand-dim);
  border: 1px solid var(--line-2);
  padding: 6px 12px;
  border-radius: 100px
}

.svc-cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem
}

.svc-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: var(--sand);
  transition: .5s var(--ease);
  flex: 0 0 auto
}

.svc:hover .svc-arrow {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: rotate(45deg)
}

.svc-arrow svg {
  width: 20px;
  height: 20px
}

/* stats */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.stat {
  padding: 24px;
  text-align: center;
  border-right: 1px solid var(--line)
}

.stat:last-child {
  border-right: none
}

.stat .n {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--sand);
  line-height: 1
}

.stat .n .plus {
  color: var(--gold)
}

.stat .t {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sand-faint);
  margin-top: 12px
}

/* testimonials */
.quotes {
  background: radial-gradient(90% 120% at 100% 0%, rgba(28, 74, 85, .4), transparent 55%), var(--ink)
}

.slider {
  position: relative;
  margin-top: 56px;
  overflow: hidden
}

.slides {
  display: flex;
  transition: transform .7s var(--ease)
}

.slide {
  min-width: 100%;
  padding: 6px
}

.qcard {
  background: linear-gradient(155deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(34px, 5vw, 60px)
}

.qmark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: .5;
  color: var(--gold);
  opacity: .35;
  height: 38px
}

.qtext {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.7vw, 2rem);
  line-height: 1.35;
  letter-spacing: -.01em;
  margin: 10px 0 34px;
  color: var(--sand)
}

.qmeta {
  display: flex;
  align-items: center;
  gap: 16px
}

.qava {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), var(--gold-deep));
  display: grid;
  place-items: center;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  flex: 0 0 auto
}

.qwho b {
  font-family: var(--font-display);
  display: block
}

.qwho span {
  color: var(--sand-faint);
  font-size: .86rem
}

.qstars {
  margin-left: auto;
  color: var(--gold);
  letter-spacing: 3px
}

.slider-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px
}

.dots {
  display: flex;
  gap: 9px
}

.dot-btn {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line-2);
  transition: .4s var(--ease)
}

.dot-btn.active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px
}

.arrows {
  margin-left: auto;
  display: flex;
  gap: 10px
}

.arrow-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: var(--sand);
  transition: .4s var(--ease)
}

.arrow-btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold)
}

.arrow-btn svg {
  width: 19px;
  height: 19px
}

/* contact */
.contact {
  background: linear-gradient(180deg, #081019, var(--ink))
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px
}

.contact-info .h-sec {
  margin-top: 20px
}

.contact-lead {
  color: var(--sand-dim);
  max-width: 40ch
}

.info-list {
  margin-top: 40px;
  display: grid;
  gap: 4px
}

.info-item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line)
}

.info-item:last-child {
  border-bottom: 1px solid var(--line)
}

.info-item .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(231, 169, 74, .1);
  border: 1px solid rgba(231, 169, 74, .22);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex: 0 0 auto
}

.info-item .ic svg {
  width: 20px;
  height: 20px
}

.info-item small {
  display: block;
  color: var(--sand-faint);
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase
}

.info-item b {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700
}

/* forms */
.form-card {
  background: linear-gradient(155deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 44px)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.field {
  margin-bottom: 16px
}

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sand-faint);
  margin-bottom: 9px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(7, 14, 22, .6);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--sand);
  font-family: var(--font-body);
  font-size: .98rem;
  transition: border-color .3s, box-shadow .3s
}

.field textarea {
  resize: vertical;
  min-height: 110px
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(231, 169, 74, .15)
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23C7B79C' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center
}

.form-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 8px
}

.form-ok {
  display: none;
  text-align: center;
  padding: 30px 10px
}

.form-ok.show {
  display: block
}

.form-ok .check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(231, 169, 74, .14);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--gold)
}

.form-ok h3 {
  font-size: 1.5rem;
  margin-bottom: 8px
}

.form-ok p {
  color: var(--sand-dim);
  max-width: 36ch;
  margin: 0 auto
}

/* ============================================================
   SUBPAGES (listings, detail, booking)
   ============================================================ */
.subhero {
  position: relative;
  padding: 150px 0 70px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #070E17, #0C1B29)
}

.subhero .subglow {
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 120% at 85% -10%, rgba(231, 169, 74, .22), transparent 55%)
}

.subhero .duneline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .5
}

.subhero-in {
  position: relative;
  z-index: 2
}

.crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--sand-faint);
  margin-bottom: 22px;
  flex-wrap: wrap
}

.crumb a {
  color: var(--sand-dim);
  transition: color .3s
}

.crumb a:hover {
  color: var(--gold)
}

.crumb .sep {
  opacity: .5
}

.subhero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800
}

.subhero p.lead {
  margin-top: 18px
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px
}

.chip {
  font-family: var(--font-mono);
  font-size: .78rem;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  color: var(--sand-dim);
  transition: .35s var(--ease)
}

.chip:hover {
  border-color: var(--gold);
  color: var(--sand)
}

.chip.active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold)
}

.card {
  background: linear-gradient(155deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .4s, box-shadow .5s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--line-2);
  box-shadow: 0 34px 60px -34px rgba(0, 0, 0, .75)
}

.card-media {
  aspect-ratio: 16/10;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden
}

.card-media .art {
  width: 82%;
  transition: transform .6s var(--ease)
}

.card:hover .card-media .art {
  transform: translateX(6px) scale(1.04)
}

.card-media .cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(10, 20, 31, .7);
  border: 1px solid var(--line-2);
  padding: 6px 12px;
  border-radius: 100px;
  color: var(--sand);
  backdrop-filter: blur(6px)
}

.card-media .fav {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--gold);
  opacity: .85
}

.card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.card-body h3 {
  font-size: 1.35rem
}

.card-desc {
  color: var(--sand-dim);
  font-size: .9rem;
  margin-top: 8px;
  flex: 1
}

.card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0;
  color: var(--sand-dim);
  font-size: .82rem
}

.card-specs span {
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.card-specs svg {
  width: 15px;
  height: 15px;
  color: var(--gold)
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line)
}

.price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--sand)
}

.price .unit {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--sand-faint);
  font-weight: 400;
  margin-left: 3px
}

.price .cur {
  color: var(--gold)
}

.card-foot .go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: .86rem
}

.card-foot .go svg {
  width: 16px;
  height: 16px;
  transition: transform .4s var(--ease)
}

.card:hover .card-foot .go svg {
  transform: translateX(4px)
}

/* detail */
.detail-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: start
}

.detail-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: linear-gradient(160deg, #12283A, #0A141F);
  aspect-ratio: 16/11;
  display: grid;
  place-items: center
}

.detail-media .glow {
  position: absolute;
  inset: 0
}

.detail-media .art {
  width: 80%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, .5))
}

.thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px
}

.thumb {
  flex: 1;
  aspect-ratio: 16/10;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #12283A, #0A141F);
  display: grid;
  place-items: center;
  opacity: .7;
  transition: .4s var(--ease);
  cursor: pointer
}

.thumb:hover {
  opacity: 1;
  border-color: var(--gold)
}

.thumb .art {
  width: 70%
}

.detail-info .cat-tag {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold)
}

.detail-info h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 14px 0 6px
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sand-dim);
  font-size: .88rem;
  margin-bottom: 22px
}

.detail-rating .stars {
  color: var(--gold);
  letter-spacing: 2px
}

.detail-desc {
  color: var(--sand-dim);
  margin-bottom: 26px
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 28px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line)
}

.spec {
  padding: 18px 20px;
  background: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 14px
}

.spec .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(231, 169, 74, .1);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex: 0 0 auto
}

.spec .ic svg {
  width: 19px;
  height: 19px
}

.spec small {
  display: block;
  color: var(--sand-faint);
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase
}

.spec b {
  font-family: var(--font-display);
  font-size: 1.02rem
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sand-dim);
  font-size: .92rem
}

.feature-list svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex: 0 0 auto
}

.buy-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(150deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-2);
  flex-wrap: wrap
}

.buy-bar .price {
  font-size: 2rem
}

.buy-bar .btn-primary {
  flex: 1;
  justify-content: center;
  min-width: 180px
}

/* itinerary (trips) */
.timeline {
  list-style: none;
  margin: 8px 0 30px;
  position: relative
}

.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line-2)
}

.timeline li {
  position: relative;
  padding: 0 0 26px 44px
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--gold)
}

.timeline b {
  font-family: var(--font-display);
  display: block;
  font-size: 1.05rem
}

.timeline span {
  color: var(--sand-dim);
  font-size: .92rem
}

/* booking page */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start
}

.summary {
  position: sticky;
  top: 100px;
  background: linear-gradient(155deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-2);
  border-radius: 20px;
  overflow: hidden
}

.summary-media {
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  position: relative
}

.summary-media .art {
  width: 76%
}

.summary-body {
  padding: 26px
}

.summary-body .cat-tag {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold)
}

.summary-body h3 {
  font-size: 1.4rem;
  margin: 8px 0 16px
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--sand-dim);
  font-size: .92rem
}

.summary-line b {
  color: var(--sand);
  font-family: var(--font-display)
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  margin-top: 6px;
  border-top: 1px solid var(--line-2)
}

.summary-total span {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sand-faint)
}

.summary-total b {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold)
}

.book-form h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 6px
}

.book-form .sub {
  color: var(--sand-dim);
  margin-bottom: 28px
}

/* footer */
footer.ft {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 80px 0 34px
}

.ft-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px
}

.ft-brand p {
  color: var(--sand-dim);
  margin-top: 20px;
  max-width: 34ch;
  font-size: .95rem
}

.ft-social {
  display: flex;
  gap: 12px;
  margin-top: 26px
}

.ft-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: var(--sand-dim);
  transition: .4s var(--ease)
}

.ft-social a:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-3px)
}

.ft-social svg {
  width: 18px;
  height: 18px
}

.ft-col h4 {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand-faint);
  margin-bottom: 20px;
  font-weight: 500
}

.ft-col a {
  display: block;
  color: var(--sand-dim);
  padding: 7px 0;
  font-size: .95rem;
  transition: color .3s, padding-left .3s;
  cursor: pointer
}

.ft-col a:hover {
  color: var(--gold);
  padding-left: 6px
}

.ft-bottom {
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--sand-faint);
  font-size: .85rem
}

.ft-bottom .made {
  font-family: var(--font-mono);
  font-size: .78rem
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

.reveal.d1 {
  transition-delay: .08s
}

.reveal.d2 {
  transition-delay: .16s
}

.reveal.d3 {
  transition-delay: .24s
}

.reveal.d4 {
  transition-delay: .32s
}

.reveal.d5 {
  transition-delay: .4s
}

.reveal.d6 {
  transition-delay: .48s
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px
}

/* responsive */
@media(max-width:980px) {
  .section {
    padding: 90px 0
  }

  .nav-links,
  .nav-phone {
    display: none
  }

  .burger {
    display: flex
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .about-visual {
    aspect-ratio: 16/12;
    max-width: 520px
  }

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

  .grid-cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .book-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .summary {
    position: relative;
    top: 0;
    max-width: 420px
  }

  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .ft-brand {
    grid-column: 1/-1
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr
  }

  .stat:nth-child(2) {
    border-right: none
  }

  .stat {
    border-bottom: 1px solid var(--line)
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: none
  }
}

@media(max-width:640px) {
  .wrap {
    padding: 0 20px
  }

  .svc {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 26px
  }

  .svc .num {
    position: absolute;
    top: 26px;
    right: 26px
  }

  .svc-arrow {
    display: none
  }

  .grid-cards {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .spec-grid,
  .feature-list {
    grid-template-columns: 1fr
  }

  .ft-top {
    grid-template-columns: 1fr 1fr
  }

  .hero-badges {
    gap: 22px
  }

  .buy-bar {
    flex-direction: column;
    align-items: stretch
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto
  }

  .hero h1 .line span {
    transform: none
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}