/* ============================================================
   KORONA AGOY — site styles
   Palette: шалфейный · охра · графит · кремовый · янтарь
   ============================================================ */

:root {
  /* Средиземноморская пастель — палитра из coast-hero (закат над Чёрным морем) */
  --primary: #8FAEB0;       /* мягкий шалфей-морская волна */
  --primary-dark: #5A7A7C;  /* глубокий приморский */
  --primary-light: #B5CACC; /* пастельная вода */
  --secondary: #E0A78A;     /* персиково-коралловый закат */
  --secondary-light: #F2C9AB;
  --dark: #3D3530;          /* тёплый графит (не чёрный) */
  --dark-2: #2A2521;
  --light: #F7F0E2;         /* кремовый песок */
  --light-2: #EFE5D0;
  --light-3: #FBF7EC;
  --accent: #C57B5A;        /* терракотовый — CTA */
  --accent-dark: #A55F40;
  --mute: #8A7F73;          /* тёплый таупе */
  --lines: #E5DAC4;
  --shadow-sm: 0 2px 8px rgba(61, 53, 48, 0.06);
  --shadow-md: 0 8px 32px rgba(61, 53, 48, 0.12);
  --container: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(40px, 6vw, 80px); }
h2 { font-size: clamp(32px, 4vw, 56px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 20px; }
h5 { font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.15em; }
em { font-style: italic; color: var(--secondary-light); }

.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}
.kicker-light { color: var(--secondary-light); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--light);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(245, 239, 226, 0.4);
}
.btn-ghost:hover {
  background: rgba(245, 239, 226, 0.08);
  border-color: var(--light);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
  background: var(--dark);
  color: var(--light);
}
.btn-sm:hover { background: var(--primary); }
.btn-full { width: 100%; padding: 18px; font-size: 16px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #F4ECDA;
  z-index: 100;
  border-bottom: 1px solid #E5DAC4;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6B7B4F;
  text-decoration: none;
}
.logo-img {
  width: auto;
  height: 52px;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.logo-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6B7B4F;
}
.logo-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8A9170;
}
.logo-sep { color: #C57B5A; margin: 0 4px; font-weight: 400; }
/* legacy support for old .logo-mark class (used in footer) */
.logo-mark {
  color: #6B7B4F;
  font-size: 28px;
  line-height: 1;
}
.nav-menu {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.nav-menu a {
  color: var(--dark);
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .25s;
}
.nav-menu a:hover { color: var(--accent); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta { padding: 10px 22px; font-size: 14px; }
.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 32px; height: 32px;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--dark);
  margin: 5px auto;
  transition: all .25s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--light);
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 65% 45%, #4C5F61 0%, #2E3B3D 65%, #1F2829 100%);
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-bg-illustration img {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  width: auto;
  height: 115%;
  max-height: 115%;
  object-fit: contain;
  opacity: 0.88;
  filter: drop-shadow(0 12px 36px rgba(0, 0, 0, 0.55));
}
.hero-bg-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(31, 40, 41, 0.78) 0%, rgba(31, 40, 41, 0.55) 38%, rgba(31, 40, 41, 0.18) 65%, rgba(31, 40, 41, 0) 100%),
    linear-gradient(180deg, rgba(31, 40, 41, 0) 60%, rgba(31, 40, 41, 0.45) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 32px 120px;
  max-width: 760px;
}
.hero h1 {
  font-weight: 500;
  margin-bottom: 24px;
}
.hero h1 em {
  color: var(--secondary-light);
  font-style: italic;
}
.lede {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
  color: rgba(245, 239, 226, 0.88);
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  border-top: 1px solid rgba(245, 239, 226, 0.2);
  padding-top: 24px;
  max-width: 520px;
}
.hero-meta strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--secondary-light);
  font-weight: 500;
  margin-bottom: 2px;
}
.hero-meta span {
  display: block;
  font-size: 13px;
  color: rgba(245, 239, 226, 0.65);
  letter-spacing: 0.04em;
}

/* ============================================================
   ONLINE CONSULTANT — floating launcher + messenger picker
   ============================================================ */
.chat-launcher {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 1000;
  font-family: 'Inter Tight', sans-serif;
}
.chat-fab {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  color: var(--light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(165, 95, 64, 0.45), 0 2px 8px rgba(61, 53, 48, 0.18);
  transition: transform .2s ease, background .2s ease;
}
.chat-fab:hover { background: var(--accent-dark); transform: scale(1.04); }
.chat-fab:active { transform: scale(0.96); }
.chat-fab-bubble, .chat-fab-close {
  width: 26px; height: 26px;
  position: absolute;
  transition: opacity .18s ease, transform .25s ease;
}
.chat-fab-bubble {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.08));
}
.chat-fab-close { opacity: 0; transform: rotate(-90deg); }
.chat-launcher.open .chat-fab-bubble { opacity: 0; transform: rotate(90deg); }
.chat-launcher.open .chat-fab-close { opacity: 1; transform: rotate(0); }
.chat-fab-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: chatPulse 2.8s ease-out infinite;
  pointer-events: none;
}
.chat-launcher.open .chat-fab-pulse { display: none; }
@keyframes chatPulse {
  0%   { opacity: 0.5; transform: scale(1); }
  70%  { opacity: 0; transform: scale(1.35); }
  100% { opacity: 0; transform: scale(1.35); }
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 320px;
  background: var(--light);
  border: 1px solid var(--lines);
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(61, 53, 48, 0.2), 0 4px 12px rgba(61, 53, 48, 0.08);
  padding: 20px;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.chat-launcher.open .chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chat-panel-head { margin-bottom: 14px; }
.chat-panel-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 4px;
}
.chat-panel-sub {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.45;
}
.chat-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 4px;
  margin-bottom: 8px;
  background: white;
  border: 1px solid var(--lines);
  color: var(--dark);
  text-decoration: none;
  transition: border-color .18s ease, transform .15s ease, background .18s ease;
}
.chat-option:hover { transform: translateX(2px); }
.chat-option-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.chat-option-icon svg { width: 20px; height: 20px; }
.chat-icon-wa   { background: #25D366; }
.chat-icon-tg   { background: #2AABEE; }
.chat-icon-call { background: var(--primary-dark); }
.chat-wa:hover   { border-color: #25D366; }
.chat-tg:hover   { border-color: #2AABEE; }
.chat-call:hover { border-color: var(--primary); }
.chat-option-body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.chat-option-body strong {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
}
.chat-option-body em {
  font-size: 12px;
  font-style: normal;
  color: var(--mute);
}
.chat-panel-foot {
  margin-top: 10px;
  font-size: 11px;
  color: var(--mute);
  line-height: 1.45;
  text-align: center;
}

/* Telegram option styled as a toggle button (no underline / clear cursor) */
.chat-tg {
  width: 100%;
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.chat-option-caret {
  margin-left: auto;
  color: var(--mute);
  font-size: 12px;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.chat-tg[aria-expanded="true"] .chat-option-caret { transform: rotate(180deg); }

/* Inline lead form expansion */
.chat-tg-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  margin: -4px 0 10px;
  background: rgba(143, 174, 176, 0.08);
  border: 1px solid var(--lines);
  border-radius: 4px;
}
.chat-tg-form[hidden] { display: none; }
.tg-field { display: flex; flex-direction: column; gap: 4px; }
.tg-field > span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}
.tg-field input,
.tg-field textarea {
  padding: 9px 12px;
  border: 1px solid var(--lines);
  border-radius: 3px;
  background: white;
  color: var(--dark);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s;
  resize: vertical;
}
.tg-field input:focus,
.tg-field textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.tg-submit {
  padding: 11px 14px;
  background: #2AABEE;
  color: white;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.tg-submit:hover { background: #1d8fd1; }
.tg-submit:active { transform: scale(0.98); }
.tg-submit:disabled { background: #93c8e2; cursor: wait; }
.tg-status {
  padding: 10px 12px;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}
.tg-status.ok {
  background: rgba(107, 208, 136, 0.16);
  color: #2e7a4a;
  border: 1px solid rgba(107, 208, 136, 0.4);
}
.tg-status.error {
  background: rgba(220, 80, 80, 0.1);
  color: #a02a2a;
  border: 1px solid rgba(220, 80, 80, 0.3);
}
/* ---- Auto-popup teaser (flies out after ~60s) ---- */
.chat-teaser {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 290px;
  background: var(--light);
  border: 1px solid var(--lines);
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(61, 53, 48, 0.2), 0 4px 12px rgba(61, 53, 48, 0.08);
  padding: 16px 16px 14px;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s cubic-bezier(.2,.9,.3,1.2);
}
.chat-launcher.teaser-on .chat-teaser {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
/* hide teaser whenever the full panel is open */
.chat-launcher.open .chat-teaser {
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  pointer-events: none;
}
.chat-teaser-close {
  position: absolute;
  top: 8px; right: 8px;
  width: 24px; height: 24px;
  border: 0;
  background: transparent;
  color: var(--mute);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background .15s, color .15s;
}
.chat-teaser-close:hover { background: var(--light-2); color: var(--dark); }
.chat-teaser-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding-right: 22px;
}
.chat-teaser-ava {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-teaser-ava img { width: 28px; height: 28px; object-fit: contain; }
.chat-teaser-dot {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #3ec46d;
  border: 2px solid var(--light);
}
.chat-teaser-id { display: flex; flex-direction: column; line-height: 1.25; }
.chat-teaser-id strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
}
.chat-teaser-id em {
  font-style: normal;
  font-size: 12px;
  color: var(--mute);
}
.chat-teaser-msg {
  background: white;
  border: 1px solid var(--lines);
  border-radius: 4px 14px 14px 14px;
  padding: 11px 13px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 12px;
}
.chat-teaser-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chat-chip {
  font-family: inherit;
  font-size: 12.5px;
  padding: 7px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--primary);
  color: var(--primary-dark);
  cursor: pointer;
  transition: background .15s, color .15s, transform .12s;
}
.chat-chip:hover { background: var(--primary); color: white; }
.chat-chip:active { transform: scale(0.96); }

@media (max-width: 540px) {
  .chat-fab { width: 54px; height: 54px; }
  .chat-fab-close { width: 22px; height: 22px; }
  .chat-fab-bubble { width: 34px; height: 34px; }
  .chat-panel {
    width: calc(100vw - 32px);
    right: -8px;
    bottom: 70px;
  }
  .chat-teaser {
    width: calc(100vw - 32px);
    right: -8px;
    bottom: 70px;
  }
}

/* ============================================================
   HERO MICRO-ANIMATIONS — subtle "living scene" effect
   Brief: almost imperceptible breeze + water shimmer.
   GPU-friendly, respects prefers-reduced-motion.
   ============================================================ */

/* Inline SVG defs container — must take no space */
.hero-fx {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Wind effect disabled per user request — keep image fully static.
   Water shimmer/sparkles below remain active. */
.hero-bg-photo img {
  /* filter: url(#breeze); */
  /* animation: heroBreath 52s ease-in-out infinite alternate; */
}

/* Water shimmer — drifting light streaks over the pool area */
.water-shimmer {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 42%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: 0.85;
  /* mask: fade out near the top edge so shimmer doesn't have a hard line */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
}
.shimmer-layer {
  position: absolute;
  inset: -10%;
  will-change: transform, opacity;
}
.shimmer-a {
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(220, 245, 250, 0.10) 38%,
    rgba(255, 255, 255, 0.16) 50%,
    rgba(220, 245, 250, 0.10) 62%,
    transparent 100%);
  background-size: 280% 100%;
  animation: shimmerDriftA 38s linear infinite;
}
.shimmer-b {
  background: linear-gradient(75deg,
    transparent 0%,
    rgba(180, 225, 240, 0.08) 50%,
    transparent 100%);
  background-size: 220% 100%;
  animation: shimmerDriftB 56s linear infinite;
  opacity: 0.75;
}
@keyframes shimmerDriftA {
  0%   { background-position: -150% 0; }
  100% { background-position: 150% 0; }
}
@keyframes shimmerDriftB {
  0%   { background-position: 150% 0; }
  100% { background-position: -150% 0; }
}
/* Sparkles: tiny static dots that softly pulse — sun-glint on water */
.shimmer-sparkles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 62%, rgba(255,255,255,0.5) 0%, transparent 0.4%),
    radial-gradient(circle at 32% 78%, rgba(255,255,255,0.4) 0%, transparent 0.35%),
    radial-gradient(circle at 47% 55%, rgba(255,255,255,0.45) 0%, transparent 0.3%),
    radial-gradient(circle at 65% 72%, rgba(255,255,255,0.4) 0%, transparent 0.4%),
    radial-gradient(circle at 78% 60%, rgba(255,255,255,0.5) 0%, transparent 0.35%),
    radial-gradient(circle at 88% 80%, rgba(255,255,255,0.3) 0%, transparent 0.3%);
  opacity: 0;
  animation: sparkles 7.5s ease-in-out infinite;
  will-change: opacity;
}
@keyframes sparkles {
  0%, 100% { opacity: 0; }
  35%      { opacity: 0.7; }
  60%      { opacity: 0.45; }
}

/* Reduce motion preference — disable distortion and shimmer */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-photo img {
    animation: none;
    filter: none;
    transform: none;
  }
  .water-shimmer { display: none; }
}

/* Mobile / coarse-pointer: keep shimmer but drop the SVG filter (heavier on iOS) */
@media (max-width: 720px) {
  .hero-bg-photo img { filter: none; }
  .water-shimmer { opacity: 0.7; height: 38%; }
  .shimmer-sparkles { display: none; }
}

/* Wrapper that groups live-data pills (weather + sea-temp) below the hero meta */
.hero-live {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Sea temperature — floats over the pool water on desktop, sits in-flow on mobile */
.sea-temp {
  position: absolute;
  right: clamp(24px, 6vw, 80px);
  bottom: clamp(48px, 9vh, 96px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 16px 18px;
  background: rgba(40, 92, 110, 0.32);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  box-shadow:
    0 8px 32px rgba(20, 50, 60, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: #FBFEFF;
}
.sea-wave {
  width: 52px; height: 18px;
  color: #B5E8F0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
  flex-shrink: 0;
  animation: seaWave 4s ease-in-out infinite;
}
@keyframes seaWave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
.sea-temp-body {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 3px;
}
.sea-temp-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 250, 252, 0.78);
}
.sea-temp-value {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 28px;
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0, 50, 70, 0.4);
}
.sea-temp-wave {
  font-size: 11px;
  color: rgba(245, 250, 252, 0.7);
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  /* Drop the floating-over-pool placement on tablets and phones —
     bring sea-temp into the natural flow next to the weather pill. */
  .sea-temp {
    position: static;
    right: auto;
    bottom: auto;
    padding: 10px 16px;
    gap: 10px;
    background: rgba(40, 92, 110, 0.22);
    border-radius: 999px;
    box-shadow: none;
  }
  .sea-wave { width: 36px; height: 14px; }
  .sea-temp-value { font-size: 16px; }
  .sea-temp-body {
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
  }
  .sea-temp-label {
    font-size: 9px;
    margin-right: 2px;
  }
  .sea-temp-wave {
    font-size: 11px;
    flex-basis: 100%;
    color: rgba(245, 250, 252, 0.65);
  }
}
@media (max-width: 540px) {
  .hero-live { gap: 8px; }
  .sea-temp { padding: 8px 14px; }
  .sea-temp-value { font-size: 15px; }
}

/* Real-time weather pill */
.weather-now {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  padding: 10px 18px;
  background: rgba(245, 239, 226, 0.08);
  border: 1px solid rgba(245, 239, 226, 0.18);
  border-radius: 999px;
  font-size: 14px;
  color: var(--light);
  backdrop-filter: blur(8px);
  max-width: fit-content;
}
.weather-dot {
  width: 8px; height: 8px;
  background: #6BD088;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(107, 208, 136, 0.6);
  animation: weatherPulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes weatherPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.weather-label {
  font-weight: 500;
  color: rgba(245, 239, 226, 0.85);
  letter-spacing: 0.02em;
}
.weather-icon {
  font-size: 18px;
  line-height: 1;
}
.weather-temp {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--secondary-light);
}
.weather-cond {
  color: rgba(245, 239, 226, 0.78);
}
.weather-wind {
  color: rgba(245, 239, 226, 0.55);
  font-size: 13px;
  padding-left: 8px;
  border-left: 1px solid rgba(245, 239, 226, 0.2);
  margin-left: 4px;
}
@media (max-width: 540px) {
  .weather-now {
    font-size: 13px;
    padding: 8px 14px;
    flex-wrap: wrap;
  }
  .weather-wind { border-left: 0; padding-left: 0; margin-left: 0; width: 100%; }
}

/* ============================================================
   MANIFEST
   ============================================================ */
.manifest {
  background: var(--light);
  padding: 96px 0;
  text-align: center;
  border-bottom: 1px solid var(--lines);
}
.manifest-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.45;
  max-width: 880px;
  margin: 0 auto;
  color: var(--dark);
}
.manifest-text em {
  color: var(--accent);
  font-style: italic;
}

/* ============================================================
   ADVANTAGES
   ============================================================ */
.advantages {
  padding: 96px 0;
  background: var(--light-2);
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.adv {
  position: relative;
}
.adv-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 16px;
  line-height: 1;
}
.adv h3 {
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.adv p {
  color: var(--mute);
  font-size: 15px;
  line-height: 1.55;
}

/* ============================================================
   AROUND — places nearby
   ============================================================ */
.around-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.around-item {
  padding: 28px 24px;
  background: white;
  border: 1px solid var(--lines);
  border-radius: 4px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.around-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.around-link h3 { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.around-arrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  color: var(--secondary);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.around-link:hover .around-arrow {
  transform: translate(2px, -2px);
  color: var(--accent);
}
.around-num {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: var(--secondary);
  margin-bottom: 14px;
}
.around-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.around-item p {
  color: var(--mute);
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 1080px) {
  .around-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 540px) {
  .around-grid { grid-template-columns: 1fr; gap: 16px; }
  .around-item { padding: 22px 20px; }
  .around-num { font-size: 28px; }
  .around-item h3 { font-size: 18px; }
}

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */
.section {
  padding: 120px 0;
  position: relative;
}
.section-light { background: var(--light-3); }
.section-dark {
  background: var(--dark);
  color: var(--light);
}
.section-dark p, .section-dark .section-desc { color: rgba(245, 239, 226, 0.72); }
.h2-light, .section-dark h2 { color: var(--light); }
.lede-light { color: rgba(245, 239, 226, 0.85); font-size: 18px; max-width: 480px; margin-bottom: 40px; }

.section-head {
  margin-bottom: 64px;
  max-width: 720px;
}
.section-head h2 { margin-bottom: 16px; }
.section-desc {
  font-size: 18px;
  color: var(--mute);
  line-height: 1.55;
  max-width: 580px;
}
.section-head-light h2 { color: var(--light); }
.section-head-narrow { max-width: 540px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head-narrow .section-desc { margin-left: auto; margin-right: auto; }

/* ============================================================
   ROOMS
   ============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.room {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.room:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.room-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.room:hover .room-img img { transform: scale(1.05); }
.room-body { padding: 28px; }
.room-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
}
.tag {
  background: var(--primary);
  color: var(--light);
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.room-cap { color: var(--mute); font-size: 13px; }
.room h3 { margin-bottom: 8px; }
.room p {
  color: var(--mute);
  font-size: 15px;
  margin-bottom: 24px;
  min-height: 48px;
}
.room-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--lines);
  padding-top: 20px;
}
.room-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.room-price span { color: var(--mute); font-size: 13px; }
.room-price strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--dark);
}
.rooms-note {
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--light);
  border-left: 3px solid var(--secondary);
  font-size: 14px;
  color: var(--mute);
  max-width: 720px;
}

/* ============================================================
   POOL & YARD — editorial mosaic (asymmetric magazine layout)
   ============================================================ */
.pool-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 92px;
  gap: 14px;
}
.mosaic-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--dark-2);
}
.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, opacity .4s ease;
}
.mosaic-tile:hover img {
  transform: scale(1.04);
  opacity: 0.95;
}
.mosaic-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 18px 14px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
  background: linear-gradient(180deg, rgba(20, 27, 28, 0) 0%, rgba(20, 27, 28, 0.55) 55%, rgba(20, 27, 28, 0.92) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.mosaic-tile:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Tile placements — 12-col grid, varied row spans */
.tile-hero   { grid-column: 1 / span 7;  grid-row: span 5; }   /* pool morning — anchor */
.tile-tall   { grid-column: 8 / span 5;  grid-row: span 5; }   /* yard evening — companion */
.tile-life-1 { grid-column: 1 / span 5;  grid-row: span 4; }   /* fruit + hat */
.tile-life-2 { grid-column: 6 / span 3;  grid-row: span 4; }   /* watermelon */
.tile-life-4 { grid-column: 9 / span 4;  grid-row: span 4; }   /* bench — fills right column */
.tile-ame-1  { grid-column: 1 / span 4;  grid-row: span 4; }   /* BBQ — tall */
.tile-ame-2  { grid-column: 5 / span 4;  grid-row: span 4; }   /* playground */
.tile-ame-3  { grid-column: 9 / span 4;  grid-row: span 4; }   /* bikes — fills right column */

/* Tablet (1080 down) — 8 cols, simpler pairs */
@media (max-width: 1080px) {
  .pool-mosaic { grid-template-columns: repeat(8, 1fr); grid-auto-rows: 84px; gap: 12px; }
  .tile-hero   { grid-column: 1 / span 5; grid-row: span 5; }
  .tile-tall   { grid-column: 6 / span 3; grid-row: span 5; }
  .tile-life-1 { grid-column: 1 / span 4; grid-row: span 4; }
  .tile-life-2 { grid-column: 5 / span 4; grid-row: span 4; }
  .tile-life-4 { grid-column: 1 / span 8; grid-row: span 3; }
  .tile-ame-1  { grid-column: 1 / span 4; grid-row: span 4; }
  .tile-ame-2  { grid-column: 5 / span 4; grid-row: span 4; }
  .tile-ame-3  { grid-column: 1 / span 8; grid-row: span 3; }
}

/* Mobile — single column with varied heights to keep rhythm */
@media (max-width: 720px) {
  .pool-mosaic {
    display: flex;
    flex-direction: column;
    gap: 10px;
    grid-auto-rows: auto;
  }
  .mosaic-tile { aspect-ratio: 4/3; }
  .tile-hero   { aspect-ratio: 4/5; }
  .tile-tall   { aspect-ratio: 3/4; }
  .tile-life-1 { aspect-ratio: 4/3; }
  .tile-life-2,
  .tile-life-3,
  .tile-life-4,
  .tile-ame-3 { aspect-ratio: 4/3; }
  .tile-ame-1, .tile-ame-2 { aspect-ratio: 4/3; }
  /* Always show captions on mobile (no hover) */
  .mosaic-tile figcaption {
    opacity: 1;
    transform: translateY(0);
    padding: 24px 14px 10px;
  }
}

/* ============================================================
   CROWN SECTION
   ============================================================ */
.crown-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--light);
}
.crown-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.crown-text h2 { color: var(--light); margin-bottom: 24px; }
.crown-text p {
  font-size: 18px;
  color: rgba(245, 239, 226, 0.85);
  line-height: 1.6;
  margin-bottom: 16px;
}
.crown-text p strong { color: var(--secondary-light); font-weight: 500; }
.crown-meta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 239, 226, 0.2);
  font-style: italic;
  font-size: 15px !important;
}
.crown-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.crown-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.svc {
  background: white;
  padding: 32px 28px;
  border-radius: 4px;
  border: 1px solid var(--lines);
}
.svc h4 {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lines);
  color: var(--primary);
}
.svc ul li {
  padding: 6px 0;
  font-size: 15px;
  color: var(--dark);
  border-bottom: 1px solid var(--light-2);
}
.svc ul li:last-child { border-bottom: 0; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.tag-large {
  padding: 8px 18px;
  background: var(--light);
  border: 1px solid var(--lines);
  border-radius: 100px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.review {
  background: var(--light);
  padding: 32px;
  border-radius: 4px;
  border-left: 3px solid var(--secondary);
  position: relative;
}
.review-stars {
  color: var(--secondary);
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.review p {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.45;
  color: var(--dark);
  margin-bottom: 16px;
}
.review cite {
  font-size: 13px;
  color: var(--mute);
  font-style: normal;
  display: block;
}
.reviews-honest {
  margin-top: 32px;
  padding: 32px;
  background: var(--dark);
  color: var(--light);
  border-radius: 4px;
}
.reviews-honest h4 {
  color: var(--secondary-light);
  margin-bottom: 12px;
}
.reviews-honest p {
  color: rgba(245, 239, 226, 0.85);
  font-size: 16px;
  line-height: 1.6;
  max-width: 760px;
}

/* ============================================================
   COAST-HERO (изображение моря с честной подписью)
   ============================================================ */
.coast-hero {
  position: relative;
  margin: 0 0 64px;
  overflow: hidden;
  background: var(--dark-2);
}
.coast-hero img {
  width: 100%;
  height: clamp(360px, 60vh, 620px);
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}
.coast-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 32px 36px;
  background: linear-gradient(180deg, rgba(31, 40, 41, 0) 0%, rgba(31, 40, 41, 0.6) 50%, rgba(31, 40, 41, 0.92) 100%);
  color: var(--light);
}
.coast-caption .coast-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary-light);
  margin-bottom: 12px;
}
.coast-caption p {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.35;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: var(--light);
}
.coast-caption strong {
  color: var(--secondary-light);
  font-weight: 500;
}
.coast-caption .coast-kicker {
  display: block;
  text-align: center;
  margin-bottom: 12px;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.location-table {
  background: white;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid var(--lines);
}
.loc-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-2);
  font-size: 15px;
}
.loc-row:last-of-type { border-bottom: 0; }
.loc-label { color: var(--mute); }
.loc-value {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--dark);
}
.loc-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--lines);
  font-size: 14px;
  color: var(--mute);
  line-height: 1.55;
}
.map-placeholder {
  position: relative;
}
.map-inner {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--dark);
}
.map-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.map-pin::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.4;
  animation: ping 2s infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}
.map-label {
  position: absolute;
  top: calc(50% + 36px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--light);
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 2px;
  white-space: nowrap;
}
.map-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--mute);
  font-style: italic;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-container { max-width: 880px; }
.faq-list { margin-top: 0; }
.faq-item {
  background: white;
  border: 1px solid var(--lines);
  border-radius: 4px;
  margin-bottom: 10px;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
  cursor: pointer;
  padding: 22px 28px;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--dark);
  list-style: none;
  position: relative;
  padding-right: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  color: var(--primary);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
  transition: transform .25s;
  font-family: 'Inter Tight', sans-serif;
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--primary);
  color: var(--light);
}
.faq-body {
  padding: 0 28px 24px;
  color: var(--mute);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.booking-text h2 { margin-bottom: 16px; }
.booking-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(245, 239, 226, 0.05);
  border: 1px solid rgba(245, 239, 226, 0.15);
  border-radius: 4px;
  transition: all .2s;
}
.contact-line:hover {
  background: rgba(245, 239, 226, 0.1);
  border-color: var(--secondary-light);
  transform: translateX(4px);
}
.contact-ico {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.contact-body {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.contact-body strong { color: var(--light); margin-bottom: 2px; }
.contact-body em {
  font-style: normal;
  color: rgba(245, 239, 226, 0.65);
  font-size: 13px;
}
.booking-form {
  background: var(--light);
  color: var(--dark);
  padding: 40px;
  border-radius: 4px;
}
.booking-form h3 {
  margin-bottom: 24px;
  font-size: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-full { margin-bottom: 16px; display: block; }
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-form label > span {
  font-size: 13px;
  font-weight: 500;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--lines);
  border-radius: 2px;
  background: white;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark);
  transition: border-color .2s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.booking-form textarea { resize: vertical; min-height: 80px; font-family: inherit; }
.form-note {
  font-size: 12px;
  color: var(--mute);
  margin-top: 12px;
  line-height: 1.5;
}
.booking-engine-note {
  margin-top: 64px;
  padding: 20px 24px;
  background: rgba(245, 239, 226, 0.08);
  border-left: 3px solid var(--secondary);
  font-size: 14px;
  color: rgba(245, 239, 226, 0.65);
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-2);
  color: rgba(245, 239, 226, 0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 239, 226, 0.1);
}
.footer-brand p {
  margin-top: 16px;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.6;
}
.footer-brand .logo { color: var(--light); }
.footer-logo .logo-title { color: var(--light); }
.footer-logo .logo-sub { color: rgba(245,239,226,0.6); }
.footer-logo .logo-img { filter: brightness(1.4) saturate(0.7); }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h5 {
  color: var(--secondary-light);
  margin-bottom: 8px;
  letter-spacing: 0.15em;
}
.footer-col a, .footer-col p {
  color: rgba(245, 239, 226, 0.7);
  font-size: 14px;
  line-height: 1.7;
  transition: color .2s;
}
.footer-col a:hover { color: var(--secondary-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 13px;
  color: rgba(245, 239, 226, 0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav-menu { gap: 20px; font-size: 13px; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .container { padding: 0 24px; }
  .nav-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--light); flex-direction: column; gap: 0; padding: 24px; border-bottom: 1px solid var(--lines); }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-bottom: 1px solid var(--lines); }
  .nav-menu li:last-child { border-bottom: 0; }
  .nav-menu a { display: block; padding: 14px 0; font-size: 16px; }
  .hamburger { display: block; }
  .nav-cta { display: none; }
  .hero-content { padding: 64px 0 80px; }
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .section { padding: 72px 0; }
  .manifest { padding: 64px 0; }
  .advantages { padding: 64px 0; }
  .rooms-grid { grid-template-columns: 1fr; }
  .pool-grid { grid-template-columns: 1fr; }
  .pool-side { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .pool-extras { grid-template-columns: 1fr 1fr; }
  .crown-grid { grid-template-columns: 1fr; gap: 32px; }
  .crown-img { aspect-ratio: 4/3; }
  .reviews-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .booking-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .adv-grid { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .pool-extras { grid-template-columns: 1fr; }
  .pool-side { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .review p { font-size: 17px; }
  .faq-item summary { font-size: 17px; padding: 18px 22px; padding-right: 54px; }
}
