:root {
  --bg: #f5fbfa;
  --bg-soft: #edf7f6;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #103331;
  --muted: #4f6f6c;
  --line: rgba(16, 51, 49, 0.1);
  --brand: #14846a;
  --brand-deep: #0f5d4e;
  --sea: #2b8ec5;
  --sand: #f7e6c5;
  --shadow: 0 24px 60px rgba(16, 51, 49, 0.12);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
  --font-display: "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(20, 132, 106, 0.14), transparent 30%),
    radial-gradient(circle at right 20%, rgba(43, 142, 197, 0.18), transparent 28%),
    linear-gradient(180deg, #f7fcfb 0%, #eef8f6 40%, #f8fcff 100%);
}

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

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

.skip-link,
.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;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 1rem;
  clip: auto;
  white-space: normal;
  overflow: visible;
  padding: 0.8rem 1rem;
  background: #fff;
  border-radius: 999px;
  z-index: 1000;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.85));
  border-block: 1px solid rgba(255, 255, 255, 0.65);
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
}

.section-heading {
  max-width: 780px;
  text-align: center;
  margin: 0 auto 2.4rem;
}

.section-heading-left {
  text-align: left;
  margin-inline: 0;
}

.section-heading h2,
.cta-panel h2,
.hero-copy h1 {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  max-width: 13ch;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p,
.hero-intro,
.cta-panel p,
.travel-body,
.footer-tagline {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(248, 252, 251, 0.78);
  border-bottom: 1px solid rgba(16, 51, 49, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.brand img {
  width: clamp(132px, 16vw, 190px);
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(16, 51, 49, 0.14));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--text);
  font-weight: 700;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--brand-deep);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary,
.nav-cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--sea) 100%);
  color: #fff;
  box-shadow: 0 18px 32px rgba(20, 132, 106, 0.28);
}

.nav-cta {
  color: #fff !important;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-deep);
  border-color: rgba(20, 132, 106, 0.18);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero-section {
  padding: 4rem 0 3rem;
}

.hero-grid,
.travel-layout,
.feature-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.hero-copy,
.hero-visual,
.travel-copy,
.travel-visual {
  min-width: 0;
}

.breadcrumb-pill {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  border: 1px solid rgba(16, 51, 49, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.trust-list,
.spot-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust-list li,
.spot-list li,
.check-card,
.faq-item,
.fleet-card,
.location-card,
.glass-card,
.feature-panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.trust-list li,
.spot-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: var(--radius-sm);
}

.trust-list li::before,
.spot-list li::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.15rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--sea));
  box-shadow: 0 0 0 6px rgba(20, 132, 106, 0.1);
}

.hero-card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(247, 230, 197, 0.82), transparent 26%),
    radial-gradient(circle at left 18%, rgba(255, 255, 255, 0.75), transparent 20%),
    linear-gradient(145deg, #0f6c59 0%, #1f8a90 48%, #5bb4d8 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 34px 90px rgba(16, 51, 49, 0.18);
  min-height: 540px;
  padding: 2rem;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -5% -18% auto;
  width: 68%;
  height: 58%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(245, 229, 193, 0.85), rgba(214, 234, 214, 0.22));
  border-radius: 50% 50% 0 0;
  transform: rotate(-6deg);
}

.hero-card-photo {
  display: grid;
  gap: 1.2rem;
}

.hero-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(16, 51, 49, 0.18);
}

.hero-photo-clear {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-figure figcaption {
  padding: 0.9rem 1rem 1rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--brand-deep);
  background: #fff;
}

.travel-showcase-panel {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  color: #fff;
}

.travel-showcase-panel h3 {
  margin: 0.5rem 0 0.8rem;
  font-family: var(--font-display);
  line-height: 1.08;
}

.hero-mini-tag {
  display: inline-flex;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-route-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-route-grid article,
.travel-spot-grid span {
  padding: 1rem 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 51, 49, 0.08);
  color: var(--text);
}

.hero-route-grid strong {
  display: block;
  font-size: 1rem;
}

.hero-route-grid span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.three-grid,
.card-grid,
.fleet-grid,
.check-grid,
.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fleet-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.feature-panel,
.glass-card,
.location-card,
.fleet-card {
  padding: 1.6rem;
  border-radius: var(--radius);
}

.feature-panel {
  padding: 2rem;
  position: sticky;
  top: 108px;
}

.stat-chip {
  display: inline-flex;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(20, 132, 106, 0.12);
  color: var(--brand-deep);
  font-weight: 800;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: var(--radius-sm);
}

.check-icon {
  flex: 0 0 1.15rem;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.32rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--sea));
}

.location-card h3,
.fleet-card h3,
.glass-card h3,
.feature-panel h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.location-card a:not(.button),
.fleet-card a:not(.button) {
  display: inline-flex;
  margin-top: 0;
  color: var(--brand-deep);
  font-weight: 800;
}

.location-card .card-actions,
.fleet-card .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.location-card .button-primary,
.fleet-card .button-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--sea) 100%);
  color: #fff !important;
  box-shadow: 0 18px 32px rgba(20, 132, 106, 0.28);
}

.location-card .button-secondary {
  background: #fff;
  color: var(--brand-deep) !important;
  border-color: rgba(20, 132, 106, 0.16);
  box-shadow: 0 10px 24px rgba(20, 132, 106, 0.08);
}

.location-card .button-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
}

.fleet-card .button-secondary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--sea) 100%);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(20, 132, 106, 0.08);
}

.fleet-card .button-secondary:hover {
  background: linear-gradient(135deg, rgba(20, 132, 106, 0.9), rgba(43, 142, 197, 0.9));
}

.location-card a.button-primary,
.fleet-card a.button-primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--brand) 0%, var(--sea) 100%) !important;
  border-color: transparent !important;
}

.location-card a.button-primary:hover,
.fleet-card a.button-primary:hover {
  color: #fff !important;
}

.inline-secondary-link {
  margin-left: 0;
  color: var(--sea) !important;
}

.fleet-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(20, 132, 106, 0.12)),
    radial-gradient(circle at 30% 30%, rgba(43, 142, 197, 0.2), transparent 45%);
  position: relative;
}

.fleet-icon::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 18px;
  height: 14px;
  border-radius: 9px 14px 8px 8px;
  background: linear-gradient(135deg, var(--brand), var(--sea));
}

.fleet-icon::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 24px 0 0 var(--text);
}

.travel-copy {
  max-width: 780px;
  margin: 0 auto;
}

.travel-layout {
  display: block;
}

.spot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.spot-list li {
  padding: 0.75rem 1rem 0.75rem 2.8rem;
  margin: 0;
}

.travel-visual img {
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.travel-showcase {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  min-height: 540px;
  padding: 2rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(247, 230, 197, 0.9), transparent 16%),
    linear-gradient(180deg, #2d8ac1 0%, #4cb1d3 28%, #daf0e6 28.5%, #9fd0b2 100%);
  box-shadow: var(--shadow);
}

.travel-showcase::after {
  content: "";
  position: absolute;
  inset: auto -10% -8% 35%;
  background: linear-gradient(180deg, rgba(241, 228, 189, 0.9), rgba(255, 255, 255, 0));
  border-radius: 50% 50% 0 0;
  transform: rotate(-5deg);
}

.travel-spot-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.travel-spot-grid span {
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(16, 51, 49, 0.08);
}

.travel-cta-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 1.4rem;
  font-weight: 800;
  font-size: 1.02rem;
}

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

.faq-item p {
  margin: 0;
  padding: 0 1.4rem 1.4rem;
  color: var(--muted);
}

.cta-section {
  padding-top: 2rem;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin: -0.4rem 0 1.8rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(20, 132, 106, 0.95), rgba(43, 142, 197, 0.92)),
    radial-gradient(circle at top right, rgba(247, 230, 197, 0.3), transparent 30%);
  color: #fff;
  box-shadow: 0 32px 90px rgba(20, 132, 106, 0.24);
}

.cta-panel .eyebrow,
.cta-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.cta-panel .button-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.site-footer {
  padding: 4rem 0 2rem;
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 0.8fr 0.9fr;
  align-items: start;
}

.site-footer h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
}

.site-footer img {
  width: clamp(150px, 18vw, 220px);
  height: auto;
  margin-bottom: 0.8rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a,
.site-footer p,
.site-footer a {
  color: var(--muted);
}

.footer-links a.active {
  color: var(--brand-deep);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 450ms ease, transform 450ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .travel-layout,
  .feature-layout,
  .cta-panel,
  .footer-grid,
  .three-grid,
  .card-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    position: static;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 51, 49, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .hero-route-grid,
  .travel-spot-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .nav-cta,
  .reveal,
  .site-nav {
    transition: none;
  }

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