/* ============================================================
   APOSTOLOU VIP SERVICES — design system
   Tech-luxury white · Hanken Grotesk · soft-rounded structure
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-Variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-Italic-Variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --white: #ffffff;
  --paper: #faf8f4;
  --creme: #f2ede3;
  --sand: #e5decf;
  --greige: #9a9181;
  --ink-60: #5c594f;
  --ink: #141413;

  --font: "Hanken Grotesk", -apple-system, "Helvetica Neue", sans-serif;

  --text-display: clamp(2.75rem, 8vw, 6.75rem);
  --text-h1: clamp(2.5rem, 6vw, 4.5rem);
  --text-h2: clamp(1.875rem, 4vw, 3rem);
  --text-h3: clamp(1.25rem, 2vw, 1.625rem);
  --text-body: 1.0625rem;
  --text-small: 0.875rem;
  --text-label: 0.75rem;

  --r-pill: 999px;
  --r-card: 22px;
  --r-band: clamp(24px, 4vw, 44px);

  --gutter: clamp(20px, 5vw, 72px);
  --section: clamp(6rem, 11vw, 9.5rem);
  --max: 1440px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

ul,
ol {
  list-style: none;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Type utilities ---------- */
.label {
  font-size: var(--text-label);
  font-weight: 550;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--greige);
}

.label--ink {
  color: var(--ink);
}

h1,
h2,
h3,
.display {
  font-weight: 420;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.display {
  font-size: var(--text-display);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.h1 {
  font-size: var(--text-h1);
  letter-spacing: -0.03em;
}

.h2 {
  font-size: var(--text-h2);
}

.h3 {
  font-size: var(--text-h3);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.muted {
  color: var(--ink-60);
}

.em {
  font-style: italic;
  font-weight: 380;
  color: var(--greige);
}

.lead {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.55;
  font-weight: 380;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section);
}

.section--tight {
  padding-block: calc(var(--section) * 0.55);
}

/* ============================================================
   NAV — floating pill
   ============================================================ */
.nav-wrap {
  position: fixed;
  inset-inline: 0;
  top: clamp(14px, 2vw, 24px);
  z-index: 100;
  display: flex;
  justify-content: center;
  padding-inline: var(--gutter);
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}

.nav-wrap.is-hidden {
  transform: translateY(-160%);
  opacity: 0;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  width: min(100%, 980px);
  padding: 10px 12px 10px 22px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(229, 222, 207, 0.7);
  border-radius: var(--r-pill);
  box-shadow: 0 12px 40px -18px rgba(20, 20, 19, 0.22);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  flex-shrink: 0;
}

.nav__brand img {
  height: 30px;
  width: auto;
}

.nav__brand span {
  font-size: 0.8125rem;
  font-weight: 620;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.nav__brand small {
  display: block;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--greige);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.nav__links a {
  font-size: var(--text-label);
  font-weight: 550;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
  transition: color 0.25s;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--ink);
}

.nav__cta {
  flex-shrink: 0;
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  border-radius: var(--r-pill);
}

.nav__burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

/* ---------- Mobile menu overlay ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

.menu.is-open {
  opacity: 1;
  visibility: visible;
}

.menu nav {
  display: flex;
  flex-direction: column;
}

.menu a {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 420;
  letter-spacing: -0.02em;
  line-height: 1.35;
  padding-block: 0.35rem;
  border-bottom: 1px solid var(--sand);
}

.menu .menu__contact {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.menu .menu__contact a {
  font-size: 1rem;
  font-weight: 450;
  border: 0;
  color: var(--ink-60);
  padding: 0;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .nav__burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
body.menu-open .nav__burger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .nav__burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
  will-change: transform;
}

.btn--ink {
  background: var(--ink);
  color: var(--paper);
}

.btn--ink:hover {
  background: #2b2b29;
}

.btn--white {
  background: var(--white);
  color: var(--ink);
}

.btn--white:hover {
  background: var(--creme);
}

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

.btn--ghost:hover {
  border-color: var(--ink);
}

.btn--sm {
  padding: 11px 22px;
}

.btn svg {
  width: 14px;
  height: 14px;
}

/* arrow circle (reference pattern) */
.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), background 0.3s;
}

.arrow-circle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--ease);
}

/* ============================================================
   REVEAL SYSTEM
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--si, 0) * 80ms);
}

[data-reveal="clip"] {
  transform: none;
  clip-path: inset(6% 4% 6% 4% round var(--r-band));
  transition: opacity 1s var(--ease), clip-path 1.2s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

[data-reveal="clip"].is-in {
  clip-path: inset(0 0 0 0 round var(--r-band));
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(10px, 1.2vw, 16px);
}

.hero__frame {
  position: relative;
  height: max(620px, calc(100svh - clamp(20px, 2.4vw, 32px)));
  border-radius: var(--r-band);
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media img {
  animation: heroZoom 14s var(--ease) forwards;
  transform-origin: 50% 62%;
}

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(20, 20, 19, 0.44), rgba(20, 20, 19, 0.14) 40%, rgba(20, 20, 19, 0.08) 62%, rgba(20, 20, 19, 0.42)),
    radial-gradient(120% 76% at 50% 42%, rgba(20, 20, 19, 0.26), transparent 62%);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--gutter);
  color: var(--paper);
}

.hero__logo {
  width: clamp(160px, 21vw, 250px);
  height: auto;
  margin-bottom: clamp(8px, 1.4vw, 16px);
  filter: drop-shadow(0 6px 30px rgba(20, 20, 19, 0.35));
}

.hero__cta {
  margin-top: clamp(28px, 4vw, 44px);
}

.hero__bottom {
  position: absolute;
  z-index: 2;
  inset-inline: clamp(24px, 3vw, 44px);
  bottom: clamp(20px, 2.6vw, 36px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  color: rgba(250, 248, 244, 0.85);
}

.hero__bottom .label {
  color: inherit;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 34px;
  background: rgba(250, 248, 244, 0.6);
  overflow: hidden;
  position: relative;
}

.hero__scroll i::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -100%;
  height: 100%;
  background: var(--paper);
  animation: scrollDrip 2.2s var(--ease) infinite;
}

@keyframes scrollDrip {
  to {
    top: 100%;
  }
}

/* staged hero / page-head entrance */
.hero [data-hero],
.page-head [data-hero] {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 1.1s var(--ease) forwards;
  animation-delay: calc(var(--hi, 0) * 160ms + 0.3s);
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-bottom: 1px solid var(--sand);
  overflow: hidden;
  padding-block: 22px;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee__group span {
  font-size: var(--text-label);
  font-weight: 550;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
  padding-inline: 28px;
}

.marquee__group i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--greige);
  flex-shrink: 0;
}

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

/* ============================================================
   CENTERED INTRO
   ============================================================ */
.intro {
  text-align: center;
}

.intro .label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.intro .label::before,
.intro .label::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--sand);
}

.intro h2 {
  max-width: 21ch;
  margin: 1.6rem auto 0;
}

.intro .lead {
  max-width: 58ch;
  margin: 1.8rem auto 0;
  color: var(--ink-60);
}

/* ============================================================
   3-CARD ROW (reference pattern)
   ============================================================ */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

.card {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  isolation: isolate;
  display: block;
}

.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(20, 20, 19, 0.55), transparent 46%);
  transition: opacity 0.4s;
}

.card:hover img {
  transform: scale(1.05);
}

.card__foot {
  position: absolute;
  z-index: 2;
  inset-inline: 20px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  color: var(--paper);
}

.card__foot .label {
  color: rgba(250, 248, 244, 0.75);
  display: block;
  margin-bottom: 4px;
}

.card__foot strong {
  font-size: var(--text-h3);
  font-weight: 450;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.card:hover .arrow-circle {
  transform: translate(3px, -3px);
}

/* ============================================================
   BIG ROUNDED CREME BAND (reference pattern)
   ============================================================ */
.band {
  margin-inline: clamp(10px, 1.2vw, 16px);
  border-radius: var(--r-band);
  background: var(--creme);
  padding-block: var(--section);
}

.band--ink {
  background: var(--ink);
  color: var(--paper);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2.4rem, 4vw, 3.6rem) clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(3.5rem, 6vw, 5rem);
}

.icon-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.icon-item svg {
  width: 38px;
  height: 38px;
  stroke: var(--ink);
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-item p {
  font-size: var(--text-small);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink-60);
  max-width: 18ch;
}

.icon-item p strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: clamp(3.5rem, 6vw, 5rem);
  padding-top: clamp(2rem, 3.5vw, 3rem);
  border-top: 1px solid var(--sand);
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 380;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  font-size: var(--text-label);
  font-weight: 550;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--greige);
}

/* ============================================================
   PARTNERS — logo strip
   ============================================================ */
.partners .intro {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.partner-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  animation: partnerScroll 45s linear infinite;
}

.partner-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.partner-group img {
  height: calc(clamp(40px, 4.6vw, 58px) * var(--s, 1));
  width: auto;
  margin-inline: clamp(1.75rem, 3.5vw, 3.5rem);
  opacity: 0.45;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

/* hover effects only on real pointer devices — never on touch (avoids stuck animation) */
@media (hover: hover) and (pointer: fine) {
  .partner-marquee:hover .partner-track {
    animation-play-state: paused;
  }
  .partner-group img:hover {
    opacity: 0.9;
  }
}

@keyframes partnerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .partner-group img {
    height: calc(36px * var(--s, 1));
    margin-inline: 1.4rem;
  }
  .partner-track {
    animation-duration: 26s;
  }
  /* drop the edge mask on phones — cheaper compositing, no jank */
  .partner-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ============================================================
   FLEET PREVIEW
   ============================================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

.fleet-card {
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  display: block;
  aspect-ratio: 4 / 5;
}

.fleet-card--mid {
  margin-top: clamp(2rem, 6vw, 5.5rem);
}

.fleet-card .media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fleet-card img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}

.fleet-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(20, 20, 19, 0.5), transparent 42%);
}

.fleet-card__foot {
  position: absolute;
  z-index: 2;
  inset-inline: clamp(20px, 2.4vw, 30px);
  bottom: clamp(18px, 2.2vw, 26px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  color: var(--paper);
}

.fleet-card__foot .label {
  color: rgba(250, 248, 244, 0.75);
  display: block;
  margin-bottom: 6px;
}

.fleet-card__foot strong {
  font-size: clamp(1.5rem, 2.4vw, 2.125rem);
  font-weight: 440;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.fleet-card:hover .arrow-circle {
  transform: translate(3px, -3px);
}

/* section head row (label left, link right) */
.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.head-row h2 {
  margin-top: 1.4rem;
  max-width: 18ch;
}

.head-row .btn {
  flex-shrink: 0;
}

/* ============================================================
   HORIZONTAL SCROLL — “The Mykonos Route”
   ============================================================ */
.hscroll {
  position: relative;
}

.hscroll__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hscroll__head {
  padding-top: clamp(5rem, 8vw, 7rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.hscroll__track {
  display: flex;
  gap: clamp(14px, 1.8vw, 24px);
  padding-inline: var(--gutter);
  will-change: transform;
}

.hpanel {
  position: relative;
  flex: 0 0 clamp(300px, 38vw, 480px);
  aspect-ratio: 4 / 5;
  max-height: 56svh;
  border-radius: var(--r-card);
  overflow: hidden;
  isolation: isolate;
}

.hpanel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hpanel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(20, 20, 19, 0.6), transparent 48%);
}

.hpanel__txt {
  position: absolute;
  z-index: 2;
  inset-inline: 22px;
  bottom: 20px;
  color: var(--paper);
}

.hpanel__txt .label {
  color: rgba(250, 248, 244, 0.7);
}

.hpanel__txt strong {
  display: block;
  font-size: var(--text-h3);
  font-weight: 460;
  margin-top: 6px;
  line-height: 1.25;
}

.hpanel__txt p {
  font-size: var(--text-small);
  color: rgba(250, 248, 244, 0.85);
  margin-top: 6px;
  max-width: 34ch;
}

.hscroll__progress {
  height: 1px;
  background: var(--sand);
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  margin-inline: var(--gutter);
  position: relative;
  overflow: hidden;
}

.hscroll__progress i {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(0);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  text-align: center;
}

.cta-band h2 {
  max-width: 16ch;
  margin-inline: auto;
}

.cta-band .lead {
  max-width: 44ch;
  margin: 1.6rem auto 0;
  color: var(--ink-60);
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(2.4rem, 4vw, 3.2rem);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(250, 248, 244, 0.62);
  border-radius: var(--r-band) var(--r-band) 0 0;
  margin-top: clamp(10px, 1.2vw, 16px);
  padding-top: clamp(4rem, 7vw, 7rem);
}

.footer a {
  transition: color 0.25s;
}

.footer a:hover {
  color: var(--paper);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}

.footer__brand img {
  width: clamp(170px, 16vw, 230px);
  height: auto;
}

.footer__brand p {
  margin-top: 1.4rem;
  font-size: var(--text-small);
  max-width: 30ch;
  line-height: 1.7;
}

.footer h4 {
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--greige);
  margin-bottom: 1.3rem;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: var(--text-small);
}

.footer__bottom {
  border-top: 1px solid rgba(250, 248, 244, 0.12);
  padding-block: 1.6rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
}

.footer__bottom a {
  color: rgba(250, 248, 244, 0.62);
}

.footer__legal {
  font-size: 0.6875rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: rgba(250, 248, 244, 0.4);
  max-width: 68ch;
}

.footer__legal strong {
  color: rgba(250, 248, 244, 0.62);
  font-weight: 600;
}

.footer__copy {
  white-space: nowrap;
  color: rgba(250, 248, 244, 0.5);
}

/* ============================================================
   INNER PAGES — shared
   ============================================================ */
.page-head {
  padding-top: clamp(9rem, 14vw, 12rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  text-align: center;
}

.page-head .label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.page-head .label::before,
.page-head .label::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--sand);
}

.page-head h1 {
  font-size: var(--text-h1);
  max-width: 18ch;
  margin: 1.5rem auto 0;
}

.page-head .lead {
  max-width: 56ch;
  margin: 1.6rem auto 0;
  color: var(--ink-60);
}

/* full-width rounded image moment */
.wide-img {
  border-radius: var(--r-band);
  overflow: hidden;
  position: relative;
}

.wide-img img {
  width: 100%;
  height: clamp(380px, 62vh, 640px);
  object-fit: cover;
}

.wide-img figcaption {
  position: absolute;
  left: clamp(20px, 2.4vw, 32px);
  bottom: clamp(16px, 2vw, 26px);
  z-index: 2;
  color: var(--paper);
  font-size: var(--text-label);
  font-weight: 550;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wide-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 19, 0.35), transparent 32%);
}

/* portrait/vertical variant — constrained width so smaller source images stay sharp */
.wide-img--portrait {
  max-width: 540px;
  margin-inline: auto;
}

.wide-img--portrait img {
  height: auto;
  aspect-ratio: 4 / 5;
}

/* ============================================================
   FLEET PAGE
   ============================================================ */
.vehicle {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
}

.vehicle + .vehicle {
  margin-top: var(--section);
}

.vehicle__media {
  grid-column: 1 / 8;
  border-radius: var(--r-band);
  overflow: hidden;
}

.vehicle__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 7 / 6;
}

.vehicle--flip .vehicle__media {
  grid-column: 6 / 13;
  order: 2;
}

.vehicle__panel {
  grid-column: 8 / 13;
  position: sticky;
  top: clamp(7rem, 10vw, 9rem);
  padding-block: clamp(1rem, 2vw, 2rem);
}

.vehicle--flip .vehicle__panel {
  grid-column: 1 / 6;
  order: 1;
}

.vehicle__panel h2 {
  margin-top: 1.3rem;
}

.vehicle__panel .lead {
  margin-top: 1.4rem;
  color: var(--ink-60);
}

.spec-list {
  margin-top: 2.2rem;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--sand);
  font-size: var(--text-small);
}

.spec-list li span:first-child {
  color: var(--greige);
  font-weight: 550;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: var(--text-label);
  padding-top: 2px;
}

.spec-list li span:last-child {
  font-weight: 500;
  text-align: right;
}

.vehicle__panel .btn {
  margin-top: 2.2rem;
}

/* 3-up staggered interior gallery */
.tri-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
}

.tri-gallery figure {
  border-radius: var(--r-card);
  overflow: hidden;
}

.tri-gallery figure:nth-child(2) {
  margin-top: clamp(1.5rem, 3.5vw, 3rem);
}

.tri-gallery figure:nth-child(3) {
  margin-top: clamp(3rem, 7vw, 6rem);
}

.tri-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.tri-gallery figure:hover img {
  transform: scale(1.04);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  padding-block: clamp(2.5rem, 4.5vw, 4rem);
  border-top: 1px solid var(--sand);
}

.service__num {
  grid-column: 1 / 2;
  font-size: var(--text-small);
  font-weight: 550;
  color: var(--greige);
  letter-spacing: 0.1em;
}

.service__body {
  grid-column: 2 / 8;
}

.service--flip .service__body {
  grid-column: 7 / 13;
  order: 2;
}

.service__body h2 {
  font-size: clamp(1.625rem, 3vw, 2.375rem);
  font-weight: 440;
  letter-spacing: -0.02em;
}

.service__body p {
  margin-top: 1.1rem;
  color: var(--ink-60);
  max-width: 52ch;
}

.service__includes {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service__includes li {
  font-size: var(--text-label);
  font-weight: 550;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  border: 1px solid var(--sand);
  border-radius: var(--r-pill);
  padding: 7px 15px;
}

.service__media {
  grid-column: 8 / 13;
  border-radius: var(--r-card);
  overflow: hidden;
}

.service--flip .service__media {
  grid-column: 2 / 7;
  order: 1;
}

.service__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* how it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

.step {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-card);
  padding: clamp(1.8rem, 2.6vw, 2.6rem);
}

.step .label {
  color: var(--greige);
}

.step h3 {
  margin-top: 2.6rem;
  font-size: var(--text-h3);
  font-weight: 460;
}

.step p {
  margin-top: 0.8rem;
  font-size: var(--text-small);
  color: var(--ink-60);
}

/* ============================================================
   MYKONOS PAGE
   ============================================================ */
.editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
}

.editorial + .editorial {
  margin-top: var(--section);
}

.editorial__media {
  grid-column: 1 / 7;
  border-radius: var(--r-band);
  overflow: hidden;
}

.editorial--flip .editorial__media {
  grid-column: 7 / 13;
  order: 2;
}

.editorial__media img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.editorial__body {
  grid-column: 8 / 13;
}

.editorial--flip .editorial__body {
  grid-column: 1 / 6;
  order: 1;
}

.editorial__body h2 {
  margin-top: 1.3rem;
}

.editorial__body p {
  margin-top: 1.4rem;
  color: var(--ink-60);
}

.pull-quote {
  text-align: center;
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 380;
  letter-spacing: -0.025em;
  line-height: 1.2;
  max-width: 24ch;
  margin-inline: auto;
}

.pull-quote .em {
  font-weight: 340;
}

.local-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: baseline;
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--sand);
}

.local-list .label {
  color: var(--greige);
  width: 3ch;
}

.local-list h3 {
  font-size: var(--text-h3);
  font-weight: 460;
}

.local-list p {
  margin-top: 0.5rem;
  color: var(--ink-60);
  font-size: var(--text-small);
  max-width: 62ch;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

.contact-grid__info {
  grid-column: 1 / 6;
}

.contact-grid__form {
  grid-column: 6 / 13;
}

.channel-list {
  margin-top: 2.5rem;
}

.channel-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.3rem;
  border-bottom: 1px solid var(--sand);
  transition: padding-left 0.35s var(--ease);
}

.channel-list a:hover {
  padding-left: 8px;
}

.channel-list .label {
  color: var(--greige);
}

.channel-list strong {
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  font-weight: 480;
  letter-spacing: -0.01em;
}

.channel-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--greige);
}

/* form */
.form-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-band);
  padding: clamp(1.8rem, 3vw, 3rem);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 1.2rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: var(--text-label);
  font-weight: 550;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--greige);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: var(--text-small);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--greige);
}

.form-card .btn {
  margin-top: 1.8rem;
  width: 100%;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--greige);
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .vehicle__media,
  .vehicle--flip .vehicle__media {
    grid-column: 1 / 13;
    order: 0;
  }
  .vehicle__panel,
  .vehicle--flip .vehicle__panel {
    grid-column: 1 / 13;
    position: static;
    order: 1;
  }
  .editorial__media,
  .editorial--flip .editorial__media,
  .editorial__body,
  .editorial--flip .editorial__body {
    grid-column: 1 / 13;
    order: 0;
  }
  .editorial__body {
    max-width: 62ch;
  }
}

@media (max-width: 900px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav {
    padding: 8px 8px 8px 18px;
  }

  /* horizontal section → native swipe */
  .hscroll__sticky {
    position: static;
    height: auto;
    overflow: visible;
  }
  .hscroll__track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .hscroll__track::-webkit-scrollbar {
    display: none;
  }
  .hpanel {
    flex-basis: min(78vw, 360px);
    scroll-snap-align: start;
    max-height: none;
  }
  .hscroll__progress {
    display: none;
  }
  .hscroll__head {
    padding-top: 0;
  }
  .hscroll {
    padding-block: var(--section);
  }

  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
  .cards3 {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .fleet-card--mid {
    margin-top: 0;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .service__num {
    grid-column: 1 / 13;
  }
  .service__body,
  .service--flip .service__body {
    grid-column: 1 / 13;
    order: 0;
  }
  .service__media,
  .service--flip .service__media {
    grid-column: 1 / 13;
    order: 1;
  }
  .contact-grid__info,
  .contact-grid__form {
    grid-column: 1 / 13;
  }
  .tri-gallery figure:nth-child(2),
  .tri-gallery figure:nth-child(3) {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .hero__frame {
    height: max(560px, calc(100svh - 20px));
  }
  .head-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .tri-gallery {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
  .footer {
    padding-top: clamp(3.5rem, 12vw, 5rem);
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    padding-bottom: 2.5rem;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .footer__fleet {
    display: none;
  }
  .footer__brand p {
    margin-top: 1rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .cta-band__actions .btn {
    width: 100%;
  }
  .hero__bottom .label:first-child {
    display: none;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal],
  .hero [data-hero],
  .page-head [data-hero] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    animation: none !important;
    transition: none !important;
  }
  .hero__media img {
    animation: none;
  }
  .marquee__track {
    animation: none;
  }
  .partner-track {
    animation: none;
  }
  .partner-marquee {
    overflow-x: auto;
  }
  .hero__scroll i::after {
    animation: none;
  }
  .hscroll__sticky {
    position: static;
    height: auto;
  }
  .hscroll__track {
    overflow-x: auto;
    transform: none !important;
  }
}
