/* CSS Variables and Base */
:root {
  --ocean: #102D35;
  --teal: #28505A;
  --sand: #D8CDBB;
  --shell: #F3EFE6;
  --gold: #B79563;
  --milk: #F3EFE6;
  --stone: #D8CDBB;
  --white: #ffffff;
  --text-dark: #102D35;
  --text-light: #F3EFE6;
  --error: #C94B4B;
  --success: #4B8C6A;
  --font-sans: "Inter", "Manrope", -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-delay: 0ms;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(92%, 1200px);
  margin-inline: auto;
}

.container--narrow {
  width: min(92%, 800px);
}

/* Typography */
.h1, .h2, .h3, .h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

.h1 {
  font-size: clamp(42px, 6vw, 74px);
}

.h2 {
  font-size: clamp(30px, 4.4vw, 52px);
}

.h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.h4 {
  font-size: clamp(18px, 2vw, 22px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
}

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

.kicker--center {
  justify-content: center;
}

.kicker--center::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.pretitle {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

p {
  margin: 0 0 1.2em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(183, 149, 99, 0.24);
}

.btn--gold:hover {
  background: linear-gradient(90deg, var(--gold), #D4B37D);
  box-shadow: 0 12px 32px rgba(183, 149, 99, 0.32);
}

.btn--outline {
  background: transparent;
  color: var(--milk);
  border: 1px solid rgba(243, 239, 230, 0.45);
}

.btn--outline:hover {
  background: var(--milk);
  color: var(--text-dark);
}

.btn--dark {
  background: var(--ocean);
  color: var(--milk);
}

.btn--dark:hover {
  background: var(--teal);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(16, 45, 53, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--milk);
}

.brand__logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(243, 239, 230, 0.3);
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand__tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sand);
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--milk);
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--milk);
  font-weight: 500;
}

.header-phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--milk);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  left: auto;
  width: min(86vw, 380px);
  background: var(--ocean);
  z-index: 1100;
  padding: 92px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--milk);
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu .nav-links a {
  font-size: 22px;
  font-family: var(--font-serif);
  font-weight: 500;
  text-transform: none;
}

.mobile-menu__foot {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(243, 239, 230, 0.12);
}

.mobile-menu__foot p,
.mobile-menu__foot a,
.mobile-menu__foot span {
  color: var(--sand);
  font-size: 14px;
  margin: 0 0 10px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--milk);
}

.hero__bg {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(16, 45, 53, 0.92) 0%, rgba(16, 45, 53, 0.5) 55%, rgba(16, 45, 53, 0.15) 100%);
}

.hero__content {
  width: min(92%, 1200px);
  margin-inline: auto;
  padding: 140px 0 120px;
}

.hero__kicker {
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 740px;
  margin: 0 0 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  max-width: 560px;
  font-size: 18px;
  color: var(--sand);
  margin-bottom: 38px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.offline-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(243, 239, 230, 0.08);
  border: 1px solid rgba(243, 239, 230, 0.2);
  border-radius: 60px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--milk);
  margin-bottom: 24px;
}

.offline-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(183, 149, 99, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(183, 149, 99, 0); }
  100% { box-shadow: 0 0 0 0 rgba(183, 149, 99, 0); }
}

.scroll-cta {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sand);
}

.scroll-cta::after {
  content: "";
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Sections general */
.section {
  padding: 90px 0;
}

.section--dark {
  background: var(--ocean);
  color: var(--milk);
}

.section--light {
  background: var(--shell);
  color: var(--text-dark);
}

.section-head {
  margin-bottom: 52px;
}

.section-head--center {
  text-align: center;
}

.section-head h2 {
  margin: 16px 0 0;
}

.section-head p {
  max-width: 600px;
  margin: 18px auto 0;
  color: var(--sand);
}

/* Intro split */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.split__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 28px;
  max-width: 220px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}

.split__badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 30px;
  margin-bottom: 4px;
}

.split__body p {
  color: var(--teal);
  margin-bottom: 22px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(16, 45, 53, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(16, 45, 53, 0.14);
}

.card__thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card__body {
  padding: 28px;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px;
}

.card__price {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.card__text {
  color: var(--teal);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 22px;
}

/* Experience dark split */
.dark-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dark-split__body h2 {
  margin-bottom: 20px;
}

.dark-split__body p {
  color: var(--sand);
  margin-bottom: 28px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--milk);
}

.checklist li::before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 12px;
  margin-top: 2px;
}

.dark-split__media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.amenity {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16, 45, 53, 0.06);
}

.amenity__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.amenity__title {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 0 0 10px;
}

.amenity__text {
  font-size: 14px;
  color: var(--teal);
  line-height: 1.6;
}

/* Booking form */
.booking-section {
  position: relative;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__group label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sand);
}

.form__group label span {
  color: var(--gold);
}

.form__control {
  padding: 14px 16px;
  background: rgba(243, 239, 230, 0.08);
  border: 1px solid rgba(243, 239, 230, 0.22);
  color: var(--milk);
  transition: border-color 0.3s, background 0.3s;
}

.form__control::placeholder {
  color: rgba(243, 239, 230, 0.45);
}

.form__control:focus {
  border-color: var(--gold);
  background: rgba(243, 239, 230, 0.05);
}

.form__control.is-invalid {
  border-color: var(--error);
}

.form__error {
  font-size: 13px;
  color: var(--error);
  display: none;
}

.form__control.is-invalid + .form__error {
  display: block;
}

select.form__control {
  color: var(--milk);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%23B79563' stroke-width='1.5' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

select.form__control option {
  background: var(--shell);
  color: var(--ocean);
}

textarea.form__control {
  min-height: 120px;
  resize: vertical;
}

.booking-terms {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--sand);
}

.booking-terms a {
  color: var(--gold);
  text-decoration: underline;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--white);
  padding: 36px;
  box-shadow: 0 10px 36px rgba(16, 45, 53, 0.07);
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  margin: 0 0 22px;
}

.testimonial__author {
  font-weight: 600;
  font-size: 15px;
}

.testimonial__loc {
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Disclaimer */
.disclaimer {
  padding: 42px 0;
  background: var(--teal);
  color: var(--milk);
}

.disclaimer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.disclaimer__text {
  max-width: 800px;
  font-size: 15px;
  margin: 0;
}

.disclaimer__text strong {
  color: var(--gold);
}

/* CTA Band */
.cta-band {
  position: relative;
  padding: 120px 0;
  color: var(--milk);
  text-align: center;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  z-index: -2;
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(16, 45, 53, 0.76);
}

.cta-band h2 {
  margin-bottom: 20px;
}

.cta-band p {
  max-width: 640px;
  margin: 0 auto 34px;
  color: var(--sand);
}

/* Footer */
.site-footer {
  background: var(--ocean);
  color: var(--milk);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .brand__name {
  font-size: 24px;
}

.footer-brand p {
  margin: 16px 0;
  font-size: 14px;
  color: var(--sand);
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(243, 239, 230, 0.2);
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.footer-social svg,
.footer-social .social-icon {
  width: 18px;
  height: 18px;
}

.footer-social .social-icon {
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: background-color 0.3s;
}

.footer-social .social-icon--viber {
  -webkit-mask-image: url('../images/viber-icon.svg');
  mask-image: url('../images/viber-icon.svg');
}

.footer-social .social-icon--whatsapp {
  -webkit-mask-image: url('../images/whatsapp-icon.svg');
  mask-image: url('../images/whatsapp-icon.svg');
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--sand);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p,
.footer-contact a,
.footer-contact span {
  font-size: 14px;
  color: var(--sand);
  margin: 0 0 10px;
  display: block;
}

.footer-legal {
  padding: 24px 0;
  border-top: 1px solid rgba(243, 239, 230, 0.1);
  border-bottom: 1px solid rgba(243, 239, 230, 0.1);
  margin-bottom: 24px;
}

.footer-legal p {
  font-size: 13px;
  color: var(--sand);
  margin: 0 0 10px;
}

.footer-disclaimer {
  background: rgba(243, 239, 230, 0.05);
  padding: 16px 20px;
  margin-bottom: 24px;
  border-left: 3px solid var(--gold);
}

.footer-disclaimer p {
  font-size: 13px;
  color: var(--sand);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--sand);
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 170px 0 90px;
  color: var(--milk);
  text-align: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(16, 45, 53, 0.78);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sand);
  margin-bottom: 18px;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.page-hero h1 {
  margin: 0;
}

/* About / generic content */
.content-block {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
}

.content-block p {
  color: var(--teal);
  margin-bottom: 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stat {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(16, 45, 53, 0.07);
}

.stat__num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-top: 10px;
}

/* Rooms grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--white);
  box-shadow: 0 10px 40px rgba(16, 45, 53, 0.08);
  overflow: hidden;
}

.room-card__thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.room-card__body {
  padding: 26px;
}

.room-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 0 0 6px;
}

.room-card__price {
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.room-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--teal);
}

.room-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-card__list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.rooms-terms {
  background: var(--shell);
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.terms-list li {
  padding-left: 24px;
  position: relative;
  color: var(--teal);
}

.terms-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 32px;
  box-shadow: 0 10px 36px rgba(16, 45, 53, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 42px rgba(16, 45, 53, 0.12);
}

.service-card__icon {
  width: 46px;
  height: 46px;
  color: var(--gold);
  margin-bottom: 18px;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 0 0 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--teal);
  line-height: 1.6;
  margin: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  padding: 40px;
  box-shadow: 0 10px 36px rgba(16, 45, 53, 0.07);
}

.contact-card h3 {
  margin: 0 0 26px;
}

.contact-item {
  margin-bottom: 24px;
}

.contact-item__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-item__value,
.contact-item a {
  font-size: 16px;
  color: var(--text-dark);
}

.contact-item a:hover,
.contact-item__value:hover {
  color: var(--gold);
}

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
  filter: grayscale(0.4) contrast(0.95);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  box-shadow: 0 10px 36px rgba(16, 45, 53, 0.07);
}

.contact-form .form__group label {
  color: var(--teal);
}

.contact-form .form__control {
  background: var(--shell);
  border: 1px solid rgba(16, 45, 53, 0.12);
  color: var(--text-dark);
}

.contact-form .form__control::placeholder {
  color: rgba(16, 45, 53, 0.5);
}

.contact-form .form__control:focus {
  border-color: var(--gold);
}

/* Legal pages */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 70px 0 100px;
}

.legal-content h2 {
  margin: 48px 0 20px;
}

.legal-content h3 {
  margin: 32px 0 14px;
}

.legal-content p,
.legal-content li {
  color: var(--teal);
  margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
  margin-bottom: 24px;
}

.legal-updated {
  display: inline-block;
  padding: 8px 16px;
  background: var(--shell);
  font-size: 13px;
  color: var(--teal);
  margin-bottom: 30px;
}

/* Popup */
.hm-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.hm-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.hm-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hm-popup__box {
  position: relative;
  background: var(--white);
  padding: 48px;
  max-width: 460px;
  width: 92%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hm-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--teal);
  cursor: pointer;
}

.hm-popup__box h3 {
  margin: 0 0 14px;
}

.hm-popup__box p {
  color: var(--teal);
  margin: 0 0 24px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1300;
  background: var(--ocean);
  color: var(--milk);
  padding: 20px 0;
  transform: translateY(120%);
  transition: transform 0.5s var(--ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  max-width: 760px;
  margin: 0;
  font-size: 14px;
  color: var(--sand);
}

.cookie-banner p a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner__btns {
  display: flex;
  gap: 12px;
}

.cookie-banner__note {
  display: none;
  text-align: center;
  font-size: 14px;
  color: var(--gold);
  margin-top: 12px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--left.is-visible,
.reveal--right.is-visible {
  transform: translateX(0);
}

.reveal--zoom {
  transform: scale(0.96);
}

.reveal--zoom.is-visible {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Responsive */
@media (max-width: 1080px) {
  .card-grid,
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenities-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .split,
  .dark-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split__media img,
  .dark-split__media img {
    height: 420px;
  }
  .nav-links {
    display: none;
  }
  .header-actions .btn,
  .header-actions .header-phone {
    display: none;
  }
  .burger {
    display: flex;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .card-grid,
  .rooms-grid,
  .amenities-grid,
  .services-grid,
  .testimonial-grid,
  .stats {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .booking-form,
  .contact-form .booking-form {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero__cta {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .mobile-menu {
    width: 100%;
  }
  .disclaimer__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-band h2 {
    font-size: 30px;
  }
}
