/* ============================================
   NIKOS BNB — Editorial Mediterranean Design System
   Family-run since 1995 · Faliraki, Rhodes
   ============================================ */

:root {
  /* Mediterranean palette — warm and rooted */
  --aegean-deep: #0E3F66;
  --aegean: #1A5F8E;
  --aegean-mid: #3D86B0;
  --aegean-light: #79B6D6;
  --aegean-pale: #E8F1F8;

  --terracotta: #B84A2E;
  --terracotta-soft: #D86E50;
  --terracotta-light: #ECA487;
  --terracotta-pale: #FBE8DE;

  --olive: #6B7F3E;
  --olive-soft: #8FA561;

  --cream: #FAF6EE;
  --sand: #EFE5CE;
  --sand-soft: #F5EDDB;
  --paper: #FFFFFF;

  --ink: #1A1F26;
  --ink-soft: #4A5260;
  --ink-muted: #7A8290;
  --line: rgba(15, 63, 102, 0.10);
  --line-strong: rgba(15, 63, 102, 0.20);

  --shadow-sm: 0 1px 2px rgba(15, 63, 102, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 63, 102, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 63, 102, 0.10);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;

  --container: 1280px;
  --container-narrow: 1080px;

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', 'Helvetica Neue', sans-serif;
}

/* ============================================
   Reset & Base
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-variation-settings: "SOFT" 50, "WONK" 0;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; line-height: 1.3; }

p { color: var(--ink-soft); }

.kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--terracotta);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.serif { font-family: var(--font-display); font-style: italic; }

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

@media (max-width: 768px) {
  section { padding: 64px 0; }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--paper);
}
.btn-primary:hover { background: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-dark {
  background: var(--aegean-deep);
  color: var(--paper);
}
.btn-dark:hover { background: var(--ink); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}

.btn-sm { padding: 10px 18px; font-size: 0.875rem; }

/* ============================================
   Announcement Bar
   ============================================ */

.announcement {
  background: var(--aegean-deep);
  color: var(--paper);
  text-align: center;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  padding: 10px 24px;
}

.announcement strong { font-weight: 500; color: var(--terracotta-light); }

/* ============================================
   Header
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  text-decoration: none;
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.brand-mark {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-sub {
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-weight: 500;
  padding-left: 14px;
  border-left: 1px solid var(--line-strong);
  align-self: center;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-main a {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}
.nav-main a:hover { color: var(--ink); }
.nav-main a.active { color: var(--ink); }
.nav-main a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 1px;
  background: var(--terracotta);
}

.header-cta { display: flex; align-items: center; gap: 16px; }

@media (max-width: 880px) {
  .nav-main { display: none; }
  .site-header .container { height: 64px; }
  .brand-sub { display: none; }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-start;
  background: linear-gradient(180deg, #9ec5e0 0%, #b8d4e6 60%, #d2e3ed 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero-illustration {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background-image: url('images/hero-faliraki-illustration.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.75) 25%,
    rgba(255, 255, 255, 0.30) 45%,
    rgba(255, 255, 255, 0.0) 60%);
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  padding: 90px 0 64px;
  color: var(--aegean-deep);
  max-width: 580px;
}

.hero-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--aegean-deep);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0.85;
}
.hero-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--aegean-deep);
  opacity: 0.5;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--aegean-deep);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 14ch;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--aegean-deep);
  display: block;
}

.hero-sub {
  max-width: 460px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--aegean-deep);
  margin-bottom: 0;
  font-weight: 500;
}

/* ============================================
   Booking Widget
   ============================================ */

.booking-widget {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  margin-top: -56px;
  z-index: 10;
}

.booking-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.booking-widget-header h3 {
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.booking-promo {
  font-size: 0.8125rem;
  color: var(--terracotta);
  font-weight: 500;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-field label {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

.booking-field input,
.booking-field select {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: border-color 0.2s ease;
}
.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: var(--aegean);
  background: var(--paper);
}

.booking-submit {
  height: 100%;
  min-height: 42px;
  padding: 0 28px;
  background: var(--terracotta);
  color: var(--paper);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: background 0.2s ease;
}
.booking-submit:hover { background: var(--ink); }

@media (max-width: 880px) {
  .booking-widget { margin-top: -32px; padding: 20px; }
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .booking-submit { grid-column: 1 / -1; padding: 14px; }
}

/* ============================================
   Trust Strip
   ============================================ */

.trust-strip {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: none; }

.trust-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--aegean-deep);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.trust-value .star { color: var(--terracotta); font-size: 1.25rem; }

.trust-label {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 24px 16px; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ============================================
   Section Header
   ============================================ */

.section-header {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.center .kicker { justify-content: center; }
.section-header h2 { margin: 16px 0 16px; }
.section-header p { font-size: 1.0625rem; line-height: 1.7; color: var(--ink-soft); }

/* ============================================
   Welcome Section
   ============================================ */

.welcome {
  background: var(--cream);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.welcome-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--aegean-pale);
  background-image: url('images/lobby-interior.jpg');
  background-size: cover;
  background-position: center;
}

.welcome-image::after {
  content: "";
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--ink);
}
.welcome-image::after { content: "“ Where you'll spend your mornings ”"; }

.welcome-text .kicker { margin-bottom: 24px; }
.welcome-text h2 {
  margin-bottom: 28px;
  max-width: 14ch;
}

.welcome-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--aegean-deep);
  border-left: 2px solid var(--terracotta);
  padding-left: 24px;
  margin: 32px 0;
  font-weight: 300;
}
.welcome-quote span {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 12px;
}

.welcome-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.signature {
  margin-top: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--aegean-deep);
  font-weight: 400;
}

@media (max-width: 880px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 48px; }
  .welcome-image { aspect-ratio: 4/3; }
}

/* ============================================
   Rooms Preview / Cards
   ============================================ */

.rooms-section { background: var(--paper); }

.rooms-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.room-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
}
.room-card:hover { transform: translateY(-4px); }

.room-image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--aegean-pale);
  position: relative;
}

.room-card.featured { grid-row: span 2; }
.room-card.featured .room-image { aspect-ratio: 3/4; }

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--terracotta);
  color: var(--paper);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}

.room-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: none;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.room-card.featured .room-body { padding: 32px; }

.room-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--aegean-deep);
}
.room-card.featured .room-name { font-size: 2rem; }

.room-meta {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.room-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
  flex: 1;
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.room-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
}
.room-price span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 6px;
}

.room-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.room-link::after { content: "→"; transition: transform 0.2s ease; }
.room-card:hover .room-link::after { transform: translateX(4px); }

@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .room-card.featured { grid-row: auto; grid-column: span 2; }
  .room-card.featured .room-image { aspect-ratio: 16/9; }
}

@media (max-width: 640px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card.featured { grid-column: auto; }
}

/* ============================================
   Location Section
   ============================================ */

.location {
  background: var(--cream);
  position: relative;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.location-text h2 { margin-bottom: 32px; max-width: 14ch; }

.location-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.location-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.location-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 400;
}

.location-detail {
  font-size: 0.875rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.location-detail strong {
  color: var(--terracotta);
  font-weight: 500;
}

.location-image {
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-image: url('images/swim-up-terrace.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

@media (max-width: 880px) {
  .location-grid { grid-template-columns: 1fr; gap: 48px; }
  .location-image { aspect-ratio: 4/3; }
}

/* ============================================
   Why Direct Section
   ============================================ */

.why-direct {
  background: var(--aegean-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.why-direct::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-direct .section-header h2 { color: var(--paper); }
.why-direct .section-header p { color: rgba(255,255,255,0.75); }
.why-direct .kicker { color: var(--terracotta-light); }
.why-direct .kicker::before { background: var(--terracotta-light); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--terracotta-light);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.benefit h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--paper);
}

.benefit p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 880px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 540px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Reviews Section
   ============================================ */

.reviews { background: var(--sand-soft); }

.reviews-meta {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.review-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.review-platform strong { font-family: var(--font-display); font-size: 1.125rem; color: var(--ink); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.review-card {
  background: var(--paper);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.review-rating {
  color: var(--terracotta);
  letter-spacing: 4px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 24px;
  flex: 1;
}

.review-author {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review-author strong { color: var(--ink); font-weight: 500; }

@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Newsletter
   ============================================ */

.newsletter {
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--line);
}

.newsletter h2 { max-width: 16ch; margin: 16px auto 16px; }
.newsletter p { max-width: 50ch; margin: 0 auto 32px; }

.newsletter-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-size: 0.9375rem;
}

.newsletter-form input:focus { outline: none; border-color: var(--aegean); }

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--aegean-deep);
  color: rgba(255,255,255,0.78);
  padding: 80px 0 32px;
  font-size: 0.9375rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand h3 {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.625rem;
  margin-bottom: 16px;
  font-weight: 400;
}

.footer-brand p { color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 32ch; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(255,255,255,0.78);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ Section
   ============================================ */

.faq {
  background: var(--paper);
}

.faq .section-header {
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--terracotta);
}

.faq-item summary > span:first-child {
  flex: 1;
  padding-right: 24px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: all 0.25s ease;
  font-family: var(--font-body);
  line-height: 1;
}

.faq-item[open] .faq-icon {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--paper);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 8px 28px;
  max-width: 60ch;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.faq-answer p strong {
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 640px) {
  .faq-item summary {
    font-size: 1.0625rem;
    padding: 20px 4px;
  }
  .faq-answer {
    padding: 0 4px 24px;
  }
}

/* ============================================
   WhatsApp Float Button
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
  z-index: 90;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ============================================
   ROOMS PAGE
   ============================================ */

.page-hero {
  background: var(--aegean-deep);
  color: var(--paper);
  padding: 80px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/hero-swim-up-pool.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.9);
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }

.page-hero .kicker { color: var(--terracotta-light); margin-bottom: 24px; }
.page-hero .kicker::before { background: var(--terracotta-light); }
.page-hero h1 {
  color: var(--paper);
  font-weight: 300;
  font-style: italic;
  max-width: 16ch;
  margin: 0 auto 24px;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 56ch;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* Editorial room spreads */
.room-spread {
  padding: 96px 0;
  background: var(--cream);
}
.room-spread:nth-child(even) { background: var(--paper); }

.spread-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.room-spread:nth-child(odd) .spread-grid { direction: rtl; }
.room-spread:nth-child(odd) .spread-content,
.room-spread:nth-child(odd) .spread-image { direction: ltr; }

.spread-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--aegean-pale);
  background-size: cover;
  background-position: center;
  position: relative;
}

.spread-content .kicker { margin-bottom: 20px; }
.spread-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 8px;
  color: var(--aegean-deep);
}

.spread-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.spread-content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin: 28px 0 36px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.amenity-dot {
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
}

.spread-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
}

.spread-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--aegean-deep);
}
.spread-price span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 8px;
}

.spread-actions { display: flex; gap: 12px; }

@media (max-width: 880px) {
  .spread-grid { grid-template-columns: 1fr; gap: 32px; direction: ltr !important; }
  .room-spread { padding: 64px 0; }
  .amenities-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Direct Booking Banner (rooms page)
   ============================================ */

.direct-banner {
  background: var(--terracotta);
  color: var(--paper);
  padding: 64px 0;
  text-align: center;
}

.direct-banner h2 {
  color: var(--paper);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 16px;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.direct-banner p {
  color: rgba(255,255,255,0.9);
  max-width: 56ch;
  margin: 0 auto 32px;
  font-size: 1.0625rem;
}

.direct-banner .btn-primary {
  background: var(--paper);
  color: var(--terracotta);
}
.direct-banner .btn-primary:hover { background: var(--ink); color: var(--paper); }

/* ============================================
   Subtle motion
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
  .hero-title, .hero-sub, .hero-kicker {
    animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
  }
  .hero-kicker { animation-delay: 0.1s; }
  .hero-title { animation-delay: 0.25s; }
  .hero-sub { animation-delay: 0.45s; }

  @keyframes rise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
