/* ============================================================
   Roza Apart Avşa — Coastal Marketing Page
   ============================================================ */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--primary); color: #fff; }

/* ---------- Theme tokens ---------- */
:root {
  /* Sea palette */
  --sea-50:  #ecf6f7;
  --sea-100: #d4ecee;
  --sea-200: #a7d8dd;
  --sea-300: #6dbac4;
  --sea-400: #2f95a4;
  --sea-500: #0a7785;
  --sea-600: #066274;
  --sea-700: #074954;
  --sea-800: #053742;
  --sea-900: #042830;

  /* Sand */
  --sand-50:  #fefcf6;
  --sand-100: #fbf5e8;
  --sand-200: #f5ebd6;
  --sand-300: #e7d6ad;
  --sand-400: #d1b478;

  /* Accent */
  --gold:    #e6a23c;
  --gold-2:  #d68b1f;
  --coral:   #e8907b;

  /* Neutrals */
  --bg:        #fefcf6;
  --bg-alt:    #f7f2e6;
  --surface:   #ffffff;
  --text:      #0e2730;
  --muted:     #5a7280;
  --border:    rgba(7, 73, 84, 0.12);
  --border-2:  rgba(7, 73, 84, 0.18);

  --primary:    var(--sea-500);
  --primary-dk: var(--sea-700);

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(7, 73, 84, 0.06), 0 1px 2px rgba(7, 73, 84, 0.04);
  --sh-md: 0 8px 24px rgba(7, 73, 84, 0.08), 0 3px 6px rgba(7, 73, 84, 0.04);
  --sh-lg: 0 24px 48px rgba(7, 73, 84, 0.14), 0 8px 16px rgba(7, 73, 84, 0.05);
  --sh-xl: 0 40px 80px rgba(7, 73, 84, 0.20);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Layout */
  --container: 1180px;
  --container-pad: clamp(20px, 4vw, 40px);
  --section-pad: clamp(64px, 9vw, 120px);
  --header-h: 72px;

  --display: 'DM Serif Display', 'Playfair Display', Georgia, serif;
}

/* ---------- Containers / layout helpers ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--container-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section-pad { padding: var(--section-pad) 0; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sea-600);
  margin-bottom: 16px;
}
.kicker.light { color: rgba(255,255,255,.85); }
.kicker::before {
  content: "";
  width: 24px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  opacity: .6;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; border: 0; padding: 0;
  white-space: nowrap; clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden;
}
.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--sea-700); color: #fff;
  padding: 8px 14px; border-radius: 6px;
  z-index: 200;
}
.skip-link:focus { top: 8px; }

/* ---------- Typography scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.8vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); line-height: 1.18; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
em {
  font-style: italic;
  color: var(--sea-500);
}
.section-head {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }
.btn-sm { padding: 9px 16px; font-size: 0.88rem; }
.btn-block { width: 100%; }
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--sea-500), var(--sea-700));
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 73, 84, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(7, 73, 84, 0.35); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover { background: var(--sea-50); border-color: var(--sea-300); color: var(--sea-700); }

.btn-glass {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }

.btn-white {
  background: #fff;
  color: var(--sea-700);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,0,0,0.2); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-link {
  padding: 6px 0;
  color: var(--sea-600);
  font-weight: 600;
  border-radius: 0;
}
.btn-link:hover { color: var(--sea-700); }

.phone-pill { gap: 6px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  background: rgba(254, 252, 246, 0);
}
.site-header.is-scrolled {
  background: rgba(254, 252, 246, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(7, 73, 84, 0.08), 0 8px 24px rgba(7, 73, 84, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  max-width: calc(var(--container) + var(--container-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--sea-700);
  transition: color .25s ease;
}
.site-header:not(.is-scrolled) .brand { color: #fff; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sea-500), var(--sea-700));
  color: #fff;
}
.site-header.is-scrolled .brand-mark { background: linear-gradient(135deg, var(--sea-500), var(--sea-700)); }
.brand-mark svg { width: 24px; height: 24px; }
.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.brand-text small {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: .8;
  margin-top: 2px;
}

/* Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav a {
  position: relative;
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--text);
  padding: 6px 0;
  transition: color .2s ease;
}
.site-header:not(.is-scrolled) .primary-nav a { color: rgba(255,255,255,.92); }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: currentColor;
  transition: width .25s ease;
  border-radius: 2px;
}
.primary-nav a:hover::after { width: 100%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-header:not(.is-scrolled) .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.site-header:not(.is-scrolled) .btn-ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: #fff;
  color: #fff;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border-2);
  background: rgba(255,255,255,.6);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.site-header:not(.is-scrolled) .nav-toggle {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-image {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at top right, rgba(10, 119, 133, 0.25), transparent 55%),
    linear-gradient(180deg, rgba(4, 40, 48, 0.62) 0%, rgba(4, 40, 48, 0.45) 38%, rgba(4, 40, 48, 0.7) 100%);
}
.hero-content {
  width: 100%;
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: 80px;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: var(--r-pill);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: rise .9s ease both;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230,162,60,.25);
  animation: pulse 1.8s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 400;
  max-width: 880px;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  animation: rise 1s .1s ease both;
}
.hero-title em {
  font-style: italic;
  color: #ffd994;
  background: linear-gradient(120deg, #ffd994 0%, #ffe9c2 50%, #ffd994 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 640px;
  color: rgba(255,255,255,.92);
  line-height: 1.6;
  margin-bottom: 36px;
  animation: rise 1s .2s ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  animation: rise 1s .3s ease both;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: rise 1s .4s ease both;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-chips span:first-child {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scroll 1.8s ease-in-out infinite;
}

/* ---------- Wave divider ---------- */
.wave-divider {
  margin-top: -1px;
  color: var(--sand-100);
  line-height: 0;
}
.wave-divider svg {
  width: 100%; height: 60px;
  display: block;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--sand-100);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--sea-700);
}
.trust-strip svg {
  width: 22px; height: 22px;
  color: var(--gold-2);
  flex-shrink: 0;
}

/* ---------- Intro ---------- */
.intro {
  background: var(--bg);
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: flex-start;
}
.intro-side h2 em { display: block; }
.intro-body .lead {
  font-size: 1.18rem;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.55;
}
.intro-body p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.intro-body strong { color: var(--sea-700); }
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px dashed var(--border-2);
}
.intro-stats div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.intro-stats strong {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--sea-700);
  line-height: 1;
}
.intro-stats span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Rooms ---------- */
.rooms { background: var(--bg-alt); position: relative; }
.rooms::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(10,119,133,0.05), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(230,162,60,0.05), transparent 45%);
  pointer-events: none;
}
.rooms > .container { position: relative; }

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.room-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid rgba(255,255,255,.6);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.room-card-featured {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
  position: relative;
}
.room-card-featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .6;
}

.room-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sea-50);
}
.room-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.room-card:hover .room-media img { transform: scale(1.06); }
.room-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  color: var(--sea-700);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.room-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(230,162,60,.4);
}

.room-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 16px;
}
.room-body h3 { color: var(--sea-700); }
.room-desc { color: var(--muted); font-size: 0.96rem; line-height: 1.6; flex-grow: 1; }

.amenity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.amenity-pills li {
  display: inline-block;
  padding: 6px 12px;
  background: var(--sea-50);
  color: var(--sea-700);
  border-radius: var(--r-pill);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.room-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.room-cta .btn-block { width: auto; flex: 1; }

/* ---------- Advantages ---------- */
.advantages { background: var(--bg); }
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.advantage-card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.advantage-card::before {
  content: "";
  position: absolute;
  top: -50%; right: -50%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(10,119,133,0.06), transparent 70%);
  pointer-events: none;
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--sea-200);
}
.advantage-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sea-50), var(--sand-100));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sea-600);
  margin-bottom: 18px;
  position: relative;
}
.advantage-icon svg { width: 26px; height: 26px; }
.advantage-card h3 { margin-bottom: 8px; color: var(--sea-700); font-family: var(--display); }
.advantage-card p { color: var(--muted); font-size: 0.96rem; line-height: 1.6; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(ellipse at top left, rgba(255,255,255,0.08), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(230,162,60,0.15), transparent 50%),
    linear-gradient(135deg, var(--sea-700), var(--sea-900));
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner::before {
  top: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10,119,133,0.5), transparent 70%);
}
.cta-banner::after {
  bottom: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230,162,60,0.18), transparent 70%);
}
.cta-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 10px; }
.cta-banner h2 em { color: #ffd994; }
.cta-banner p { color: rgba(255,255,255,.86); font-size: 1.05rem; }
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--bg-alt); }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 11px 22px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1.5px solid var(--border-2);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all .2s ease;
}
.filter-btn:hover {
  border-color: var(--sea-400);
  color: var(--sea-700);
}
.filter-btn.is-active {
  background: var(--sea-700);
  color: #fff;
  border-color: var(--sea-700);
  box-shadow: 0 8px 18px rgba(7,73,84,.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  grid-auto-flow: dense;
}
.g-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: zoom-in;
  background: var(--sea-50);
  border: 0;
  padding: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.g-item.is-hidden {
  display: none;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.g-item:hover img { transform: scale(1.06); }
.g-item::after {
  content: "+";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--sea-700);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.g-item:hover::after { transform: translate(-50%,-50%) scale(1); }

/* Vary gallery item sizes for masonry-like layout */
.g-item:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1; }
.g-item:nth-child(7n+5) { grid-row: span 2; aspect-ratio: 3 / 4; }

/* ---------- Location ---------- */
.location { background: var(--bg); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}
.location-copy p { color: var(--muted); font-size: 1.04rem; margin-bottom: 28px; }
.location-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.location-points li {
  display: flex;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
}
.location-points svg {
  width: 22px; height: 22px;
  color: var(--sea-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.location-points strong {
  display: block;
  font-size: 0.94rem;
  color: var(--sea-700);
  margin-bottom: 2px;
}
.location-points span {
  font-size: 0.92rem;
  color: var(--muted);
}
.location-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  min-height: 420px;
  background: var(--sea-50);
  border: 1px solid var(--border);
}
.location-map iframe {
  width: 100%; height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg-alt); }
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: flex-start;
}
.faq-side h2 { margin-bottom: 14px; }
.faq-side p { color: var(--muted); margin-bottom: 22px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-list details[open] {
  border-color: var(--sea-300);
  box-shadow: var(--sh-sm);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--sea-800);
  position: relative;
  transition: background .2s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { background: var(--sand-50); }
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%; right: 22px;
  width: 14px; height: 14px;
  border-right: 2px solid var(--sea-600);
  border-bottom: 2px solid var(--sea-600);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s ease;
}
.faq-list details[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-list details p {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--bg);
  padding-bottom: calc(var(--section-pad) + 20px);
}
.contact-card {
  background: linear-gradient(135deg, var(--sea-700), var(--sea-900));
  color: #fff;
  padding: clamp(40px, 6vw, 72px);
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  box-shadow: var(--sh-xl);
  position: relative;
  overflow: hidden;
}
.contact-card::before, .contact-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.contact-card::before {
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(230,162,60,0.18), transparent 70%);
}
.contact-card::after {
  bottom: -180px; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(10,119,133,0.4), transparent 70%);
}
.contact-copy { position: relative; }
.contact-copy h2 { color: #fff; margin-bottom: 12px; }
.contact-copy h2 em { color: #ffd994; }
.contact-copy p { color: rgba(255,255,255,.86); }
.contact-cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-md);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
  color: #fff;
  text-align: left;
}
.contact-tile:hover {
  background: rgba(255,255,255,.16);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.32);
}
.contact-tile-static { cursor: default; }
.contact-tile-static:hover { transform: none; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.contact-tile-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  color: #ffd994;
  flex-shrink: 0;
}
.contact-tile-icon svg { width: 22px; height: 22px; }
.contact-tile strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-tile span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 2px;
}
.contact-tile em {
  display: block;
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 600;
  color: rgba(255,255,255,.95);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sea-900);
  color: rgba(255,255,255,.86);
  padding: 40px 0 30px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.footer-brand .brand-mark {
  background: rgba(255,255,255,.1);
  width: 44px; height: 44px;
  border-radius: 12px;
}
.footer-brand strong {
  font-family: var(--display);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 2px;
}
.footer-brand small {
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.04em;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.78);
  transition: color .2s ease;
}
.footer-nav a:hover { color: #ffd994; }
.footer-bottom {
  flex-basis: 100%;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
}

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.4), 0 4px 8px rgba(0,0,0,.15);
  z-index: 90;
  transition: transform .3s ease, box-shadow .3s ease;
}
.float-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 36px rgba(37,211,102,.55);
}
.float-whatsapp svg { width: 30px; height: 30px; }
.float-whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 25, 30, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox figure {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox figcaption {
  color: rgba(255,255,255,.86);
  font-size: 0.92rem;
}
.lightbox-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background .2s ease;
}
.lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }

/* ---------- Animations ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(230,162,60,.25); }
  50% { box-shadow: 0 0 0 10px rgba(230,162,60,0); }
}
@keyframes pulse-ring {
  0% { transform: scale(.95); opacity: .9; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes scroll {
  0%, 20% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

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

/* ---------- Mobile Navigation Open State ---------- */
body.nav-open { overflow: hidden; }

/* ============================================================
   Responsive breakpoints
   ============================================================ */

/* ===== Tablet (≤ 980px) ===== */
@media (max-width: 980px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .phone-pill span { display: none; }

  /* Mobile menu overlay */
  .primary-nav.is-open {
    display: flex !important;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    flex-direction: column;
    padding: 32px var(--container-pad);
    background: var(--sand-50);
    z-index: 70;
    align-items: stretch;
    gap: 4px;
    overflow-y: auto;
    animation: rise .4s ease;
  }
  .primary-nav.is-open a {
    color: var(--text) !important;
    padding: 16px 6px;
    font-size: 1.15rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
  }
  .primary-nav.is-open a::after { display: none; }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .room-grid {
    grid-template-columns: 1fr 1fr;
  }
  .room-card-featured { grid-column: span 2; }
  .advantage-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-banner-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cta-banner-actions {
    justify-content: flex-start;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-item:nth-child(7n+1) { grid-column: span 2; aspect-ratio: 1 / 1; }
  .g-item:nth-child(7n+5) { grid-row: auto; aspect-ratio: 4 / 3; }

  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-map, .location-map iframe { min-height: 320px; }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  .contact-cards { grid-template-columns: 1fr 1fr; }
}

/* ===== Mobile (≤ 640px) ===== */
@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  .header-cta .btn-ghost { display: none; }

  .hero { min-height: 90vh; min-height: 90svh; }
  .hero-content { padding-top: calc(var(--header-h) + 20px); padding-bottom: 60px; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-chips { gap: 6px; }
  .hero-chips li { padding: 8px 12px; font-size: 0.82rem; }
  .hero-eyebrow { font-size: 0.78rem; }
  .hero-scroll { display: none; }

  .trust-strip ul {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 18px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .trust-strip ul::-webkit-scrollbar { display: none; }
  .trust-strip li { flex-shrink: 0; }

  .room-grid { grid-template-columns: 1fr; }
  .room-card-featured { grid-column: auto; }
  .room-body { padding: 20px; }
  .room-cta { flex-direction: column; align-items: stretch; }
  .room-cta .btn-block { width: 100%; }
  .room-cta .btn-link { text-align: center; padding: 4px; }

  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-card { padding: 22px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .g-item:nth-child(7n+1) { grid-column: span 2; aspect-ratio: 4 / 3; }

  .intro-stats { grid-template-columns: 1fr 1fr; gap: 14px 20px; }
  .intro-stats strong { font-size: 1.6rem; }

  .contact { padding-bottom: 90px; }
  .contact-cards { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 6px; }

  .float-whatsapp { width: 56px; height: 56px; bottom: 16px; right: 16px; }
  .float-whatsapp svg { width: 26px; height: 26px; }

  .lightbox { padding: 50px 16px; }
  .lightbox-nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
}

/* ===== Tiny phones (≤ 380px) ===== */
@media (max-width: 380px) {
  .header-cta .btn { padding: 9px 14px; font-size: 0.84rem; }
  .brand-text small { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item:nth-child(7n+1) { grid-column: auto; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
