/* ─────────────────────────────────────────────────────────
   Abshem Limited — rental site
   ───────────────────────────────────────────────────────── */

:root {
  --navy:      #0a2540;
  --navy-deep: #061726;
  --teal:      #0e7f8c;
  --teal-dark: #0a626c;
  --sand:      #e7dcc9;
  --paper:     #fbfaf8;
  --paper-2:   #f2efe9;
  --ink:       #14181d;
  --ink-soft:  #5a6472;
  --line:      #e2ddd4;
  --wa:        #25d366;
  --wa-dark:   #1da851;
  --amber:     #b7791f;

  --wrap: 1180px;
  --r: 14px;
  --shadow: 0 1px 2px rgba(10,37,64,.06), 0 10px 30px rgba(10,37,64,.08);
  --shadow-lg: 0 2px 6px rgba(10,37,64,.08), 0 24px 60px rgba(10,37,64,.14);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.65 ui-sans-serif, -apple-system, "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  line-height: 1.12;
  letter-spacing: -.022em;
  margin: 0;
  font-weight: 660;
}

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: #fff; padding: .8rem 1.2rem;
}
.skip:focus { left: 0; }

/* ── Header ──────────────────────────────────────────── */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,248,.86);
  backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 68px;
}

.brand { text-decoration: none; display: flex; flex-direction: column; margin-right: auto; }
.brand-mark {
  font-size: 1.24rem; font-weight: 720; letter-spacing: -.03em; color: var(--navy);
}
.brand-sub {
  font-size: .68rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: -1px;
}

.nav { display: flex; gap: 1.75rem; }
.nav a {
  text-decoration: none; font-size: .95rem; font-weight: 520; color: var(--ink-soft);
  padding: .3rem 0; border-bottom: 2px solid transparent; transition: color .16s, border-color .16s;
}
.nav a:hover { color: var(--navy); border-bottom-color: var(--teal); }

/* ── Buttons ─────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .78rem 1.4rem; border-radius: 999px;
  font-size: .96rem; font-weight: 600; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .14s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-wa { background: var(--wa); color: #05331a; box-shadow: 0 2px 14px rgba(37,211,102,.34); }
.btn-wa:hover { background: var(--wa-dark); color: #fff; }

.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }

.btn-lg { padding: 1rem 1.9rem; font-size: 1.03rem; }
.btn-block { display: flex; width: 100%; margin-top: 1.4rem; }

.header-cta { padding: .55rem 1.15rem; font-size: .9rem; }
.wa-dot { width: 8px; height: 8px; border-radius: 50%; background: #05331a; }
.btn-wa:hover .wa-dot { background: #fff; }

/* ── Hero ────────────────────────────────────────────── */

.hero { position: relative; isolation: isolate; min-height: min(78vh, 660px); display: flex; align-items: flex-end; }

.hero-img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: center 58%;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(6,23,38,.92) 0%, rgba(6,23,38,.55) 42%, rgba(6,23,38,.12) 78%),
    linear-gradient(to right, rgba(6,23,38,.5), transparent 62%);
}

.hero-body { padding-block: 3.5rem 4.2rem; color: #fff; }

.eyebrow {
  margin: 0 0 .85rem; font-size: .74rem; font-weight: 660;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sand);
}

.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.3rem);
  font-weight: 700; letter-spacing: -.035em; margin-bottom: 1.1rem;
  /* wraps to two lines on its own at every width — no hard <br>,
     which would force an unbreakable line on narrow screens */
  max-width: 17ch;
  text-wrap: balance;
}

.lede {
  margin: 0 0 2rem; font-size: clamp(1.05rem, 1.9vw, 1.24rem);
  max-width: 40ch; color: rgba(255,255,255,.9); line-height: 1.55;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero-note {
  margin: 1.9rem 0 0; font-size: .84rem; color: rgba(255,255,255,.66);
  letter-spacing: .02em;
}

/* ── Service picker ──────────────────────────────────── */

.picker {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
  margin-block: -3.2rem 0; position: relative; z-index: 5;
}

.pick {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.65rem 1.5rem 1.45rem; text-decoration: none;
  box-shadow: var(--shadow); transition: transform .16s ease, box-shadow .2s ease;
}
.pick:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.pick-k {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  color: var(--teal);
}
.pick h2 { font-size: 1.42rem; margin: .5rem 0 .55rem; color: var(--navy); }
.pick p { margin: 0 0 1.1rem; font-size: .95rem; color: var(--ink-soft); line-height: 1.55; }
.pick-go { font-size: .9rem; font-weight: 620; color: var(--teal-dark); }

/* ── Sections ────────────────────────────────────────── */

.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--navy-deep); color: #fff; }

.sec-head { max-width: 62ch; margin-bottom: 3rem; }
.sec-head-center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { color: var(--teal-dark); }
.section-dark .sec-head .eyebrow { color: var(--sand); }

.sec-head h2 {
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  color: var(--navy); margin-bottom: .85rem; text-wrap: balance;
}
.section-dark .sec-head h2 { color: #fff; }

.sec-lede { margin: 0; font-size: 1.09rem; color: var(--ink-soft); line-height: 1.62; }

/* ── Galleries ───────────────────────────────────────── */

.gallery {
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 218px;
  margin-bottom: 3.4rem;
}
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--r); background: #dfe4e8; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.gallery figure:hover img { transform: scale(1.04); }

/* lead image fills a 2×2 block; the four remaining images tile the
   right-hand 2×2 — together they form one clean rectangle */
.g-lead { grid-column: span 2; grid-row: span 2; }

.pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 3.4rem;
}
.pair figure { margin: 0; border-radius: var(--r); overflow: hidden; background: #dfe4e8; }
.pair img { width: 100%; height: 420px; object-fit: cover; }

/* ── Spec blocks ─────────────────────────────────────── */

/* stretch so both cards match height regardless of row count */
.spec { display: grid; grid-template-columns: 1.15fr 1fr; gap: 1.6rem; align-items: stretch; }

.spec-block {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.9rem 1.8rem;
  display: flex; flex-direction: column;
}
/* pin the CTA to the bottom of the taller card */
.spec-block .btn-block { margin-top: auto; }
.section-alt .spec-block { background: #fff; }

.spec-block h3 {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 680; margin-bottom: 1.15rem;
}

.dl { margin: 0; }
.dl > div {
  display: grid; grid-template-columns: 10.5rem 1fr; gap: 1rem;
  padding: .78rem 0; border-top: 1px solid var(--line);
}
.dl > div:first-child { border-top: 0; padding-top: 0; }
.dl dt { color: var(--ink-soft); font-size: .93rem; }
.dl dd { margin: 0; font-size: .98rem; font-weight: 540; }

/* small qualifier after a price — "4 hours", "save €45" */
.rate-note {
  font-weight: 450; font-size: .84rem; color: var(--ink-soft);
  margin-left: .4rem; white-space: nowrap;
}

/* placeholder styling — kept for any field still awaiting the client */
.tbc {
  color: var(--amber) !important; font-weight: 520 !important; font-size: .89rem !important;
  font-style: italic;
  background: #fdf6e7; border: 1px dashed #e3c485;
  border-radius: 6px; padding: .16rem .5rem; display: inline-block;
}

/* ── Scooters ────────────────────────────────────────── */

.scoot { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2.6rem; align-items: start; }
.scoot-img { margin: 0; border-radius: var(--r); overflow: hidden; background: #dfe4e8; }
.scoot-img img { width: 100%; height: 100%; max-height: 620px; object-fit: cover; }

.price { margin: 0 0 .3rem; display: flex; align-items: baseline; gap: .5rem; }
.price-num { font-size: 3.2rem; font-weight: 700; letter-spacing: -.04em; color: var(--navy); }
.price-unit { font-size: 1.02rem; color: var(--ink-soft); }
.price-sub { margin: 0 0 1.9rem; color: var(--ink-soft); font-size: .96rem; }

.scoot-body .btn { margin-top: 1.7rem; }

.photo-note {
  margin: 1.2rem 0 0; font-size: .86rem; font-style: italic;
  color: var(--amber);
}

/* ── Trust ───────────────────────────────────────────── */

/* rating line — sits under the hero buttons */
.rating-line {
  display: flex; align-items: center; gap: .65rem; flex-wrap: wrap;
  margin: 1.6rem 0 0;
  font-size: .95rem; color: rgba(255,255,255,.86);
}
.rating-copy b { font-weight: 700; color: #fff; }

/* five stars with a partial fill, so 4.6 doesn't read as a clean 5 */
.rating-stars {
  position: relative; display: inline-block;
  line-height: 1; font-size: 1.05rem; letter-spacing: .1em;
  white-space: nowrap;
}
.stars-bg { color: rgba(255,255,255,.26); }
.stars-fg {
  position: absolute; left: 0; top: 0;
  overflow: hidden; white-space: nowrap;
  color: #ffc93c;
}

/* review cards */
.reviews {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  margin-bottom: 3.4rem;
}

/* equal-height cards: grid rows stretch, text flexes, footer pins to bottom */
.review {
  margin: 0; background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r); padding: 1.6rem 1.55rem 1.4rem;
  display: flex; flex-direction: column; height: 100%;
}
.stars { margin: 0 0 .8rem; color: #ffc93c; font-size: 1rem; letter-spacing: .1em; }
.star-off { color: rgba(255,255,255,.22); }
.review-text {
  margin: 0 0 1.3rem; font-size: 1.02rem; line-height: 1.55;
  color: rgba(255,255,255,.9); flex: 1;
}
.review footer {
  display: flex; align-items: center; gap: .55rem;
  padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.1);
}
.g-logo { flex: none; display: flex; }
.review cite {
  font-style: normal; font-size: .92rem; font-weight: 600; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.review-when {
  margin-left: auto; flex: none;
  font-size: .78rem; color: rgba(255,255,255,.42); white-space: nowrap;
}

.points { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.15rem; }
.points li {
  padding-left: 1.5rem; position: relative;
  color: rgba(255,255,255,.76); font-size: 1rem; line-height: 1.55;
}
.points li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
}
.points strong { color: #fff; font-weight: 620; }

/* the four reasons-to-trust-us tiles under the reviews */
.points-row {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}
.points-row li {
  padding: 1.3rem 1.35rem 1.35rem;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r);
  color: rgba(255,255,255,.75);
  font-size: .95rem; line-height: 1.5;
}
/* teal tick badge replaces the plain bullet */
.points-row li::before {
  content: ""; position: static;
  display: block; margin-bottom: .85rem;
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
  box-shadow: 0 0 0 4px rgba(14,127,140,.16);
}
.points-row strong {
  display: block; margin-bottom: .3rem;
  font-size: 1.02rem; font-weight: 660; letter-spacing: -.012em;
}

/* ── Contact ─────────────────────────────────────────── */

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.75rem 1.7rem; text-decoration: none; box-shadow: var(--shadow);
  transition: transform .16s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: #cfd6dd; }

.card h3 {
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 680; margin-bottom: .7rem;
}
.card-big { margin: 0 0 .3rem; font-size: 1.24rem; font-weight: 620; color: var(--navy); letter-spacing: -.015em; }
.card-sub { margin: 0; font-size: .9rem; color: var(--ink-soft); }

.card-wa { background: #f2fdf6; border-color: #bfe8cd; }
.card-wa .card-big { color: #0d6b32; }

/* ── Footer ──────────────────────────────────────────── */

.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.62); padding-block: 3rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.foot-brand { margin: 0; color: #fff; font-weight: 660; font-size: 1.1rem; letter-spacing: -.02em; }
.foot-small { font-size: .88rem; line-height: 1.75; }
.foot-small p { margin: 0; }

/* ── Floating WhatsApp ───────────────────────────────── */

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: #05331a;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,.45);
  transition: transform .16s ease;
}
.wa-float:hover { transform: scale(1.06); }

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 940px) {
  .picker { grid-template-columns: 1fr; margin-top: -2rem; }
  .spec { grid-template-columns: 1fr; }
  .scoot { grid-template-columns: 1fr; gap: 1.8rem; }
  .scoot-img img { max-height: 460px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 175px; }
  .g-lead { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .header-cta { margin-left: auto; }
  .hero { min-height: 74vh; }
  .hero-body { padding-block: 3rem; }
  .hero-actions .btn { flex: 1 1 auto; }
  .pair { grid-template-columns: 1fr; }
  .pair img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .dl > div { grid-template-columns: 1fr; gap: .2rem; }
  .dl dt { font-size: .84rem; letter-spacing: .04em; text-transform: uppercase; }
  .wa-float { display: flex; }
  .footer-inner { flex-direction: column; gap: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
