/*
Theme Name: Safiri Diani Expeditions
Theme URI: https://safiridiani.com
Author: Safiri Diani Expeditions
Author URI: https://safiridiani.com
Description: A premium, luxury travel theme for Safiri Diani Expeditions — coastal experiences in Diani Beach, Kenya. Ocean-inspired, conversion-focused, and beautifully crafted for the modern traveller.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: safiri-diani
Tags: travel, luxury, one-page, custom-colors, custom-logo, full-width-template, responsive-layout, featured-images

This theme, like WordPress, is licensed under the GPL.
*/

/* ============================================================
   GLOBAL RESET & BASE
============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: #FFFFFF;
  color: #1a2d45;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: color 0.2s; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   CSS CUSTOM PROPERTIES (BRAND TOKENS)
============================================================ */
:root {
  --navy:          #0B1F3A;
  --navy-light:    #122845;
  --navy-deep:     #071629;
  --orange:        #C8521A;
  --orange-brand:  #E8622A;
  --orange-light:  #F07542;
  --gold:          #C9A84C;
  --gold-light:    #DFC06B;
  --white:         #FFFFFF;
  --sand:          #F5F0E8;
  --sand-dark:     #EDE5D5;
  --text-dark:     #1a2d45;
  --text-mid:      #4a6080;
  --text-light:    #8fa5bf;

  --font-serif:    'Cinzel', Georgia, serif;
  --font-body:     'Poppins', 'Segoe UI', sans-serif;

  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     12px;
  --radius-xl:     16px;

  --shadow-sm:     0 2px 12px rgba(11,31,58,0.06);
  --shadow-md:     0 4px 24px rgba(11,31,58,0.10);
  --shadow-lg:     0 8px 40px rgba(11,31,58,0.14);
  --shadow-xl:     0 16px 60px rgba(11,31,58,0.18);

  --transition:    all 0.3s ease;
  --section-pad:   100px 5%;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 0.95rem; line-height: 1.85; color: var(--text-mid); }

/* ============================================================
   UTILITY CLASSES
============================================================ */
.container          { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.container-narrow   { max-width: 780px; margin: 0 auto; padding: 0 5%; }
.text-center        { text-align: center; }
.text-white         { color: var(--white) !important; }
.text-gold          { color: var(--gold) !important; }
.text-navy          { color: var(--navy) !important; }

.section            { padding: var(--section-pad); }
.section-sand       { background: var(--sand); }
.section-navy       { background: var(--navy); }
.section-navy-deep  { background: var(--navy-deep); }

/* ============================================================
   EYEBROW / LABEL
============================================================ */
.eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; font-weight: 500;
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
  flex-shrink: 0;
}
.eyebrow-left { justify-content: flex-start; }
.eyebrow-left::before { display: none; }

.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--orange-brand));
  margin: 18px auto 0;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block; padding: 14px 36px;
  border-radius: var(--radius-sm); font-weight: 600;
  font-size: 14px; letter-spacing: 0.5px; border: none;
  transition: var(--transition); font-family: var(--font-body);
  cursor: pointer; text-align: center;
}
.btn-primary {
  background: var(--orange-brand); color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,98,42,0.4);
  color: var(--white);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold); color: var(--navy-deep);
}
.btn-gold:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-navy {
  background: var(--navy); color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); }
.btn-lg { padding: 16px 44px; font-size: 15px; }
.btn-full { width: 100%; display: block; }

/* ============================================================
   NAVIGATION
============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 76px; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7, 22, 41, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.site-logo { display: flex; align-items: center; }
.site-logo img { height: 52px; width: auto; object-fit: contain; }
.site-logo .logo-text-fallback {
  font-family: var(--font-serif); color: var(--white);
  font-size: 18px; font-weight: 700; letter-spacing: 1px;
}

#primary-menu {
  display: flex; align-items: center; gap: 28px;
}
#primary-menu > li > a {
  color: rgba(255,255,255,0.82);
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  position: relative;
}
#primary-menu > li > a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s ease;
}
#primary-menu > li > a:hover { color: var(--gold); }
#primary-menu > li > a:hover::after { transform: scaleX(1); }
#primary-menu > li.current-menu-item > a { color: var(--gold); }
#primary-menu > li.current-menu-item > a::after { transform: scaleX(1); }

.nav-book-btn {
  background: var(--orange-brand) !important;
  color: var(--white) !important;
  padding: 9px 22px; border-radius: var(--radius-sm);
  font-weight: 600 !important;
}
.nav-book-btn::after { display: none !important; }
.nav-book-btn:hover { background: var(--orange-light) !important; }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: none; border: none;
  flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,22,41,0.50) 0%,
    rgba(7,22,41,0.30) 45%,
    rgba(7,22,41,0.85) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px; max-width: 860px;
  animation: fadeUp 1.2s ease 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.14);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 20px; border-radius: 30px; margin-bottom: 28px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}
.hero-content h1 {
  color: var(--white); margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero-content h1 em { color: var(--gold); font-style: normal; }
.hero-content .hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82); margin-bottom: 44px;
  font-weight: 300; line-height: 1.85;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45); font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; z-index: 2;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{ opacity:0.3 } 50%{ opacity:1 } }

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 4px; }
.section-header p { margin-top: 14px; }

/* ============================================================
   EXPERIENCE CARDS
   — Cards use flex-column so the CTA button is always
     pinned to the bottom regardless of description length.
============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch; /* every grid cell stretches to row height */
}
.exp-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
  border: 1px solid rgba(11,31,58,0.05);
  /* KEY FIX: flex column so card-body can push button to bottom */
  display: flex;
  flex-direction: column;
}
.exp-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-xl);
}
.exp-card .card-img {
  height: 230px; overflow: hidden; position: relative;
  flex-shrink: 0; /* image never squishes */
}
.exp-card .card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.exp-card:hover .card-img img { transform: scale(1.08); }
.card-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--orange-brand); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 20px; text-transform: uppercase;
}
.card-body {
  padding: 24px 26px;
  /* KEY FIX: flex column, grows to fill available height */
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body h3 { color: var(--navy); margin-bottom: 10px; }
.card-body p  {
  margin-bottom: 18px;
  flex: 1; /* description expands, pushing meta+button down */
}
.card-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid rgba(11,31,58,0.07);
  margin-bottom: 16px;
  margin-top: auto; /* pushes meta row to the bottom of the description area */
}
.card-duration { font-size: 12px; color: var(--text-light); }
.card-price { font-family: var(--font-serif); font-size: 13px; color: var(--gold); font-weight: 600; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.why-item { text-align: center; padding: 32px 24px; }
.why-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg,rgba(201,168,76,0.12),rgba(200,82,26,0.08));
  border: 1.5px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px;
}
.why-item h4 { margin-bottom: 10px; font-size: 0.95rem; }

/* ============================================================
   HIGHLIGHT SPLIT SECTION
============================================================ */
.highlight-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.highlight-img { overflow: hidden; }
.highlight-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.highlight-img:hover img { transform: scale(1.04); }
.highlight-content {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.highlight-content h2 { text-align: left; }

/* ============================================================
   MARQUEE STATS BAND
============================================================ */
.stats-band {
  background: var(--gold);
  padding: 28px 5%;
  display: flex; justify-content: center; gap: 64px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem; font-weight: 700;
  color: var(--navy-deep); line-height: 1;
}
.stat-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(7,22,41,0.65); margin-top: 4px;
}

/* ============================================================
   MOSAIC GALLERY (Creative Layout)
============================================================ */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 10px;
}
.mosaic-item { overflow: hidden; border-radius: var(--radius-md); position: relative; }
.mosaic-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.mosaic-item:hover img { transform: scale(1.07); }
.mosaic-item:nth-child(1) { grid-column: 1/5; grid-row: 1/3; }
.mosaic-item:nth-child(2) { grid-column: 5/8; grid-row: 1/2; }
.mosaic-item:nth-child(3) { grid-column: 8/13; grid-row: 1/3; }
.mosaic-item:nth-child(4) { grid-column: 5/8; grid-row: 2/3; }
.mosaic-item:nth-child(5) { grid-column: 1/5; grid-row: 3/4; }
.mosaic-item:nth-child(6) { grid-column: 5/10; grid-row: 3/4; }
.mosaic-item:nth-child(7) { grid-column: 10/13; grid-row: 3/4; }
.mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,22,41,0.75) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 18px;
}
.mosaic-item:hover .mosaic-overlay { opacity: 1; }
.mosaic-caption { color: var(--white); font-size: 12px; font-weight: 500; letter-spacing: 0.3px; }

/* ============================================================
   ROMANTIC CARDS — flex-column so button always bottom-aligns
============================================================ */
.romantic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
}
.romantic-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.romantic-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.romantic-card .card-img { flex-shrink: 0; }
.romantic-card .card-body {
  display: flex; flex-direction: column; flex: 1; padding: 24px 26px;
}
.romantic-card .card-body h3 { color: var(--navy); margin-bottom: 10px; }
.romantic-card .card-body p  { flex: 1; margin-bottom: 18px; }
.romantic-card .card-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid rgba(11,31,58,0.07);
  margin-bottom: 16px; margin-top: auto;
}

/* ============================================================
   ROMANTIC / FULL-WIDTH FEATURE
============================================================ */
.romantic-feature {
  position: relative; height: 70vh; min-height: 520px;
  display: flex; align-items: center; overflow: hidden;
}
.romantic-feature-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s ease;
}
.romantic-feature:hover .romantic-feature-bg { transform: scale(1.03); }
.romantic-feature::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(7,22,41,0.88) 40%, rgba(7,22,41,0.2) 100%);
}
.romantic-feature-content {
  position: relative; z-index: 2; padding: 0 8%;
  max-width: 680px;
}
.romantic-feature-content h2 { color: var(--white); margin-bottom: 20px; }
.romantic-feature-content p  { color: rgba(255,255,255,0.72); margin-bottom: 36px; line-height: 1.9; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
}
.testi-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 30px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(11,31,58,0.05); position: relative;
  display: flex; flex-direction: column; /* button/author stays at bottom */
}
.testi-card::before {
  content: '"'; font-family: var(--font-serif); font-size: 80px;
  color: var(--gold); opacity: 0.18; position: absolute;
  top: 8px; left: 22px; line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testi-card p { margin-bottom: 22px; font-size: 0.875rem; flex: 1; } /* review text grows */
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; } /* always at bottom */
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange-brand));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); color: var(--white);
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.testi-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.testi-loc  { font-size: 0.75rem; color: var(--text-light); }

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  padding: 80px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band .sub { color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.cta-phone { font-family: var(--font-serif); font-size: 2rem; color: var(--gold); display: block; margin-bottom: 28px; }

/* ============================================================
   CONTACT FORM
============================================================ */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: start;
}
.contact-info h3 { margin-bottom: 20px; }
.contact-detail {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid rgba(11,31,58,0.08);
  font-size: 0.9rem;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold), var(--orange-brand));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-icon-label { font-weight: 600; color: var(--navy); font-size: 0.85rem; }
.contact-icon-val   { color: var(--text-mid); font-size: 0.875rem; }

.form-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 40px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11,31,58,0.06);
}
.form-card h3 { margin-bottom: 26px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-mid);
  margin-bottom: 7px; font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid rgba(11,31,58,0.12); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 14px;
  color: var(--text-dark); background: var(--white);
  transition: border-color 0.25s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   PAGE HERO (sub-pages)
============================================================ */
.page-hero {
  height: 45vh; min-height: 340px;
  position: relative; display: flex; align-items: center;
  padding: 76px 5% 0;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(7,22,41,0.88), rgba(7,22,41,0.4));
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 { color: var(--white); margin-bottom: 10px; }
.page-hero-content p  { color: rgba(255,255,255,0.65); font-size: 1rem; }

/* ============================================================
   EXPERIENCE DETAIL
============================================================ */
.detail-layout {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 60px; padding: 60px 5%; max-width: 1200px; margin: 0 auto;
}
.detail-section { margin-bottom: 44px; }
.detail-section h3 {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-size: 1.1rem;
}
.detail-section h3::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.includes-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(11,31,58,0.06);
  font-size: 0.875rem; color: var(--text-mid);
}
.includes-list li::before {
  content: '✓'; width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--gold), var(--orange-brand));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.booking-sidebar {
  position: sticky; top: 90px;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(11,31,58,0.07);
}
.sidebar-top { background: var(--navy); padding: 30px; text-align: center; }
.sidebar-price-label { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.sidebar-price { font-family: var(--font-serif); font-size: 2.2rem; color: var(--gold); font-weight: 700; }
.sidebar-price-note { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 4px; }
.sidebar-body { background: var(--white); padding: 28px; }
.sidebar-row {
  display: flex; justify-content: space-between; padding: 11px 0;
  border-bottom: 1px solid rgba(11,31,58,0.07); font-size: 13px;
}
.sidebar-row span:first-child { color: var(--text-light); }
.sidebar-row span:last-child  { color: var(--navy); font-weight: 600; }
.sidebar-cta-area { margin-top: 22px; }

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: var(--navy-deep);
  padding: 64px 5% 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand-logo img { height: 60px; width: auto; object-fit: contain; }
.footer-brand-text {
  color: rgba(255,255,255,0.45); font-size: 0.875rem;
  line-height: 1.85; margin: 16px 0 24px; max-width: 300px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 15px;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
}
.social-btn:hover { background: var(--orange-brand); color: white; }
.footer-col h5 {
  font-family: var(--font-serif); font-size: 11px; letter-spacing: 2.5px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.48); font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.28); font-size: 12px; }
.footer-bottom span { color: var(--gold); }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: all 0.3s; text-decoration: none;
  animation: waBounce 3s ease-in-out infinite;
}
@keyframes waBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.whatsapp-float:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 8px 24px rgba(37,211,102,0.6);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 200px);
  }
  .mosaic-item:nth-child(1) { grid-column: 1/4; grid-row: 1/3; }
  .mosaic-item:nth-child(2) { grid-column: 4/7; grid-row: 1/2; }
  .mosaic-item:nth-child(3) { grid-column: 4/7; grid-row: 2/3; }
  .mosaic-item:nth-child(4) { grid-column: 1/3; grid-row: 3/4; }
  .mosaic-item:nth-child(5) { grid-column: 3/5; grid-row: 3/4; }
  .mosaic-item:nth-child(6) { grid-column: 5/7; grid-row: 3/4; }
  .mosaic-item:nth-child(7) { grid-column: 1/7; grid-row: 4/5; }
}

@media (max-width: 900px) {
  .highlight-split { grid-template-columns: 1fr; }
  .highlight-content { padding: 48px 36px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: relative; top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 5%; }
  #primary-menu { display: none; flex-direction: column; position: fixed; top: 76px; left: 0; right: 0; background: rgba(7,22,41,0.98); padding: 24px; gap: 4px; }
  #primary-menu.open { display: flex; }
  #primary-menu > li > a { font-size: 16px; padding: 12px 0; display: block; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .menu-toggle { display: flex; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic-item { grid-column: auto !important; grid-row: auto !important; }
  .mosaic-item img { height: 200px; }
  .romantic-feature-content { padding: 0 5%; }
  .stats-band { gap: 24px; }
  .cta-phone { font-size: 1.5rem; }
}

/* ============================================================
   WORDPRESS CORE (keep these last)
============================================================ */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--text-light); text-align: center; padding: 4px; }
.sticky { border-left: 3px solid var(--gold); padding-left: 16px; }
.bypostauthor {}
.alignnone  { margin: 0; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft  { float: left; margin: 0 16px 16px 0; }
.alignright { float: right; margin: 0 0 16px 16px; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
