@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@500;600;700&family=Inter:wght@300;400;500;600&family=Caveat:wght@500;600&display=swap');

/* Gati Travel & Tours */

:root {
  --teal: #2a7a72;
  --teal-dark: #1f5e58;
  --teal-deep: #163f3b;
  --teal-soft: #e8f3f1;
  --teal-glow: rgba(42, 122, 114, 0.14);
  --accent: #c96a2e;
  --accent-hover: #a85624;
  --ink: #1a1a1b;
  --charcoal: #1a1a1b;
  --ink-soft: #44444a;
  --muted: #6f7178;
  --line: #e4e2dd;
  --bg: #fffcf8;
  --bg-muted: #f5f2ec;
  --bg-warm: #faf6ef;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(28, 28, 30, 0.06);
  --shadow-lg: 0 20px 50px rgba(28, 28, 30, 0.1);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-heading: 'Be Vietnam Pro', system-ui, sans-serif;
  --font: var(--font-body);
  --font-display: var(--font-heading);
  --font-script: 'Caveat', cursive;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Fluid layout — scales with viewport */
  --page-width: 94vw;
  --page-gutter: clamp(1rem, 2.5vw, 3rem);
  --section-space: clamp(3rem, 6vw, 6rem);
  --content-narrow: min(100%, 65%);
  --grid-gap: clamp(1rem, 2vw, 1.75rem);

  /* Subtle scrollbar — visible only when needed */
  --scrollbar-size: 5px;
  --scrollbar-thumb: rgba(42, 122, 114, 0.14);
  --scrollbar-thumb-active: rgba(42, 122, 114, 0.42);
  --scrollbar-thumb-hover: rgba(42, 122, 114, 0.55);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) transparent;
  max-width: 100%;
  overflow-x: hidden;
}
html.is-scrolling {
  scrollbar-color: var(--scrollbar-thumb-active) transparent;
}

/* Custom scrollbar — ultra-thin, fades into the page */
*::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 999px;
  border: 1px solid transparent;
  background-clip: padding-box;
  transition: background 0.35s var(--ease);
}
html.is-scrolling *::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb-active);
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}
*::-webkit-scrollbar-corner {
  background: transparent;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1.125rem);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--site-top-height, 9rem);
  max-width: 100%;
  overflow-x: hidden;
}
img,
video,
iframe,
canvas {
  max-width: 100%;
}
img { display: block; }
a { color: var(--teal-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal); }
.container {
  width: var(--page-width);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

/* Overflow safety: allow children to shrink inside flex/grid layouts */
.container > *,
.header-top__inner > *,
.header-nav__inner > *,
.hero-search__row > *,
.split > *,
.pkg-row > *,
.contact-layout > *,
.rental-book-layout > *,
.corp-why-split > * {
  min-width: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 600;
}

/* Body copy — Inter light; UI labels — Inter regular/medium */
p,
.section-lead,
.section-intro p,
.hero-banner__sub,
.pkg-row__desc,
.svc-tile p,
.page-hero p,
.split__content p,
.feature-list li,
.faq-a,
.review-block p,
.blog-entry p,
.dest-item p,
.fleet-card__specs,
.fleet-card p,
.footer__brand p,
.hero-search__note,
.cta-band p,
.form-note {
  font-family: var(--font-body);
  font-weight: 300;
}

/* Standard UI text — Inter regular */
.nav__link,
.header-top__item,
.header-search input,
.field input,
.field select,
.field textarea,
.enquiry-card .field input,
.enquiry-card .field select,
.hero-search__field input,
.hero-search__field select,
.contact-form,
.info-block,
.footer__col a,
.footer__col p {
  font-family: var(--font-body);
  font-weight: 400;
}

/* Labels — softer than uppercase eyebrows */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 10px;
}
.eyebrow--light { color: rgba(255,255,255,0.85); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2vw + 1rem, 2.75rem);
  margin-bottom: 10px;
  font-weight: 600;
}
.section-lead { color: var(--muted); max-width: var(--content-narrow); font-size: clamp(1rem, 1vw + 0.85rem, 1.2rem); }
.section { padding: var(--section-space) 0; }
.section--muted { background: var(--bg-muted); }
.section--warm { background: var(--bg-warm); padding: clamp(2rem, 4vw, 2.5rem) 0; }
.section--dark { background: var(--teal-deep); color: #fff; }
.section--dark .section-title, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .section-lead { color: rgba(255,255,255,0.82); }
.section-head { margin-bottom: 40px; }
.section-head--center { text-align: center; }
.section-head--center .section-lead { margin: 0 auto; }

.section-intro { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); max-width: min(100%, 65%); }
.section-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2vw + 1rem, 2.5rem);
  margin-bottom: 10px;
  font-weight: 600;
}
.section-intro p { color: var(--muted); }
.section-intro--center { text-align: center; max-width: 100%; }
.section-cta { text-align: center; margin-top: 28px; font-weight: 600; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.22s var(--ease);
}
.btn--primary { background: var(--teal); color: #fff; }
.btn--primary:hover { background: var(--teal-dark); color: #fff; }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-hover); color: #fff; }
.btn--outline { background: transparent; border: 1.5px solid var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--teal); color: var(--teal-dark); background: var(--teal-soft); }
.btn--ghost { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.35); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,0.22); color: #fff; }
.btn--white { background: #fff; color: var(--teal-deep); }
.btn--white:hover { background: var(--teal-soft); color: var(--teal-deep); }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--full { width: 100%; }
.btn--header {
  padding: clamp(0.55rem, 1vw, 0.7rem) clamp(1rem, 2vw, 1.4rem);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  border-radius: 999px;
  font-size: clamp(0.85rem, 0.5vw + 0.75rem, 0.95rem);
  font-weight: 600;
  border: 1px solid rgba(94, 234, 212, 0.4);
  box-shadow: 0 0 14px rgba(42, 122, 114, 0.45), 0 0 28px rgba(94, 234, 212, 0.2);
  animation: header-cta-glow 2.2s ease-in-out infinite;
}
.btn--header:hover {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-deep) 100%);
  color: #fff;
  transform: translateY(-1px);
}
@keyframes header-cta-glow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(94, 234, 212, 0.35), 0 0 24px rgba(42, 122, 114, 0.35), 0 0 0 2px rgba(94, 234, 212, 0.2);
    border-color: rgba(94, 234, 212, 0.35);
  }
  50% {
    box-shadow: 0 0 22px rgba(94, 234, 212, 0.7), 0 0 44px rgba(42, 122, 114, 0.55), 0 0 0 3px rgba(94, 234, 212, 0.5);
    border-color: rgba(94, 234, 212, 0.65);
  }
}

/* Announcement bar */
.announce-bar {
  position: relative;
  background: linear-gradient(90deg, var(--teal-deep) 0%, #1a4a45 40%, var(--teal-dark) 100%);
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.announce-bar__glow {
  position: absolute;
  top: 50%;
  left: 18%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(74, 200, 180, 0.35) 0%, transparent 70%);
  animation: announce-glow-drift 6s ease-in-out infinite;
  pointer-events: none;
}
.announce-bar__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 1rem);
  min-height: clamp(2.5rem, 4vw, 3rem);
  padding: clamp(0.4rem, 1vw, 0.6rem) 0;
  width: var(--page-width);
  max-width: 100%;
  margin: 0 auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}
.announce-bar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.announce-bar__pulse {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.announce-bar__pulse-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #5eead4;
  box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.7);
  animation: announce-pulse 2s ease-out infinite;
}
.announce-bar__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(94, 234, 212, 0.45);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(94, 234, 212, 0.35);
  animation: announce-badge-glow 2.5s ease-in-out infinite;
}
.announce-bar__track {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, #000 0%, #000 96%, transparent 100%);
}
.announce-bar__marquee {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  animation: announce-marquee 42s linear infinite;
  will-change: transform;
}
.announce-bar__sequence {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.announce-bar__item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  padding-right: 2.25rem;
}
.announce-bar__highlight {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 16px rgba(94, 234, 212, 0.85), 0 0 32px rgba(42, 122, 114, 0.5);
  animation: announce-highlight-glow 2s ease-in-out infinite;
}
.announce-bar__sep {
  margin: 0 10px;
  opacity: 0.5;
}
@keyframes announce-pulse {
  0% { box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.65); }
  70% { box-shadow: 0 0 0 10px rgba(94, 234, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(94, 234, 212, 0); }
}
@keyframes announce-badge-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(94, 234, 212, 0.35); }
  50% { box-shadow: 0 0 20px rgba(94, 234, 212, 0.65), 0 0 36px rgba(42, 122, 114, 0.35); }
}
@keyframes announce-highlight-glow {
  0%, 100% { text-shadow: 0 0 12px rgba(94, 234, 212, 0.6), 0 0 24px rgba(42, 122, 114, 0.35); }
  50% { text-shadow: 0 0 20px rgba(94, 234, 212, 1), 0 0 40px rgba(42, 122, 114, 0.55); }
}
@keyframes announce-glow-drift {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-30%, -50%) scale(1.2); opacity: 1; }
}
@keyframes announce-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Site header — two rows */
.site-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.35s var(--ease);
  will-change: transform;
}
.site-top.is-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}
.site-header {
  position: relative;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-top { border-bottom: 1px solid var(--line); }
.header-top__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  min-height: clamp(4rem, 6vw, 5rem);
}
.header-top__left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.header-top__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}
.header-top__item:hover { color: var(--teal); }
.header-top__item svg { color: var(--teal); flex-shrink: 0; }
.header-top__brand {
  justify-self: start;
  display: flex;
  align-items: center;
}
.header-top__logo { height: clamp(3.5rem, 6vw, 5.25rem); width: auto; max-width: min(400px, 32vw); object-fit: contain; transition: opacity 0.2s ease; }
.header-top__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-nav { background: #fff; }
.header-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: clamp(3rem, 5vw, 3.75rem);
  width: 100%;
}
.nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 6px;
  white-space: nowrap;
}
.nav__link:hover { color: var(--teal); }
.nav__link.active { color: var(--teal); font-weight: 600; }

.header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 22%;
  max-width: 30%;
  min-width: min(100%, 14rem);
  padding: clamp(0.5rem, 1vw, 0.65rem) clamp(0.85rem, 1.5vw, 1rem);
  background: var(--bg-muted);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.header-search__icon { color: var(--muted); flex-shrink: 0; }
.header-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 14px;
  color: var(--charcoal);
  min-width: 0;
}
.header-search input:focus { outline: none; }
.header-search input::placeholder { color: var(--muted); }
.header-search input:focus::placeholder { color: rgba(111, 113, 120, 0.55); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--charcoal); border-radius: 1px; }

/* Hero banner */
.hero-banner {
  position: relative;
  z-index: 2;
  min-height: clamp(28rem, 55vh, 44rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem) 0 0;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  width: 100%;
}
.hero-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-banner__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(22, 63, 59, 0.62) 0%, rgba(26, 26, 27, 0.38) 48%, rgba(26, 26, 27, 0.22) 100%),
    linear-gradient(to top, rgba(22, 63, 59, 0.35) 0%, transparent 45%);
  pointer-events: none;
}
.hero-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(7rem, 14vw, 11rem);
}
.hero-banner__script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 2vw + 0.75rem, 2.5rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 12px;
}
.hero-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3.5vw + 1rem, 4.25rem);
  font-weight: 700;
  color: #fff;
  max-width: min(18ch, 58%);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
}
.hero-banner__sub {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: clamp(1rem, 1vw + 0.85rem, 1.25rem);
  color: rgba(255,255,255,0.9);
  max-width: min(100%, 75%);
}
.hero-banner__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 6px 14px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
}

.hero-search-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  z-index: 10;
  width: 100%;
}
.hero-search {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2vw, 1.25rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  width: 100%;
}
.hero-search__row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: clamp(0.65rem, 1.2vw, 1rem);
  align-items: end;
}
.hero-search__field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--charcoal);
  margin-bottom: 8px;
}
.hero-search__field label svg { color: var(--teal); flex-shrink: 0; }
.hero-search__field {
  min-width: 0;
}
.hero-search__field input,
.hero-search__field select {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: #fff;
}
.hero-search__field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236f7178' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
  text-overflow: ellipsis;
}
.hero-search__field select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232a7a72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.hero-search__field input:focus,
.hero-search__field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}
.hero-search__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 clamp(1.15rem, 2vw, 1.75rem);
  min-height: 48px;
  height: 48px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-search__btn:hover { background: var(--teal-dark); }
.hero-search__note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.hero-search__note a { font-weight: 600; color: var(--teal); }

/* Google Places autocomplete dropdown */
.pac-container {
  z-index: 10050;
  margin-top: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-body);
  overflow: hidden;
}
.pac-item {
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  border-top: 1px solid var(--line);
}
.pac-item:first-child { border-top: none; }
.pac-item:hover,
.pac-item-selected {
  background: var(--teal-soft);
}
.pac-icon { display: none; }
.pac-item-query {
  font-size: 14px;
  color: var(--ink);
}
.pac-matched { font-weight: 600; color: var(--teal-dark); }
.hdpi.pac-logo::after { display: none; }

/* Legacy header (unused) */
.topbar { display: none; }
.header { display: none; }

/* Service chips */
.service-chips { border-bottom: 1px solid var(--line); background: #fff; }
.service-chips__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0;
}
.service-chips a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg-muted);
  border-radius: 999px;
  transition: 0.2s;
}
.service-chips a:hover { background: var(--teal-soft); color: var(--teal-dark); }

/* Home section headers */
.home-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  flex-wrap: wrap;
}
.home-head--center .home-head__titles {
  flex: 1;
  text-align: center;
}
.home-head--center {
  justify-content: center;
  position: relative;
}
.home-head--center .home-more {
  position: absolute;
  right: 0;
  bottom: 0;
}
.home-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-script);
  font-size: clamp(1.15rem, 1.5vw + 0.85rem, 1.45rem);
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}
.home-label--light { color: rgba(255, 255, 255, 0.92); }
.home-label--light .home-label__star { color: #5eead4; }
.home-label__star { color: var(--teal); flex-shrink: 0; }
.home-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.5vw + 1rem, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}
.home-title--light { color: #fff; }
.home-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.home-more:hover {
  color: var(--teal-dark);
  border-color: var(--teal);
  background: var(--teal-soft);
}

/* Destination spot carousel */
.dest-carousel-section { overflow: visible; }
.dest-carousel__viewport {
  overflow: hidden;
  padding: 14px calc(var(--page-gutter) * 0.35);
  margin: -14px calc(var(--page-gutter) * -0.35);
}
.dest-carousel__track {
  display: flex;
  --dest-gap: clamp(0.85rem, 1.5vw, 1.25rem);
  gap: var(--dest-gap);
  transition: transform 0.5s var(--ease);
  will-change: transform;
  align-items: stretch;
}
.dest-spot-card {
  position: relative;
  flex: 0 0 calc((100% - 3 * var(--dest-gap)) / 4);
  min-width: 0;
  aspect-ratio: 3 / 4;
  border-radius: clamp(1rem, 2vw, 1.5rem);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: block;
  transform-origin: center center;
  transition: transform 0.4s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 2px 12px rgba(28, 28, 30, 0.06);
}
.dest-spot-card:hover {
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(28, 28, 30, 0.14);
}
.dest-spot-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.2) 42%, transparent 68%);
  pointer-events: none;
}
.dest-spot-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: clamp(1rem, 2vw, 1.35rem);
  color: #fff;
}
.dest-spot-card__content strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.2vw + 0.85rem, 1.35rem);
  font-weight: 700;
  margin-bottom: 4px;
}
.dest-spot-card__content span {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 0.5vw + 0.7rem, 0.9rem);
  font-weight: 400;
  opacity: 0.88;
}

.dest-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}
.dest-carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, opacity 0.2s;
}
.dest-carousel__btn:hover:not(:disabled) {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.dest-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .dest-spot-card {
    flex: 0 0 calc((100% - var(--dest-gap)) / 2);
  }
}
@media (max-width: 640px) {
  .dest-spot-card {
    flex: 0 0 78%;
  }
  .home-head {
    align-items: flex-start;
  }
  .home-head--center .home-more {
    position: static;
    margin-top: 12px;
  }
  .home-head--center {
    flex-direction: column;
    align-items: flex-start;
  }
}

.home-fleet__note {
  margin-top: clamp(0.75rem, 1.5vw, 1rem);
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

/* Home — car rental cards */
.home-rentals__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  flex-wrap: wrap;
}
.home-rentals__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rental-filter {
  padding: 9px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.rental-filter:hover,
.rental-filter.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.home-rentals__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.75vw, 1.5rem);
}
.fleet-segment {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(42, 122, 114, 0.12);
  border-radius: clamp(1rem, 1.5vw, 1.15rem);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(28, 28, 30, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.fleet-segment:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(42, 122, 114, 0.12);
}
.fleet-segment.is-hidden { display: none; }
.fleet-segment__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-muted);
}
.fleet-segment__rate {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: rgba(22, 63, 59, 0.88);
  border-radius: 999px;
}
.fleet-segment__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.1rem 1.15rem;
}
.fleet-segment__body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.fleet-segment__meta {
  font-size: 12px;
  color: var(--teal-dark);
  font-weight: 500;
  margin-bottom: 8px;
}
.fleet-segment__cars {
  flex: 1;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.fleet-segment__best {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 12px;
}
.fleet-segment__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
}
.fleet-segment__cta:hover { color: var(--teal); }
.spec-table__sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
@media (max-width: 1024px) {
  .home-rentals__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .home-rentals__grid { grid-template-columns: 1fr; }
}
.rental-card {
  position: relative;
  background: transparent;
  border: 0;
  border-radius: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(28, 28, 30, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.rental-card::before {
  content: none;
}
.rental-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(28, 28, 30, 0.18);
}
.rental-card--featured {
  box-shadow: 0 14px 36px rgba(42, 122, 114, 0.2);
}
.rental-card.is-hidden { display: none; }

.rental-card__hero {
  aspect-ratio: 3 / 4;
}
.rental-card__offer {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #ff6b4a 0%, #e84a2a 100%);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(232, 74, 42, 0.45);
}
.rental-card--featured .rental-card__offer {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  box-shadow: 0 4px 16px rgba(42, 122, 114, 0.45);
}
.rental-card__offer--blink {
  animation: rentalOfferBlink 1.6s ease-in-out infinite;
}
.rental-card__popular {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
@media (prefers-reduced-motion: reduce) {
  .rental-card__offer--blink,
  .rental-card__live-dot { animation: none; }
}
@keyframes rentalOfferBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(42, 122, 114, 0.45), 0 0 0 0 rgba(94, 234, 212, 0.45);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.04);
    box-shadow: 0 6px 22px rgba(42, 122, 114, 0.55), 0 0 0 5px rgba(94, 234, 212, 0.18);
  }
}
.rental-card__details {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(42, 122, 114, 0.18);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(28, 28, 30, 0.18);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.rental-card:hover .rental-card__details,
.rental-card:focus-within .rental-card__details {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.rental-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(0.9rem, 1.6vw, 1.15rem);
  gap: 0.85rem;
}
.rental-card__top { min-width: 0; }
.rental-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 4px 9px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.rental-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(0.98rem, 0.7vw + 0.88rem, 1.12rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.rental-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}
.rental-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.3;
  padding: 5px 8px;
  background: #fff;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  border: 1px solid var(--line);
}
.rental-card:hover .rental-card__chip {
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.rental-card__chip svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--teal);
}

.rental-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  margin-top: auto;
  background: linear-gradient(135deg, var(--teal-soft) 0%, #fff 100%);
  border: 1px solid rgba(42, 122, 114, 0.12);
  border-radius: 12px;
}
.rental-card__price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.rental-card__save {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #e84a2a;
}
.rental-card__rate-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.rental-card__was {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
}
.rental-card__price strong {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 0.9vw + 0.95rem, 1.35rem);
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
}
.rental-card__price strong small {
  font-size: 0.52em;
  font-weight: 500;
  color: var(--muted);
}
.rental-card__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(42, 122, 114, 0.28);
  transition: transform 0.2s, box-shadow 0.2s, gap 0.2s;
  white-space: nowrap;
}
.rental-card__cta svg {
  transition: transform 0.2s var(--ease);
}
.rental-card__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(42, 122, 114, 0.38);
  color: #fff;
}
.rental-card__cta:hover svg {
  transform: translateX(3px);
}
.home-rentals__note {
  margin-top: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

/* Home — testimonials */
.home-testimonials {
  background: #fff;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.home-testimonials__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.home-testimonials__intro {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 26rem;
}
.home-testimonials__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.home-testimonials__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw + 0.75rem, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.home-testimonials__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(0.25rem, 1vw, 0.75rem);
}
.home-testimonials__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.home-testimonials__nav-btn:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--teal-soft);
  transform: translateY(-1px);
}
.home-testimonials__panel {
  position: relative;
  overflow: hidden;
}
.home-testimonials__track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.home-testimonials__slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
}
.home-testimonials__source {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.home-testimonials__reviewed {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.home-testimonials__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.home-testimonials__google-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.home-testimonials__quote {
  font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 38rem;
}
.home-testimonials__rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: clamp(1.5rem, 3vw, 2rem) 0 clamp(1rem, 2vw, 1.25rem);
}
.home-testimonials__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.home-testimonials__author strong {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.2rem);
  font-weight: 700;
  color: var(--ink);
}
.home-testimonials__author span {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

@media (max-width: 900px) {
  .home-testimonials__grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
  }
  .home-testimonials__intro {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-testimonials__track {
    transition: none;
  }
}

/* Home — blog cards */
.home-blog {
  background: var(--bg);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.home-blog__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.home-blog__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.home-blog__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw + 0.85rem, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.home-blog__more {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: clamp(1rem, 1.5vw, 1.15rem);
  overflow: hidden;
  border: 1px solid rgba(28, 28, 30, 0.06);
  box-shadow: 0 8px 28px rgba(28, 28, 30, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(42, 122, 114, 0.12);
}
.blog-card__media {
  overflow: hidden;
}
.blog-card__img {
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s var(--ease);
}
.blog-card:hover .blog-card__img {
  transform: scale(1.06);
}
.blog-card__body {
  padding: clamp(1.1rem, 2vw, 1.35rem);
}
.blog-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.blog-card__cat {
  display: inline-block;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-muted);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.blog-card:hover .blog-card__cat {
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.blog-card__info {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
.blog-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.2rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  transition: color 0.2s;
}
.blog-card:hover .blog-card__title {
  color: var(--teal-dark);
}
.blog-card--static {
  cursor: default;
}
.blog-card--static:hover {
  transform: none;
  box-shadow: 0 8px 28px rgba(28, 28, 30, 0.06);
}
.blog-card--static:hover .blog-card__img {
  transform: none;
}
.blog-card__excerpt {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
}

.blog-page {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.blog-filter-status {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: -0.5rem 0 clamp(1rem, 2vw, 1.25rem);
}
.blog-filter-status.hidden {
  display: none;
}
.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.25vw, 1rem);
}
.blog-card--page {
  cursor: default;
  border-radius: 0.85rem;
  border-color: rgba(42, 122, 114, 0.12);
  box-shadow: 0 4px 16px rgba(28, 28, 30, 0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.blog-card--page:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(42, 122, 114, 0.1);
  border-color: rgba(42, 122, 114, 0.2);
}
.blog-card--page:hover .blog-card__img {
  transform: none;
}
.blog-card--page.is-expanded {
  grid-column: 1 / -1;
}
.blog-card--page .blog-card__img {
  aspect-ratio: 16 / 9;
}
.blog-card--page .blog-card__body {
  padding: clamp(0.75rem, 1.25vw, 0.9rem);
}
.blog-card--page .blog-card__meta {
  gap: 6px;
  margin-bottom: 6px;
}
.blog-card--page .blog-card__cat {
  padding: 3px 8px;
  font-size: 9px;
}
.blog-card--page .blog-card__info {
  font-size: 10px;
}
.blog-card--page .blog-card__title {
  font-size: clamp(0.84rem, 0.35vw + 0.78rem, 0.95rem);
  line-height: 1.25;
}
.blog-card--page .blog-card__excerpt {
  font-size: 11px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card--page.is-expanded .blog-card__excerpt {
  display: block;
  -webkit-line-clamp: unset;
}
.blog-card__expand {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(42, 122, 114, 0.1);
}
.blog-card__content p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.blog-card__content p:last-child {
  margin-bottom: 0;
}
.blog-card__cta-wrap {
  margin-top: 12px;
}
.blog-card__toggle {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-dark);
  cursor: pointer;
  transition: color 0.2s;
}
.blog-card__toggle:hover {
  color: var(--teal);
}
.blog-card--page.hidden {
  display: none;
}

@media (max-width: 1280px) {
  .home-blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-blog__grid,
  .blog-page__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-card,
  .blog-card__img {
    transition: none;
  }
  .blog-card:hover .blog-card__img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-card,
  .blog-card__img {
    transition: none;
  }
  .blog-card:hover .blog-card__img {
    transform: none;
  }
}

/* Inner page banner */
.page-banner {
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  border-bottom: 1px solid rgba(42, 122, 114, 0.12);
}
.page-banner--teal {
  background: var(--teal-soft);
}
.page-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.breadcrumbs a {
  color: var(--teal-dark);
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: var(--teal);
}
.breadcrumbs__sep {
  color: rgba(42, 122, 114, 0.35);
  user-select: none;
}
.breadcrumbs__current {
  color: var(--ink-soft);
}
.page-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw + 0.75rem, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.page-banner__lead {
  margin-top: 10px;
  max-width: 28rem;
  font-size: clamp(0.95rem, 0.5vw + 0.88rem, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* About page */
.about-intro {
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
}
.about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.about-intro__content .eyebrow {
  display: block;
  margin-bottom: 10px;
}
.about-intro__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.5vw + 1rem, 1.85rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
}
.about-intro__content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.about-intro__offers-label {
  margin-top: clamp(1rem, 2vw, 1.25rem) !important;
  margin-bottom: 10px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
}
.about-intro__list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-intro__list li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
}
.about-intro__note {
  font-size: 14px !important;
  color: var(--muted) !important;
}
.about-intro__card {
  position: sticky;
  top: 88px;
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  background: #fff;
  border: 1px solid rgba(42, 122, 114, 0.14);
  border-radius: clamp(1rem, 1.5vw, 1.2rem);
  box-shadow: 0 16px 40px rgba(42, 122, 114, 0.1);
}
.about-intro__card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.about-intro__card-rate {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.about-intro__card-rate strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal-dark);
}
.about-intro__card-points {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-intro__card-points li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.about-intro__card-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.about-intro__card .btn + .btn {
  margin-top: 10px;
}
.btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
}
.about-intro__footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
}
.about-section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}
.about-section-head .eyebrow {
  display: block;
  margin-bottom: 10px;
}
.about-section-head__title {
  font-size: clamp(1.75rem, 2.5vw + 0.85rem, 2.5rem);
}
.about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
  align-items: stretch;
}
.about-values.about-values--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 960px;
  margin-inline: auto;
}
.about-value {
  padding: clamp(1.25rem, 2.5vw, 1.5rem);
  background: #fff;
  border: 1px solid rgba(42, 122, 114, 0.1);
  border-radius: clamp(1rem, 1.5vw, 1.15rem);
  box-shadow: 0 8px 28px rgba(28, 28, 30, 0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.about-values.about-values--six .about-value {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.about-value:hover {
  transform: translateY(-5px);
  border-color: rgba(42, 122, 114, 0.2);
  box-shadow: 0 18px 40px rgba(42, 122, 114, 0.11);
}
.about-value__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-bottom: 12px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 10px;
}
.about-value__icon svg {
  width: 22px;
  height: 22px;
}
.about-value h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.about-value p {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft);
}
.about-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: clamp(1rem, 2vw, 1.35rem);
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-deep) 100%);
  text-align: center;
  box-shadow: 0 24px 48px rgba(22, 63, 59, 0.2);
}
.about-cta p:not(.home-label) {
  max-width: 32rem;
  margin: 12px auto 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}
.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

@media (max-width: 1024px) {
  .about-intro__grid {
    grid-template-columns: 1fr;
  }
  .about-intro__card {
    position: static;
  }
  .about-values.about-values--six,
  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-values.about-values--six,
  .about-values {
    grid-template-columns: 1fr;
  }
  .about-intro__footer-cta {
    flex-direction: column;
  }
  .about-intro__footer-cta .btn {
    width: 100%;
  }
  .about-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Home — about (reference layout) */
.home-about {
  position: relative;
  overflow: hidden;
}
.home-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.home-about__visual {
  position: relative;
  width: 100%;
  padding: 0 0 clamp(2rem, 4vw, 2.75rem) 0;
}
.home-about__figure {
  margin: 0;
  position: relative;
  width: 100%;
  height: clamp(24rem, 36vw, 34rem);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(22, 63, 59, 0.14);
}
.home-about__figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Review overlay card */
.about-review {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: min(100%, 22.5rem);
  padding: clamp(1.15rem, 2.2vw, 1.4rem);
  background: rgba(26, 26, 27, 0.9);
  backdrop-filter: blur(14px);
  border-radius: clamp(0.85rem, 1.5vw, 1.1rem);
  color: #fff;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.about-review__top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 4px;
}
.about-review__controls {
  display: flex;
  gap: 4px;
}
.about-review__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.about-review__nav:hover {
  background: rgba(94, 234, 212, 0.15);
  border-color: rgba(94, 234, 212, 0.45);
  color: #fff;
}
.about-review__body {
  overflow: hidden;
}
.about-review__track {
  position: relative;
  min-height: 5.5rem;
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
}
.about-review__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.about-review__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.about-review__slide p {
  font-size: clamp(0.9rem, 0.5vw + 0.82rem, 1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.93);
}
.about-review__meta {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding-top: clamp(0.85rem, 1.5vw, 1rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.about-review__avatars {
  display: flex;
  flex-shrink: 0;
}
.about-review__avatars img,
.about-review__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(26, 26, 27, 0.9);
  margin-left: -10px;
}
.about-review__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--teal);
}
.about-review__avatars img:first-child,
.about-review__avatar:first-child { margin-left: 0; }
.about-review__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-review__rating strong {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2vw + 1.25rem, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.about-review__rating-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-review__stars {
  color: #f5c842;
  line-height: 1;
}
.about-review__rating small {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}
.about-review__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}
.about-review__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}
.about-review__dot.is-active {
  width: 18px;
  border-radius: 999px;
  background: #5eead4;
}
.about-review__progress-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: #5eead4;
  border-radius: 0 0 0 clamp(0.85rem, 1.5vw, 1.1rem);
  pointer-events: none;
}
.about-review__progress-fill.is-animating {
  animation: aboutReviewProgress 5.5s linear forwards;
}
@keyframes aboutReviewProgress {
  from { width: 0%; }
  to { width: 100%; }
}

/* Right — copy column */
.home-about__content {
  padding: clamp(0.5rem, 2vw, 1.5rem) 0;
}
.home-about__lead {
  margin-top: clamp(1rem, 2vw, 1.35rem);
  font-size: clamp(0.95rem, 0.5vw + 0.85rem, 1.05rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 34rem;
}
.home-about__features {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: center;
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}
.home-about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 0.5vw + 0.78rem, 0.95rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.home-about__feature svg {
  flex-shrink: 0;
  color: var(--ink);
  opacity: 0.85;
}
.home-about__feature-divider {
  width: 1px;
  height: 52px;
  background: var(--line);
  justify-self: center;
}
.home-about__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(1.75rem, 3.5vw, 2.25rem);
  padding: 14px 28px;
}

@media (max-width: 1280px) {
  .home-rentals__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .home-about__grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 2.75rem);
  }
  .home-about__visual {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .home-about__figure {
    height: clamp(20rem, 52vw, 28rem);
  }
  .home-about__features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .home-about__feature-divider {
    display: none;
  }
  .home-rentals__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .rental-card__details {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .home-rentals__grid {
    grid-template-columns: 1fr;
  }
  .rental-card__foot {
    flex-direction: column;
    align-items: stretch;
  }
  .rental-card__cta {
    text-align: center;
  }
  .about-review {
    width: calc(100% - 0.5rem);
  }
  .about-review__track {
    min-height: 6.5rem;
  }
}

.field label { display: block; font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 6px; font-family: var(--font-body); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

.pkg-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.pkg-row {
  display: grid;
  grid-template-columns: minmax(0, clamp(12rem, 28%, 18rem)) minmax(0, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid rgba(42, 122, 114, 0.1);
  border-radius: clamp(1rem, 1.5vw, 1.15rem);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(28, 28, 30, 0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.pkg-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(42, 122, 114, 0.1);
  border-color: rgba(42, 122, 114, 0.18);
}
.pkg-row__img {
  min-height: 100%;
  background-size: cover;
  background-position: center;
}
.pkg-row__body {
  display: flex;
  flex-direction: column;
  padding: clamp(1.15rem, 2.5vw, 1.5rem);
  min-width: 0;
}
.pkg-row__meta,
.pkg-card__meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.pkg-card__meta {
  font-size: 9px;
  margin-bottom: 2px;
}
.pkg-row h3,
.pkg-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 0.6vw + 0.95rem, 1.28rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
}
.pkg-card h3 {
  font-size: clamp(0.84rem, 0.35vw + 0.78rem, 0.95rem);
  margin-bottom: 4px;
  line-height: 1.25;
}
.pkg-row__desc,
.pkg-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.pkg-card__desc {
  font-size: 11px;
  line-height: 1.45;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pkg-row__tags,
.pkg-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
}
.pkg-row__tags span,
.pkg-card__tags span {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  color: var(--ink-soft);
  background: var(--bg-muted);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.pkg-row__foot,
.pkg-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.pkg-card__foot {
  gap: 6px;
  padding: 8px;
  margin-top: auto;
  border-top: none;
  background: linear-gradient(135deg, var(--teal-soft) 0%, #fff 100%);
  border: 1px solid rgba(42, 122, 114, 0.12);
  border-radius: 8px;
}
.pkg-row__price,
.pkg-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.pkg-row__price-label,
.pkg-card__price-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.pkg-card__price-label {
  font-size: 8px;
}
.pkg-row__price strong,
.pkg-card__price {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 0.8vw + 1rem, 1.45rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.pkg-card__price {
  font-size: clamp(0.9rem, 0.4vw + 0.8rem, 1rem);
  color: var(--teal-dark);
}
.pkg-row__price-note,
.pkg-card__price-note {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
.pkg-card__price-note {
  font-size: 9px;
}
.pkg-row__foot .btn,
.pkg-card__foot .btn {
  flex-shrink: 0;
  white-space: nowrap;
}
.pkg-card__foot .btn {
  padding: 6px 10px;
  font-size: 11px;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
  gap: clamp(0.75rem, 1.25vw, 1rem);
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.pkg-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(42, 122, 114, 0.1);
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(28, 28, 30, 0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(42, 122, 114, 0.1);
  border-color: rgba(42, 122, 114, 0.2);
}
.pkg-card__img {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pkg-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--teal);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(42, 122, 114, 0.25);
}
.pkg-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
  padding: 0.65rem 0.75rem 0.75rem;
}
.pkg-card.hidden,
.pkg-row.hidden { display: none; }

.packages-filter-status {
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  padding: 0.7rem 1rem;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  background: var(--teal-soft);
  border: 1px solid rgba(42, 122, 114, 0.15);
  border-radius: var(--radius);
}
.packages-filter-status.hidden,
.packages-catalog .section-head.hidden,
.packages-catalog .pkg-grid.hidden { display: none; }

.packages-catalog.is-filtered .packages-catalog__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
  gap: clamp(0.75rem, 1.25vw, 1rem);
}
.packages-catalog.is-filtered .section-head {
  display: none;
}
.packages-catalog.is-filtered .pkg-grid {
  display: contents;
  margin-bottom: 0;
}

.packages-catalog .section-head {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-bottom: clamp(0.75rem, 1.5vw, 1rem);
  border-bottom: 1px solid var(--line);
}
.packages-catalog .section-head:first-of-type {
  margin-top: 0;
}
.packages-catalog .filters {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  padding-bottom: clamp(1rem, 2vw, 1.25rem);
  border-bottom: 1px solid var(--line);
}
.tour-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.75vw, 1.5rem);
}
.tour-category {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(42, 122, 114, 0.12);
  border-radius: clamp(1rem, 1.5vw, 1.15rem);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(28, 28, 30, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.tour-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(42, 122, 114, 0.12);
}
.tour-category.is-hidden { display: none; }
.tour-category__media {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-muted);
}
.tour-category__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.1rem 1.15rem;
}
.tour-category__body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.tour-category__destination {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.tour-category__tours {
  flex: 1;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.tour-category__cta {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
}
.tour-category__cta:hover { color: var(--teal); }
@media (max-width: 1024px) {
  .tour-categories-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .tour-categories-grid { grid-template-columns: 1fr; }
}

.svc-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
}
.svc-tiles--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.svc-tiles--services {
  margin-bottom: 0;
}
.svc-tile {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.1rem, 2vw, 1.35rem);
  border: 1px solid rgba(42, 122, 114, 0.12);
  border-radius: clamp(0.9rem, 1.4vw, 1.1rem);
  background: #fff;
  box-shadow: 0 4px 16px rgba(28, 28, 30, 0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.svc-tile--card {
  padding: 0;
  overflow: hidden;
}
.svc-tile__media {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}
.svc-tile__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(0.85rem, 1.5vw, 1rem);
}
.svc-tile:hover {
  border-color: rgba(42, 122, 114, 0.22);
  box-shadow: 0 12px 28px rgba(42, 122, 114, 0.1);
  transform: translateY(-3px);
}
.svc-tile__icon {
  width: 44px;
  height: 44px;
  background: var(--teal-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.svc-tile__icon svg { width: 22px; stroke: var(--teal); }
.svc-tile h3 {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 0.4vw + 0.88rem, 1.05rem);
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--ink);
}
.svc-tile p {
  flex: 1;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.svc-tile__link,
.svc-tile a {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-top: auto;
}
.svc-tile__link:hover,
.svc-tile a:hover { color: var(--teal); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: var(--grid-gap);
}
.fleet-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.fleet-card__img { height: clamp(10rem, 18vw, 13rem); background-size: cover; background-position: center; }
.fleet-card__body { padding: 20px; }
.fleet-card h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 8px; font-weight: 600; }
.fleet-card__specs { list-style: none; font-size: 14px; color: var(--muted); margin: 14px 0; }
.fleet-card__specs li { padding: 6px 0; border-bottom: 1px solid var(--line); }
.fleet-card__specs li:last-child { border: none; }

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: 0;
  counter-reset: step;
}
.process__step { text-align: center; padding: 24px 16px; }
.process__step::before { counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin: 0 auto 12px; background: rgba(255,255,255,0.15); color: #fff; font-weight: 700; border-radius: 50%; font-size: 16px; font-family: var(--font); }
.process__step h4 { font-size: 15px; margin-bottom: 6px; color: #fff; font-family: var(--font-heading); font-weight: 600; }
.process__step p { font-size: 13px; color: rgba(255,255,255,0.75); }

.offers-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; }
.offer-card { flex: 0 0 min(100%, 22%); min-width: min(100%, 16rem); background: var(--teal-deep); color: #fff; border-radius: var(--radius-lg); padding: clamp(1.1rem, 2vw, 1.4rem); }
.offer-card__tag { font-size: 11px; font-weight: 600; opacity: 0.75; }
.offer-card h3 { font-family: var(--font-heading); font-size: 1.1rem; color: #fff; margin: 8px 0; font-weight: 600; }
.offer-card p { font-size: 14px; opacity: 0.88; margin-bottom: 14px; }

.dest-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 28rem), 1fr));
  gap: var(--grid-gap);
}
.dest-item {
  display: grid;
  grid-template-columns: minmax(5rem, 18%) 1fr auto;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  align-items: center;
  padding: clamp(0.85rem, 1.5vw, 1rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}
.dest-item__thumb { height: clamp(4rem, 8vw, 5rem); border-radius: var(--radius); background-size: cover; background-position: center; }
.dest-item h3 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 4px; font-weight: 600; }
.dest-item p { font-size: 14px; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split__visual { border-radius: var(--radius-lg); overflow: hidden; min-height: clamp(16rem, 30vw, 22rem); background-size: cover; background-position: center; }
.split__content h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; font-weight: 600; }
.split__content p { color: var(--muted); margin-bottom: 12px; }
.feature-list { list-style: none; margin: 20px 0; }
.feature-list li { padding: 8px 0 8px 24px; position: relative; font-size: 15px; }
.feature-list li::before { content: '·'; position: absolute; left: 6px; color: var(--teal); font-weight: 700; font-size: 20px; line-height: 1; }

.page-hero { background: var(--teal-deep); color: #fff; padding: clamp(3rem, 6vw, 3.5rem) 0; }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(1.85rem, 4vw, 2.5rem); color: #fff; margin-bottom: 12px; font-weight: 700; }
.page-hero p { color: rgba(255,255,255,0.88); max-width: min(100%, 65%); font-size: clamp(1rem, 1vw + 0.85rem, 1.2rem); }
.page-hero--img { position: relative; padding: clamp(4rem, 8vw, 6rem) 0; background-size: cover; background-position: center; }
.page-hero--img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,63,59,0.93), rgba(22,63,59,0.72)); }
.page-hero--img .container { position: relative; z-index: 1; }
.page-hero .breadcrumbs {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
}
.page-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.92);
}
.page-hero .breadcrumbs a:hover { color: #fff; }
.page-hero .breadcrumbs__sep { color: rgba(255, 255, 255, 0.38); }
.page-hero .breadcrumbs__current { color: rgba(255, 255, 255, 0.62); }

.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.spec-table th, .spec-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.spec-table th { background: var(--bg-muted); font-weight: 500; color: var(--ink); font-family: var(--font-body); }
.spec-table tr:last-child td { border-bottom: none; }

.gallery-masonry { columns: 3; column-gap: var(--grid-gap); }
.gallery-masonry img { width: 100%; margin-bottom: 14px; border-radius: var(--radius-lg); break-inside: avoid; }

.review-list { display: flex; flex-direction: column; gap: var(--grid-gap); max-width: min(100%, 75%); margin: 0 auto; }
.review-block { padding: 26px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.review-block__stars { color: #d4a017; font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.review-block p { font-size: 16px; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.7; }
.review-block footer { font-size: 14px; }
.review-block footer strong { color: var(--ink); }
.review-block footer span { color: var(--muted); margin-left: 8px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid rgba(42, 122, 114, 0.12);
  border-radius: clamp(0.75rem, 1.2vw, 0.9rem);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(28, 28, 30, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: rgba(42, 122, 114, 0.22);
  box-shadow: 0 8px 24px rgba(42, 122, 114, 0.08);
}
.faq-q {
  width: 100%;
  padding: clamp(0.9rem, 1.5vw, 1.05rem) clamp(1rem, 1.5vw, 1.15rem);
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 0.35vw + 0.82rem, 0.98rem);
  font-weight: 600;
  line-height: 1.4;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--teal-dark);
}
.faq-q::after {
  content: '+';
  flex-shrink: 0;
  color: var(--teal);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.2;
}
.faq-item.open .faq-q::after {
  content: '−';
}
.faq-a {
  padding: 0 clamp(1rem, 1.5vw, 1.15rem) clamp(0.9rem, 1.5vw, 1.05rem);
}
.faq-a[hidden] {
  display: none;
}
.faq-a p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

.faq-page {
  padding-top: 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(11rem, 14rem) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}
.faq-sidebar {
  position: sticky;
  top: calc(var(--site-top-height, 5rem) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.65rem;
  background: #fff;
  border: 1px solid rgba(42, 122, 114, 0.12);
  border-radius: clamp(0.85rem, 1.2vw, 1rem);
  box-shadow: 0 4px 16px rgba(28, 28, 30, 0.04);
}
.faq-nav__link {
  display: block;
  padding: 0.55rem 0.7rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 0.55rem;
  transition: background 0.2s, color 0.2s;
}
.faq-nav__link:hover {
  color: var(--teal-dark);
  background: var(--teal-soft);
}
.faq-nav__link.is-active {
  color: var(--teal-dark);
  font-weight: 600;
  background: var(--teal-soft);
}
.faq-sidebar__card {
  padding: clamp(1rem, 1.5vw, 1.15rem);
  background: #fff;
  border: 1px solid rgba(42, 122, 114, 0.12);
  border-radius: clamp(0.85rem, 1.2vw, 1rem);
  box-shadow: 0 4px 16px rgba(28, 28, 30, 0.04);
}
.faq-sidebar__card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.faq-sidebar__card p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 12px;
}
.faq-sidebar__card .btn {
  margin-bottom: 8px;
}
.faq-sidebar__card .btn:last-child {
  margin-bottom: 0;
}
.faq-main {
  min-width: 0;
}
.faq-group {
  scroll-margin-top: calc(var(--site-top-height, 5rem) + 1rem);
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}
.faq-group:last-child {
  margin-bottom: 0;
}
.faq-group__title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(42, 122, 114, 0.12);
}

.blog-list { display: flex; flex-direction: column; gap: 24px; }
.blog-entry {
  display: grid;
  grid-template-columns: minmax(28%, 16rem) 1fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  padding-bottom: clamp(1rem, 2.5vw, 1.5rem);
  border-bottom: 1px solid var(--line);
}
.blog-entry__img { height: clamp(9rem, 16vw, 12rem); border-radius: var(--radius-lg); background-size: cover; background-position: center; }
.blog-entry__cat { font-size: 12px; font-weight: 600; color: var(--teal); }
.blog-entry h3 { font-family: var(--font-heading); font-size: 1.25rem; margin: 8px 0; font-weight: 600; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
}

.contact-quick-wrap {
  margin-top: clamp(-2.5rem, -4vw, -2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}
.contact-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.25vw, 0.85rem);
  padding: clamp(0.85rem, 1.5vw, 1rem);
  background: #fff;
  border: 1px solid rgba(42, 122, 114, 0.12);
  border-radius: clamp(1rem, 1.5vw, 1.15rem);
  box-shadow: 0 12px 36px rgba(28, 28, 30, 0.08);
}
.contact-quick__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border: 1px solid rgba(42, 122, 114, 0.14);
  border-radius: 10px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.contact-quick__btn:hover {
  background: #fff;
  border-color: var(--teal);
  color: var(--teal);
}
.contact-quick__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(42, 122, 114, 0.25);
}
.contact-quick__btn--primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(42, 122, 114, 0.32);
}

.contact-details__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.contact-details__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}
.contact-details__list a {
  font-weight: 600;
  color: var(--teal-dark);
}
.contact-details__list em {
  font-size: 13px;
  color: var(--muted);
}

.contact-direct__lead {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.contact-direct__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-fields-panels {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-fields-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-fields-panel[hidden] {
  display: none !important;
}
.contact-fields-panel.is-active .field:first-child {
  margin-top: 0;
}
.contact-fields-panel .field {
  margin-bottom: 14px;
}
.contact-fields-panel .form-row {
  margin-bottom: 0;
}

.about-section-head__lead {
  margin: 10px auto 0;
  max-width: 100%;
  text-align: center;
  text-wrap: balance;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
}
.about-section-head .section-lead {
  margin-inline: auto;
  max-width: 100%;
  text-align: center;
  text-wrap: balance;
}

.info-block { padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-block strong { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.contact-form { background: #fff; padding: clamp(1.5rem, 3vw, 2rem); border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .field { margin-bottom: 14px; }
.form-note { text-align: center; font-size: 14px; color: var(--teal); margin-top: 12px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; margin-top: 32px; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: clamp(16rem, 32vw, 22rem); border: 0; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-btn { padding: 9px 18px; font-family: var(--font); font-size: 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; color: var(--ink-soft); transition: 0.2s; }
.filter-btn.active, .filter-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.cta-band {
  background: var(--teal-soft);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}
.cta-band--dark { background: var(--teal-deep); color: #fff; }
.cta-band--dark h2 { color: #fff; }
.cta-band--dark p { color: rgba(255,255,255,0.82); }
.cta-band h2 { margin-bottom: 12px; font-size: clamp(1.4rem, 2vw + 1rem, 2rem); font-family: var(--font-heading); font-weight: 600; }
.cta-band p { color: var(--muted); margin-bottom: 24px; max-width: min(100%, 55%); margin-left: auto; margin-right: auto; }
.cta-band__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.footer {
  background: var(--teal-soft);
  color: var(--ink-soft);
  padding: clamp(3rem, 5vw, 3.75rem) 0 clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(42, 122, 114, 0.15);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: start;
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(42, 122, 114, 0.12);
}
.footer__brand {
  max-width: 22rem;
}
.footer__logo {
  display: block;
  height: clamp(3.5rem, 6vw, 4.75rem);
  width: auto;
  max-width: min(310px, 52vw);
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 20rem;
}
.footer__col h4 {
  color: var(--teal-dark);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__links,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a,
.footer__contact a {
  display: inline-block;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.footer__col a:hover,
.footer__contact a:hover {
  color: var(--teal-dark);
}
.footer__address {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.footer__col--office {
  max-width: 16rem;
}
.footer__bar {
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  text-align: center;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 24px;
  margin-bottom: 14px;
}
.footer__legal a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__legal a:hover {
  color: var(--teal-dark);
}
.footer__bottom {
  margin: 0;
  max-width: 52rem;
  margin-inline: auto;
  padding-bottom: clamp(0.5rem, 2vw, 1rem);
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
}
.footer__bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__bottom a:hover {
  color: var(--teal-dark);
}

.contact-floats {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-float {
  width: 54px;
  height: 54px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(28, 28, 30, 0.22);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.contact-float svg {
  width: 26px;
  height: 26px;
}
.contact-float--call {
  background: var(--teal);
}
.contact-float--whatsapp {
  background: #25d366;
}
.contact-float:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 9px 26px rgba(28, 28, 30, 0.28);
}
.contact-float:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--teal-deep);
}

html.is-loading, html.is-loading body { overflow: hidden; }

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-loader__logo {
  height: clamp(3rem, 10vw, 5rem);
  width: auto;
  max-width: min(260px, 75vw);
  object-fit: contain;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  animation: loader-logo-fade 1.6s ease-in-out infinite;
}
.page-loader__word {
  display: flex;
  align-items: center;
  margin: 0;
  padding-left: 0.35em;
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink);
}
.page-loader__word span {
  display: inline-block;
  opacity: 0.08;
  animation: loader-letter 1.5s ease-in-out infinite;
}
.page-loader__word span:nth-child(1) { animation-delay: 0s; }
.page-loader__word span:nth-child(2) { animation-delay: 0.15s; }
.page-loader__word span:nth-child(3) { animation-delay: 0.3s; }
.page-loader__word span:nth-child(4) { animation-delay: 0.45s; }
.page-loader__word span:nth-child(5) { animation-delay: 0.6s; }
.page-loader__word span:nth-child(6) { animation-delay: 0.75s; }
.page-loader__word span:nth-child(7) { animation-delay: 0.9s; }

@keyframes loader-logo-fade {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@keyframes loader-letter {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.38; }
}

.reveal { opacity: 0; transform: translateY(16px); transition: 0.55s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-banner__video { display: none; }
  .hero-banner__media { background: var(--teal-deep); }
}

/* Large screens — use more of the viewport */
@media (min-width: 1400px) {
  :root {
    --page-width: 92vw;
    --grid-gap: clamp(1.25rem, 2vw, 2rem);
  }
  .nav { gap: clamp(0.15rem, 0.5vw, 0.5rem); }
  .nav__link { padding: 8px clamp(0.75rem, 1.2vw, 1rem); }
  .gallery-masonry { columns: 4; }
}

@media (min-width: 1920px) {
  :root {
    --page-width: 90vw;
    --page-gutter: clamp(1.5rem, 2vw, 4rem);
    --section-space: clamp(4rem, 5vw, 7rem);
  }
  .hero-banner h1 { max-width: min(20ch, 50%); }
  .header-search { max-width: 28%; }
}

@media (max-width: 1200px) {
  .hero-search__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-search__btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-search__row { grid-template-columns: 1fr 1fr; }
  .hero-search__btn { grid-column: 1 / -1; width: 100%; }
  .hero-banner { margin-bottom: clamp(6rem, 12vw, 8rem); }
  .hero-banner h1 { max-width: 100%; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.25rem);
  }
  .footer__brand {
    grid-column: 1 / -1;
    max-width: 28rem;
  }
  .footer__col--office {
    max-width: none;
  }
  .split { grid-template-columns: 1fr; }
  .header-search { flex: 1 1 100%; max-width: 100%; }
  .pkg-row {
    grid-template-columns: minmax(0, 10rem) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .section-intro { max-width: 100%; }
  .announce-bar__inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
  }
  .announce-bar__track {
    flex: 1;
    min-width: 0;
    mask-image: linear-gradient(90deg, #000 0%, #000 94%, transparent 100%);
  }
  .announce-bar__marquee {
    width: max-content;
    flex-direction: row;
    animation: announce-marquee 34s linear infinite;
  }
  .announce-bar__sequence {
    flex-direction: row;
    width: auto;
  }
  .announce-bar__sequence[aria-hidden="true"] { display: flex; }
  .announce-bar__item {
    white-space: nowrap;
    padding-right: 1.75rem;
    font-size: 11px;
    line-height: 1.35;
  }
  .announce-bar__item + .announce-bar__item { display: inline-flex; }
  .announce-bar__highlight {
    text-shadow: 0 0 10px rgba(94, 234, 212, 0.7), 0 0 18px rgba(42, 122, 114, 0.45);
  }
  .announce-bar__left {
    gap: 6px;
  }
  .announce-bar__badge {
    padding: 3px 8px;
    font-size: 10px;
  }
  .header-top__left .header-top__item,
  .header-top__right .header-top__item { display: none; }
  .header-top__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
  }
  .header-top__left,
  .header-top__brand {
    min-width: 0;
  }
  .header-top__logo {
    height: clamp(2.6rem, 8vw, 3.1rem);
    max-width: min(12rem, calc(100vw - 11rem));
  }
  .header-nav__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 10px 12px;
    align-items: center;
    padding-bottom: 12px;
  }
  .nav__toggle { display: flex; grid-column: 1; grid-row: 1; }
  .header-search { grid-column: 2; grid-row: 1; max-width: none; width: 100%; }
  .nav { display: none; grid-column: 1 / -1; grid-row: 2; width: 100%; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: static;
    background: #fff;
    padding: 8px 0 0;
    max-height: none;
    overflow: visible;
    align-items: stretch;
    border-top: 1px solid var(--line);
    margin-top: 8px;
  }
  .nav__link { padding: 12px 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .hero-banner {
    min-height: auto;
    display: block;
    margin-bottom: clamp(2rem, 6vw, 3rem);
    padding-top: 1.25rem;
    padding-bottom: 0;
  }
  .hero-banner__content {
    display: block;
    padding-top: 1rem;
    padding-bottom: 0.75rem;
  }
  .hero-banner__sub { max-width: 100%; }
  .hero-search-wrap {
    position: relative;
    inset: auto;
    transform: none;
    margin-top: 0;
  }
  .hero-banner h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 2.9rem);
  }
  .hero-banner__script {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 8px;
  }
  .hero-search {
    padding: 1rem;
  }
  .hero-search__row { grid-template-columns: 1fr; }
  .pkg-row {
    grid-template-columns: 1fr;
  }
  .pkg-row__img {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .pkg-row__foot,
  .pkg-card__foot {
    flex-direction: column;
    align-items: stretch;
  }
  .pkg-row__foot .btn,
  .pkg-card__foot .btn {
    width: 100%;
    text-align: center;
  }
  .dest-item { grid-template-columns: 80px 1fr; }
  .dest-item .btn { grid-column: 1 / -1; justify-self: start; }
  .blog-entry { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-quick { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer__brand {
    grid-column: auto;
    max-width: none;
  }
  .footer__col--office {
    max-width: none;
  }
  .footer__legal {
    flex-direction: column;
    gap: 8px;
  }
  .offer-row { flex-direction: column; }
}

/* Car rental page */
.transport-hero {
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
}
.transport-booking-wrap {
  margin-top: clamp(-3.5rem, -7vw, -5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 2;
}
.transport-quick-form__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: clamp(0.85rem, 1.5vw, 1.1rem);
}
.transport-types__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.2vw, 1rem);
}
.transport-types__grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 56rem;
  margin-inline: auto;
}
.transport-types--services .transport-type {
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: clamp(1.1rem, 2vw, 1.35rem) clamp(0.75rem, 1.5vw, 1rem);
  border-color: rgba(42, 122, 114, 0.12);
  box-shadow: 0 4px 16px rgba(28, 28, 30, 0.04);
}
.transport-types--services .transport-type:hover,
.transport-types--services .transport-type:focus-visible {
  border-color: rgba(42, 122, 114, 0.22);
  box-shadow: 0 12px 28px rgba(42, 122, 114, 0.1);
  transform: translateY(-3px);
}
.transport-types--services .transport-type__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 4px;
}
.transport-types--services .transport-type__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
}
.transport-type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: clamp(1rem, 2vw, 1.25rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}
.transport-type:hover,
.transport-type:focus-visible {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  outline: none;
}
.transport-type__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 1rem;
  margin-bottom: 4px;
}
.transport-type__icon svg {
  width: 18px;
  height: 18px;
}
.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f5c842;
}
.about-review__stars.rating-stars,
.corp-review__stars.rating-stars {
  letter-spacing: 0;
}
.rating-stars__icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}
.option-pill .rating-stars__icon {
  width: 10px;
  height: 10px;
}
.inline-arrow {
  display: inline-block;
  vertical-align: -2px;
  margin-left: 2px;
  flex-shrink: 0;
}
.transport-type strong {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.transport-type span:last-child {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.transport-book-head {
  max-width: min(100%, 40rem);
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.rental-book-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}
.rental-book-info {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
}
.rental-book-info__card {
  padding: clamp(1.25rem, 2.5vw, 1.5rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.rental-book-info__card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.rental-book-steps {
  margin: 0;
  padding-left: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.rental-book-info__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: clamp(1rem, 2vw, 1.25rem);
  background: var(--teal-soft);
  border-radius: var(--radius-lg);
}
.rental-book-info__contact p {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.rental-booking-form h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.rental-booking-form__head {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
}
.rental-form-lead {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.rental-form-section {
  border: none;
  padding: 0;
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.5rem);
}
.rental-form-section .field {
  margin-bottom: 14px;
}
.rental-form-section .field:last-child {
  margin-bottom: 0;
}
.rental-form-section__label,
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.field-phone {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field-phone:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}
.field-phone__prefix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-muted);
  border-right: 1px solid var(--line);
  flex-shrink: 0;
}
.field-phone input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 11px 14px;
  font-size: 15px;
  background: transparent;
}
.field-phone input:focus {
  outline: none;
  box-shadow: none;
}
.option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.option-pills--compact .option-pill {
  min-width: 3.25rem;
  padding: 10px 14px;
}
.option-pill {
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg-muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.option-pill:hover {
  border-color: rgba(42, 122, 114, 0.35);
  color: var(--teal-dark);
}
.option-pill.active {
  background: var(--teal-soft);
  border-color: var(--teal);
  color: var(--teal-dark);
  font-weight: 600;
}
.vehicle-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.vehicle-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 14px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.vehicle-pill:hover {
  border-color: rgba(42, 122, 114, 0.35);
}
.vehicle-pill.active {
  border-color: var(--teal);
  background: var(--teal-soft);
  box-shadow: 0 0 0 1px var(--teal);
}
.vehicle-pill strong {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.vehicle-pill span {
  font-size: 12px;
  font-weight: 500;
  color: var(--teal-dark);
}
.field-hint {
  margin-top: 8px;
  font-size: 13px;
  color: var(--teal-dark);
  font-weight: 500;
}
.rental-form-more {
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--bg-muted);
}
.rental-form-more summary {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
}
.rental-form-more summary::-webkit-details-marker { display: none; }
.rental-form-more[open] summary {
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.rental-form-more__body {
  padding: 14px;
}
.rental-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.field-optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 12px;
}
.table-wrap {
  overflow-x: auto;
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

@media (max-width: 1024px) {
  .transport-types__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .transport-types__grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-sidebar {
    position: static;
  }
  .faq-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .faq-nav__link {
    font-size: 12px;
    padding: 0.45rem 0.65rem;
  }
  .faq-sidebar__card {
    display: none;
  }
  .svc-tiles--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rental-book-layout {
    grid-template-columns: 1fr;
  }
  .package-quick-form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .package-quick-form__row .hero-search__btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .transport-types__grid,
  .transport-types__grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .svc-tiles--four {
    grid-template-columns: 1fr;
  }
  .transport-quick-form__row,
  .package-quick-form__row {
    grid-template-columns: 1fr;
  }
  .transport-quick-form__row .hero-search__btn,
  .package-quick-form__row .hero-search__btn {
    grid-column: 1 / -1;
    width: 100%;
  }
  .vehicle-pills {
    grid-template-columns: 1fr;
  }
  .form-row--dates {
    grid-template-columns: 1fr;
  }
}

/* Audience switcher — corporate vs leisure */
.audience-switcher {
  background: var(--teal-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 0;
}
.audience-switcher__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  flex-wrap: wrap;
}
.audience-switcher__label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}
.audience-switcher__tabs {
  display: inline-flex;
  padding: 4px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 999px;
  gap: 4px;
}
.audience-switcher__tab {
  display: inline-block;
  padding: 0.42rem 1rem;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.audience-switcher__tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.audience-switcher__tab.is-active {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* Corporate landing page */
.corporate-page main {
  background: #fff;
}
.page-hero--corporate {
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.page-hero--corporate::before {
  background: linear-gradient(105deg, rgba(14, 45, 42, 0.96) 0%, rgba(22, 63, 59, 0.88) 50%, rgba(42, 122, 114, 0.35) 100%);
}
.page-hero--corporate .container {
  max-width: min(100%, 72rem);
}
.page-hero--corporate h1 {
  max-width: 20ch;
  line-height: 1.12;
}
.breadcrumbs--light,
.breadcrumbs--light a,
.breadcrumbs--light .breadcrumbs__current {
  color: rgba(255, 255, 255, 0.9);
}
.breadcrumbs--light a:hover { color: #fff; }
.corporate-hero__lead {
  max-width: 38rem;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.12rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 1.5rem;
}
.corporate-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Section rhythm */
.corp-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.corp-section--light { background: var(--bg-muted); }
.corp-section--warm {
  background: linear-gradient(180deg, var(--bg-warm) 0%, #fff4e8 100%);
}
.corp-section--dark {
  background: linear-gradient(165deg, #0f2f2c 0%, #163f3b 50%, #1a4a45 100%);
  color: #fff;
}
.corp-section--split { background: #fff; }
.corp-section--industries {
  background: linear-gradient(135deg, #163f3b 0%, #2a7a72 100%);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.corp-section--plans {
  background: #fff;
  border-top: 1px solid rgba(42, 122, 114, 0.08);
}
.corp-section--reviews {
  background: #0f2f2c;
  color: #fff;
}
.corp-section--faq { background: var(--bg-muted); }
.corp-section--form {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(42, 122, 114, 0.08), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
}

.corp-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}
.corp-section-head__lead {
  margin-top: 10px;
  font-size: clamp(0.95rem, 0.4vw + 0.88rem, 1.05rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

/* Trusted band */
.corporate-trusted--band {
  background: var(--teal-deep);
  margin-top: 0;
  padding: 1.75rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.corporate-trusted__title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}
.corporate-trusted__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.corporate-trusted__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 0.65rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
}
.corporate-trusted__item svg {
  width: 16px;
  height: 16px;
  stroke: #8fd9cf;
  flex-shrink: 0;
}
.corporate-trusted__item span {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

/* Services */
.corp-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.corp-service {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(42, 122, 114, 0.1);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(28, 28, 30, 0.04);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.corp-service:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 122, 114, 0.25);
  box-shadow: 0 16px 36px rgba(42, 122, 114, 0.12);
}
.corp-service__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-soft), rgba(42, 122, 114, 0.12));
  border-radius: 11px;
  margin-bottom: 12px;
}
.corp-service__icon svg { width: 20px; stroke: var(--teal); }
.corp-service h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.corp-service p {
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.corp-service__link {
  align-self: flex-start;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  cursor: pointer;
}
.corp-service__link:hover { color: var(--teal); }

/* Premium fleet on dark */
.corp-premium-fleet {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.corp-premium-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s var(--ease);
}
.corp-premium-card:hover { transform: translateY(-4px); }
.corp-premium-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: #e8e4dc;
  background-size: cover;
  background-position: center;
}
.corp-premium-card__badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 4px 9px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
}
.corp-premium-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.85rem 0.9rem 1rem;
}
.corp-premium-card h3 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.corp-premium-card__meta {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  flex: 1;
}
.corp-premium-card__meta li {
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 3px;
}
.corp-premium-card__meta strong { color: var(--ink); font-weight: 600; }

/* Why split */
.corp-why-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.corp-why-split__visual {
  aspect-ratio: 4 / 3;
  border-radius: 1.1rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 50px rgba(28, 28, 30, 0.15);
}
.corp-why-split__content h2 {
  font-size: clamp(1.5rem, 2vw + 0.9rem, 2rem);
  margin-bottom: 1rem;
}
.corp-benefits--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.corp-benefits--split li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 0.65rem;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg-muted);
  border-radius: 0.5rem;
}
.corp-benefits--split li:last-child {
  grid-column: 1 / -1;
}
.corp-benefits--split li svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  flex-shrink: 0;
}

/* Timeline */
.corp-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: corp-step;
}
.corp-timeline .corp-step {
  position: relative;
  padding: 1.25rem 1rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(42, 122, 114, 0.12);
  border-radius: 0.9rem;
  box-shadow: 0 6px 24px rgba(42, 122, 114, 0.08);
  text-align: center;
}
.corp-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(42, 122, 114, 0.35);
}
.corp-step h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.corp-step p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* Industries */
.corp-industries--dark {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 52rem;
  margin-inline: auto;
}
.corp-industries--dark li {
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.55rem;
  backdrop-filter: blur(4px);
}

/* Plan cards */
.corp-plan-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 56rem;
  margin-inline: auto;
  align-items: stretch;
  padding-top: 0.75rem;
}
.corp-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(42, 122, 114, 0.12);
  border-radius: 1rem;
  box-shadow: 0 6px 24px rgba(28, 28, 30, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.corp-plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(42, 122, 114, 0.12);
}
.corp-plan-card--featured {
  border-color: var(--teal);
  box-shadow: 0 16px 40px rgba(42, 122, 114, 0.18);
}
.corp-plan-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  white-space: nowrap;
}
.corp-plan-card__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.corp-plan-card__for {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 10px;
}
.corp-plan-card__includes {
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.corp-plan-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
}
.corp-plan-card__cta:hover { color: var(--teal); }

/* Reviews carousel */
.corp-reviews-carousel {
  max-width: 40rem;
  margin-inline: auto;
}
.corp-reviews-carousel__wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.corp-reviews-carousel__panel {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.corp-reviews-carousel__track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.corp-reviews-carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
}
.corp-reviews-carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.corp-reviews-carousel__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}
.corp-reviews-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.25rem;
}
.corp-reviews-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.corp-reviews-carousel__dot.is-active {
  background: #fff;
  transform: scale(1.2);
}
.corp-review--dark {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  text-align: center;
}
.corp-review--dark .corp-review__quote {
  font-size: clamp(0.95rem, 0.4vw + 0.88rem, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  text-wrap: balance;
}
.corp-review--dark footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 13px;
}
.corp-review--dark footer strong { color: #fff; }
.corp-review--dark footer span { color: rgba(255, 255, 255, 0.55); }
.corp-review__stars {
  color: #d4a017;
  margin-bottom: 10px;
}

.container--narrow {
  max-width: 42rem;
  margin-inline: auto;
}

/* Form section */
.corp-form-shell {
  max-width: 36rem;
  margin-inline: auto;
}
.corp-form-shell .about-section-head {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.corporate-form {
  background: #fff;
  border: 1px solid rgba(42, 122, 114, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(28, 28, 30, 0.08);
}
.corp-form-alt {
  margin-top: 1rem;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.corp-form-alt a {
  color: var(--teal-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.corp-form-alt a:hover { color: var(--teal); }

@media (max-width: 1024px) {
  .corporate-trusted__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .corp-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .corp-premium-fleet { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .corp-why-split { grid-template-columns: 1fr; }
  .corp-why-split__visual { max-height: 16rem; aspect-ratio: auto; }
  .corp-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .corp-industries--dark { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .corporate-trusted__grid,
  .corp-services,
  .corp-premium-fleet {
    grid-template-columns: 1fr;
  }
  .corp-reviews-carousel__btn {
    width: 36px;
    height: 36px;
  }
  .corp-benefits--split { grid-template-columns: 1fr; }
  .corp-industries--dark { grid-template-columns: 1fr 1fr; }
  .corp-timeline { grid-template-columns: 1fr; }
  .audience-switcher__inner { flex-direction: column; gap: 0.5rem; }
}

/* Search page */
.search-hero {
  background: linear-gradient(180deg, var(--teal-soft) 0%, var(--bg) 100%);
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}
.search-hero__lead {
  max-width: 38rem;
  margin: 0.75rem 0 1.5rem;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1vw + 0.8rem, 1.05rem);
}
.search-page-form__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(28, 28, 30, 0.06);
}
.search-page-form__icon { color: var(--muted); flex-shrink: 0; }
.search-page-form__field input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 16px;
  color: var(--charcoal);
}
.search-page-form__field input:focus { outline: none; }
.search-page-form__btn {
  flex-shrink: 0;
  border-radius: 999px;
  padding: 12px 20px;
}
.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.search-tag {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.search-tag:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--teal-soft);
}
.search-results-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.search-results-status {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.search-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.1rem);
}
.search-results.hidden { display: none; }
.search-result-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(28, 28, 30, 0.04);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.search-result-card:hover {
  transform: translateY(-2px);
  border-color: rgba(42, 122, 114, 0.25);
  box-shadow: 0 12px 28px rgba(42, 122, 114, 0.1);
}
.search-result-card__media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-muted);
}
.search-result-card__media--placeholder {
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}
.search-result-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(0.9rem, 1.5vw, 1.1rem);
}
.search-result-card__type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}
.search-result-card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.search-result-card__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.search-empty {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) 1rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-muted);
}
.search-empty.hidden { display: none; }
.search-empty h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
}
.search-empty p {
  margin: 0 auto 1.25rem;
  max-width: 32rem;
  color: var(--ink-soft);
}
.search-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .search-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .search-page-form__field {
    flex-wrap: wrap;
    border-radius: var(--radius-lg);
    padding: 12px;
  }
  .search-page-form__btn {
    width: 100%;
  }
  .search-results { grid-template-columns: 1fr; }
}

/* Mobile optimization */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

input,
select,
textarea,
.header-search input,
.hero-search__field input,
.hero-search__field select,
.search-page-form__field input {
  font-size: 16px;
}

.btn,
.nav__link,
.filter-btn,
.option-pill,
.search-tag,
.transport-type,
.faq-q,
.dest-carousel__btn {
  min-height: 44px;
}

@media (max-width: 768px) {
  .header-top__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    min-height: 3.5rem;
  }

  .header-top__left,
  .header-top__brand {
    min-width: 0;
    max-width: 100%;
  }

  .header-top__logo {
    height: 2.75rem;
    max-width: min(11.5rem, calc(100vw - 11.5rem));
    width: auto;
  }

  .header-top__right {
    flex-shrink: 0;
  }

  .btn--header {
    padding: 8px 12px;
    font-size: 12.5px;
    min-height: 40px;
    gap: 6px;
    white-space: nowrap;
  }

  .btn--header svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .hero-banner {
    min-height: auto;
    margin-bottom: clamp(2rem, 6vw, 3rem);
  }

  .hero-search-wrap {
    transform: none;
    margin-top: 0;
  }

  .hero-search {
    border-radius: var(--radius-lg);
  }

  .page-hero {
    min-height: clamp(15rem, 38vh, 20rem);
    padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  }

  .page-hero h1 {
    font-size: clamp(1.65rem, 6vw, 2.2rem);
  }

  .home-title {
    font-size: clamp(1.45rem, 5vw, 2rem);
  }

  .contact-floats {
    right: calc(1rem + env(safe-area-inset-right));
    bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  .contact-float {
    width: 50px;
    height: 50px;
  }

  .transport-hero {
    padding-bottom: clamp(3rem, 8vw, 4.5rem);
  }

  .transport-booking-wrap {
    margin-top: clamp(-2.5rem, -6vw, -3.5rem);
  }

  .audience-switcher__tabs {
    width: 100%;
  }

  .audience-switcher__tab {
    flex: 1;
    text-align: center;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .about-review {
    position: relative;
    width: 100%;
    margin-top: 1rem;
  }

  .home-about__figure {
    height: clamp(15rem, 42vw, 20rem);
  }

  .corp-why-split__visual {
    min-height: 14rem;
  }

  .footer__bottom {
    font-size: 11px;
    line-height: 1.7;
    padding-inline: 0.25rem;
  }

  .announce-bar__cta {
    font-size: 12px;
    padding: 8px 12px;
    min-height: 40px;
  }

  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar { display: none; }

  .filter-btn {
    flex-shrink: 0;
  }

  .contact-form,
  .corporate-form,
  .rental-booking-form {
    padding: clamp(1rem, 3vw, 1.25rem);
  }

  .option-pills {
    gap: 8px;
  }

  .option-pill {
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .announce-bar__inner { gap: 6px; }
  .announce-bar__item {
    font-size: 10.5px;
    padding-right: 1.25rem;
  }
  .hero-banner {
    position: relative;
    display: block;
    min-height: auto;
    padding-top: 1rem;
    padding-bottom: 0;
  }
  .hero-banner__content {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .hero-search-wrap {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 0;
    transform: none;
  }
  .hero-search {
    padding: 0.9rem;
  }
  .hero-search__note {
    font-size: 12px;
    text-align: left;
  }
  .dest-spot-card {
    flex: 0 0 86%;
  }

  .gallery-masonry {
    columns: 1;
  }

  .corp-industries--dark {
    grid-template-columns: 1fr;
  }

  .header-nav__inner {
    gap: 8px;
  }

  .header-search {
    padding: 10px 12px;
  }

  .nav.open {
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 380px) {
  .header-top__logo {
    height: 2.4rem;
    max-width: calc(100vw - 10rem);
  }

  .btn--header {
    padding: 8px 10px;
    font-size: 12px;
  }

  .btn--header svg {
    display: none;
  }
}
