/* ══════════════════════════════════════════════════════════════
   VITO HOUSE — Mediterranean Luxury Vacation Rental
   Style: Liquid Glass + Warm Mediterranean
   Typography: Cormorant (display) / Montserrat (body)
   Palette: Deep navy + warm gold + Adriatic teal
   ══════════════════════════════════════════════════════════════ */

/* ── Reset & Custom Properties ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Primary palette — Mediterranean navy + gold */
  --navy: #0F2027;
  --navy-mid: #1a3a4a;
  --navy-light: #203A43;
  --teal: #2C7A7B;
  --teal-light: #4FD1C5;
  --gold: #C6943E;
  --gold-light: #E2B96F;
  --gold-pale: #F5E6C8;
  --terracotta: #C1694F;
  --terracotta-light: #E8956E;
  --sand: #F5F0E8;
  --sand-light: #FAF7F2;
  --cream: #FFFDF8;
  --white: #ffffff;
  --text-primary: #1a1a2e;
  --text-secondary: #5a6674;
  --text-muted: #8896a4;
  --border-light: rgba(198, 148, 62, 0.15);

  /* Glass tokens */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-bg-strong: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-blur: 20px;
  --glass-blur-strong: 40px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 32, 39, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 32, 39, 0.08);
  --shadow-lg: 0 12px 48px rgba(15, 32, 39, 0.12);
  --shadow-xl: 0 24px 64px rgba(15, 32, 39, 0.16);
  --shadow-gold: 0 8px 32px rgba(198, 148, 62, 0.2);

  /* Typography */
  --font-display: 'Cormorant', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;

  /* Spacing & layout */
  --max-width: 1240px;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2.5rem; border: none; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all var(--duration-normal) var(--ease-out);
  text-decoration: none; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity var(--duration-fast);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(198, 148, 62, 0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}

.btn-full { width: 100%; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 0; transition: all var(--duration-normal) var(--ease-out);
}
.nav.scrolled {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur-strong));
  -webkit-backdrop-filter: blur(var(--glass-blur-strong));
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-logo {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 700;
  color: var(--white); transition: color var(--duration-normal);
  letter-spacing: 0.02em;
}
.nav.scrolled .nav-logo { color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.8);
  transition: all var(--duration-fast); letter-spacing: 0.06em;
  text-transform: uppercase; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--gold); transform: scaleX(0);
  transition: transform var(--duration-normal) var(--ease-out);
  transform-origin: right;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  padding: 0.6rem 1.5rem !important; border-radius: 6px !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { box-shadow: var(--shadow-gold); transform: translateY(-1px); }

/* Language picker */
.lang-picker { position: relative; }
.lang-current {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; padding: 0.35rem 0.7rem; cursor: pointer;
  color: rgba(255,255,255,0.8); font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  transition: all var(--duration-fast);
}
.lang-current:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
.nav.scrolled .lang-current { color: var(--text-secondary); background: rgba(0,0,0,0.04); border-color: var(--border-light); }
.nav.scrolled .lang-current:hover { border-color: var(--gold); color: var(--navy); }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: 10px; box-shadow: var(--shadow-lg); min-width: 150px;
  overflow: hidden; z-index: 200;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1rem; font-size: 0.8rem; color: var(--text-secondary);
  cursor: pointer; transition: all var(--duration-fast); border: none;
  background: none; width: 100%; text-align: left; font-family: var(--font-body);
}
.lang-option:hover { background: var(--sand); color: var(--navy); }
.lang-option.active { color: var(--gold); font-weight: 600; }
.lang-option .lang-code { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; min-width: 22px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: white;
  margin: 5px 0; transition: all var(--duration-normal);
}
.nav.scrolled .nav-toggle span { background: var(--navy); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(44, 122, 123, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(198, 148, 62, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(32, 58, 67, 0.9) 0%, transparent 80%),
    linear-gradient(160deg, #0F2027 0%, #203A43 30%, #2C5364 70%, #1a3a4a 100%);
}

/* Animated gradient overlay */
.hero::before {
  content: ''; position: absolute; inset: -50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(198, 148, 62, 0.05) 60deg,
    transparent 120deg,
    rgba(79, 209, 197, 0.04) 200deg,
    transparent 280deg,
    rgba(198, 148, 62, 0.03) 340deg,
    transparent 360deg
  );
  animation: hero-glow 20s linear infinite;
}
@keyframes hero-glow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Wave decoration at bottom */
.hero-overlay {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 120px; z-index: 2;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23FFFDF8' d='M0,64 C360,120 720,0 1080,64 C1260,96 1380,80 1440,72 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom/cover;
}

.hero-content {
  position: relative; z-index: 3; text-align: center; color: var(--white);
  padding: 2rem; max-width: 800px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.5rem 1.25rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s var(--ease-out) both;
}
.hero-badge svg { opacity: 0.7; }

.hero-subtitle {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.hero-title {
  font-family: var(--font-display); font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700; line-height: 1; margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.8) 50%, var(--gold-pale) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-divider {
  width: 60px; height: 2px; margin: 1.5rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-desc {
  font-size: 1.1rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.75); margin-bottom: 2.5rem;
  max-width: 520px; margin-left: auto; margin-right: auto;
  animation: fadeInUp 0.8s var(--ease-out) 0.35s both;
}

.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.45s both;
}

.hero-scroll {
  position: absolute; bottom: 140px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center;
  color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 48px; margin-top: 0.75rem;
  background: linear-gradient(to bottom, rgba(198,148,62,0.6), transparent);
  animation: scroll-pulse 2.5s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%, 100% { opacity: 0.3; height: 48px; } 50% { opacity: 1; height: 56px; } }

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

/* ── Section base ────────────────────────────────────────── */
.section { padding: 7rem 0; }
.section-alt { background: var(--sand-light); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-tag {
  display: inline-block; font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  position: relative; padding: 0 2rem;
}
.section-tag::before, .section-tag::after {
  content: ''; position: absolute; top: 50%; width: 20px; height: 1px;
  background: var(--gold);
}
.section-tag::before { left: 0; }
.section-tag::after { right: 0; }

.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.15; color: var(--navy);
}
.section-desc {
  color: var(--text-secondary); margin-top: 1.25rem; font-size: 0.95rem;
  font-weight: 400; line-height: 1.7;
}

/* Reveal animation for sections */
.section[data-revealed="true"] { opacity: 1 !important; transform: translateY(0) !important; }

/* ── About ───────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center;
}
.about-text p {
  color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.95rem;
  line-height: 1.8; font-weight: 400;
}
.about-text p:first-child::first-letter {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  color: var(--gold); float: left; line-height: 0.8;
  margin-right: 0.5rem; margin-top: 0.15rem;
}
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border-light);
}
.stat { text-align: center; }
.stat-number {
  display: block; font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 700; color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.35rem;
}
.about-image-placeholder {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; background: linear-gradient(135deg, var(--navy-light), var(--teal));
  box-shadow: var(--shadow-xl);
}
.about-image-placeholder::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
}
.about-image-placeholder svg { width: 100%; height: 100%; }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; position: relative; cursor: pointer;
}
.gallery-item-large { grid-column: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #c5d5da, #a8c0c8);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--navy-mid); transition: transform var(--duration-slow) var(--ease-out);
  position: relative;
}
.gallery-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,32,39,0.4), transparent 60%);
  opacity: 0; transition: opacity var(--duration-normal);
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.06); }
.gallery-item:hover .gallery-placeholder::before { opacity: 1; }
.gallery-placeholder span {
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  position: relative; z-index: 1;
  transition: color var(--duration-normal), transform var(--duration-normal);
}
.gallery-item:hover .gallery-placeholder span { color: var(--white); transform: translateY(-4px); }
.gallery-placeholder small {
  font-size: 0.7rem; opacity: 0.5; margin-top: 0.25rem;
  position: relative; z-index: 1;
  transition: opacity var(--duration-normal);
}
.gallery-item:hover .gallery-placeholder small { opacity: 0; }

/* ── Amenities ───────────────────────────────────────────── */
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.amenity-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(198, 148, 62, 0.08);
  border-radius: var(--radius); padding: 2rem 1.5rem;
  text-align: center; transition: all var(--duration-normal) var(--ease-out);
  position: relative; overflow: hidden;
}
.amenity-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal-light));
  transform: scaleX(0); transition: transform var(--duration-normal) var(--ease-out);
  transform-origin: left;
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(198, 148, 62, 0.15);
}
.amenity-card:hover::before { transform: scaleX(1); }
.amenity-icon {
  width: 56px; height: 56px; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(198,148,62,0.08), rgba(44,122,123,0.06));
  color: var(--gold);
  transition: all var(--duration-normal) var(--ease-out);
}
.amenity-card:hover .amenity-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white); transform: scale(1.05);
}
.amenity-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--navy); }
.amenity-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ── Calendar ────────────────────────────────────────────── */
.calendar-wrapper {
  max-width: 720px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.calendar-wrapper::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--terracotta));
}
.calendar-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.calendar-nav-btn {
  background: none; border: 1px solid rgba(198,148,62,0.2); border-radius: 10px;
  padding: 0.6rem; cursor: pointer; color: var(--navy);
  transition: all var(--duration-fast); line-height: 0;
}
.calendar-nav-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold); color: var(--white);
}
.calendar-month {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--navy);
}
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.calendar-day-header {
  text-align: center; font-size: 0.7rem; font-weight: 600; color: var(--text-muted);
  padding: 0.5rem 0; text-transform: uppercase; letter-spacing: 0.08em;
}
.calendar-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 0.85rem; font-weight: 500; cursor: default;
  transition: all var(--duration-fast); position: relative;
}
.calendar-day.empty { background: none; }
.calendar-day.available { background: rgba(44, 122, 123, 0.06); color: var(--teal); }
.calendar-day.available:hover { background: rgba(44, 122, 123, 0.12); }
.calendar-day.booked {
  background: rgba(193, 105, 79, 0.08); color: var(--terracotta);
  cursor: not-allowed; text-decoration: line-through; text-decoration-color: rgba(193,105,79,0.4);
}
.calendar-day.past { background: rgba(0,0,0,0.02); color: #c8c8c8; }
.calendar-day.today {
  outline: 2px solid var(--gold); outline-offset: -2px;
  font-weight: 700; color: var(--gold);
}
.calendar-legend {
  display: flex; gap: 2rem; justify-content: center;
  margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--border-light);
}
.legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--text-muted); }
.legend-dot { width: 14px; height: 14px; border-radius: 5px; }
.legend-dot.available { background: rgba(44,122,123,0.1); border: 1.5px solid var(--teal); }
.legend-dot.booked { background: rgba(193,105,79,0.1); border: 1.5px solid var(--terracotta); }
.legend-dot.past { background: rgba(0,0,0,0.03); border: 1.5px solid #ccc; }

/* ── Location ────────────────────────────────────────────── */
.location-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: start; }
.location-item {
  display: flex; gap: 1.25rem; margin-bottom: 2rem;
  padding: 1.25rem; border-radius: var(--radius);
  transition: all var(--duration-normal) var(--ease-out);
}
.location-item:hover { background: var(--sand); }
.location-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(198,148,62,0.1), rgba(44,122,123,0.05));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--gold);
  transition: all var(--duration-normal);
}
.location-item:hover .location-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
}
.location-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--navy); }
.location-item p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
.location-map {
  border-radius: var(--radius-lg); overflow: hidden; min-height: 420px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
}

/* ── Booking Form ────────────────────────────────────────── */
.section-booking {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(44,122,123,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(198,148,62,0.1) 0%, transparent 50%),
    linear-gradient(160deg, #0F2027 0%, #203A43 40%, #2C5364 100%);
  color: var(--white);
}
.section-booking::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23FAF7F2' d='M0,0 L1440,0 L1440,40 C1200,80 720,0 360,50 C180,70 60,40 0,48 Z'/%3E%3C/svg%3E") no-repeat top/cover;
}
.section-booking .section-tag { color: var(--gold-light); }
.section-booking .section-title { color: var(--white); }
.section-booking .section-desc { color: rgba(255,255,255,0.6); }

.booking-form {
  max-width: 660px; margin: 0 auto;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur-strong));
  -webkit-backdrop-filter: blur(var(--glass-blur-strong));
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg); padding: 3rem;
  color: var(--text-primary); box-shadow: var(--shadow-xl);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.8rem; margin-bottom: 0.5rem;
  color: var(--navy); letter-spacing: 0.03em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1.15rem;
  border: 1.5px solid rgba(198,148,62,0.15); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.9rem;
  transition: all var(--duration-fast);
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(198,148,62,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-muted); font-weight: 400;
}

.form-message {
  margin-top: 1.25rem; padding: 1rem 1.25rem; border-radius: 10px;
  font-size: 0.875rem; display: none;
}
.form-message.success { display: block; background: #d4edda; color: #155724; }
.form-message.error { display: block; background: #f8d7da; color: #721c24; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.6); padding: 5rem 0 2.5rem;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand h3 {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4, .footer-platforms h4 {
  font-size: 0.7rem; font-weight: 600; color: var(--gold-light);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a, .footer-contact a {
  font-size: 0.875rem; transition: all var(--duration-fast);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.875rem; margin-bottom: 0.5rem; }
.platform-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.platform-badge {
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(198,148,62,0.25); border-radius: 8px;
  font-size: 0.8rem; font-weight: 500;
  transition: all var(--duration-fast);
}
.platform-badge:hover {
  border-color: var(--gold); color: var(--gold-light);
  background: rgba(198,148,62,0.08);
}
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.25rem; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px;
  font-size: 0.8rem; font-weight: 500; transition: all var(--duration-fast);
  color: rgba(255,255,255,0.6);
}
.social-link:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }
.social-instagram:hover { border-color: #E1306C; color: #E1306C; background: rgba(225,48,108,0.08); }
.social-facebook:hover { border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,0.08); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem; text-align: center; font-size: 0.8rem;
}

/* ── Floating decorative elements ────────────────────────── */
.float-accent {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(198,148,62,0.08), transparent 70%);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }

  .nav-toggle { display: block; }
  .nav-right {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
  }
  .nav-right.open { display: flex; }
  .nav-links {
    display: flex; flex-direction: column;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(var(--glass-blur-strong));
    -webkit-backdrop-filter: blur(var(--glass-blur-strong));
    padding: 1.5rem 2rem; gap: 0;
  }
  .nav-links a {
    color: var(--navy) !important; padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    text-align: center; margin-top: 0.5rem; border-bottom: none !important;
    display: block; padding: 0.75rem 1.25rem !important; border-radius: 8px !important;
  }
  .lang-picker {
    padding: 0.75rem 2rem; background: var(--glass-bg-strong);
    backdrop-filter: blur(var(--glass-blur-strong));
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
  }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-image-placeholder { max-width: 400px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item-large { grid-column: span 2; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 5rem 0; }

  .hero-scroll { display: none; }
  .calendar-wrapper { padding: 1.5rem; }
  .booking-form { padding: 2rem; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: span 1; }
  .hero-title { font-size: 2.75rem; }
  .hero-badge { font-size: 0.65rem; padding: 0.4rem 1rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; }
  .calendar-grid { gap: 3px; }
  .calendar-day { font-size: 0.75rem; border-radius: 6px; }
  .calendar-nav-btn { padding: 0.4rem; }
  .calendar-month { font-size: 1.15rem; }
  .about-text p:first-child::first-letter { font-size: 2.5rem; }
  .stat-number { font-size: 1.75rem; }
}
