/* =========================================================================
   DIVE BEQUIA — stylesheet
   Design tokens: warm Caribbean palette pulled from the shop's own teal +
   coral paintwork, a soft sand background, Fraunces for display type and
   Jost for body/UI. Wave dividers + a "mooring line" social rail are the
   signature details, echoing the harbour just outside the shop door.
   ========================================================================= */

:root{
  /* ---- color ---- */
  --sand:        #FBF4E6;   /* warm background, sun-bleached sand */
  --sand-deep:   #F3E9D4;   /* slightly deeper sand for contrast blocks */
  --ink:         #0C333A;   /* deep teal-black, primary text */
  --ink-soft:    #45646A;   /* muted body text */
  --teal-deep:   #06474D;   /* dark teal — nav / footer / contrast sections */
  --teal-deep-2: #033539;   /* darker teal for gradients */
  --teal:        #0F9AA0;   /* brand teal — primary buttons/links */
  --teal-strong: #0C7F85;   /* hover state for teal */
  --aqua:        #4FE0C4;   /* mint/seafoam accent from the logo gradient */
  --coral:       #EC67BA;   /* sharper pink — client-specified accent */
  --coral-strong:#E531A1;   /* hover state for the pink accent */
  --sun:         #FFC857;   /* sunshine gold, used sparingly */
  --white:       #FFFFFF;
  --line:        rgba(12,51,58,0.12);
  --line-light:  rgba(255,255,255,0.22);

  /* ---- type ---- */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* ---- layout ---- */
  --maxw: 1240px;
  --gutter: clamp(24px, 6vw, 80px);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 45px -20px rgba(6,42,46,0.35);
  --shadow-card: 0 14px 34px -18px rgba(6,42,46,0.4);

  --nav-h: 68px;
}

/* ---------------------------------------------------------------------- */
/* Reset / base                                                           */
/* ---------------------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }
input, textarea, select{ font-family: inherit; font-size: 1rem; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Skip link */
.skip-link{
  position: absolute;
  left: 12px; top: -60px;
  background: var(--teal-deep);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  z-index: 999;
  transition: top .2s ease;
}
.skip-link:focus{ top: 12px; }

:focus-visible{
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

/* ---------------------------------------------------------------------- */
/* Type scale                                                             */
/* ---------------------------------------------------------------------- */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coral-strong);
  margin: 0 0 18px;
}
.eyebrow::before{
  content: "";
  width: 28px; height: 2px;
  background: var(--coral);
  display: inline-block;
  border-radius: 2px;
}
.on-dark .eyebrow{ color: var(--sun); }
.on-dark .eyebrow::before{ background: var(--sun); }
.eyebrow-plain::before{ display: none; content: none; }

.h1{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.01em;
  font-size: clamp(44px, 8vw, 92px);
}
.h2{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-size: clamp(32px, 4.4vw, 52px);
}
.h3{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  font-size: clamp(24px, 2.6vw, 32px);
}
.h4{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
}
em, .accent-italic{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--teal-strong);
}
.on-dark em{ color: var(--aqua); }

.lede{
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 54ch;
}
.on-dark .lede{ color: rgba(255,255,255,0.82); }

.section-rule{
  width: 64px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--aqua));
  border-radius: 3px;
  margin: 20px 0 26px;
}
.on-dark .section-rule{ background: linear-gradient(90deg, var(--sun), var(--aqua)); }

/* ---------------------------------------------------------------------- */
/* Buttons                                                                */
/* ---------------------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-coral{
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 12px 26px -10px rgba(236,103,186,0.6);
}
.btn-coral:hover{ background: var(--coral-strong); }
.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover{ background: rgba(255,255,255,0.14); border-color: var(--white); }
.btn-teal{
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 26px -10px rgba(15,154,160,0.55);
}
.btn-teal:hover{ background: var(--teal-strong); }
.btn-ghost-dark{
  background: transparent;
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}
.btn-ghost-dark:hover{ background: var(--teal-deep); color: var(--white); }
.btn-sm{ padding: 10px 20px; font-size: 13.5px; }
.btn[disabled]{ opacity:.55; cursor:not-allowed; transform:none !important; }

/* ---------------------------------------------------------------------- */
/* Left social rail — "mooring line"                                      */
/* ---------------------------------------------------------------------- */
.mooring-rail{
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.mooring-rail::before{
  content: "";
  position: absolute;
  left: 50%; top: -40px; bottom: -40px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(6,71,77,0.35) 12%, rgba(6,71,77,0.35) 88%, transparent);
  transform: translateX(-50%);
  z-index: -1;
}
.mooring-rail a{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
  box-shadow: var(--shadow-card);
  transition: background-color .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.mooring-rail a svg{ width: 19px; height: 19px; }
.mooring-rail a:nth-child(1){ background: var(--teal); border-color: var(--teal); color: var(--white); }
.mooring-rail a:nth-child(2){ background: var(--coral); border-color: var(--coral); color: var(--white); }
.mooring-rail a:nth-child(3){ background: var(--sun); border-color: var(--sun); color: var(--teal-deep); }
.mooring-rail a:hover{ transform: scale(1.12) rotate(-4deg); }

@media (max-width: 980px){
  .mooring-rail{ display: none; }
}

/* ---------------------------------------------------------------------- */
/* Nav — flat list on desktop/tablet; hamburger takes over on mobile      */
/* ---------------------------------------------------------------------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  padding: 8px 0;
  transition: background-color .3s ease, box-shadow .3s ease, min-height .3s ease, padding .3s ease;
}
.site-header .container{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 10px;
  width: 100%;
  max-width: 1680px;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}
.site-header::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(4,40,44,0.45), rgba(4,40,44,0));
  opacity: 1;
  transition: opacity .3s ease;
  z-index: -1;
  pointer-events:none;
}
.site-header.is-past-hero::before{ opacity: 0; }

/* Past the hero: the transparent bar becomes a solid coral band, type flips teal */
.site-header.is-past-hero{
  background: var(--coral);
  box-shadow: 0 8px 24px -14px rgba(229,49,161,0.5);
}

.brand{ display: flex; align-items: center; gap: 10px; }
.brand img{ height: 34px; width: auto; }
.brand .brand-fallback{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
}

.nav-links{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
}
.nav-links a{
  font-size: 14.5px;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 6px 1px;
  white-space: nowrap;
  transition: color .25s ease;
}
.nav-links a::after{
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--teal-deep);
  transition: right .25s ease;
}
.nav-links a:hover::after, .nav-links a.is-active::after{ right: 0; }
.nav-links a.is-active{ color: var(--sun); }

.nav-cta{ display:flex; align-items:center; gap:18px; }

.hamburger{
  display: none;
  width: 40px; height: 40px;
  border: none;
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color .25s ease;
}
.hamburger svg{ width: 24px; height: 24px; }

/* Past the hero: solid coral bar, teal type throughout.
   Declared after the base rules above so it always wins the cascade. */
.site-header.is-past-hero .nav-links a{ color: var(--teal-deep); }
.site-header.is-past-hero .nav-links a::after{ background: var(--white); }
.site-header.is-past-hero .nav-links a.is-active{ color: var(--teal-deep-2); }
.site-header.is-past-hero .brand .brand-fallback{ color: var(--teal-deep); }
.site-header.is-past-hero .hamburger{ color: var(--teal-deep); }
.site-header.is-past-hero .nav-cta .btn-outline{
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}
.site-header.is-past-hero .nav-cta .btn-outline:hover{
  background: var(--teal-deep);
  color: var(--white);
}

@media (max-width: 1180px) and (min-width: 861px){
  .nav-links a{ font-size: 13.5px; }
  .nav-links{ gap: 7px 16px; }
}

/* Mobile: thin bar — logo hard left, Book button, then hamburger far right */
@media (max-width: 860px){
  .site-header{ min-height: 0; padding: 0; }
  .site-header .container{
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .brand img{ height: 26px; }

  /* Push Book Your Trip + hamburger to the right, snug together */
  .nav-cta{ margin-left: auto; margin-right: 10px; }

  /* Dropdown panel — sits just below the thin header, never covers it */
  .nav-links{
    position: fixed;
    top: var(--mobile-header-h, 58px);
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - var(--mobile-header-h, 58px));
    max-height: calc(100dvh - var(--mobile-header-h, 58px));
    background: var(--teal-deep);
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 14px 22px 26px;
    box-shadow: 0 16px 34px -14px rgba(3,20,22,0.55);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
    overflow-y: auto;
    z-index: 95;
  }
  .nav-links.is-open{ transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a{ color: var(--white); font-size: 17px; padding: 11px 0; width: 100%; white-space: normal; border-bottom: 1px solid rgba(255,255,255,0.1); }
  #nav-links.nav-links a{ color: var(--white); }
  .nav-links a::after{ display: none; }

  .nav-cta .btn-outline{ padding: 9px 16px; font-size: 13px; }

  .hamburger{ display: flex; }

  /* Scrim only covers the area below the header, so the bar stays visible & usable */
  .nav-scrim{
    position: fixed; top: var(--mobile-header-h, 58px); left: 0; right: 0; bottom: 0;
    background: rgba(4,30,33,0.4);
    opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
    z-index: 90;
  }
  .nav-scrim.is-open{ opacity: 1; visibility: visible; }
}
@media (max-width: 380px){
  .nav-cta .btn-outline{ padding: 8px 12px; font-size: 12px; }
  .brand img{ height: 23px; }
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                   */
/* ---------------------------------------------------------------------- */
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--teal-deep-2);
}
.hero-media{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(3,34,38,0.92) 0%, rgba(3,34,38,0.55) 38%, rgba(3,34,38,0.32) 65%, rgba(3,34,38,0.5) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 200px var(--gutter) 120px;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content .eyebrow{ color: var(--sun); }
.hero-content .eyebrow::before{ background: var(--sun); }
.hero-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(52px, 10vw, 118px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin: 0 0 22px;
}
.hero-title .accent-italic{ color: var(--aqua); }
.hero-title-elegant{
  font-family: "Cormorant Garamond", var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  font-size: clamp(64px, 11vw, 140px);
}
.hero-logo-wrap{ margin: 0 0 26px; line-height: 0; }
.hero-logo{
  width: clamp(260px, 42vw, 660px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.45));
}
.hero-sub{
  font-size: clamp(17px, 1.7vw, 21px);
  max-width: 46ch;
  color: rgba(255,255,255,0.88);
  margin: 0 auto 38px;
  font-family: "Cormorant Garamond", var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: .02em;
}
.hero-actions{ display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; justify-content: center; }

.scroll-cue{
  position: absolute;
  left: var(--gutter);
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
}
.scroll-cue .bubbles{ position: relative; width: 20px; height: 30px; }
.scroll-cue .bubbles span{
  position: absolute; left: 50%; bottom: 0;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--aqua);
  transform: translateX(-50%);
  animation: rise 2.2s infinite ease-in;
  opacity: 0;
}
.scroll-cue .bubbles span:nth-child(2){ animation-delay: .5s; left: 65%; width:4px; height:4px; }
.scroll-cue .bubbles span:nth-child(3){ animation-delay: 1s; left: 35%; width:3px; height:3px; }
@keyframes rise{
  0%{ opacity: 0; transform: translate(-50%, 0) scale(0.6); }
  15%{ opacity: 1; }
  90%{ opacity: .4; }
  100%{ opacity: 0; transform: translate(-50%, -26px) scale(1); }
}

/* wave divider */
.wave-divider{
  display:block; width: 100%; line-height: 0;
  position: relative; z-index: 3;
  margin-top: -3px;
}
.wave-divider svg{ width: 100%; height: auto; display:block; }

/* ---------------------------------------------------------------------- */
/* Generic section spacing                                                */
/* ---------------------------------------------------------------------- */
section{ position: relative; }
.section-pad{ padding: 118px 0; }
@media (max-width: 720px){ .section-pad{ padding: 84px 0; } }

.on-dark{ background: var(--teal-deep); color: var(--white); }
.on-sand{ background: var(--sand); }
.on-sand-deep{ background: var(--sand-deep); }
.on-white{ background: var(--white); }

/* reveal on scroll */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------------------- */
/* Welcome section                                                        */
/* ---------------------------------------------------------------------- */
.welcome-grid{
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.welcome-copy p + p{ margin-top: 18px; }
.welcome-copy .lede{ max-width: 60ch; }
.welcome-stats{
  display:flex; flex-wrap:wrap; gap: 28px 34px;
  margin-top: 36px; padding-top: 30px;
  border-top: 1px solid var(--line);
}
.welcome-stats div{ flex: 1 1 130px; min-width: 130px; max-width: 100%; }
.welcome-stats div strong{
  display:block; font-family: var(--font-display); font-size: 26px; color: var(--teal-strong);
  white-space: normal;
  overflow-wrap: break-word;
  word-break: keep-all;
  line-height: 1.15;
}
.welcome-stats div span{ display:block; font-size: 13px; color: var(--ink-soft); letter-spacing:.03em; line-height:1.4; }

.photo-collage{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, minmax(0,1fr));
  gap: 14px;
  height: clamp(420px, 46vw, 620px);
}
.photo-collage img{ width:100%; height:100%; object-fit:cover; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.pc-1{ grid-column: 1 / 4; grid-row: 1 / 5; }
.pc-2{ grid-column: 4 / 7; grid-row: 1 / 4; }
.pc-3{ grid-column: 4 / 7; grid-row: 4 / 7; }
.pc-4{ grid-column: 1 / 3; grid-row: 5 / 7; }
.pc-5{ grid-column: 3 / 4; grid-row: 5 / 7; }
.pc-6{ display:none; }

@media (max-width: 1080px){
  .welcome-grid{ grid-template-columns: 1fr; }
  .photo-collage{ order: -1; }
}
@media (max-width: 560px){
  .photo-collage{ grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(4, 140px); height:auto; }
  .pc-1{ grid-column: 1/3; grid-row: 1/3; }
  .pc-2{ grid-column: 1/2; grid-row: 3/4; }
  .pc-3{ grid-column: 2/3; grid-row: 3/4; }
  .pc-4{ grid-column: 1/2; grid-row: 4/5; }
  .pc-5{ grid-column: 2/3; grid-row: 4/5; }
}

/* ---------------------------------------------------------------------- */
/* Services intro strip                                                   */
/* ---------------------------------------------------------------------- */
.services-intro{ text-align:center; max-width: 720px; margin: 0 auto 10px; }
.services-intro .section-rule{ margin-left:auto; margin-right:auto; }
.services-nav-chips{
  display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top: 44px;
}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding: 11px 20px; border-radius: 999px;
  background: var(--white); border:1.5px solid var(--line);
  font-size: 13.5px; font-weight: 600; color: var(--teal-deep);
  transition: all .2s ease;
}
.chip svg{ width:15px; height:15px; color: var(--coral); }
.chip:hover{ background: var(--teal-deep); color: var(--white); border-color: var(--teal-deep); }
.chip:hover svg{ color: var(--sun); }

/* ---------------------------------------------------------------------- */
/* Wildlife grid                                                          */
/* ---------------------------------------------------------------------- */
.wildlife-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.wildlife-grid figure{
  margin: 0;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.wildlife-grid img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.wildlife-grid figure:hover img{ transform: scale(1.07); }
.wildlife-grid figcaption{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 12px 10px;
  background: linear-gradient(0deg, rgba(6,42,46,0.85), rgba(6,42,46,0));
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
}
@media (max-width: 700px){
  .wildlife-grid{ grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wildlife-grid figcaption{ font-size: 12px; }
}

/* ---------------------------------------------------------------------- */
/* Service rows                                                           */
/* ---------------------------------------------------------------------- */
.service-row{
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-of-type{ border-bottom:none; }
.service-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items:center;
}
.service-row.flip .service-grid{ direction: rtl; }
.service-row.flip .service-grid > *{ direction: ltr; }

.service-media{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}
.service-media img{ width:100%; height:100%; object-fit:cover; }
.service-media .flag-badge{
  position:absolute; top:18px; left:-3px;
  display:flex; align-items:center; gap:8px;
  background: var(--white);
  padding: 8px 16px 8px 12px;
  border-radius: 0 999px 999px 0;
  box-shadow: var(--shadow-card);
  font-size:12.5px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  color: var(--teal-deep);
}
.mini-flag{ width:20px; height:14px; border-radius:2px; overflow:hidden; flex-shrink:0; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.mini-flag svg{ display:block; width:100%; height:100%; }

.service-media-split .split-imgs{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 100%;
  height: 100%;
}
.service-media-split .split-imgs img{ width:100%; height:100%; object-fit:cover; }

.service-media.placeholder{
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: rgba(255,255,255,0.9);
}
.service-media.placeholder .ph-inner{ text-align:center; padding: 20px; }
.service-media.placeholder svg{ width:64px; height:64px; margin-bottom:14px; opacity:.95; }
.service-media.placeholder .ph-label{
  font-size:11.5px; letter-spacing:.14em; text-transform:uppercase; font-weight:600;
  color: rgba(255,255,255,0.75);
}
.service-media.placeholder::after{
  content:""; position:absolute; inset:0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 12px, transparent 12px 24px);
}

.service-copy .h3{ margin-bottom: 6px; }
.service-copy .tagline{
  font-family: var(--font-display); font-style: italic; color: var(--coral-strong);
  font-size: 17px; margin-bottom: 16px; display:block;
}
.service-copy p{ color: var(--ink-soft); }
.service-copy p + p{ margin-top: 14px; }

.feature-chips{ display:flex; flex-wrap:wrap; gap:10px; margin: 24px 0 30px; }
.feature-chips span{
  font-size: 12.5px; font-weight:600; color: var(--teal-deep);
  background: var(--sand-deep); padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line);
}

@media (max-width: 880px){
  .service-grid{ grid-template-columns: 1fr; }
  .service-row.flip .service-grid{ direction: ltr; }
  .service-row{ padding: 64px 0; }
}

/* ---------------------------------------------------------------------- */
/* Credentials strip                                                      */
/* ---------------------------------------------------------------------- */
.credentials{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.cred-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align:center;
}
.cred-badge{
  width:64px; height:64px; margin: 0 auto 18px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; font-size: 15px;
  letter-spacing: .02em;
}
.cred-badge.padi{ background: var(--white); color: #0a1e63; }
.cred-badge.ssi{ background: var(--sun); color: var(--teal-deep); }
.cred-card h4{ color: var(--white); margin-bottom: 8px; }
.cred-card p{ color: rgba(255,255,255,0.72); font-size: 14.5px; margin:0; }
.cred-qr{
  width: 120px; height: 120px;
  margin: 22px auto 0;
  background: var(--white);
  border-radius: 10px;
  padding: 10px;
  display: flex; align-items: center; justify-content: center;
}
.cred-qr img{ width: 100%; height: 100%; object-fit: contain; }
.cred-note{
  margin: 12px 0 0 !important;
  font-size: 12.5px !important;
  letter-spacing: .04em;
  color: rgba(255,255,255,0.55) !important;
  font-style: italic;
}

.trust-row{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap: 14px 34px; margin-top: 56px; padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.trust-item{ display:flex; align-items:center; gap:10px; color: rgba(255,255,255,0.85); font-size:14.5px; }
.trust-item svg{ width:20px; height:20px; color: var(--sun); flex-shrink:0; }
.trip-link{
  display:inline-flex; align-items:center; gap:10px;
  color: var(--white); font-weight:600; border-bottom: 1.5px solid var(--sun);
  padding-bottom:2px;
}
.trip-link svg{ width:20px; height:20px; flex-shrink:0; }
.trip-link:hover{ color: var(--sun); }

/* ---------------------------------------------------------------------- */
/* About                                                                  */
/* ---------------------------------------------------------------------- */
.about-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px,6vw,90px);
  align-items:center;
}
.about-photos{ position: relative; }
.about-photo-main{
  border-radius: var(--radius);
  overflow:hidden; box-shadow: var(--shadow-card);
  aspect-ratio: 4/5;
}
.about-photo-main img{ width:100%; height:100%; object-fit:cover; }
.about-photo-second{
  position:absolute;
  width: 46%;
  aspect-ratio: 4/3;
  right: -8%;
  bottom: -9%;
  border-radius: var(--radius-sm);
  overflow:hidden;
  border: 6px solid var(--sand);
  box-shadow: var(--shadow-soft);
}
.about-photo-second img{ width:100%; height:100%; object-fit:cover; }
@media (max-width: 1080px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-photos{ max-width: 420px; margin: 0 auto 50px; }
}
.about-copy p + p{ margin-top:16px; }
.crew-note{
  margin-top: 30px; padding: 22px 24px;
  background: var(--sand-deep);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px; color: var(--ink-soft);
}
.crew-note strong{ color: var(--ink); }
.signature-line{
  margin-top: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--teal-strong);
}
.signature-line span{ display:block; font-family: var(--font-body); font-style:normal; font-size:13px; letter-spacing:.1em; text-transform:uppercase; color: var(--ink-soft); margin-top:6px; }

/* ---------------------------------------------------------------------- */
/* Contact                                                                */
/* ---------------------------------------------------------------------- */
.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items:start;
}
@media (max-width: 980px){ .contact-grid{ grid-template-columns: 1fr; } }

.contact-form-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-card);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width:560px){ .form-row{ grid-template-columns: 1fr; } }
.field{ margin-bottom: 20px; }
.field label{
  display:block; font-size: 13px; font-weight:600; letter-spacing:.04em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px;
}
.field input, .field select, .field textarea{
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--sand);
  color: var(--ink);
  transition: border-color .2s ease, background-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--teal); background: var(--white);
}
.field textarea{ resize: vertical; min-height: 120px; }
.form-foot{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin-top: 6px; }
.form-note{ font-size: 13px; color: var(--ink-soft); }
.form-status{ font-size: 14px; font-weight:600; }
.form-status[data-state="ok"]{ color: var(--teal-strong); }
.form-status[data-state="err"]{ color: var(--coral-strong); }

.contact-info{ display:flex; flex-direction:column; gap: 26px; }
.info-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-card);
  display:flex; gap:18px; align-items:flex-start;
}
.info-card .icon-badge{
  width:46px; height:46px; flex-shrink:0; border-radius:50%;
  background: var(--sand-deep); color: var(--teal-strong);
  display:flex; align-items:center; justify-content:center;
}
.info-card .icon-badge svg{ width:21px; height:21px; }
.info-card .icon-badge-whatsapp{ background: #25D366; color: var(--white); }
.info-card h4{ margin-bottom:6px; }
.info-card p, .info-card a{ color: var(--ink-soft); font-size: 15px; }
.info-card a:hover{ color: var(--teal-strong); }

.map-wrap{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16/10;
}
.map-wrap iframe{ width:100%; height:100%; border:0; display:block; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                 */
/* ---------------------------------------------------------------------- */
.site-footer{
  background: var(--teal-deep-2);
  color: rgba(255,255,255,0.82);
  padding: 90px 0 0;
}
.footer-top{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
@media (max-width: 900px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-top{ grid-template-columns: 1fr; }
}
.footer-brand img{ height: 42px; margin-bottom: 18px; }
.footer-brand p{ font-size: 14.5px; line-height:1.7; max-width: 34ch; color: rgba(255,255,255,0.68); }
.footer-social{ display:flex; gap:12px; margin-top: 22px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  background: rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center;
  transition: background-color .2s ease, transform .2s ease;
}
.footer-social a svg{ width:17px; height:17px; }
.footer-social a:hover{ background: var(--coral); transform: translateY(-2px); }

.footer-col h5{
  font-family: var(--font-body); font-weight:600; font-size:13px;
  letter-spacing:.14em; text-transform:uppercase; color: var(--sun);
  margin-bottom: 20px;
}
.footer-col ul li{ margin-bottom: 12px; }
.footer-col a, .footer-col p{ font-size: 14.5px; color: rgba(255,255,255,0.72); }
.footer-col a:hover{ color: var(--white); }

.footer-badges{ display:flex; gap:14px; margin-top:6px; flex-wrap:wrap; align-items:center; }
.footer-badge{
  display:flex; align-items:center; justify-content:center;
  width:72px; height:72px; border-radius:12px;
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px;
  overflow: hidden;
}
.footer-badge img{ width:100%; height:100%; object-fit:contain; display:block; }

.footer-bottom{
  display:flex; flex-wrap:wrap; gap:14px;
  align-items:center; justify-content:space-between;
  padding: 26px 0 30px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a{ color: rgba(255,255,255,0.55); }
.footer-bottom a:hover{ color: var(--white); }
.footer-bottom-links{ display:flex; gap:20px; flex-wrap:wrap; }

/* ---------------------------------------------------------------------- */
/* Back to top                                                            */
/* ---------------------------------------------------------------------- */
.to-top{
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 48px; height:48px; border-radius:50%;
  background: var(--teal-deep); color: var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-card);
  border: none;
  opacity:0; visibility:hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background-color .2s ease;
}
.to-top.is-visible{ opacity:1; visibility:visible; transform:none; }
.to-top:hover{ background: var(--coral); }
.to-top svg{ width:20px; height:20px; }

/* ---------------------------------------------------------------------- */
/* Utilities                                                              */
/* ---------------------------------------------------------------------- */
.center{ text-align:center; }
.visually-hidden{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
