/* Blue Current — ESSENTIAL tier ($800)
   Clean, warm, fast. Restrained motion: one fade-up on scroll. */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --paper: #fbf8f3;
  --sand: #f2e9dc;
  --ink: #14313d;
  --ocean: #0d5f75;
  --ocean-dark: #094554;
  --sun: #d9873f;
  --muted: #6d7c82;
  --line: #e6dccd;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper); color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Outfit", system-ui, sans-serif; font-weight: 600; line-height: 1.15; letter-spacing: -0.015em; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }

.eyebrow {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ocean);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; border-radius: 8px; text-decoration: none;
  font-size: 14.5px; font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn-primary { background: var(--ocean); color: #fff; }
.btn-primary:hover { background: var(--ocean-dark); }
.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn:active { transform: scale(0.98); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(251, 248, 243, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo-badge {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ocean); display: grid; place-items: center;
}
.logo-badge svg { width: 19px; height: 19px; fill: none; stroke: #fff; stroke-width: 1.8; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text b { font-family: "Outfit", sans-serif; font-size: 16px; letter-spacing: -0.01em; }
.logo-text span { font-size: 8.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; color: var(--ink); font-size: 14.5px; font-weight: 500; }
.nav a:not(.btn):hover { color: var(--ocean); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; }

/* ---------- hero ---------- */
.hero { background: var(--sand); position: relative; overflow: hidden; }
.hero .wrap { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(80px, 11vw, 140px); }
.hero h1 { font-size: clamp(36px, 6vw, 66px); margin: 14px 0 18px; max-width: 15ch; }
.hero p.lead { font-size: clamp(16px, 1.8vw, 19px); color: var(--muted); max-width: 52ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 26px; font-size: 13.5px; color: var(--muted); }

.wave { display: block; width: 100%; height: auto; margin-top: -1px; }

/* ---------- sections ---------- */
section.pad { padding: clamp(60px, 8vw, 100px) 0; }
.section-head { max-width: 60ch; margin-bottom: clamp(30px, 4vw, 48px); }
.section-head h2 { font-size: clamp(27px, 3.6vw, 40px); margin: 12px 0 12px; }
.section-head p { color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 26px 22px; transition: border-color 0.25s ease, transform 0.25s ease;
}
.card:hover { border-color: var(--ocean); transform: translateY(-3px); }
.card .ico {
  width: 42px; height: 42px; border-radius: 10px; background: var(--sand);
  display: grid; place-items: center; margin-bottom: 15px;
}
.card .ico svg { width: 21px; height: 21px; fill: none; stroke: var(--ocean); stroke-width: 1.7; }
.card h3 { font-size: 18px; margin-bottom: 7px; }
.card p { font-size: 14.5px; color: var(--muted); }
.card .from { display: block; margin-top: 13px; font-size: 13px; font-weight: 600; color: var(--sun); }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split-art {
  aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden;
  background: linear-gradient(160deg, #a5cfd8, #0d5f75 65%, #094554);
  position: relative;
}
.split-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.checklist { list-style: none; display: grid; gap: 10px; margin: 18px 0 26px; }
.checklist li { display: flex; gap: 10px; align-items: baseline; font-size: 15px; }
.checklist li::before { content: "✓"; color: var(--ocean); font-weight: 700; flex: none; }

/* ---------- price tables ---------- */
.price-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 56px); align-items: start; }
.price-title { font-size: 17px; margin-bottom: 14px; color: var(--ocean); }
.price-table { width: 100%; border-collapse: collapse; }
.price-table td { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; vertical-align: top; }
.price-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); white-space: nowrap; padding-left: 18px; }
.price-table small { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
@media (max-width: 720px) { .price-cols { grid-template-columns: 1fr; } }

/* ---------- dive sites ---------- */
.site-depth { font-size: 12.5px; font-weight: 600; color: var(--muted); margin-left: 8px; letter-spacing: 0.02em; }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; }
.member { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px 20px; }
.member .avatar {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(145deg, var(--ocean), var(--ocean-dark));
  color: #fff; font-family: "Outfit", sans-serif; font-weight: 600; font-size: 18px;
  letter-spacing: 0.04em; margin-bottom: 14px;
}
.member h3 { font-size: 17px; }
.member .role { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sun); margin: 3px 0 8px; }
.member p:not(.role) { font-size: 14px; color: var(--muted); }

/* ---------- quotes ---------- */
.quotes-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.quotes-row blockquote { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px; }
.quotes-row p { font-family: "Outfit", sans-serif; font-size: 17.5px; line-height: 1.5; font-weight: 500; }
.quotes-row cite { display: block; margin-top: 14px; font-style: normal; font-size: 13.5px; color: var(--muted); }

/* ---------- faq ---------- */
.faq-list { max-width: 760px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none; position: relative;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 16.5px;
  padding: 18px 40px 18px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--ocean); transition: transform 0.25s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding: 0 0 18px; color: var(--muted); font-size: 15px; max-width: 66ch; }

/* ---------- info strip ---------- */
.info { background: var(--ink); color: #dfe9ec; }
.info .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 34px; }
.info h3 { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: #7fb4c3; margin-bottom: 12px; }
.info p, .info a { font-size: 15px; color: #dfe9ec; text-decoration: none; }
.info a:hover { color: #fff; text-decoration: underline; }
.hours { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; font-size: 14.5px; }
.hours dt { color: #9dc0cb; }

/* ---------- footer ---------- */
.site-footer { background: var(--ocean-dark); color: #cfe3e9; padding: 34px 0; font-size: 14px; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.site-footer a { color: #cfe3e9; }

/* ---------- the one animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px 20px 16px; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav a.btn { margin-top: 12px; border-bottom: 0; }
  .nav-toggle { display: block; }
  .site-header .wrap { position: relative; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
