:root {
  --bg: #0a0a0d;
  --bg-2: #111116;
  --card: #15151c;
  --border: #262630;
  --text: #f5f5f7;
  --muted: #9a9aa6;
  --gold: #e8c062;
  --gold-2: #f7d97f;
  --gold-dark: #b88a2d;
  --grad-gold: linear-gradient(135deg, #f7d97f 0%, #e8c062 45%, #b88a2d 100%);
  --shadow-gold: 0 18px 60px -18px rgba(232, 192, 98, .55);
  --radius: 16px;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

button {
  font-family: inherit
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%
}

@media(min-width:640px) {
  .container {
    padding: 0 28px
  }
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 13, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px
}
@media (max-width: 480px) {

  .nav-inner {
    padding: 10px 0;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 1
}

.brand img {
  height: 40px;
  width: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(232, 192, 98, .4);
  flex-shrink: 0;
  margin-left: 10px
}

.brand-name {
  font-weight: 900;
  letter-spacing: .14em;
  font-size: 14px;
  white-space: nowrap
}

.brand-tag {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap
}

@media (max-width: 480px) {

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 12px;
    letter-spacing: .10em;
  }

  .brand-tag {
    font-size: 8px;
    letter-spacing: .12em;
  }
}


.nav-links {
  display: none;
  align-items: center;
  gap: 6px
}

.nav-links a {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: all .2s;
  text-transform: uppercase;
  letter-spacing: .08em
}

.nav-links a:not(.btn-gold):hover {
  color: var(--gold);
  background: rgba(232, 192, 98, .1)
}

.nav-call {
  margin-left: 8px;
  font-size: 12px !important;
  padding: 10px 18px !important;
  color: #1a1206 !important;
  letter-spacing: .04em !important
}

@media(min-width:900px) {
  .nav-links {
    display: flex
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(232, 192, 98, .08);
  border: 1px solid rgba(232, 192, 98, .3);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
  margin-right: 10px
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: .3s
}

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

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

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

@media(min-width:900px) {
  .hamburger {
    display: none
  }
}

@media (max-width: 480px) {

  .hamburger {
    width: 38px;
    height: 38px;
    padding: 8px;
  }
}

/* Mobile menu */
@media(max-width:899px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(10, 10, 13, .98);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    transform: translateY(-120%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    z-index: 50
  }

  .nav-links.open {
    transform: translateY(0)
  }

  .nav-links a {
    padding: 14px 18px;
    font-size: 14px;
    text-align: left
  }

  .nav-call {
    margin-left: 0 !important;
    margin-top: 8px;
    text-align: center;
    justify-content: center;
    display: inline-flex
  }
}

/* BUTTONS */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 20px;
  cursor: pointer;
  border: none;
  transition: transform .2s, filter .2s, box-shadow .2s;
  white-space: nowrap;
  text-align: center;
  justify-content: center
}

.pill.lg {
  padding: 14px 26px;
  font-size: 15px
}

.btn-gold {
  background: var(--grad-gold);
  color: #1a1206;
  box-shadow: var(--shadow-gold)
}

.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.08)
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(232, 192, 98, .55)
}

.btn-outline:hover {
  background: rgba(232, 192, 98, .12)
}

.btn-dark {
  background: #0a0a0d;
  color: var(--gold)
}

.btn-dark:hover {
  transform: translateY(-2px)
}

.full {
  width: 100%;
  margin-top: 10px
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 60px
}

@media(min-width:900px) {
  .hero {
    padding: 80px 0 110px
  }
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 140vw);
  height: 600px;
  background: radial-gradient(closest-side, rgba(232, 192, 98, .22), transparent 70%);
  pointer-events: none;
  z-index: 0
}

.hero-glow-2 {
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(closest-side, rgba(232, 192, 98, .12), transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: float 8s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-20px)
  }
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: center;
  z-index: 1
}

@media(min-width:900px) {
  .hero-grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 60px
  }
}

@media(max-width: 768px) {
  .hero-grid {
    gap: 24px;
  }

  .hero {
    padding: 24px 0 40px;
  }

  .hero-meta {
    gap: 10px;
    font-size: 12px;
  }
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(232, 192, 98, .45);
  background: rgba(232, 192, 98, .08);
  color: var(--gold);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase
}

@media(min-width:640px) {
  .chip {
    font-size: 11px;
    letter-spacing: .18em
  }
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulseDot 2s infinite
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 12px var(--gold)
  }

  50% {
    box-shadow: 0 0 20px var(--gold), 0 0 4px var(--gold)
  }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(34px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 18px 0 18px
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-family: 'Playfair Display', serif
}

.grad {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.lead {
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.6;
  max-width: 520px
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px
}

.hero-cta .pill {
  flex: 1 1 auto;
  min-width: 140px
}

@media(min-width:480px) {
  .hero-cta .pill {
    flex: 0 0 auto
  }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted)
}

.hero-meta b {
  color: var(--text)
}

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

.hero-art {
  position: relative;
  margin-top: 20px
}

@media(min-width:900px) {
  .hero-art {
    margin-top: 0
  }
}

.hero-art-glow {
  position: absolute;
  inset: -20px;
  background: var(--grad-gold);
  opacity: .22;
  filter: blur(60px);
  border-radius: 30px;
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: .18
  }

  50% {
    opacity: .32
  }
}

.hero-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(232, 192, 98, .35);
  box-shadow: var(--shadow-gold);
  z-index: 1
}

.hero-card img {
  width: 100%;
  height: clamp(260px, 52vw, 480px);
  object-fit: cover;
  display: block;
  transition: transform .8s ease
}

.hero-card:hover img {
  transform: scale(1.04)
}

.hero-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(10, 10, 13, .95), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px
}

.hero-card-overlay .label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold)
}

.hero-card-overlay .model {
  font-weight: 800;
  margin-top: 4px;
  font-size: 14px
}

.badge-24 {
  background: var(--grad-gold);
  color: #1a1206;
  font-weight: 900;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px
}

.float-card {
  position: absolute;
  bottom: -18px;
  left: -12px;
  background: #fff;
  color: #1a1206;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .6);
  z-index: 2
}

@media(min-width:640px) {
  .float-card {
    bottom: -22px;
    left: -22px;
    padding: 14px 20px
  }
}

.float-card .t {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7a5a18
}

.float-card .v {
  font-size: 22px;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

@media(min-width:640px) {
  .float-card .v {
    font-size: 24px
  }
}

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #0e0e13, #0a0a0d)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 32px 20px;
  text-align: center
}

@media(min-width:700px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 40px 28px
  }
}

.stats-grid b {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.5vw, 38px);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900
}

.stats-grid span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600
}

/* FEATURES */
.features {
  padding: 50px 0
}

@media(min-width:900px) {
  .features {
    padding: 70px 0
  }
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

@media(min-width:640px) {
  .feat-grid {
    gap: 20px
  }
}

@media(min-width:900px) {
  .feat-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.feat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: transform .25s, border-color .25s, box-shadow .25s
}

.feat:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 192, 98, .5);
  box-shadow: 0 12px 30px -10px rgba(232, 192, 98, .2)
}

.feat .ic {
  font-size: 30px;
  margin-bottom: 10px
}

.feat h4 {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 6px
}

.feat p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5
}

/* SECTIONS */
.section {
  padding: 60px 0
}

@media(min-width:900px) {
  .section {
    padding: 90px 0
  }
}

.section.alt {
  background: var(--bg-2)
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 10px
}

@media(min-width:900px) {
  .section-head {
    margin-bottom: 52px
  }
}

.kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase
}

.kicker.dark {
  color: #1a1206
}

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4.5vw, 46px);
  font-weight: 900;
  margin: 10px 0 8px;
  letter-spacing: -.01em;
  line-height: 1.15
}

.section-head p {
  color: var(--muted);
  font-size: 14px;
  max-width: 560px;
  margin: 0 auto
}

@media(min-width:640px) {
  .section-head p {
    font-size: 15px
  }
}

/* RATES */
.route-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr
}

@media(min-width:560px) {
  .route-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
  }
}

@media(min-width:900px) {
  .route-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
  }
}

.route{
  position:relative;
  overflow:hidden;

  background:
    radial-gradient(circle at top right,
    rgba(232,192,98,.08),
    transparent 35%),
    linear-gradient(
    145deg,
    #171720,
    #0d0d14);

  border:1px solid rgba(232,192,98,.18);
  border-radius:24px;

  padding:24px;

  cursor:pointer;

  transition:all .35s ease;
}

.route:hover{
  transform:translateY(-8px);
  border-color:rgba(232,192,98,.45);

  box-shadow:
    0 25px 60px rgba(0,0,0,.45),
    0 0 35px rgba(232,192,98,.12);
}

.route::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 192, 98, .18), transparent 70%);
  transition: transform .4s
}

.route:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold)
}

.route:hover::after {
  transform: scale(1.4)
}

.route .from-to {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap
}

.route .from-to b {
  color: var(--text);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px
}

@media(min-width:640px) {
  .route .from-to b {
    font-size: 15px
  }
}

@media(max-width: 480px) {
  .route {
    padding: 18px;
  }

  .route .price {
    width: 100%;
    min-width: auto;
    font-size: 18px;
  }

  .route .cta {
    height: 50px;
    font-size: 11px;
  }
}

.route .price{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-width:120px;
  height:52px;

  margin-top:18px;

  padding:0 20px;

  border-radius:14px;

  background:var(--grad-gold);
  color:#111;

  font-size:20px;
  font-weight:900;
  font-family:'Playfair Display',serif;

  box-shadow:0 10px 25px rgba(232,192,98,.18);
}

.route .cta{
  margin-top:20px;

  display:flex;
  align-items:center;
  justify-content:center;

  width:100%;
  height:58px;

  border-radius:18px;

  background:rgba(232,192,98,.08);
  border:1px solid rgba(232,192,98,.25);

  color:#f7d97f;

  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;

  transition:all .3s ease;

  position:relative;
  z-index:2;
}

.route:hover .cta{
  background:var(--grad-gold);
  color:#111;
  border-color:transparent;
}

.route .tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(232, 192, 98, .15);
  border: 1px solid rgba(232, 192, 98, .4);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2
}

/* WHY */
.why-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr)
}

@media(min-width:640px) {
  .why-grid {
    gap: 18px
  }
}

@media(min-width:900px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.why {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: all .25s
}

.why:hover {
  transform: translateY(-4px);
  border-color: var(--gold)
}

.why .ic {
  font-size: 30px;
  margin-bottom: 10px
}

.why h4 {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 8px
}

.why p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5
}

.info-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  grid-template-columns: 1fr
}

@media(min-width:760px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px
  }
}

.info-card {
  background: var(--bg);
  border: 1px solid rgba(232, 192, 98, .3);
  border-radius: 18px;
  padding: 24px
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-top: 8px
}

.info-card p {
  color: var(--muted);
  margin-top: 6px;
  font-size: 14px
}

.pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px
}

.pay-row span {
  background: rgba(232, 192, 98, .1);
  border: 1px solid rgba(232, 192, 98, .35);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:980px) {
  .testi-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.testi {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  position: relative
}

.testi::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 18px;
  font-size: 60px;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  opacity: .4;
  line-height: 1
}

.testi .stars {
  margin-bottom: 10px;
  font-size: 14px
}

.testi p {
  color: #d4d4d8;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 14px;
  font-size: 14px
}

.testi b {
  color: var(--gold);
  font-size: 13px
}

/* CTA */
.cta-wrap {
  padding: 20px 20px 60px
}

@media(min-width:640px) {
  .cta-wrap {
    padding: 30px 28px 80px
  }
}

.cta {
  background: var(--grad-gold);
  color: #1a1206;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  box-shadow: var(--shadow-gold)
}

@media(min-width:760px) {
  .cta {
    flex-direction: row;
    align-items: center;
    padding: 44px
  }
}

.big-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 900;
  color: #1a1206;
  line-height: 1;
  word-break: break-all
}

.cta-sub {
  margin-top: 6px;
  font-weight: 600;
  font-size: 13px;
  color: #3a2810
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 20px;
  text-align: center
}

.footer img {
  height: 48px;
  width: auto;
  margin: 0 auto 12px;
  border-radius: 10px
}

@media(max-width: 480px) {
  .social-links a {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}

.footer p {
  color: var(--muted);
  font-size: 12px
}

.small {
  font-size: 11px;
  margin-top: 4px
}

.muted {
  color: var(--muted)
}

.center {
  text-align: center
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  animation: fadeIn .25s ease
}

@media(min-width:640px) {
  .modal {
    align-items: center;
    padding: 20px
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.modal-card {
  background: var(--card);
  border: 1px solid rgba(232, 192, 98, .4);
  border-radius: 20px 20px 0 0;
  padding: 24px;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp .35s cubic-bezier(.2, .9, .3, 1.2);
  -webkit-overflow-scrolling: touch
}

@media(min-width:640px) {
  .modal-card {
    border-radius: 20px;
    padding: 28px
  }
}
@media(max-width: 480px) {
  .modal-card {
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 18px;
  }

  .row-2 {
    grid-template-columns: 1fr;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0
  }

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

.close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2
}

.close:hover {
  background: rgba(255, 255, 255, .1);
  color: var(--text)
}

.modal-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 8px 0 6px;
  padding-right: 40px
}

@media(min-width:640px) {
  .modal-card h3 {
    font-size: 24px
  }
}

.fare {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px
}

.fare b {
  color: var(--gold);
  font-size: 16px
}

#bookForm label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  margin-top: 14px
}

#bookForm input,
#bookForm select,
#bookForm textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none
}

#bookForm input:focus,
#bookForm select:focus,
#bookForm textarea:focus {
  border-color: var(--gold)
}

#bookForm textarea {
  resize: vertical;
  min-height: 60px
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.pay-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
  margin-bottom: 8px
}

.pay-pick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px
}

@media(min-width:480px) {
  .pay-pick {
    grid-template-columns: repeat(4, 1fr)
  }
}

.pp {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 10px 6px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s
}

.pp:hover {
  border-color: rgba(232, 192, 98, .5)
}

.pp.active {
  background: var(--grad-gold);
  color: #1a1206;
  border-color: transparent
}

/* Float WA */
.float-wa {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .5);
  z-index: 50;
  transition: transform .25s;
  animation: pulse 2.4s infinite
}

@media(min-width:640px) {
  .float-wa {
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    font-size: 28px
  }
}

.float-wa:hover {
  transform: scale(1.1)
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 12px 30px rgba(37, 211, 102, .5)
  }

  50% {
    box-shadow: 0 12px 40px rgba(37, 211, 102, .85)
  }
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease
}

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

/* Prevent body scroll when menu/modal open */
body.lock {
  overflow: hidden
}

.modal[hidden]{
  display:none !important;
}

.ic i{
  font-size:32px;
  color:var(--gold);
}

.social-links{
  display:flex;
  justify-content:center;
  gap:15px;
  margin:20px 0;
}

.social-links a{
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#15151c;
  border:1px solid rgba(232,192,98,.25);
  color:var(--gold);
  font-size:20px;
  transition:.3s;
}

.social-links a:hover{
  background:var(--grad-gold);
  color:#111;
  transform:translateY(-4px);
}

.footer-title{
  margin-top:12px;
  font-size:22px;
  font-weight:900;
}

.footer-tagline{
  margin-top:6px;
  color:var(--muted);
}

.powered-by{
  margin-top:10px;
  font-size:14px;
  color:#9ca3af;
}

.powered-by a{
  color:var(--gold);
  font-weight:700;
  text-decoration:none;
  transition:.3s;
}

.powered-by a:hover{
  color:#f7d97f;
  text-decoration:underline;
}

.seo-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
  margin-top:40px;
}

.seo-card{
  background:linear-gradient(
    145deg,
    rgba(18,18,28,.95),
    rgba(10,10,18,.95)
  );

  border:1px solid rgba(232,192,98,.15);
  border-radius:20px;
  padding:24px;

  transition:.3s;
}

.seo-card:hover{
  transform:translateY(-6px);
  border-color:rgba(232,192,98,.4);
}

.seo-card h3{
  color:var(--gold);
  margin-bottom:12px;
}

.seo-card p{
  color:#c8c8d0;
  line-height:1.7;
}