/* ============================================================
   Easy Aussie — Gold Coast Scooter & Ebike Hire
   Coastal design system: ocean + sand + sunset
   ============================================================ */

:root {
  /* Ink / text */
  --ink: #143442;
  --ink-soft: #3c5663;
  --ink-faint: #6c828d;

  /* Surfaces */
  --paper: #fffdf8;
  --sand: #f3ead8;
  --sand-deep: #e9dabf;
  --foam: #ddf0f3;

  /* Brand */
  --ocean: #0e86a8;
  --ocean-deep: #0a6178;
  --sun: #ff6a33;
  --sun-deep: #e8531c;

  /* Utility */
  --line: #e4d9c4;
  --line-soft: rgba(20, 52, 66, 0.08);
  --shadow-sm: 0 1px 2px rgba(20, 52, 66, .06), 0 2px 8px rgba(20, 52, 66, .05);
  --shadow-md: 0 8px 26px -8px rgba(20, 52, 66, .22), 0 2px 8px rgba(20, 52, 66, .06);
  --shadow-lg: 0 28px 60px -22px rgba(20, 52, 66, .35);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 56px);

  --head: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--head);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gut);
}

.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ocean);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--sun);
  border-radius: 2px;
}

.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 2;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s;
  white-space: nowrap;
  line-height: 1;
}

.btn .lucide {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--sun);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(232, 83, 28, .65);
}

.btn-primary:hover {
  background: var(--sun-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -10px rgba(232, 83, 28, .7);
}

.btn-ocean {
  background: var(--ocean);
  color: #fff;
  box-shadow: 0 8px 20px -10px rgba(10, 97, 120, .7);
}

.btn-ocean:hover {
  background: var(--ocean-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: #fff;
  border-color: var(--ocean);
  color: var(--ocean-deep);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #0c2632;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 11px 18px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
}

/* ============================================================
   Announcement bar
   ============================================================ */
.announce {
  background: var(--ink);
  color: #eaf6f8;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .01em;
}

.announce .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding-block: 9px;
  flex-wrap: wrap;
}

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

.announce .lucide {
  width: 15px;
  height: 15px;
  color: var(--sun);
}

.announce .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
}

@media (max-width: 720px) {
  .announce .hide-sm {
    display: none;
  }
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 253, 248, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s, background .25s;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line-soft);
}

.header .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}

.brand img,
.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}

.footer .brand .brand-logo {
  height: 52px;
}

.brand .mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--ocean), var(--ocean-deep));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--head);
  font-weight: 700;
  font-size: 20px;
}

.brand b {
  font-family: var(--head);
  font-size: 19px;
  letter-spacing: -.02em;
}

.brand b span {
  color: var(--ocean);
}

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

.nav a {
  font-size: 15px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: color .15s, background .15s;
}

.nav a:hover {
  color: var(--ink);
  background: var(--foam);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding: 8px 6px;
}

.header-phone .lucide {
  width: 17px;
  height: 17px;
  color: var(--ocean);
}

.header-phone:hover {
  color: var(--ocean-deep);
}

.burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.burger .lucide {
  width: 22px;
  height: 22px;
}

@media (max-width: 940px) {

  .nav,
  .header-phone {
    display: none;
  }

  .burger {
    display: grid;
    place-items: center;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  padding: 22px var(--gut);
}

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

.mobile-menu .mm-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-menu a.mm-link {
  font-family: var(--head);
  font-size: 28px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-menu .mm-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mm-close {
  background: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 88% -10%, rgba(14, 134, 168, .18), transparent 60%),
    radial-gradient(700px 460px at 5% 110%, rgba(255, 106, 51, .12), transparent 60%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(46px, 7vw, 92px);
}

.hero h1 {
  font-size: clamp(42px, 6.2vw, 78px);
}

.hero h1 .ink-sun {
  color: var(--sun);
}

.hero-lead {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-soft);
  margin-top: 22px;
  max-width: 30ch;
}

.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.chip .lucide {
  width: 16px;
  height: 16px;
  color: var(--ocean);
}

.hero-media {
  position: relative;
}

.hero-media .photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4;
  background: var(--sand-deep);
}

.hero-media .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: -22px;
  bottom: 34px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge .ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--foam);
  display: grid;
  place-items: center;
  color: var(--ocean-deep);
}

.hero-badge .ico .lucide {
  width: 22px;
  height: 22px;
}

.hero-badge b {
  display: block;
  font-family: var(--head);
  font-size: 18px;
}

.hero-badge small {
  color: var(--ink-faint);
  font-size: 12.5px;
}

.hero-rating {
  position: absolute;
  right: -16px;
  top: 28px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
}

.hero-rating .stars {
  color: #ffc24a;
  font-size: 14px;
  letter-spacing: 2px;
}

.hero-rating b {
  font-family: var(--head);
  font-size: 16px;
}

.hero-rating small {
  display: block;
  color: rgba(255, 255, 255, .6);
  font-size: 11.5px;
}

@media (max-width: 860px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-media {
    max-width: 460px;
  }

  .hero-rating {
    display: none;
  }

  .hero-badge {
    display: none;
  }
}

/* ============================================================
   Marquee benefits strip
   ============================================================ */
.strip {
  background: var(--ocean-deep);
  color: #eaf7fa;
}

.strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  flex-wrap: wrap;
}

.strip .item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 15px;
}

.strip .item .lucide {
  width: 22px;
  height: 22px;
  color: #7fd6e6;
  flex: none;
}

/* ============================================================
   Section shell
   ============================================================ */
.section {
  padding-block: clamp(56px, 8vw, 104px);
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  margin-top: 14px;
}

.section-head p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-top: 16px;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

/* ============================================================
   Fleet
   ============================================================ */
.fleet {
  background: linear-gradient(180deg, var(--paper), var(--foam) 220%);
}

.tabs {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--head);
  font-weight: 600;
  font-size: 16px;
  padding: 11px 22px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: all .2s;
}

.tab .lucide {
  width: 19px;
  height: 19px;
}

.tab.active {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.tabs-row {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

/* Shared tag + specs (reused by fleet card) */
.vcard-tag {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 5px 11px;
  border-radius: 999px;
}

.vcard-tag.sun {
  background: var(--sun);
}

.vcard-tag.ocean {
  background: var(--ocean);
}

.vspecs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.vspecs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--sand);
  border-radius: 8px;
  padding: 5px 10px;
}

.vspecs .lucide {
  width: 14px;
  height: 14px;
  color: var(--ocean);
}

.vsub {
  color: var(--ink-faint);
  font-size: 14px;
}

/* ============================================================
   Fleet card — single card per category with carousel
   ============================================================ */
.fleet-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: var(--shadow-md);
  max-width: 960px;
  margin: 0 auto;
}

/* Carousel */
.fleet-carousel {
  position: relative;
  background: var(--sand-deep);
}

.carousel-wrap {
  overflow: hidden;
  height: 100%;
  min-height: 420px;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
  transition: background .15s, transform .15s;
  color: var(--ink);
}

.carousel-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow .lucide {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

.carousel-prev {
  left: 12px;
}

.carousel-next {
  right: 12px;
}

/* Fleet info panel */
.fleet-info {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fleet-info-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fleet-info h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  margin-top: 4px;
}

.fleet-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-faint);
  background: var(--sand);
  border-radius: var(--r-sm);
  padding: 10px 13px;
  line-height: 1.5;
}

.fleet-note .lucide {
  width: 15px;
  height: 15px;
  color: var(--ocean);
  flex: none;
  margin-top: 1px;
}

.fleet-rate-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}

.fleet-rate-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fleet-rate-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 13px 14px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-align: left;
  width: 100%;
  background: #fff;
}

.fleet-rate-btn:hover {
  border-color: var(--ocean);
  background: var(--foam);
}

.frb-info {
  flex: 1;
}

.frb-info b {
  font-family: var(--head);
  font-size: 15.5px;
  display: block;
}

.frb-info small {
  color: var(--ink-faint);
  font-size: 12.5px;
}

.frb-price {
  text-align: right;
}

.frb-price b {
  font-family: var(--head);
  font-size: 22px;
  color: var(--ink);
}

.frb-save {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--sun-deep);
}

.frb-go {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sun);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
}

.frb-go .lucide {
  width: 16px;
  height: 16px;
}

.fleet-booknow-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fleet-booknow {
  width: 100%;
  padding: 16px 24px;
  font-size: 18px;
}

@media (max-width: 800px) {
  .fleet-card {
    grid-template-columns: 1fr;
  }

  .carousel-wrap {
    min-height: 0;
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-arrow .lucide {
    width: 18px;
    height: 18px;
  }
}

/* image-slot in hero / included / partner sections */
.hero-media .photo image-slot,
.included-photo image-slot,
.partner .pimg image-slot {
  display: block;
  width: 100%;
  height: 100%;
}

/* ============================================================
   How it works
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 860px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  padding-top: 12px;
}

.step .num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--foam);
  color: var(--ocean-deep);
  font-family: var(--head);
  font-weight: 700;
  font-size: 22px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  color: var(--ink-soft);
  font-size: 15.5px;
}

/* ============================================================
   Discount banner
   ============================================================ */
.promo {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}

.promo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(640px 320px at 92% 120%, rgba(255, 106, 51, .35), transparent 60%),
    radial-gradient(540px 320px at 0% -20%, rgba(14, 134, 168, .4), transparent 60%);
}

.promo-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
}

.promo h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
}

.promo p {
  color: rgba(255, 255, 255, .78);
  margin-top: 14px;
  font-size: 17px;
}

.promo .tag {
  display: inline-block;
  background: var(--sun);
  color: #fff;
  font-family: var(--head);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 18px;
}

.promo-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-actions .btn {
  width: 100%;
}

.promo .save-row {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.promo .save-row div {}

.promo .save-row b {
  font-family: var(--head);
  font-size: 30px;
  display: block;
}

.promo .save-row small {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
}

@media (max-width: 760px) {
  .promo-inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Included + Why us
   ============================================================ */
.included {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 820px) {
  .included {
    grid-template-columns: 1fr;
  }
}

.included-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--sand-deep);
}

.included-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inc-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}

.inc-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 17px;
}

.inc-list .tick {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ocean);
  color: #fff;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.inc-list .tick .lucide {
  width: 15px;
  height: 15px;
}

.inc-list b {
  font-weight: 700;
}

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

@media (max-width: 860px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
}

.why:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why .ico {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--foam);
  color: var(--ocean-deep);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.why .ico .lucide {
  width: 24px;
  height: 24px;
}

.why h3 {
  font-size: 19px;
  margin-bottom: 7px;
}

.why p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* ============================================================
   Partners
   ============================================================ */
.partners {
  background: var(--foam);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 760px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

.partner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 560px) {
  .partner {
    grid-template-columns: 1fr;
  }
}

.partner .pimg {
  background: var(--sand-deep);
  aspect-ratio: 4/3;
  overflow: hidden;
}

.partner .pimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partner .pimg-placeholder {
  background: var(--sand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
}

.partner .pbody {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.partner h3 {
  font-size: 21px;
}

.partner p {
  color: var(--ink-soft);
  font-size: 15px;
}

.partner .btn {
  align-self: flex-start;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 19px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary .plus {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  transition: .25s;
  color: var(--ocean-deep);
}

.faq[open] summary .plus {
  background: var(--ocean);
  border-color: var(--ocean);
  color: #fff;
  transform: rotate(45deg);
}

.faq .ans {
  padding: 0 4px 24px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 64ch;
}

.faq .ans strong {
  color: var(--ink);
}

/* ============================================================
   Contact CTA
   ============================================================ */
.contact {
  background: var(--ink);
  color: #fff;
}

.contact .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

@media (max-width: 760px) {
  .contact .wrap {
    grid-template-columns: 1fr;
  }
}

.contact h2 {
  color: #fff;
  font-size: clamp(30px, 4.4vw, 50px);
}

.contact p {
  color: rgba(255, 255, 255, .74);
  margin-top: 16px;
  font-size: 18px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.contact-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg);
  padding: 28px;
  display: grid;
  gap: 18px;
}

.contact-card .row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-card .ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  color: #7fd6e6;
  flex: none;
}

.contact-card .row small {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}

.contact-card .row b {
  font-family: var(--head);
  font-size: 18px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #0c2733;
  color: rgba(255, 255, 255, .7);
  padding-block: 46px 30px;
  font-size: 14.5px;
}

.footer .top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer .brand b {
  color: #fff;
}

.footer .brand p {
  margin-top: 10px;
  max-width: 34ch;
}

.footer-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-cols h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-cols a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, .7);
}

.footer-cols a:hover {
  color: #fff;
}

.footer .bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

/* ============================================================
   Sticky mobile CTA
   ============================================================ */
.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 55;
  display: none;
  gap: 10px;
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
}

.mobile-cta .btn {
  flex: 1;
}

@media (max-width: 760px) {
  .mobile-cta {
    display: flex;
  }
}

/* ============================================================
   Booking modal
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(12, 39, 51, .55);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .2s;
}

.modal-overlay.open {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--paper);
  border-radius: var(--r-lg);
  max-width: 520px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(.98);
  transition: transform .25s;
}

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

.modal-head {
  position: relative;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}

.modal-head .mh-thumb {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  background: var(--foam);
  flex: none;
  overflow: hidden;
}

.modal-head .mh-thumb image-slot {
  width: 100%;
  height: 100%;
}

.modal-head h3 {
  font-size: 21px;
}

.modal-head small {
  color: var(--ink-faint);
  font-size: 13.5px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--sand);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
}

.modal-close:hover {
  background: var(--sand-deep);
}

.modal-body {
  padding: 22px 24px;
}

.modal-body .ml-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}

.rate {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 15px 16px;
  margin-bottom: 11px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-align: left;
  width: 100%;
  background: #fff;
}

.rate:hover {
  border-color: var(--ocean);
  background: var(--foam);
}

.rate .r-info {
  flex: 1;
}

.rate .r-info b {
  font-family: var(--head);
  font-size: 17px;
  display: block;
}

.rate .r-info small {
  color: var(--ink-faint);
  font-size: 13px;
}

.rate .r-price {
  text-align: right;
}

.rate .r-price b {
  font-family: var(--head);
  font-size: 22px;
}

.rate .r-price .save {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--sun-deep);
}

.rate .r-go {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sun);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
}

.rate .r-go .lucide {
  width: 18px;
  height: 18px;
}

.modal-foot {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
}

.modal-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--ink-soft);
  background: var(--sand);
  border-radius: var(--r-sm);
  padding: 13px 14px;
}

.modal-note .lucide {
  width: 17px;
  height: 17px;
  color: var(--ocean);
  flex: none;
  margin-top: 1px;
}

.modal-foot .or {
  text-align: center;
  color: var(--ink-faint);
  font-size: 13px;
  margin: 14px 0 12px;
}

.modal-foot .call-row {
  display: flex;
  gap: 10px;
}

.modal-foot .call-row .btn {
  flex: 1;
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Reviews section
   ============================================================ */
.reviews-section { background: var(--sand); }

.reviews-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-widget-container {
  flex: 1;
  min-width: 0;
}

.reviews-arrow {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  cursor: pointer;
  display: none;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background .15s, border-color .15s, transform .15s;
  color: var(--ink);
  z-index: 2;
}

@media (max-width: 760px) {
  .reviews-arrow { display: grid; }
}

.reviews-arrow:hover {
  background: var(--ocean);
  border-color: var(--ocean);
  color: #fff;
  transform: scale(1.08);
}

.reviews-arrow .lucide {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

@media (max-width: 600px) {
  .reviews-carousel-wrap { gap: 6px; }
  .reviews-arrow { width: 38px; height: 38px; }
  .reviews-arrow .lucide { width: 18px; height: 18px; }
}

/* ============================================================
   Availability check modal
   ============================================================ */
.avail-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 39, 51, .6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.avail-overlay.open {
  display: flex;
}

.avail-modal {
  background: var(--paper);
  border-radius: var(--r-xl);
  max-width: 460px;
  width: 100%;
  padding: clamp(28px, 5vw, 44px);
  box-shadow: var(--shadow-lg);
  position: relative;
  text-align: center;
  animation: avail-in .25s cubic-bezier(.4, 0, .2, 1);
}

@keyframes avail-in {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

.avail-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #fff3ec;
  color: var(--sun);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

.avail-icon .lucide {
  width: 32px;
  height: 32px;
}

.avail-modal h3 {
  font-size: clamp(22px, 4vw, 26px);
  margin-bottom: 14px;
}

.avail-modal p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 36ch;
  margin: 0 auto;
}

.avail-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.avail-actions .btn {
  width: 100%;
}

.avail-proceed {
  margin-top: 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  transition: color .15s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.avail-proceed:hover {
  color: var(--ink);
}

.avail-proceed .lucide {
  width: 14px;
  height: 14px;
}

.avail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--sand);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
}

.avail-close:hover {
  background: var(--sand-deep);
}

.avail-close .lucide {
  width: 18px;
  height: 18px;
}