/* ============================================================
   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; }
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: rgba(245, 239, 226, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--lines);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
}
.logo-mark {
  color: var(--secondary);
  font-size: 24px;
  line-height: 1;
}
.logo-text em { color: var(--primary); font-style: italic; }
.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;
}

/* ============================================================
   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;
}

/* ============================================================
   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
   ============================================================ */
.pool-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.pool-main img,
.pool-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.pool-main {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.pool-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.pool-side > * {
  overflow: hidden;
  border-radius: 4px;
}
.pool-extras {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pool-extras img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}

/* ============================================================
   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-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-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; }
}
