:root {
  --ink: #123241;
  --muted: #587283;
  --line: #d3edf3;
  --paper: #ffffff;
  --mist: #effcff;
  --lagoon: #e7fbff;
  --blue: #08a8d8;
  --blue-dark: #04799c;
  --aqua: #41d9dd;
  --sand: #ffe4b8;
  --leaf: #5d9a76;
  --coral: #ff8756;
  --messenger: #4c7cff;
  --whatsapp: #27c968;
  --shadow: 0 18px 46px rgba(8, 128, 164, 0.13);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fdff 38%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

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

.shell {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue-dark);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(211, 237, 243, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  line-height: 1.1;
}

.brand img {
  width: 104px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  display: block;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #294356;
  font-size: 14px;
  font-weight: 800;
}

.nav-menu a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
  color: var(--blue-dark);
  border-color: var(--aqua);
}

.nav-cta,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 14px 26px rgba(255, 135, 86, 0.25);
}

.btn-whatsapp {
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 14px 26px rgba(37, 186, 91, 0.23);
}

.btn-messenger {
  color: #fff;
  background: var(--messenger);
  box-shadow: 0 14px 26px rgba(81, 72, 229, 0.22);
}

.btn-soft {
  color: var(--blue-dark);
  border-color: #abe8f2;
  background: #e9fbff;
}

.btn-large {
  min-height: 52px;
  padding-inline: 24px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: #4ed9e7;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 101, 130, 0.78) 0%, rgba(5, 145, 180, 0.56) 45%, rgba(74, 221, 228, 0.24) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.18));
}

.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) brightness(1.12);
}

.hero-media img {
  z-index: 0;
}

.hero-media video {
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #ffffff 84%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 86px 0 120px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #dffcff;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 72px;
}

h2 {
  max-width: 780px;
  font-size: 44px;
}

h3 {
  font-size: 25px;
}

.hero-subtitle {
  max-width: 680px;
  margin: 20px 0 0;
  color: #f1fdff;
  font-size: 24px;
  font-weight: 850;
}

.hero-copy,
.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.hero-copy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.94);
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 720px);
  margin: 42px 0 0;
  overflow: hidden;
  border: 1px solid rgba(232, 252, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 40px rgba(0, 94, 123, 0.18);
}

.hero-facts div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  color: #fff;
  font-size: 24px;
  font-weight: 950;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

.section-booking,
#services,
#highlights,
#siquijor,
#faq {
  background: rgba(255, 255, 255, 0.82);
}

.section-tint {
  background:
    linear-gradient(180deg, #f5fdff 0%, #ebfbff 100%);
}

.section-booking {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  gap: 70px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1fr);
}

.card-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(8, 128, 164, 0.08);
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-dark);
  font-weight: 950;
}

.text-link:hover {
  color: var(--coral);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feature-item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-item strong {
  display: block;
  color: var(--ink);
}

.feature-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.image-main,
.rounded-photo,
.visit-gallery img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-main {
  width: 82%;
  height: 560px;
  object-fit: cover;
}

.image-overlap {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 58%;
  height: 210px;
  object-fit: contain;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.rounded-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 13px 16px;
  border-left: 4px solid var(--aqua);
  border-radius: var(--radius);
  background: var(--lagoon);
  color: #335064;
  font-weight: 800;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 30px;
}

.mini-grid span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #335064;
  font-weight: 850;
}

.visit-gallery {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: end;
}

.visit-gallery img:first-child {
  height: 520px;
  object-fit: cover;
}

.visit-gallery img:last-child {
  height: 340px;
  object-fit: contain;
  padding: 16px;
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

blockquote {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #355166;
  font-size: 18px;
}

cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 950;
}

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

.final-cta {
  padding: 104px 0;
  color: var(--ink);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(219, 251, 255, 0.96), rgba(100, 220, 232, 0.78)),
    var(--lagoon);
}

.final-cta .eyebrow {
  color: var(--blue-dark);
}

.final-cta h2,
.final-cta p {
  margin-inline: auto;
}

.final-cta p {
  max-width: 700px;
  color: #3d6373;
}

.centered-actions {
  justify-content: center;
}

.site-footer {
  padding: 52px 0 96px;
  color: #315b6c;
  background:
    linear-gradient(180deg, #e9fbff 0%, #d8f6fb 100%);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 32px;
}

.site-footer img {
  width: 150px;
  height: auto;
  padding: 8px;
  border-radius: var(--radius);
  background: #fff;
}

.site-footer p {
  max-width: 430px;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 950;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: var(--blue-dark);
  font-weight: 850;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(217, 232, 238, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 44px rgba(17, 37, 51, 0.18);
  backdrop-filter: blur(12px);
}

.sticky-btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: var(--radius);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.sticky-book {
  background: var(--coral);
}

.sticky-wa {
  background: var(--whatsapp);
}

.sticky-msg {
  background: var(--messenger);
}

@media (max-width: 1060px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav.is-open .nav-menu {
    grid-column: 1 / -1;
    display: grid;
    gap: 0;
    padding: 8px 0 16px;
    border-top: 1px solid var(--line);
  }

  .nav.is-open .nav-menu a {
    padding: 12px 0;
  }

  .split,
  .split-reverse {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-grid,
  .highlight-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .shell {
    width: min(100% - 28px, var(--max));
  }

  .brand img {
    width: 82px;
    height: 34px;
  }

  .brand span {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 690px;
  }

  .hero-content {
    padding: 58px 0 104px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 23px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-copy,
  .lead,
  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .service-grid,
  .highlight-grid,
  .testimonial-grid,
  .footer-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .card img,
  .rounded-photo,
  .image-main {
    height: 320px;
  }

  .image-stack {
    min-height: 0;
  }

  .image-main {
    width: 100%;
  }

  .image-overlap {
    position: static;
    width: 100%;
    height: 160px;
    margin-top: 14px;
  }

  .visit-gallery {
    grid-template-columns: 1fr;
  }

  .visit-gallery img:first-child,
  .visit-gallery img:last-child {
    height: 300px;
  }

  .sticky-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sticky-btn {
    min-width: 0;
    padding: 0 6px;
    font-size: 12px;
    white-space: nowrap;
  }
}
