/* ===== Design Tokens ===== */
:root {
  --ink: #102f3d;
  --blue: #086b83;
  --deep: #073b4c;
  --sky: #bfe2df;
  --sand: #f4e8d1;
  --paper: #fffaf1;
  --coral: #ef765d;
  --yellow: #f6c65b;
  --line: rgba(16, 47, 61, 0.18);
  --sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: Georgia, 'Times New Roman', serif;
  --mono: 'Courier New', Courier, monospace;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 var(--sans);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; cursor: pointer; background: none; }
img, svg { display: block; max-width: 100%; }
section { scroll-margin-top: 80px; }

/* ===== Header ===== */
.site-header {
  height: 80px;
  padding: 0 clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 250, 241, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand > span:last-child > span { color: var(--coral); font-weight: 500; }
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  font: 600 12px var(--mono);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  font-size: 14px;
  font-weight: 600;
}
.nav a { transition: color 0.2s; }
.nav a:hover { color: var(--coral); }
.nav-call {
  padding: 10px 20px;
  background: var(--coral);
  color: #fff;
  border-radius: 30px;
}
.nav-call:hover { background: #e0654e; color: #fff; }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.menu-button i {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: 0.2s;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px clamp(20px, 8vw, 130px) 80px;
  background: linear-gradient(135deg, var(--sky) 0%, #a8d8d4 50%, #7ec8c8 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(246, 200, 91, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 500 11px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--deep);
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  font-weight: 800;
  color: var(--deep);
}
.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
}

.hero-intro {
  max-width: 420px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7, 59, 76, 0.2);
}
.button span { font-size: 18px; }
.button-coral { background: var(--coral); color: #fff; }
.button-coral:hover { background: #e0654e; }
.button-blue { background: var(--deep); color: #fff; }

.text-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep);
  border-bottom: 2px solid var(--deep);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover { color: var(--coral); border-color: var(--coral); }
.text-link span { margin-left: 6px; }

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  font-size: 13px;
  color: var(--deep);
}
.hero-note strong { font-size: 20px; }
.stars { color: var(--coral); letter-spacing: 2px; }

/* Hero Illustration */
.hero-art {
  position: relative;
  height: 500px;
  background: linear-gradient(180deg, 
    #f7bd82 0%, 
    #f7d19b 25%, 
    #66c4b8 45%, 
    #1a8fa3 65%, 
    #0a5a6e 100%
  );
  border-radius: 40% 40% 5% 5%;
  overflow: hidden;
  box-shadow: 20px 20px 0 rgba(7, 59, 76, 0.1);
}

.sun {
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--yellow);
  border-radius: 50%;
  top: 8%;
  right: 15%;
  box-shadow: 0 0 60px rgba(246, 198, 91, 0.6);
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  height: 20px;
}
.cloud::before, .cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}
.cloud-one {
  width: 100px;
  top: 20%;
  left: 10%;
}
.cloud-one::before { width: 40px; height: 40px; top: -20px; left: 20px; }
.cloud-one::after { width: 50px; height: 50px; top: -25px; left: 50px; }
.cloud-two {
  width: 80px;
  top: 30%;
  right: 8%;
}
.cloud-two::before { width: 35px; height: 35px; top: -18px; left: 15px; }
.cloud-two::after { width: 40px; height: 40px; top: -20px; left: 40px; }

.cliff {
  position: absolute;
  bottom: 30%;
  left: 0;
  width: 50%;
  height: 25%;
  background: #d4845a;
  clip-path: polygon(0 100%, 0 60%, 20% 45%, 40% 55%, 60% 30%, 80% 40%, 100% 10%, 100% 100%);
}

.ocean {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.3);
}
.ocean-back { bottom: 28%; }
.ocean-front { bottom: 15%; border-top-width: 6px; }

.palm {
  position: absolute;
  bottom: 25%;
  left: 8%;
  transform: rotate(-8deg);
}
.palm b {
  display: block;
  width: 12px;
  height: 160px;
  background: linear-gradient(to right, #6b4423, #8b5a2b);
  border-radius: 6px;
  margin-left: 40px;
}
.palm i {
  position: absolute;
  width: 80px;
  height: 18px;
  background: #2d7d5f;
  border-radius: 100% 0 100% 0;
  top: 0;
  left: 0;
  transform-origin: right center;
}
.palm i:nth-child(2) { transform: rotate(-25deg); }
.palm i:nth-child(3) { transform: rotate(15deg); left: 10px; }
.palm i:nth-child(4) { transform: rotate(45deg); top: 15px; left: -15px; }
.palm i:nth-child(5) { transform: rotate(-50deg); top: 20px; left: 20px; }

/* Pedicab illustration */
.cab {
  position: absolute;
  bottom: 8%;
  left: 30%;
  width: 260px;
  height: 160px;
}
.wheel {
  position: absolute;
  bottom: 0;
  width: 65px;
  height: 65px;
  background: #faf3e3;
  border: 6px solid var(--deep);
  border-radius: 50%;
}
.wheel::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 2px solid var(--deep);
  border-radius: 50%;
}
.wheel-back { left: 15px; }
.wheel-front { right: 20px; width: 55px; height: 55px; }

.frame {
  position: absolute;
  bottom: 38px;
  left: 45px;
  width: 165px;
  height: 75px;
  border: 6px solid var(--deep);
  border-bottom: none;
  transform: skewX(-18deg);
  background: transparent;
}
.canopy {
  position: absolute;
  top: 0;
  left: 40px;
  width: 170px;
  height: 75px;
  background: var(--coral);
  border: 5px solid var(--deep);
  border-radius: 100% 100% 8px 8px;
}
.seat {
  position: absolute;
  top: 68px;
  left: 65px;
  width: 115px;
  height: 22px;
  background: var(--sand);
  border: 4px solid var(--deep);
  border-radius: 4px;
}
.handle {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 45px;
  height: 30px;
  border-top: 5px solid var(--deep);
  transform: rotate(-20deg);
}

.art-label {
  position: absolute;
  z-index: 5;
  font: 11px var(--mono);
  background: var(--paper);
  padding: 8px 14px;
  box-shadow: 4px 4px 0 rgba(7, 59, 76, 0.15);
}
.label-one { top: 15%; left: 5%; transform: rotate(-5deg); }
.label-two { bottom: 5%; right: 5%; transform: rotate(4deg); }

.hero-stamp {
  position: absolute;
  bottom: 60px;
  left: 45%;
  width: 90px;
  height: 90px;
  background: var(--coral);
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font: 11px var(--mono);
  line-height: 1.2;
  transform: rotate(12deg);
  box-shadow: 4px 4px 0 rgba(7, 59, 76, 0.2);
}
.hero-stamp b { position: absolute; top: 6px; font-size: 16px; }

/* ===== Ticker ===== */
.ticker {
  background: var(--deep);
  color: var(--sand);
  height: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker div {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font: 12px var(--mono);
  letter-spacing: 0.15em;
}
.ticker b { color: var(--coral); font-size: 18px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section {
  padding: clamp(80px, 12vw, 140px) clamp(20px, 8vw, 130px);
}
.section-heading {
  max-width: 560px;
  margin-bottom: 60px;
}
.section-heading h2 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-weight: 800;
  color: var(--deep);
}
.section-heading h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
}
.section-heading > p {
  max-width: 400px;
  color: #5a7a80;
  font-size: 16px;
}

/* ===== Routes ===== */
.routes { background: var(--paper); }
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.route-card {
  min-height: 380px;
  padding: 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.route-card:hover { transform: translateY(-8px); }
.route-blue { background: var(--blue); color: #fff; }
.route-sand { background: #f6d998; color: var(--deep); }
.route-coral { background: var(--coral); color: #fff; }

.route-number { font: 12px var(--mono); opacity: 0.6; }
.route-icon { font-size: 48px; margin: 32px 0 12px; }
.route-card h3 {
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-weight: 700;
}
.route-card > p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 280px;
}
.route-card a {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.route-card a span { font-size: 16px; }

/* ===== Story ===== */
.story {
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.story-art {
  height: 450px;
  background: linear-gradient(135deg, #f7c77d, #f5a85a);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.story-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--coral);
  border-radius: 50%;
  top: 60px;
  left: calc(50% - 140px);
}
.story-sun {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--yellow);
  border-radius: 50%;
  top: 30px;
  right: 50px;
}
.story-wave {
  position: absolute;
  width: 140%;
  height: 100px;
  left: -20%;
  border-radius: 50%;
  border: 6px solid var(--deep);
  border-left-color: transparent;
  border-right-color: transparent;
}
.wave-a { bottom: 60px; transform: rotate(-4deg); }
.wave-b { bottom: 0; transform: rotate(4deg); }
.story-art > span {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font: italic 22px var(--serif);
  color: var(--deep);
}

.story-copy h2 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  font-weight: 800;
  color: var(--deep);
}
.story-copy > p:not(.eyebrow) {
  max-width: 440px;
  color: #5a7a80;
  font-size: 16px;
  line-height: 1.7;
}
.story-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
}
.story-stats div { display: flex; flex-direction: column; }
.story-stats strong {
  font-size: 32px;
  letter-spacing: -0.03em;
  color: var(--deep);
}
.story-stats span {
  font: 11px var(--mono);
  text-transform: uppercase;
  color: #5a7a80;
}

/* ===== Booking ===== */
.booking {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 10vw, 140px);
  background: var(--paper);
}
.booking h2 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  font-weight: 800;
  color: var(--deep);
}
.booking h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
}
.booking-intro > p:not(.eyebrow) {
  max-width: 340px;
  color: #5a7a80;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.contact-card small {
  display: block;
  font: 10px var(--mono);
  text-transform: uppercase;
  color: #5a7a80;
}
.contact-card a {
  font-weight: 700;
  font-size: 18px;
  color: var(--deep);
}

.booking-form {
  background: #f0e8d8;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  border-top: 4px solid var(--coral);
}
.form-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 28px;
}
.form-top span { font: 12px var(--mono); color: var(--coral); }
.form-top h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}
.booking-form label {
  display: block;
  font: 11px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 6px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid #b8a88a;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--coral);
}
.booking-form textarea {
  resize: vertical;
  min-height: 80px;
  margin-top: 20px;
  margin-bottom: 24px;
}
.booking-form > label:last-of-type {
  grid-column: 1 / -1;
}

.form-status {
  font-size: 13px;
  color: var(--coral);
  min-height: 20px;
  margin-top: 12px;
}
.form-privacy {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  color: #7a8a8a;
}

/* ===== Quote Band ===== */
.quote-band {
  background: var(--coral);
  color: #fff;
  padding: clamp(60px, 10vw, 100px) clamp(20px, 12vw, 200px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.quote-band .eyebrow { color: rgba(255,255,255,0.8); }
.quote-band blockquote {
  font: italic clamp(24px, 4vw, 44px)/1.15 var(--serif);
  max-width: 700px;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.quote-by { font: 12px var(--mono); opacity: 0.8; }

.quote-rating {
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 50px;
}
.quote-rating strong { font-size: 56px; line-height: 1; }
.quote-rating span { letter-spacing: 3px; margin: 4px 0; }
.quote-rating small { font: 11px var(--mono); }

/* ===== FAQ ===== */
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 10vw, 140px);
  background: var(--paper);
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq-list details:last-child { border-bottom: 1px solid var(--line); }

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--deep);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  font-size: 28px;
  font-weight: 300;
  color: var(--coral);
  transition: transform 0.2s;
}
details[open] summary span { transform: rotate(45deg); }

.faq-list details p {
  max-width: 540px;
  color: #5a7a80;
  font-size: 15px;
  line-height: 1.7;
  margin: 16px 0 0;
  padding-right: 40px;
}

/* ===== Footer ===== */
.footer {
  background: var(--deep);
  color: #c8dbd6;
  padding: 60px clamp(20px, 8vw, 130px) 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.brand-light { color: #fff; }
.footer-main p {
  font-size: 14px;
  opacity: 0.7;
  margin: 20px 0;
  max-width: 280px;
}
.footer-mail {
  font: 12px var(--mono);
  color: var(--sky);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}
.footer-links a:hover { color: var(--coral); }

.footer-cta { text-align: right; }
.footer-cta p {
  font: 12px var(--mono);
  color: var(--sky);
  margin: 0 0 16px;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font: 11px var(--mono);
  opacity: 0.5;
}

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 59, 76, 0.85);
  z-index: 200;
  place-items: center;
  padding: 20px;
}
.modal.active { display: grid; }

.modal-box {
  background: var(--paper);
  padding: 48px 40px;
  text-align: center;
  max-width: 400px;
  border-radius: 8px;
  border-top: 5px solid var(--coral);
}
.modal-check {
  width: 60px;
  height: 60px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.modal-box h2 {
  font-size: 32px;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--deep);
}
.modal-box p {
  color: #5a7a80;
  margin-bottom: 28px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    font-size: 18px;
  }
  .menu-button { display: flex; }
  
  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
    min-height: auto;
  }
  .hero-art {
    margin-top: 48px;
    height: 400px;
  }
  .hero-stamp { left: auto; right: 10%; bottom: 30px; }
  
  .route-grid,
  .story,
  .booking,
  .faq {
    grid-template-columns: 1fr;
  }
  
  .story-art { height: 320px; }
  
  .quote-band {
    flex-direction: column;
    text-align: center;
  }
  .quote-rating {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding: 30px 0 0;
  }
  
  .footer { grid-template-columns: 1fr 1fr; }
  .footer-cta { text-align: left; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 52px; }
  .hero-art { height: 320px; }
  .cab { transform: scale(0.7); left: 20%; }
  .palm { transform: scale(0.65) rotate(-8deg); }
  
  .route-card { min-height: 320px; }
  .form-grid { grid-template-columns: 1fr; }
  .story-stats { gap: 20px; }
  .story-stats strong { font-size: 26px; }
  
  .footer { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
