/* ==========================================================================
   DiveZen Retreats — custom styles (layered on top of Bootstrap 5.3)
   Palette & mood taken from the design template: airy, watery, calm blues.
   ========================================================================== */

:root {
  --navy:        #1b3a4b;   /* deep teal-navy — headings */
  --deep:        #234c5b;
  --slate:       #46626e;   /* body text */
  --muted:       #7793a0;   /* secondary text / eyebrows */
  --primary:     #5c9db7;   /* sky-blue accent */
  --primary-dk:  #3f7f9a;
  --primary-lt:  #a9d0de;
  --line:        #e5eef2;   /* hairlines / dividers */
  --bg:          #ffffff;
  --bg-soft:     #f3f9fb;   /* very light blue section */
  --bg-soft-2:   #e9f3f7;
  --sand:        #f7f4ee;

  --grad-btn:    linear-gradient(135deg, #8fc3d6 0%, #5c9db7 100%);
  --grad-btn-hv: linear-gradient(135deg, #7fb8cd 0%, #4a8da7 100%);

  --shadow-sm:   0 4px 14px rgba(27, 58, 75, .08);
  --shadow-md:   0 14px 40px rgba(27, 58, 75, .12);
  --shadow-lg:   0 24px 60px rgba(27, 58, 75, .18);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --nav-h: 116px;
}

/* -------------------------------------------------------------------------- */
/* Base                                                                       */
/* -------------------------------------------------------------------------- */
* { scroll-margin-top: var(--nav-h); }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--slate);
  background: var(--bg);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display-serif {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .01em;
}

p { margin-bottom: 1.1rem; }

a { color: var(--primary-dk); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--navy); }

img { max-width: 100%; height: auto; }

.container-x {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Section rhythm */
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--soft   { background: var(--bg-soft); }
.section--soft-2 { background: var(--bg-soft-2); }
.section--tight  { padding: clamp(48px, 6vw, 84px) 0; }

/* Eyebrow / kicker */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--primary-dk);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--primary);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--primary);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  margin: 0 0 1.25rem;
}
.section-title .accent { color: var(--primary); font-style: italic; }

.lead-serif {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 500;
  color: var(--deep);
  line-height: 1.4;
}

.text-block p { color: var(--slate); }
.divider-wave { height: 1px; background: var(--line); border: 0; margin: 0; }

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */
.btn { font-family: var(--sans); font-weight: 500; letter-spacing: .06em; }

.btn-wave {
  --bs-btn-color: #fff;
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--grad-btn);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: .85rem 1.9rem;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  box-shadow: 0 10px 24px rgba(92, 157, 183, .38);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn-wave:hover {
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(92, 157, 183, .48);
}
.btn-wave svg { width: 18px; height: 18px; }

.btn-outline-wave {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.75);
  border-radius: 999px;
  padding: .8rem 1.8rem;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: all .25s ease;
}
.btn-outline-wave:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--primary-dk);
  font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 500;
}
.btn-ghost svg { width: 16px; height: 16px; transition: transform .25s ease; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* -------------------------------------------------------------------------- */
/* Header / Navbar                                                            */
/* -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 1030;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(27, 58, 75, .08);
  border-bottom-color: var(--line);
}

.navbar { padding-block: 0; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: var(--nav-h); width: 100%;
}

.brand { display: inline-flex; align-items: center; }
.brand img { height: 74px; width: auto; }   /* logo.webp is ~3.7:1 (cropped tight) */

.main-nav { display: flex; align-items: center; gap: clamp(.85rem, 1.3vw, 1.5rem); }
.main-nav a {
  font-family: var(--sans);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .8rem;
  font-weight: 500;
  padding: .4rem 0;
  position: relative;
  white-space: nowrap;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--primary);
  transition: right .3s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--primary-dk); }
.main-nav a:hover::after,
.main-nav a.active::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-cta .btn-wave {
  padding: .5rem .8rem;
  font-size: 0.75rem;
  font-weight: 400;
  gap: .4rem;
  white-space: nowrap;
}
.nav-cta .btn-wave svg { width: 16px; height: 16px; }

/* Mobile toggler */
.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 10px;
  color: var(--slate);
}
.nav-toggle span {
  display: block; height: 1.5px; width: 100%;
  background: currentColor; border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex; align-items: center;
  background: #123a4d url("../images/hero-dolphins.jpg") center 44% / cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(16,44,58,.62) 0%, rgba(16,44,58,.30) 46%, rgba(16,44,58,.05) 72%),
    linear-gradient(to bottom, rgba(16,44,58,.28) 0%, rgba(16,44,58,0) 30%);
}
.hero__inner { position: relative; z-index: 2; padding: 90px 0; width: 100%; }
.hero__content { max-width: 680px; }

.hero .eyebrow { color: #d7ecf3; }
.hero .eyebrow::before { background: rgba(255,255,255,.8); }

.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 600;
  margin: 0 0 1.4rem;
  text-shadow: 0 2px 26px rgba(10, 30, 40, .35);
}
.hero p.hero-lead {
  color: rgba(255,255,255,.94);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 2.2rem;
  text-shadow: 0 1px 14px rgba(10, 30, 40, .3);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* white wave dividing header from hero */
.hero__wave {
  position: absolute; top: -1px; left: 0; width: 100%; z-index: 3;
  line-height: 0; pointer-events: none;
}
.hero__wave svg { width: 100%; height: clamp(40px, 6vw, 90px); display: block; }

/* -------------------------------------------------------------------------- */
/* Feature strip (4 pillars)                                                  */
/* -------------------------------------------------------------------------- */
.pillars { background: var(--bg); }
.pillars__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.pillar {
  display: flex; align-items: center; gap: 1rem;
  padding: 2.4rem 1.6rem;
  border-right: 1px solid var(--line);
}
.pillar:last-child { border-right: 0; }
.pillar__icon {
  flex: 0 0 auto; width: 52px; height: 52px; color: var(--primary);
}
.pillar__icon svg { width: 100%; height: 100%; }
.pillar__label {
  font-family: var(--sans);
  text-transform: uppercase; letter-spacing: .12em;
  font-size: .82rem; font-weight: 500; color: var(--navy);
  line-height: 1.5;
}

/* -------------------------------------------------------------------------- */
/* Split / feature rows                                                       */
/* -------------------------------------------------------------------------- */
.media-frame {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.media-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 4/5; }
.media-frame--wide { aspect-ratio: 4/3; }

/* soft floating caption badge */
.media-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  color: var(--navy); border-radius: 12px;
  padding: .7rem 1.1rem; box-shadow: var(--shadow-sm);
  font-family: var(--sans); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
}

/* Poetic / simple lists */
.feel-list { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.feel-list li {
  font-family: var(--serif);
  font-size: 1.5rem; color: var(--deep); font-weight: 500;
  padding: .42rem 0 .42rem 2rem; position: relative;
  line-height: 1.35;
}
.feel-list li::before {
  content: ""; position: absolute; left: 0; top: .95em;
  width: 12px; height: 2px; background: var(--primary-lt);
}

.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  position: relative; padding: .55rem 0 .55rem 2.2rem;
  border-bottom: 1px solid var(--line); color: var(--slate);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .95rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg-soft-2);
  box-shadow: inset 0 0 0 1.5px var(--primary-lt);
}
.check-list li::after {
  content: ""; position: absolute; left: 6px; top: 1.28rem;
  width: 6px; height: 3px; border-left: 1.5px solid var(--primary-dk);
  border-bottom: 1.5px solid var(--primary-dk);
  transform: rotate(-45deg);
}
/* Card variant — a soft panel of the list, used on white sections */
.check-list--card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .4rem 1.6rem;
}

/* Callout (No feeding. No touching.) */
.callout {
  border-left: 3px solid var(--primary);
  background: var(--bg-soft);
  border-radius: 0 12px 12px 0;
  padding: 1.3rem 1.6rem;
  margin: 1.6rem 0;
}
.callout strong { color: var(--navy); font-weight: 600; }

/* -------------------------------------------------------------------------- */
/* Activity cards (What your days might look like)                            */
/* -------------------------------------------------------------------------- */
.activity-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.activity-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 2.2rem 1.9rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.activity-card__icon {
  width: 54px; height: 54px; color: var(--primary);
  display: grid; place-items: center; margin-bottom: 1.2rem;
  background: var(--bg-soft); border-radius: 14px;
}
.activity-card__icon svg { width: 30px; height: 30px; }
.activity-card h3 { font-size: 1.55rem; margin: 0 0 .6rem; }
.activity-card p { font-size: .98rem; margin: 0; color: var(--slate); }

/* -------------------------------------------------------------------------- */
/* Yacht feature list                                                         */
/* -------------------------------------------------------------------------- */
.tick-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .2rem 2rem; margin: 1.4rem 0 0; padding: 0; list-style: none;
}
.tick-grid li {
  padding: .5rem 0 .5rem 1.9rem; position: relative; color: var(--slate);
}
.tick-grid li::before {
  content: ""; position: absolute; left: 0; top: 1.05rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary-lt);
  box-shadow: 0 0 0 4px rgba(169, 208, 222, .28);
}

/* -------------------------------------------------------------------------- */
/* Quote / simplicity band                                                    */
/* -------------------------------------------------------------------------- */
.simplicity {
  position: relative; color: #fff; text-align: center;
  background: linear-gradient(rgba(18,46,60,.6), rgba(18,46,60,.72)),
              #234c5b url("../images/relax.jpg") center 30% / cover no-repeat;
}
.simplicity h2 { color: #fff; }
.simplicity .eyebrow { color: #cfe6ee; }
.simplicity .eyebrow::before,
.simplicity .eyebrow::after { background: rgba(255,255,255,.7); }
.word-cloud {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.4rem;
  max-width: 760px; margin: 1.6rem auto 0;
}
.word-cloud span {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.9rem); color: #eaf5f9;
}
.word-cloud span::after { content: "·"; margin-left: 1.4rem; color: var(--primary-lt); }
.word-cloud span:last-child::after { content: ""; }

/* -------------------------------------------------------------------------- */
/* Gallery                                                                    */
/* -------------------------------------------------------------------------- */
.gallery {
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.gallery a {
  position: relative; overflow: hidden; border-radius: 14px; display: block;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery a:hover img { transform: scale(1.06); }
.gallery a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,46,60,.28), transparent 55%);
  opacity: 0; transition: opacity .35s ease;
}
.gallery a:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* -------------------------------------------------------------------------- */
/* Host                                                                       */
/* -------------------------------------------------------------------------- */
.host-card .media-frame { border-radius: 20px; }
.signature {
  font-family: var(--serif); font-style: italic; font-size: 1.7rem;
  color: var(--primary-dk); margin-top: .4rem;
}

/* Two-photo host collage (About page): couple photo + overlapping Vera portrait */
.host-duo {
  position: relative;
  padding-left: clamp(28px, 7vw, 56px);
  padding-bottom: clamp(40px, 8vw, 66px);
}
.host-duo__main { border-radius: 20px; }
.host-duo__inset {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  width: 56%;
  border: 6px solid #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.host-duo__inset .media-badge { left: 12px; bottom: 12px; padding: .5rem .85rem; font-size: .68rem; }

/* -------------------------------------------------------------------------- */
/* CTA banner                                                                 */
/* -------------------------------------------------------------------------- */
.cta-band {
  position: relative; color: #fff; text-align: center;
  background: linear-gradient(rgba(16,44,58,.55), rgba(16,44,58,.68)),
              #234c5b url("../images/escape.jpg") center 55% / cover no-repeat;
  background-attachment: fixed;
}
.cta-band h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.2rem; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

/* -------------------------------------------------------------------------- */
/* FAQ                                                                        */
/* -------------------------------------------------------------------------- */
.faq .accordion { --bs-accordion-border-color: var(--line); }
.faq .accordion-item {
  border: 1px solid var(--line); border-radius: 14px !important;
  margin-bottom: 1rem; overflow: hidden; background: #fff;
}
.faq .accordion-button {
  font-family: var(--serif); font-size: 1.3rem; color: var(--navy);
  font-weight: 600; padding: 1.25rem 1.5rem; background: #fff;
}
.faq .accordion-button:not(.collapsed) { color: var(--primary-dk); background: var(--bg-soft); box-shadow: none; }
.faq .accordion-button:focus { box-shadow: none; border-color: var(--line); }
.faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%235c9db7' stroke-width='2' viewBox='0 0 24 24'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
}
.faq .accordion-body { color: var(--slate); padding: 0 1.5rem 1.4rem; }

/* -------------------------------------------------------------------------- */
/* Contact                                                                    */
/* -------------------------------------------------------------------------- */
.contact-info { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.contact-info li {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.3rem;
}
.contact-info .ci-icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-soft); color: var(--primary-dk);
  display: grid; place-items: center;
}
.contact-info .ci-icon svg { width: 20px; height: 20px; }
.contact-info b { color: var(--navy); font-weight: 600; display: block; font-size: .95rem; letter-spacing: .02em; }
.contact-info span { color: var(--slate); }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm);
}
.form-control, .form-select {
  border: 1px solid var(--line); border-radius: 12px;
  padding: .8rem 1rem; font-family: var(--sans); font-weight: 300;
  color: var(--navy); background: var(--bg-soft);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(92,157,183,.16);
  background: #fff;
}
.form-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 500; }
.form-label .req { color: #c0562f; margin-left: .1rem; }
.form-card .form-text { font-size: .85rem; color: var(--muted); font-weight: 300; }
.form-card .form-check-label { font-weight: 300; color: var(--slate); font-size: .95rem; }
.form-card .form-check-input {
  border: 1px solid var(--line); background-color: var(--bg-soft);
  width: 1.15em; height: 1.15em; margin-top: .22em;
}
.form-card .form-check-input:focus {
  border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(92,157,183,.16);
}
.form-card .form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }
.form-card .form-control.is-invalid, .form-card .form-check-input.is-invalid {
  border-color: #c0562f; background-image: none;
}
.form-card .form-control.is-invalid:focus {
  border-color: #c0562f; box-shadow: 0 0 0 .2rem rgba(192,86,47,.14);
}
.form-card .invalid-feedback { color: #c0562f; font-size: .85rem; }
.form-card .form-check-input.is-invalid ~ .form-check-label { color: #c0562f; }

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */
.site-footer { background: #12303c; color: #b9d0d9; padding: 72px 0 32px; }
.site-footer h5 {
  color: #fff; font-family: var(--sans); text-transform: uppercase;
  letter-spacing: .16em; font-size: .8rem; margin-bottom: 1.3rem; font-weight: 500;
}
.site-footer a { color: #b9d0d9; }
.site-footer a:hover { color: #fff; }
.footer-logo { height: 112px; width: 112px; border-radius: 50%; object-fit: cover; margin-bottom: 1.3rem; box-shadow: 0 0 0 5px rgba(255,255,255,.07); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { font-size: .95rem; }
.socials { display: flex; gap: .8rem; margin-top: 1.2rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #cfe3ea;
  transition: background .25s ease, transform .25s ease;
}
.socials a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .85rem; color: #8fabb6;
}

/* -------------------------------------------------------------------------- */
/* Page hero (interior pages)                                                 */
/* -------------------------------------------------------------------------- */
.page-hero {
  position: relative; color: #fff; text-align: center;
  min-height: 52vh; display: flex; align-items: center; justify-content: center;
  padding: 150px 0 90px;
  background: #234c5b center / cover no-repeat;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(16,44,58,.5), rgba(16,44,58,.66));
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero .eyebrow { color: #d7ecf3; justify-content: center; }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { background: rgba(255,255,255,.8); }
.page-hero h1 {
  color: #fff; font-size: clamp(2.4rem, 5.4vw, 4rem); margin: 0 0 .8rem;
  text-shadow: 0 2px 24px rgba(10,30,40,.3);
}
.page-hero__sub {
  color: rgba(255,255,255,.94); font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 620px; margin: 0 auto; font-weight: 300;
}

/* -------------------------------------------------------------------------- */
/* Explore cards (home landing)                                               */
/* -------------------------------------------------------------------------- */
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.7rem; }
.explore-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.explore-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.explore-card__img { aspect-ratio: 16 / 11; overflow: hidden; }
.explore-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.explore-card:hover .explore-card__img img { transform: scale(1.06); }
.explore-card__body { padding: 1.7rem 1.7rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.explore-card h3 { font-size: 1.65rem; margin: 0 0 .55rem; }
.explore-card p { font-size: .97rem; color: var(--slate); margin: 0 0 1.2rem; }
.explore-card .btn-ghost { margin-top: auto; }

/* Booking "what's included" */
.include-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 2rem; margin: 0; padding: 0; list-style: none; }
.include-grid li { position: relative; padding: .3rem 0 .3rem 2.4rem; color: var(--slate); }
.include-grid li::before {
  content: ""; position: absolute; left: 0; top: .55rem; width: 22px; height: 22px;
  border-radius: 50%; background: var(--bg-soft-2); box-shadow: inset 0 0 0 1.5px var(--primary-lt);
}
.include-grid li::after {
  content: ""; position: absolute; left: 7px; top: .95rem; width: 7px; height: 4px;
  border-left: 1.6px solid var(--primary-dk); border-bottom: 1.6px solid var(--primary-dk);
  transform: rotate(-45deg);
}
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm); text-align: center;
}
.price-card .price { font-family: var(--serif); font-size: 3rem; color: var(--navy); line-height: 1; }
.price-card .price small { font-family: var(--sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; margin-top: .5rem; }

/* -------------------------------------------------------------------------- */
/* Legal pages (Terms & Conditions)                                           */
/* -------------------------------------------------------------------------- */
.legal-updated {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.legal-section {
  border-top: 1px solid var(--line);
  margin-top: clamp(2.4rem, 4.5vw, 3.2rem);
  padding-top: clamp(2rem, 3.5vw, 2.6rem);
}
.legal-section h2 {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: clamp(1.55rem, 2.3vw, 1.95rem);
  margin: 0 0 1.1rem;
}
.legal-section h2 span {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--primary-dk);
}
.legal-list { list-style: none; margin: 0 0 1.1rem; padding: 0; }
.legal-list li {
  position: relative;
  padding: .45rem 0 .45rem 1.9rem;
  color: var(--slate);
}
.legal-list li::before {
  content: ""; position: absolute; left: 0; top: 1.05rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary-lt);
  box-shadow: 0 0 0 4px rgba(169, 208, 222, .28);
}
.legal .check-list { margin-bottom: 1.1rem; }
.legal .tick-grid { margin-bottom: 1.1rem; }
.legal-note { font-size: .92rem; color: var(--muted); }
.fee-table { width: 100%; border-collapse: collapse; margin: 1.2rem 0 1.6rem; }
.fee-table th, .fee-table td {
  padding: .8rem .2rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.fee-table th {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}
.fee-table th:last-child, .fee-table td:last-child { text-align: right; }
.fee-table td:last-child { color: var(--navy); font-weight: 500; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta-band { background-attachment: scroll; }
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .main-nav a { font-size: .76rem; }
  .main-nav { gap: 1.1rem; }
}

@media (max-width: 992px) {
  :root { --nav-h: 112px; }

  /* Mobile nav */
  .nav-toggle { display: block; order: 3; }
  .nav-inner { position: relative; justify-content: flex-end; }
  .brand { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
  /* logo.webp is already cropped tight — just size it wider + fluid on mobile */
  .brand img { width: clamp(300px, 80vw, 340px); height: auto; }
  .main-nav {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: #fff; padding: 1rem 24px 1.6rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-14px); opacity: 0; visibility: hidden;
    transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav a {
    width: 100%; padding: .95rem 0; font-size: .96rem;
    border-bottom: 1px solid var(--line);
  }
  .main-nav a::after { display: none; }
  .nav-cta .btn-wave { display: none; } /* CTA repeats inside mobile menu */
  .main-nav .mobile-cta {
    display: inline-flex;
    margin-top: 1.2rem;
    padding: .75rem 1.6rem;
    font-size: .84rem;
    white-space: nowrap;
  }

  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: 0; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid var(--line); }

  .activity-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-wide { grid-column: span 2; }
}

@media (min-width: 993px) {
  .main-nav .mobile-cta { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .hero { min-height: 72vh; background-position: center 40%; }
  .hero__inner { padding: 52px 0; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn-wave,
  .hero__actions .btn-outline-wave { justify-content: center; }

  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-right: 0 !important; border-bottom: 1px solid var(--line); justify-content: flex-start; }
  .pillar:last-child { border-bottom: 0; }

  .activity-grid { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr; }
  .include-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 44vh; padding: 116px 0 66px; }
  .tick-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-wide, .g-tall { grid-column: auto; grid-row: auto; }
  .feel-list li { font-size: 1.28rem; }
  .cta-band { background-attachment: scroll; }

  /* Footer: tidy, centered single-column stack on phones */
  .site-footer { text-align: center; padding-top: 56px; }
  .site-footer .row { --bs-gutter-y: 2rem; }
  .site-footer .footer-logo { margin-inline: auto; }
  .site-footer p { margin-inline: auto; }
  .site-footer .socials { justify-content: center; }
  .footer-links { margin-inline: auto; display: inline-block; text-align: left; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
}

/* Utility */
.text-muted-soft { color: var(--muted) !important; }
.mw-58 { max-width: 58ch; }
.mw-46 { max-width: 46ch; }
