/* ============================================================
   MUAY Bikes — V2 "Tropical Modern"
   Light, warm, premium travel-brand system.
   Display: Bricolage Grotesque · Body: Nunito Sans
   ============================================================ */

:root {
  /* palette */
  --bg:         #FDFBF7;
  --sand:       #F7F1E4;
  --sand-deep:  #EFE6D2;
  --ink:        #1F312C;
  --ink-soft:   #5B6D67;
  --ink-faint:  #8A9893;
  --teal:       #0E6B5C;
  --teal-dark:  #0A5044;
  --teal-ink:   #093F36;
  --teal-soft:  #E3F0EB;
  --coral:      #FF6B4A;
  --coral-dark: #EE5231;
  --coral-soft: #FFEBE4;
  --gold:       #E8A824;
  --sky:        #3E8FD8;
  --leaf:       #2E9E6B;
  --line:       #EAE2D0;
  --white:      #FFFFFF;
  --wa:         #23B558;

  /* type */
  --font-display: "Bricolage Grotesque", "Nunito Sans", sans-serif;
  --font-body: "Nunito Sans", -apple-system, "Segoe UI", sans-serif;

  /* shape */
  --r-lg: 28px;
  --r-md: 22px;
  --r-sm: 14px;

  /* elevation */
  --shadow-1: 0 1px 2px rgba(31,49,44,.05), 0 4px 14px rgba(31,49,44,.06);
  --shadow-2: 0 2px 4px rgba(31,49,44,.05), 0 12px 32px rgba(31,49,44,.10);
  --shadow-3: 0 4px 8px rgba(31,49,44,.06), 0 24px 56px rgba(31,49,44,.14);

  --wrap: 1160px;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

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

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

section { padding: 96px 0; position: relative; }
section.tight { padding: 72px 0; }
.on-sand { background: var(--sand); }

::selection { background: var(--coral-soft); color: var(--coral-dark); }

/* ---------- kickers, headings ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 20px;
}
.kicker::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  flex: none;
}
.kicker.coral { color: var(--coral-dark); background: var(--coral-soft); }
.kicker.coral::before { background: var(--teal); }

.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .kicker { margin-left: auto; margin-right: auto; }
.sec-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.sec-head p { color: var(--ink-soft); font-size: 1.075rem; }

.squiggle { color: var(--coral); position: relative; white-space: nowrap; }
.squiggle svg {
  position: absolute;
  left: 0; right: 0; bottom: -.28em;
  width: 100%; height: .32em;
  overflow: visible;
}
.squiggle svg path {
  fill: none;
  stroke: var(--coral);
  stroke-width: 6;
  stroke-linecap: round;
  opacity: .5;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform .25s cubic-bezier(.2,.7,.3,1.2), box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 8px 22px rgba(14,107,92,.28); }
.btn-teal:hover { background: var(--teal-dark); box-shadow: 0 12px 28px rgba(14,107,92,.34); }

.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 8px 22px rgba(255,107,74,.3); }
.btn-coral:hover { background: var(--coral-dark); box-shadow: 0 12px 28px rgba(255,107,74,.36); }

.btn-ghost {
  background: var(--white);
  color: var(--teal-ink);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-1);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn-light { background: #fff; color: var(--teal-ink); box-shadow: 0 8px 22px rgba(9,63,54,.22); }
.btn-light:hover { color: var(--teal); }

.btn-lg { padding: 18px 38px; font-size: 1.08rem; }
.btn-sm { padding: 10px 20px; font-size: .92rem; }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--teal);
}
.link-more::after { content: "→"; transition: transform .2s ease; }
.link-more:hover::after { transform: translateX(4px); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(253, 251, 247, .88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 28px rgba(31,49,44,.06);
}
.nav-in {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-mark {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 14px;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(14,107,92,.3);
}
.brand-mark svg { width: 23px; height: 23px; }
.brand span em { font-style: normal; color: var(--coral); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-links a:not(.btn) {
  font-weight: 700;
  font-size: .98rem;
  color: var(--ink-soft);
  padding: 9px 15px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:not(.btn):hover { color: var(--teal-ink); background: var(--sand); }
.nav-links a.is-active { color: var(--teal); background: var(--teal-soft); }
.nav-links .btn { margin-left: 10px; padding: 11px 22px; font-size: .95rem; }

.nav-burger {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--white);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-1);
  position: relative;
  z-index: 110;
}
.nav-burger span {
  position: absolute;
  left: 13px; right: 13px;
  height: 2.5px;
  border-radius: 3px;
  background: var(--ink);
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 22px; }
.nav-burger span:nth-child(3) { top: 28px; }
body.menu-open .nav-burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--bg);
  padding: 110px 28px 40px;
  flex-direction: column;
  gap: 6px;
}
body.menu-open .mobile-menu { display: flex; }
body.menu-open { overflow: hidden; }
.mobile-menu a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--ink);
  padding: 13px 6px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a:not(.btn)::after { content: "→"; color: var(--coral); font-size: 1.2rem; }
.mobile-menu a.is-active { color: var(--teal); }
.mobile-menu .btn { margin-top: 26px; }
.mobile-menu .mm-note {
  margin-top: auto;
  color: var(--ink-faint);
  font-size: .9rem;
}

/* ---------- hero (home) ---------- */
.hero {
  padding: 172px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .kicker { margin-bottom: 24px; }
.hero-hello {
  font-weight: 800;
  color: var(--coral-dark);
  letter-spacing: .02em;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.3rem);
  font-weight: 800;
  margin-bottom: 22px;
}
.hero-sub {
  color: var(--ink-soft);
  font-size: 1.16rem;
  max-width: 33em;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.hero-quicklinks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink-faint);
}
.hero-quicklinks a { color: var(--ink-soft); border-bottom: 2px dotted var(--sand-deep); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.hero-quicklinks a:hover { color: var(--teal); border-color: var(--teal); }

/* trust chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 17px;
  font-size: .92rem;
  font-weight: 800;
  color: var(--teal-ink);
  box-shadow: var(--shadow-1);
}
.chip svg { width: 16px; height: 16px; color: var(--coral); flex: none; }

/* hero collage */
.hero-visual { position: relative; min-height: 520px; }
.hero-blob {
  position: absolute;
  top: 0; right: 0;
  width: min(430px, 88%);
  aspect-ratio: 5/6;
  overflow: hidden;
  border-radius: 58% 42% 44% 56% / 52% 48% 52% 48%;
  box-shadow: var(--shadow-3);
}
.hero-blob img { width: 100%; height: 100%; object-fit: cover; }
.hero-sticker {
  position: absolute;
  width: 210px;
  background: #fff;
  padding: 10px 10px 34px;
  border-radius: 18px;
  box-shadow: var(--shadow-2);
  animation: floaty 7s ease-in-out infinite;
}
.hero-sticker img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: 11px; }
.hero-sticker figcaption {
  position: absolute;
  bottom: 8px; left: 12px; right: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .84rem;
  color: var(--ink-soft);
  text-align: center;
}
.hero-sticker.s1 { --r: -7deg; bottom: 22px; left: -6px; transform: rotate(var(--r)); }
.hero-sticker.s2 { --r: 6deg; bottom: -14px; right: 4px; width: 186px; transform: rotate(var(--r)); animation-delay: -3.4s; }

.hero-badge {
  position: absolute;
  top: 26px; left: 18px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  line-height: 1.25;
  text-align: center;
  padding: 20px 16px;
  border-radius: 50%;
  width: 108px; height: 108px;
  display: grid;
  place-items: center;
  transform: rotate(-9deg);
  box-shadow: 0 12px 26px rgba(255,107,74,.35);
  animation: floaty 6s ease-in-out infinite;
  animation-delay: -1.6s;
}

/* decorative palm */
.palm {
  position: absolute;
  color: var(--teal);
  opacity: .14;
  pointer-events: none;
  transform-origin: bottom center;
  animation: sway 9s ease-in-out infinite;
}
.palm.p-hero { width: 190px; top: 96px; left: -60px; }
.palm.p-flip { transform: scaleX(-1); animation-name: sway-flip; }

/* wave divider */
.wave { display: block; width: 100%; height: 64px; margin-bottom: -1px; }
.wave path { fill: var(--sand); }
.wave.to-bg path { fill: var(--bg); }
.wave.from-sand { background: var(--sand); }

/* ---------- bike cards ---------- */
.bike-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.bike-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.bike-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.7,.3,1.1), box-shadow .3s ease, border-color .3s ease;
  box-shadow: var(--shadow-1);
}
.bike-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: transparent;
}
.bike-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--sand); }
.bike-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.bike-card:hover .bike-photo img { transform: scale(1.05); }
.bike-cc {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(253,251,247,.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal-ink);
  box-shadow: var(--shadow-1);
}

/* elegant no-photo treatment */
.bike-photo.no-photo { display: grid; place-items: center; }
.bike-photo.no-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, var(--coral-soft) 0%, transparent 46%),
    radial-gradient(circle at 18% 84%, var(--teal-soft) 0%, transparent 52%),
    var(--sand);
}
.bike-photo.no-photo .monogram {
  position: relative;
  z-index: 1;
  text-align: center;
}
.bike-photo.no-photo .monogram b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.7rem;
  letter-spacing: -.02em;
  color: var(--teal);
  line-height: 1;
}
.bike-photo.no-photo .monogram small {
  display: inline-block;
  margin-top: 8px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.bike-photo.no-photo .scoot-mark {
  position: absolute;
  right: -26px; bottom: -20px;
  width: 150px;
  color: var(--teal);
  opacity: .1;
}

.bike-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.bike-body h3 { font-size: 1.22rem; margin-bottom: 3px; }
.bike-meta { color: var(--ink-faint); font-size: .93rem; font-weight: 700; margin-bottom: 16px; }
.bike-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bike-price { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: var(--teal-ink); }
.bike-price small { display: block; font-family: var(--font-body); font-weight: 700; font-size: .76rem; color: var(--ink-faint); letter-spacing: .04em; }
.bike-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-size: .92rem;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  padding: 10px 18px;
  transition: background .2s ease, transform .2s ease;
}
.bike-wa svg { width: 15px; height: 15px; }
.bike-wa:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* fleet category headers */
.cat-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  margin: 0 0 26px;
}
.cat-head .cat-dot { width: 15px; height: 15px; border-radius: 50%; align-self: center; flex: none; }
.cat-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.cat-head .cat-price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--coral-dark);
  font-size: 1.15rem;
}
.cat-head p { flex-basis: 100%; color: var(--ink-soft); max-width: 620px; }
.dot-small { background: var(--leaf); }
.dot-medium { background: var(--gold); }
.dot-large { background: var(--sky); }
.fleet-group { margin-bottom: 72px; }
.fleet-group:last-of-type { margin-bottom: 0; }

/* ---------- included grid ---------- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.inc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.inc-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); }
.inc-item .tick {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
}
.inc-item .tick svg { width: 17px; height: 17px; }
.inc-item b { display: block; font-weight: 800; font-size: .99rem; line-height: 1.35; }
.inc-item span { font-size: .88rem; color: var(--ink-faint); font-weight: 600; }
.inc-item.highlight { border-color: var(--coral); background: var(--coral-soft); }
.inc-item.highlight .tick { background: var(--coral); color: #fff; }

/* ---------- pricing ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: var(--shadow-1);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.plan .plan-dot { width: 14px; height: 14px; border-radius: 50%; margin-bottom: 16px; }
.plan h3 { font-size: 1.45rem; margin-bottom: 4px; }
.plan .plan-bikes { color: var(--ink-soft); font-size: .95rem; margin-bottom: 22px; min-height: 3.2em; }
.plan .plan-price { font-family: var(--font-display); font-weight: 800; font-size: 2.5rem; letter-spacing: -.03em; color: var(--teal-ink); line-height: 1; }
.plan .plan-price small { font-size: 1rem; font-weight: 700; color: var(--ink-faint); letter-spacing: 0; }
.plan .plan-per { color: var(--ink-faint); font-weight: 700; font-size: .9rem; margin: 6px 0 24px; }
.plan .btn { margin-top: auto; }
.plan.featured { border-color: var(--teal); box-shadow: 0 20px 44px rgba(14,107,92,.16); }
.plan-flag {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--coral);
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 14px;
  box-shadow: 0 6px 14px rgba(255,107,74,.35);
}

/* rate table */
.rate-table-wrap {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.rate-table { width: 100%; border-collapse: collapse; }
.rate-table th, .rate-table td { text-align: left; padding: 18px 26px; }
.rate-table thead th {
  background: var(--teal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
}
.rate-table tbody tr { border-top: 1px solid var(--line); }
.rate-table tbody tr:nth-child(even) { background: var(--bg); }
.rate-table td b { font-weight: 800; }
.rate-table td .sub { display: block; font-size: .86rem; color: var(--ink-faint); font-weight: 600; }
.rate-table .rate { font-family: var(--font-display); font-weight: 800; color: var(--teal-ink); white-space: nowrap; }
.rate-table tr.deposit-row { background: var(--coral-soft) !important; }
.rate-table tr.deposit-row .rate { color: var(--coral-dark); }

/* payment pills */
.pay-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pay-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  font-size: .97rem;
  color: var(--teal-ink);
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, border-color .2s ease;
}
.pay-pill:hover { transform: translateY(-2px); border-color: var(--teal); }
.pay-pill svg { width: 17px; height: 17px; color: var(--coral); }

/* terms */
.terms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.term {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.term .t-num {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--teal-ink);
  font-family: var(--font-display);
  font-weight: 800;
  display: grid;
  place-items: center;
}
.term p { color: var(--ink-soft); font-weight: 600; }
.term p b { color: var(--ink); font-weight: 800; }

/* notes */
.note-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.note {
  background: var(--teal-ink);
  color: #fff;
  border-radius: var(--r-md);
  padding: 24px 22px;
}
.note.alt { background: var(--teal); }
.note b { display: block; font-family: var(--font-display); font-size: 1.12rem; margin-bottom: 6px; }
.note span { color: rgba(255,255,255,.75); font-size: .93rem; font-weight: 600; }
.note.pop { background: var(--coral); }
.note.pop span { color: rgba(255,255,255,.85); }

/* ---------- gallery ---------- */
.gallery { columns: 3; column-gap: 22px; }
.polaroid {
  break-inside: avoid;
  margin: 0 0 22px;
  background: #fff;
  padding: 10px 10px 14px;
  border-radius: 16px;
  box-shadow: var(--shadow-1);
  transition: transform .35s cubic-bezier(.2,.7,.3,1.1), box-shadow .35s ease;
}
.polaroid img { width: 100%; border-radius: 9px; }
.gallery .polaroid:nth-child(4n+1) { transform: rotate(-1.6deg); }
.gallery .polaroid:nth-child(4n+2) { transform: rotate(1.3deg); }
.gallery .polaroid:nth-child(4n+3) { transform: rotate(-0.8deg); }
.gallery .polaroid:nth-child(4n+4) { transform: rotate(1.8deg); }
.gallery .polaroid:hover { transform: rotate(0) translateY(-5px) scale(1.02); box-shadow: var(--shadow-3); z-index: 2; position: relative; }

/* ---------- FAQ ---------- */
.faq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1.5px dashed var(--line);
}
.faq-row:last-of-type { border-bottom: 0; }
.faq-row.flip .faq-media { order: 2; }
.faq-media { position: relative; }
.faq-media img {
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
  border-radius: 240px 240px var(--r-lg) var(--r-lg);
  box-shadow: var(--shadow-2);
}
.faq-media .faq-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(253,251,247,.94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 8px 17px;
  font-weight: 800;
  font-size: .85rem;
  color: var(--teal-ink);
  box-shadow: var(--shadow-1);
}
.faq-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  color: var(--coral);
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.faq-copy h2 { font-size: clamp(1.5rem, 2.8vw, 2.05rem); margin-bottom: 16px; }
.faq-copy p { color: var(--ink-soft); margin-bottom: 12px; }
.faq-copy p:last-child { margin-bottom: 0; }
.faq-copy ul { margin: 14px 0 4px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.faq-copy ul li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
}
.faq-copy ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .48em;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--teal-soft);
  box-shadow: inset 0 0 0 4px var(--teal-soft), inset 0 0 0 13px var(--teal);
  transform: scale(.72);
}
.faq-copy .mini-rates { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 16px; }
.mini-rate {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 11px 17px;
  font-weight: 700;
  font-size: .95rem;
}
.mini-rate b { font-family: var(--font-display); color: var(--teal-ink); white-space: nowrap; }

/* faq decorative panels (rows without a photo) */
.faq-panel {
  background: var(--sand);
  border-radius: 240px 240px var(--r-lg) var(--r-lg);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 52px 34px 40px;
  box-shadow: var(--shadow-1);
  text-align: center;
}
.faq-panel .pay-row { justify-content: center; }
.faq-panel.deep { background: var(--teal-ink); }
.faq-panel .big-ic {
  width: 86px; height: 86px;
  border-radius: 28px;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: grid;
  place-items: center;
}
.faq-panel .big-ic svg { width: 42px; height: 42px; }
.faq-panel .panel-line { color: rgba(255,255,255,.8); font-weight: 700; max-width: 22em; }

/* faq teaser (home) */
.teaser-list { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.teaser-item {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.teaser-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); }
.teaser-item h3 { font-size: 1.13rem; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.teaser-item h3 svg { width: 20px; height: 20px; color: var(--coral); flex: none; }
.teaser-item p { color: var(--ink-soft); font-size: .99rem; }

/* ---------- location strip ---------- */
.loc-strip {
  background: var(--teal-ink);
  border-radius: var(--r-lg);
  padding: 44px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.loc-strip::after {
  content: "";
  position: absolute;
  right: -70px; top: -70px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.loc-pin {
  flex: none;
  width: 62px; height: 62px;
  border-radius: 20px;
  background: var(--coral);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(255,107,74,.4);
}
.loc-pin svg { width: 28px; height: 28px; color: #fff; }
.loc-copy { flex: 1 1 300px; }
.loc-copy h2 { color: #fff; font-size: 1.55rem; margin-bottom: 6px; }
.loc-copy p { color: rgba(255,255,255,.72); font-weight: 600; }
.loc-strip .btn { position: relative; z-index: 1; }

/* ---------- big CTA ---------- */
.big-cta {
  position: relative;
  background: var(--teal);
  border-radius: var(--r-lg);
  padding: 76px 40px;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.big-cta::before, .big-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.big-cta::before { width: 340px; height: 340px; left: -110px; bottom: -160px; }
.big-cta::after { width: 260px; height: 260px; right: -80px; top: -120px; }
.big-cta .palm { opacity: .12; color: #fff; }
.big-cta h2 {
  color: #fff;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  max-width: 17em;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.big-cta h2 em { font-style: normal; color: #FFD9CD; }
.big-cta p {
  color: rgba(255,255,255,.78);
  max-width: 36em;
  margin: 0 auto 34px;
  position: relative;
  z-index: 1;
}
.big-cta .cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; position: relative; z-index: 1; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: 168px 0 64px; position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; max-width: 14em; margin-bottom: 18px; }
.page-hero .lede { color: var(--ink-soft); font-size: 1.14rem; max-width: 36em; }
.page-hero .palm { width: 170px; top: 110px; right: -48px; left: auto; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-1);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.contact-card .cc-icon {
  width: 52px; height: 52px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.contact-card .cc-icon svg { width: 25px; height: 25px; }
.contact-card h3 { font-size: 1.28rem; }
.contact-card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 14px; }
.contact-card .cc-link { margin-top: auto; font-weight: 800; font-size: 1.05rem; }
.contact-card.wa-card {
  grid-column: span 2;
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 40px;
}
.contact-card.wa-card h3 { color: #fff; font-size: 1.7rem; }
.contact-card.wa-card p { color: rgba(255,255,255,.78); margin: 0; }
.contact-card.wa-card .cc-icon { margin: 0; background: rgba(255,255,255,.14); color: #fff; width: 64px; height: 64px; border-radius: 20px; }
.contact-card.wa-card > div { flex: 1 1 280px; }
.icon-teal { background: var(--teal-soft); color: var(--teal); }
.icon-coral { background: var(--coral-soft); color: var(--coral-dark); }
.icon-sand { background: var(--sand); color: var(--ink); }

.social-row { display: flex; flex-wrap: wrap; gap: 12px; }
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  color: var(--ink);
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}
.social-pill:hover { transform: translateY(-2px); border-color: var(--coral); color: var(--coral-dark); }
.social-pill svg { width: 17px; height: 17px; color: var(--teal); }

.map-shell {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-2);
  position: relative;
}
.map-shell iframe { display: block; width: 100%; height: 440px; border: 0; }

/* ---------- footer ---------- */
footer {
  background: var(--teal-ink);
  color: rgba(255,255,255,.72);
  padding: 68px 0 40px;
  margin-top: 96px;
  position: relative;
  overflow: hidden;
}
footer .palm { width: 220px; right: -60px; bottom: -30px; left: auto; top: auto; color: #fff; opacity: .06; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.foot-brand .brand { color: #fff; margin-bottom: 14px; }
.foot-brand .brand-mark { background: var(--coral); box-shadow: none; }
.foot-brand p { font-size: .97rem; max-width: 30em; }
.foot-col h4 {
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.foot-col a {
  display: block;
  color: rgba(255,255,255,.72);
  font-weight: 600;
  padding: 5px 0;
  transition: color .2s ease, transform .2s ease;
}
.foot-col a:hover { color: #fff; transform: translateX(3px); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: space-between;
  font-size: .92rem;
  position: relative;
  z-index: 1;
}
.foot-bottom a { color: #fff; font-weight: 700; }
.foot-bottom a:hover { color: var(--coral-soft); }

/* ---------- floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(35,181,88,.42);
  transition: transform .25s cubic-bezier(.2,.7,.3,1.4), box-shadow .25s ease;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover { transform: scale(1.1) rotate(6deg); box-shadow: 0 14px 32px rgba(35,181,88,.5); }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: wa-pulse 2.6s ease-out infinite;
}

/* ---------- reveals & keyframes ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
  transition-delay: var(--d, 0s);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -11px; }
}
@keyframes sway {
  0%, 100% { rotate: -2.5deg; }
  50% { rotate: 3deg; }
}
@keyframes sway-flip {
  0%, 100% { transform: scaleX(-1) rotate(-2.5deg); }
  50% { transform: scaleX(-1) rotate(3deg); }
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .7; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .bike-grid { grid-template-columns: repeat(2, 1fr); }
  .bike-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }

  section { padding: 72px 0; }
  .hero { padding-top: 140px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 0; margin-top: 14px; }
  .hero-blob { position: relative; width: 100%; max-width: 480px; aspect-ratio: 5/4.2; margin: 0 auto; }
  .hero-sticker.s1 { bottom: -18px; left: 0; }
  .hero-sticker.s2 { bottom: -30px; right: 0; }
  .hero-badge { top: 8px; left: 2px; }
  .hero-visual { padding-bottom: 46px; }
  .palm.p-hero { display: none; }

  .plan-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .terms-grid { grid-template-columns: 1fr; }
  .note-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }

  .faq-row { grid-template-columns: 1fr; gap: 30px; padding: 48px 0; }
  .faq-row.flip .faq-media { order: 0; }
  .faq-media img { max-width: 460px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-card.wa-card { grid-column: auto; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero { padding: 138px 0 48px; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .wrap { padding: 0 18px; }
  .nav-in { padding: 0 18px; }

  .bike-grid, .bike-grid.cols-3 { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .note-strip { grid-template-columns: 1fr; }
  .rate-table th, .rate-table td { padding: 14px 16px; }
  .rate-table thead th { font-size: .85rem; }
  .faq-copy ul { grid-template-columns: 1fr; }
  .loc-strip { padding: 34px 26px; }
  .big-cta { padding: 60px 24px; }
  .contact-card.wa-card { padding: 30px 24px; }
  .hero-ctas .btn { width: 100%; }
  .map-shell iframe { height: 340px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 2.25rem; }
  .hero-sticker { width: 160px; }
  .hero-sticker.s2 { width: 148px; }
  .hero-badge { width: 92px; height: 92px; font-size: .82rem; padding: 14px 10px; }
  .gallery { columns: 1; }
  .chip { font-size: .85rem; padding: 8px 13px; }
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

/* ============================================================
   ROUND 2 (2026-07) — client feedback build
   FREE badges · ride cards · student CTA · models strip ·
   TikTok · reviews header · contact extras
   ============================================================ */

/* hero trust line */
.trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  font-weight: 800;
  font-size: .98rem;
  color: var(--ink);
  margin-bottom: 20px;
}
.trust-line .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.trust-line .est { color: var(--ink-faint); font-weight: 700; }

/* flyer-cutout images (transparent PNGs) */
.img-contain { object-fit: contain !important; background: var(--sand); }

/* FREE badge */
.free-tag {
  display: inline-block;
  margin-left: 8px;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  font-size: .66rem;
  letter-spacing: .14em;
  border-radius: 999px;
  padding: 3px 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* choose-your-ride cards */
.ride-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.ride-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform .3s cubic-bezier(.2,.7,.3,1.1), box-shadow .3s ease, border-color .3s ease;
}
.ride-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.ride-card.featured { border-color: var(--teal); box-shadow: 0 20px 44px rgba(14,107,92,.14); }
.ride-img {
  position: relative;
  background:
    radial-gradient(circle at 78% 18%, var(--coral-soft) 0%, transparent 46%),
    radial-gradient(circle at 18% 84%, var(--teal-soft) 0%, transparent 52%),
    var(--sand);
  padding: 22px 22px 10px;
}
.ride-img img { width: 100%; aspect-ratio: 4/3; object-fit: contain; }
.ride-img .bike-cc { top: 14px; left: 14px; }
.ride-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.ride-body h3 { font-size: 1.5rem; display: flex; align-items: center; gap: 11px; }
.ride-body h3 .cat-dot { width: 13px; height: 13px; border-radius: 50%; flex: none; }
.ride-tagline { color: var(--ink-soft); font-size: .97rem; font-weight: 600; margin-top: 6px; }
.ride-prices { margin: 18px 0 14px; display: grid; gap: 8px; }
.ride-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink-soft);
}
.ride-price-row b { font-family: var(--font-display); font-weight: 800; color: var(--teal-ink); white-space: nowrap; }
.ride-models { font-size: .87rem; color: var(--ink-faint); font-weight: 600; margin-bottom: 22px; }
.ride-card .btn { margin-top: auto; }

/* student special */
.big-cta.student-cta { background: var(--coral); }
.big-cta.student-cta h2 em { color: #FFF3D6; }
.big-cta.student-cta p { color: rgba(255,255,255,.88); }
.csr-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.big-cta .cta-note { font-size: .88rem; color: rgba(255,255,255,.75); margin-top: 18px; position: relative; z-index: 1; }

/* models strip */
.models-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 860px; margin: 0 auto; }
.model-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 19px;
  font-weight: 800;
  font-size: .95rem;
  color: var(--teal-ink);
  box-shadow: var(--shadow-1);
}
.model-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); flex: none; }

/* TikTok */
.tiktok-shell { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.tiktok-shell .tiktok-embed { margin: 0 auto; width: 100%; }

/* pricing rate table (4-col flyer table) */
.rate-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rate-table.flyer { min-width: 620px; }
.rate-table.flyer td.cat b { font-family: var(--font-display); font-size: 1.05rem; }

/* fleet photo credit (footer small print) */
.photo-credit {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  max-width: 46em;
}

/* faq light panels */
.faq-panel:not(.deep) .big-ic { background: var(--white); color: var(--teal); box-shadow: var(--shadow-1); }
.faq-panel:not(.deep) .panel-line { color: var(--ink-soft); }

/* contact — review band + brand strip */
.review-band {
  background: var(--teal-ink);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.review-band::after {
  content: "";
  position: absolute;
  right: -70px; top: -70px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.review-band .rb-stars { font-size: 1.5rem; color: var(--gold); letter-spacing: 3px; flex: none; }
.review-band .rb-copy { flex: 1 1 280px; }
.review-band .rb-copy h3 { color: #fff; font-size: 1.45rem; margin-bottom: 4px; }
.review-band .rb-copy p { color: rgba(255,255,255,.72); font-weight: 600; }
.review-band .btn { position: relative; z-index: 1; }

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 30px;
  box-shadow: var(--shadow-1);
}
.brand-strip img {
  width: 92px; height: 92px;
  object-fit: contain;
  border-radius: 20px;
  background: var(--sand);
  padding: 10px;
  flex: none;
}
.brand-strip h3 { font-size: 1.3rem; margin-bottom: 4px; }
.brand-strip p { color: var(--ink-soft); font-size: .96rem; font-weight: 600; }

/* round-2 responsive */
@media (max-width: 1020px) {
  .ride-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .review-band { padding: 30px 24px; }
  .brand-strip { padding: 22px 20px; }
  .ride-body { padding: 22px 20px 24px; }
}
