/* =========================================================
   Bayhaven Resort — shared stylesheet
   Coastal Filipino resort, darker/cooler but welcoming
   ========================================================= */

:root{
  /* Brand */
  --warm-white: #FBF8F1;
  --warm-white-2: #F4EFE4;
  --sand: #F5E6C8;
  --ocean: #1A6B8A;
  --teal: #0D4F63;
  --teal-deep: #093A49;
  --coral: #E8735A;
  --coral-dark: #D45C43;

  /* Ink */
  --ink: #14333D;          /* near-black cool teal for text on light */
  --ink-soft: #3C5760;
  --muted: #6B8089;
  --line: rgba(13,79,99,.14);
  --line-light: rgba(255,255,255,.16);

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(9,58,73,.06);
  --shadow-md: 0 14px 34px -16px rgba(9,58,73,.30);
  --shadow-lg: 0 34px 70px -30px rgba(9,58,73,.45);

  --r: 14px;
  --r-lg: 22px;
  --maxw: 1240px;
  --nav-h: 76px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--warm-white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -.01em;
}

p{ margin: 0 0 1rem; }
a{ color: inherit; text-decoration: none; }
img{ display: block; max-width: 100%; }

.wrap{ width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
.section{ padding: clamp(64px, 9vw, 132px) 0; }
.section--teal{ background: var(--teal); color: var(--warm-white); }
.section--deep{ background: var(--teal-deep); color: var(--warm-white); }
.section--sand{ background: var(--warm-white-2); }

/* ---- Section label / eyebrow ---- */
.eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 18px;
}
.eyebrow::before{ content: ""; width: 30px; height: 2px; background: var(--coral); display: inline-block; }
.section--teal .eyebrow, .section--deep .eyebrow{ color: var(--sand); }
.section--teal .eyebrow::before, .section--deep .eyebrow::before{ background: var(--sand); }

.section-title{ font-size: clamp(2rem, 4.2vw, 3.2rem); max-width: 18ch; }
.section-lead{ font-size: 1.12rem; color: var(--ink-soft); max-width: 56ch; margin-top: 18px; }
.section--teal .section-lead, .section--deep .section-lead{ color: rgba(251,248,241,.82); }
.center{ text-align: center; margin-inline: auto; }
.center .eyebrow{ justify-content: center; }
.center .section-title, .center .section-lead{ margin-inline: auto; }

/* ===================== Buttons ===================== */
.btn{
  --bg: var(--coral); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "DM Sans", sans-serif; font-weight: 600; font-size: .98rem;
  letter-spacing: .01em;
  padding: 15px 30px; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover{ background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(212,92,67,.7); }
.btn--ghost{ --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover{ background: rgba(255,255,255,.12); border-color: #fff; box-shadow: none; }
.btn--teal{ --bg: var(--teal); }
.btn--teal:hover{ background: var(--teal-deep); box-shadow: 0 16px 30px -14px rgba(9,58,73,.6); }
.btn--outline{ --bg: transparent; --fg: var(--teal); border-color: var(--line); }
.btn--outline:hover{ background: var(--teal); --fg:#fff; border-color: var(--teal); box-shadow: none; }
.btn--block{ width: 100%; }

/* ===================== Navbar ===================== */
.nav{
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.nav .wrap{ display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo{ display: flex; align-items: center; gap: 11px; color: #fff; font-family: "Playfair Display", serif; font-size: 1.42rem; font-weight: 600; transition: color .4s var(--ease); }
.nav__logo svg{ width: 30px; height: 30px; flex: none; }
.nav__logo .wave-stroke{ stroke: var(--coral); }

.nav__links{ display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a{
  position: relative; color: rgba(255,255,255,.92); font-weight: 500; font-size: .96rem;
  padding: 9px 15px; border-radius: 8px; transition: color .25s var(--ease), background .25s var(--ease);
}
.nav__links a::after{
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
  background: var(--coral); border-radius: 2px; transform: scaleX(0); transform-origin: center;
  transition: transform .3s var(--ease);
}
.nav__links a:hover{ color: #fff; }
.nav__links a:hover::after{ transform: scaleX(1); }
.nav__links a.active{ color: #fff; }
.nav__links a.active::after{ transform: scaleX(1); }

.nav__cta{ display: flex; align-items: center; gap: 14px; }
.nav__cta .btn{ padding: 11px 22px; font-size: .92rem; }

.nav__burger{
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav__burger span{ width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .35s var(--ease), opacity .25s var(--ease); }

/* scrolled state */
.nav.scrolled{ background: var(--teal); box-shadow: 0 8px 30px -18px rgba(9,58,73,.8); height: 66px; }
.nav.scrolled .nav__logo{ color: #fff; }

/* solid variant for inner-page heroes if needed (defaults same) */

body.nav-open{ overflow: hidden; }

/* Mobile drawer */
.drawer{
  position: fixed; inset: 0; z-index: 99; pointer-events: none;
}
.drawer__scrim{ position: absolute; inset: 0; background: rgba(9,58,73,.55); opacity: 0; transition: opacity .4s var(--ease); }
.drawer__panel{
  position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 360px);
  background: var(--teal-deep); color: #fff; padding: 96px 34px 40px;
  transform: translateX(100%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: -30px 0 60px -30px rgba(0,0,0,.6);
}
.drawer__panel a{ font-size: 1.25rem; font-family: "Playfair Display", serif; padding: 13px 0; border-bottom: 1px solid var(--line-light); transition: color .25s, padding-left .25s; }
.drawer__panel a:hover, .drawer__panel a.active{ color: var(--sand); padding-left: 8px; }
.drawer__panel .btn{ margin-top: 24px; }
body.nav-open .drawer{ pointer-events: auto; }
body.nav-open .drawer__scrim{ opacity: 1; }
body.nav-open .drawer__panel{ transform: translateX(0); }
body.nav-open .nav__burger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
body.nav-open .nav__burger span:nth-child(2){ opacity: 0; }
body.nav-open .nav__burger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ===================== Hero ===================== */
.hero{
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__bg{ position: absolute; inset: 0; z-index: 0; }
.hero__bg img{ width: 100%; height: 120%; object-fit: cover; }
.hero__bg::after{
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(9,58,73,.55) 0%, rgba(9,58,73,.30) 35%, rgba(9,58,73,.62) 100%),
    linear-gradient(105deg, rgba(7,40,52,.78) 0%, rgba(7,40,52,.15) 60%);
}
.hero__inner{ position: relative; z-index: 2; padding-top: var(--nav-h); }
.hero h1{ font-size: clamp(2.8rem, 7vw, 5.4rem); max-width: 16ch; }
.hero__sub{ font-size: clamp(1.05rem, 1.8vw, 1.32rem); max-width: 50ch; margin: 22px 0 36px; color: rgba(255,255,255,.92); }
.hero__cta{ display: flex; flex-wrap: wrap; gap: 16px; }
.hero__scroll{ position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.8); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__scroll .mouse{ width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; position: relative; }
.hero__scroll .mouse::after{ content:""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; background: #fff; border-radius: 3px; animation: scrolldot 1.7s var(--ease) infinite; }
@keyframes scrolldot{ 0%{opacity:0; transform: translate(-50%,0);} 30%{opacity:1;} 100%{opacity:0; transform: translate(-50%,12px);} }

/* Hero water-drop ripples */
@keyframes water-drop {
  0%   { transform: translate(-50%,-50%) scale(0); opacity: .55; }
  70%  { opacity: .12; }
  100% { transform: translate(-50%,-50%) scale(1); opacity: 0; }
}
.hero__drop {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 1;
  width: 140px; height: 140px;
  border: 1.5px solid rgba(255,255,255,.38);
  transform: translate(-50%,-50%) scale(0);
  animation: water-drop 2.6s cubic-bezier(.2,.6,.3,1) forwards;
}
.hero__drop.r2 {
  width: 260px; height: 260px;
  border-width: 1px; border-color: rgba(255,255,255,.18);
  animation-duration: 3.2s; animation-delay: .22s;
}
.hero__drop.r3 {
  width: 380px; height: 380px;
  border-width: 1px; border-color: rgba(255,255,255,.08);
  animation-duration: 3.8s; animation-delay: .44s;
}

/* Page hero (inner pages) */
.pagehero{ position: relative; min-height: 60vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.pagehero__bg{ position: absolute; inset: 0; z-index: 0; }
.pagehero__bg img{ width: 100%; height: 100%; object-fit: cover; }
.pagehero__bg::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(9,58,73,.45), rgba(7,40,52,.82)); }
.pagehero__inner{ position: relative; z-index: 2; padding: 0 0 clamp(40px,6vw,72px); padding-top: calc(var(--nav-h) + 40px); }
.pagehero h1{ font-size: clamp(2.4rem, 5.5vw, 4rem); }
.pagehero .crumb{ font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sand); margin-bottom: 16px; display: flex; gap: 10px; align-items: center; }
.pagehero .crumb span{ opacity: .6; }
.pagehero p{ max-width: 52ch; color: rgba(255,255,255,.9); margin-top: 14px; }

/* ===================== Reveal animation ===================== */
.reveal{ opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity: 1; transform: none; }
.reveal.d1{ transition-delay: .08s; }
.reveal.d2{ transition-delay: .16s; }
.reveal.d3{ transition-delay: .24s; }
.reveal.d4{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  html{ scroll-behavior: auto; }
}

/* ===================== Feature cards ===================== */
.grid{ display: grid; gap: 28px; }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-2{ grid-template-columns: repeat(2,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }

.feature{
  background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature__img{ aspect-ratio: 4/3; overflow: hidden; }
.feature__img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.feature:hover .feature__img img{ transform: scale(1.06); }
.feature__body{ padding: 30px 30px 34px; }
.feature__body h3{ font-size: 1.5rem; margin-bottom: 10px; }
.feature__body p{ color: var(--ink-soft); font-size: .98rem; }

/* small icon tile */
.icontile{ display:flex; flex-direction: column; gap: 14px; }
.icontile .ic{ width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: var(--sand); color: var(--teal); }
.icontile .ic svg{ width: 28px; height: 28px; }
.section--teal .icontile .ic, .section--deep .icontile .ic{ background: rgba(245,230,200,.16); color: var(--sand); }
.icontile h4{ font-size: 1.22rem; }
.icontile p{ color: var(--ink-soft); font-size: .95rem; margin: 0; }
.section--teal .icontile p, .section--deep .icontile p{ color: rgba(251,248,241,.78); }

/* ===================== Testimonials ===================== */
.testimonials{
  position: relative; overflow: hidden;
  color: var(--warm-white);
}
.testimonials__bg{ position: absolute; inset: 0; z-index: 0; }
.testimonials__bg img{ width: 100%; height: 100%; object-fit: cover; }
.testimonials__bg::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(7,40,52,.93) 0%, rgba(9,58,73,.88) 100%);
}
.testimonials .wrap{ position: relative; z-index: 2; }
.testimonials .eyebrow{ color: var(--sand); }
.testimonials .eyebrow::before{ background: var(--sand); }
.testimonials .section-lead{ color: rgba(251,248,241,.82); }

.tcard{ background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 32px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.tcard:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars{ display: flex; gap: 3px; color: var(--coral); }
.stars svg{ width: 18px; height: 18px; }
.tcard blockquote{ margin: 0; font-size: 1.05rem; color: var(--ink); line-height: 1.6; }
.tcard .who{ display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard .avatar{ width: 44px; height: 44px; border-radius: 50%; background: var(--sand); color: var(--teal); display: grid; place-items: center; font-weight: 700; font-family: "Playfair Display", serif; }
.tcard .who b{ display: block; font-size: .98rem; color: var(--ink); }
.tcard .who span{ font-size: .85rem; color: var(--muted); }

/* ===================== Accommodations / room cards ===================== */
.room{ background:#fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 42% 1fr; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.room:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room__img{ overflow: hidden; min-height: 280px; }
.room__img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.room:hover .room__img img{ transform: scale(1.05); }
.room__body{ padding: 32px 34px; display: flex; flex-direction: column; }
.room__body h3{ font-size: 1.8rem; }
.room__body .desc{ color: var(--ink-soft); margin: 12px 0 18px; }
.amen{ display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.amen span{ display: inline-flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--ink-soft); background: var(--warm-white-2); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }
.amen svg{ width: 15px; height: 15px; color: var(--ocean); }
.room__foot{ margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.price{ font-family: "Playfair Display", serif; }
.price b{ font-size: 1.9rem; color: var(--teal); }
.price small{ display: block; font-family: "DM Sans"; font-size: .82rem; color: var(--muted); margin-top: -2px; }

/* included strip */
.inc{ display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.inc .item{ display: flex; gap: 14px; align-items: center; }
.inc .ic{ width: 50px; height: 50px; flex: none; border-radius: 14px; display: grid; place-items: center; background: rgba(245,230,200,.18); color: var(--sand); }
.inc .ic svg{ width: 24px; height: 24px; }
.inc b{ display: block; font-size: 1rem; }
.inc span{ font-size: .85rem; color: rgba(251,248,241,.72); }

/* ===================== Amenities grid ===================== */
.amenity{ position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 320px; display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.amenity img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.amenity::after{ content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(5,22,34,.97) 0%, rgba(7,35,50,.72) 38%, rgba(9,58,73,0) 68%); }
.amenity:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.amenity:hover img{ transform: scale(1.07); }
.amenity__body{ position: relative; z-index: 2; padding: 28px; }
.amenity__body h3{ font-size: 1.5rem; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.amenity__body p{ margin: 8px 0 0; color: rgba(255,255,255,.9); font-size: .95rem; text-shadow: 0 1px 4px rgba(0,0,0,.4); }

/* nearby attractions */
.nearby{ display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.nearby .n{ background:#fff; border:1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.nearby .n:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.nearby .n__img{ aspect-ratio: 3/2; overflow: hidden; }
.nearby .n__img img{ width:100%; height:100%; object-fit: cover; transition: transform .7s var(--ease); }
.nearby .n:hover .n__img img{ transform: scale(1.06); }
.nearby .n__b{ padding: 18px 20px 22px; }
.nearby .n__b h4{ font-size: 1.18rem; color: var(--ink); }
.nearby .n__b span{ font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--coral); }
.nearby .n__b p{ margin: 8px 0 0; font-size: .9rem; color: var(--ink-soft); }

/* ===================== Gallery ===================== */
.gfilter{ display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.gfilter button{
  font-family: "DM Sans", sans-serif; font-weight: 600; font-size: .92rem;
  padding: 10px 22px; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--ink-soft); border: 1.5px solid var(--line);
  transition: all .3s var(--ease);
}
.gfilter button:hover{ border-color: var(--teal); color: var(--teal); }
.gfilter button.active{ background: var(--teal); border-color: var(--teal); color: #fff; }

.gallery{ columns: 3; column-gap: 18px; }
.gallery .gitem{
  break-inside: avoid; margin-bottom: 18px; border-radius: var(--r); overflow: hidden; cursor: pointer;
  position: relative; box-shadow: var(--shadow-sm); transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.gallery .gitem img{ width: 100%; display: block; transition: transform .7s var(--ease); }
.gallery .gitem::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(7,40,52,.55)); opacity: 0; transition: opacity .4s var(--ease); }
.gallery .gitem:hover img{ transform: scale(1.06); }
.gallery .gitem:hover::after{ opacity: 1; }
.gallery .gitem .tag{ position: absolute; left: 14px; bottom: 12px; z-index:2; color: #fff; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: all .4s var(--ease); }
.gallery .gitem:hover .tag{ opacity: 1; transform: none; }
.gallery .gitem.hide{ display: none; }
.gallery .gitem.fade{ opacity: 0; transform: scale(.96); }

/* lightbox */
.lightbox{ position: fixed; inset: 0; z-index: 200; background: rgba(7,33,42,.94); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .35s var(--ease); }
.lightbox.open{ display: flex; opacity: 1; }
.lightbox img{ max-width: 86vw; max-height: 82vh; border-radius: 8px; box-shadow: 0 40px 90px -30px rgba(0,0,0,.8); transform: scale(.92); transition: transform .4s var(--ease); }
.lightbox.open img{ transform: scale(1); }
.lb-btn{ position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color:#fff; width: 54px; height: 54px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: background .25s; backdrop-filter: blur(4px); }
.lb-btn:hover{ background: rgba(255,255,255,.25); }
.lb-btn svg{ width: 24px; height: 24px; }
.lb-prev{ left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next{ right: 3vw; top: 50%; transform: translateY(-50%); }
.lb-close{ top: 26px; right: 3vw; }
.lb-count{ position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: .9rem; letter-spacing: .1em; }

/* ===================== Rates / tables ===================== */
.rate-table{ width: 100%; border-collapse: collapse; background:#fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.rate-table caption{ caption-side: top; text-align: left; font-family: "Playfair Display", serif; font-size: 1.5rem; margin-bottom: 16px; color: var(--ink); }
.rate-table th, .rate-table td{ padding: 17px 22px; text-align: left; border-bottom: 1px solid var(--line); }
.rate-table thead th{ background: var(--teal); color:#fff; font-family: "DM Sans"; font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.rate-table tbody tr:last-child td{ border-bottom: 0; }
.rate-table tbody tr:nth-child(even){ background: var(--warm-white-2); }
.rate-table td.price-cell{ font-family: "Playfair Display", serif; font-weight: 600; color: var(--teal); font-size: 1.15rem; }
.rate-table td .muted{ color: var(--muted); font-size: .85rem; }

.pkgcard{ background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.pkgcard:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkgcard.featured{ border-color: var(--coral); box-shadow: 0 24px 50px -28px rgba(232,115,90,.5); position: relative; }
.pkgcard.featured .ribbon{ position: absolute; top: 22px; right: 22px; background: var(--coral); color:#fff; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; padding: 6px 14px; border-radius: 999px; }
.pkgcard h3{ font-size: 1.6rem; }
.pkgcard .pkprice{ font-family: "Playfair Display", serif; font-size: 2.6rem; color: var(--teal); margin: 10px 0 4px; }
.pkgcard .pkprice small{ font-family:"DM Sans"; font-size: .95rem; color: var(--muted); font-weight: 400; }
.checklist{ list-style: none; padding: 0; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.checklist li{ display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--ink-soft); }
.checklist svg{ width: 20px; height: 20px; flex: none; color: var(--ocean); margin-top: 1px; }
.crosslist li svg{ color: var(--muted); }

/* FAQ accordion */
.faq{ max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item{ background:#fff; border:1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .3s var(--ease); }
.faq__item.open{ box-shadow: var(--shadow-md); }
.faq__q{ width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 26px; font-family: "Playfair Display", serif; font-size: 1.18rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__q .pm{ width: 26px; height: 26px; flex: none; position: relative; transition: transform .35s var(--ease); }
.faq__q .pm::before, .faq__q .pm::after{ content:""; position:absolute; background: var(--coral); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq__q .pm::before{ width: 16px; height: 2px; }
.faq__q .pm::after{ width: 2px; height: 16px; transition: transform .35s var(--ease); }
.faq__item.open .pm::after{ transform: translate(-50%,-50%) scaleY(0); }
.faq__a{ max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p{ padding: 0 26px 24px; margin: 0; color: var(--ink-soft); }

/* ===================== Contact / form ===================== */
.contact-grid{ display: grid; grid-template-columns: 1.25fr .85fr; gap: 48px; align-items: start; }
.bookform{ background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-md); }
.field{ margin-bottom: 22px; }
.field label{ display: block; font-weight: 600; font-size: .9rem; margin-bottom: 8px; color: var(--ink); }
.field .req{ color: var(--coral); }
.field input, .field select, .field textarea{
  width: 100%; font-family: "DM Sans", sans-serif; font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--warm-white);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 4px rgba(26,107,138,.16);
}
.field textarea{ resize: vertical; min-height: 110px; }
.field.error input, .field.error select{ border-color: var(--coral); box-shadow: 0 0 0 4px rgba(232,115,90,.14); }
.field .err-msg{ color: var(--coral-dark); font-size: .82rem; margin-top: 6px; display: none; }
.field.error .err-msg{ display: block; }
.row-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* guest counters */
.counter-group{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.counter{ border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; background: var(--warm-white); }
.counter .lab b{ display:block; font-size: .98rem; }
.counter .lab span{ font-size: .78rem; color: var(--muted); }
.counter .ctrl{ display: flex; align-items: center; gap: 12px; }
.counter button{ width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line); background:#fff; color: var(--teal); font-size: 1.3rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: all .25s var(--ease); }
.counter button:hover{ background: var(--teal); color:#fff; border-color: var(--teal); }
.counter button:disabled{ opacity: .35; cursor: not-allowed; }
.counter .num{ min-width: 22px; text-align: center; font-weight: 600; font-size: 1.1rem; }

.btn .spinner{ width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4); border-top-color:#fff; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
@keyframes spin{ to{ transform: rotate(360deg); } }
.btn.loading .spinner{ display: inline-block; }
.btn.loading .btn-label{ opacity: .7; }

.form-success{ display: none; text-align: center; padding: 30px 10px; }
.form-success.show{ display: block; animation: pop .5s var(--ease); }
@keyframes pop{ from{ opacity:0; transform: scale(.94);} to{ opacity:1; transform: none;} }
.form-success .check{ width: 74px; height: 74px; border-radius: 50%; background: rgba(26,107,138,.12); color: var(--teal); display: grid; place-items: center; margin: 0 auto 20px; }
.form-success .check svg{ width: 38px; height: 38px; }
.form-success h3{ font-size: 1.7rem; margin-bottom: 10px; }
.form-success p{ color: var(--ink-soft); max-width: 40ch; margin-inline: auto; }

/* contact info card */
.info-card{ background: var(--teal); color:#fff; border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow-md); }
.info-card h3{ font-size: 1.5rem; margin-bottom: 22px; }
.info-list{ list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 20px; }
.info-list li{ display: flex; gap: 14px; align-items: flex-start; }
.info-list .ic{ width: 42px; height: 42px; flex: none; border-radius: 12px; background: rgba(245,230,200,.16); color: var(--sand); display: grid; place-items: center; }
.info-list .ic svg{ width: 20px; height: 20px; }
.info-list b{ display: block; font-size: .98rem; }
.info-list span{ font-size: .9rem; color: rgba(251,248,241,.78); }
.map-embed{ border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.map-embed img{ width: 100%; height: 260px; object-fit: cover; }
.map-embed .pin{ position: absolute; top: 50%; left: 50%; transform: translate(-50%,-100%); color: var(--coral); filter: drop-shadow(0 4px 8px rgba(0,0,0,.3)); }
.map-embed .pin svg{ width: 40px; height: 40px; }

/* ===================== CTA band ===================== */
.ctaband{ position: relative; overflow: hidden; color:#fff; text-align: center; }
.ctaband__bg{ position:absolute; inset:0; z-index:0; }
.ctaband__bg img{ width:100%; height:100%; object-fit: cover; }
.ctaband__bg::after{ content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(7,40,52,.9), rgba(13,79,99,.78)); }
.ctaband .wrap{ position: relative; z-index: 2; }
.ctaband h2{ font-size: clamp(2rem,4.5vw,3.2rem); max-width: 20ch; margin-inline: auto; }
.ctaband p{ max-width: 50ch; margin: 18px auto 32px; color: rgba(255,255,255,.88); }

/* ===================== Footer ===================== */
.footer{ background: var(--teal-deep); color: rgba(251,248,241,.82); padding: 76px 0 30px; }
.footer__top{ display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 48px; }
.footer__brand .logo{ display:flex; align-items:center; gap: 11px; color:#fff; font-family:"Playfair Display", serif; font-size: 1.5rem; margin-bottom: 14px; }
.footer__brand .logo svg{ width: 30px; height: 30px; }
.footer__brand .logo .wave-stroke{ stroke: var(--coral); }
.footer__brand p{ max-width: 34ch; font-size: .95rem; }
.footer h4{ font-family: "DM Sans", sans-serif; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sand); margin-bottom: 18px; }
.footer__links{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer__links a{ font-size: .96rem; transition: color .25s, padding-left .25s; }
.footer__links a:hover{ color:#fff; padding-left: 5px; }
.footer__contact li{ display:flex; gap: 11px; margin-bottom: 12px; font-size: .94rem; align-items: flex-start; }
.footer__contact svg{ width: 18px; height: 18px; color: var(--sand); flex: none; margin-top: 2px; }
.footer__contact{ list-style: none; padding: 0; margin: 0; }
.socials{ display: flex; gap: 12px; margin-top: 20px; }
.socials a{ width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-light); display: grid; place-items: center; color:#fff; transition: all .3s var(--ease); }
.socials a:hover{ background: var(--coral); border-color: var(--coral); transform: translateY(-3px); }
.socials svg{ width: 18px; height: 18px; }
.footer__bottom{ margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line-light); display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .85rem; color: rgba(251,248,241,.6); }
.footer__bottom .credit{ color: var(--sand); }
.footer__bottom .credit b{ color:#fff; font-weight: 600; }

/* ===================== Responsive ===================== */
@media (max-width: 980px){
  .nav__links, .nav__cta .btn{ display: none; }
  .nav__burger{ display: flex; }
  .grid-3, .grid-4, .inc, .nearby, .counter-group{ grid-template-columns: repeat(2,1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .gallery{ columns: 2; }
  .footer__top{ grid-template-columns: 1fr 1fr; }
  .footer__brand{ grid-column: 1 / -1; }
}
@media (max-width: 680px){
  body{ font-size: 16px; }
  .wrap{ padding-inline: 20px; }
  .grid-3, .grid-4, .grid-2, .inc, .nearby, .room, .counter-group, .row-2{ grid-template-columns: 1fr; }
  .room__img{ min-height: 230px; }
  .gallery{ columns: 1; }
  .bookform{ padding: 26px; }
  .rate-table{ font-size: .9rem; }
  .rate-table th, .rate-table td{ padding: 12px 14px; }
  .footer__top{ grid-template-columns: 1fr; }
  .lb-prev{ left: 12px; } .lb-next{ right: 12px; } .lb-close{ right: 12px; }
  .lb-btn{ width: 46px; height: 46px; }
}
