/* ═══════════════════════════════════════════════════════════════
   RED EAGLE'S NEST — CSS
   Rebuilt pixel-for-pixel from approved PDF design.
   Footer section preserved exactly from existing HTML/CSS project.
   ═══════════════════════════════════════════════════════════════ */

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

::-webkit-scrollbar { display: none; }
* { scrollbar-width: none; -ms-overflow-style: none; }

:root {
  --gold:        #C9A76D;
  --gold-light:  #C9A76D;
  --gold-dark:   #A07820;
  --navy:        #07124A;
  --navy-deep:   #071249;
  --cream-1:     #F7F4EC;
  --cream-2:     #F1ECE4;
  --off-white:   #F7F5F2;
  --charcoal:    #1E1E1E;
  --mid-gray:    #6B6B6B;
  --light-gray:  #B8B8B8;
  --black:       #0D0D0D;
  --white:       #FFFFFF;
  --dark-bg:     #111111;
  --section-pad: 120px;
  --gutter:      100px;   /* shared left-right padding for every section */
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes en-fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes en-fade-down {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes en-hero-zoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

/* Generic scroll-reveal: JS toggles .in-view when a .reveal element enters viewport */
.reveal {
  opacity: 1;
  transform: translateY(34px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.3,1), transform 0.8s cubic-bezier(.2,.7,.3,1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in-view > * {
  animation: en-fade-up 0.7s cubic-bezier(.2,.7,.3,1) both;
}

.reveal-stagger.in-view > *:nth-child(1) { animation-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { animation-delay: 0.15s; }
.reveal-stagger.in-view > *:nth-child(3) { animation-delay: 0.25s; }
.reveal-stagger.in-view > *:nth-child(4) { animation-delay: 0.35s; }
.reveal-stagger.in-view > *:nth-child(5) { animation-delay: 0.45s; }
.reveal-stagger.in-view > *:nth-child(6) { animation-delay: 0.55s; }

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

body {
  font-family: 'Mulish', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

em {
  font-style: italic;
  color: var(--navy);
  font-family: Georgia, serif;
}

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

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.en-navbar {
  position: absolute;
  left: 0;
  top: -27px;
  right: 0;
  z-index: 50;
  padding: 28px var(--gutter) 0;
  animation: en-fade-down 0.9s ease both;
}

.en-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 40px;
  padding: 12px 16px 12px 10px;
}

.en-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.en-logo-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.en-logo-icon svg { width: 100%; height: 100%; }

.en-logo-icon img { object-fit: contain; }

.en-logo-icon .logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.en-logo-text {
  display: none;
}

.en-nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}


.en-nav-links a {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color 0.3s;
}

.en-nav-links a:hover { color: var(--gold-light); }

/* ── "STAY" dropdown (desktop nav) ── */
.en-has-dropdown {
  position: relative;
}

.en-has-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  height: 18px;
  z-index: 49;
}

.en-nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 190px;
  background: var(--charcoal, #1a1a1a);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 50;
}

.en-has-dropdown:hover .en-nav-dropdown,
.en-has-dropdown:focus-within .en-nav-dropdown,
.en-has-dropdown.is-open .en-nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.en-nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 12px;
}

.en-nav-dropdown li a:hover { background: rgba(255,255,255,0.06); }

/* ── "STAY" submenu (mobile sidebar) ── */
.en-mobile-has-sub .en-mobile-sub-label {
  display: block;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  opacity: 0.6;
  padding-top: 6px;
}

.en-mobile-submenu {
  margin: 6px 0 0 14px;
}

.en-mobile-submenu li a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
}

.en-btn-nav-cta {
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--charcoal);
    background: linear-gradient(180deg, #C9A76D, #E3CEA9);
    padding: 14px 26px;
    border-radius: 30px;
    display: inline-block;
    white-space: nowrap;
    transition: transform 0.3s, box-shadow 0.3s;
}

.en-btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201,151,45,0.35);
}

.en-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.en-nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  display: block;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.en-hero {
  position: relative;
  min-height: clamp(560px, 88vh, 780px);
  display: flex;
  align-items: center;
}

.en-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.en-hero-bg img,
.en-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: en-hero-zoom 14s ease-out both;
}

.en-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,12,20,0.55) 0%, rgba(10,12,20,0.18) 45%, rgba(10,12,20,0.08) 70%);
}

.en-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(130px, 18vh, 170px) var(--gutter) 70px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: start;
}

.en-hero-text { max-width: 620px; padding-top: 50px;}

.en-hero-eyebrow {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
  animation: en-fade-up 0.9s 0.15s ease both;
}

.en-hero-heading,
.en-hero-subtitle,
.en-hero-text > .en-btn-outline {
  animation: en-fade-up 0.9s ease both;
}

.en-hero-heading   { animation-delay: 0.3s; }
.en-hero-subtitle  { animation-delay: 0.45s; }
.en-hero-text > .en-btn-outline { animation-delay: 0.6s; }

.en-hero-heading {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 1.05;
  color: var(--white);
}

.en-hero-heading em {
  font-style: italic;
  color: var(--off-white);
  font-family: Georgia, serif;
}

.en-hero-subtitle {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.86);
  margin: 28px 0 36px;
  max-width: 540px;
}

.en-btn-outline {
  display: inline-block;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.8);
  padding: 17px 34px;
  border-radius: 30px;
  transition: background 0.3s, color 0.3s;
}

.en-btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
}

/* Booking widget */
.en-booking {
  position: relative;
  z-index: 2;
  background: rgba(238, 236, 232, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 20px;
  width: 100%;
  max-width: 330px;
  margin-left: auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  animation: en-fade-up 0.9s 0.4s ease both;
}

.en-booking-title {
     display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Mulish', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--charcoal);
    margin-bottom: 14px;
}

.en-booking-title::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.en-booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.en-booking-field {
  background: rgba(255,255,255,0.85);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.en-booking-row .en-booking-field { margin-bottom: 0; }

.en-booking-field label {
  display: block;
  font-family: 'Mulish', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--mid-gray);
  margin-bottom: 3px;
}

.en-booking-field .value {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
}

.en-booking-field .value svg { flex-shrink: 0; color: var(--charcoal); }

.en-room-field { position: relative; }

.en-room-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-radius: 8px;
  transition: box-shadow 0.25s ease;
}

.en-room-display {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}

.en-room-chevron {
  color: var(--mid-gray);
  transition: transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.en-room-trigger.is-open .en-room-chevron {
  transform: rotate(180deg);
  color: var(--gold-dark);
}

/* Floating panel — same look as .en-dp-panel / .en-guest-panel */
.en-room-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 22px 44px rgba(15,15,15,0.22), 0 2px 8px rgba(15,15,15,0.05);
  animation: en-fade-down 0.22s cubic-bezier(.2,.7,.3,1) both;
  overflow: hidden;
}

.en-room-option {
  padding: 12px 16px;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.en-room-option + .en-room-option {
  border-top: 1px solid rgba(0,0,0,0.06);
}

.en-room-option:hover:not(.is-disabled) {
  background: var(--cream-2);
}

.en-room-option.is-active {
  background: rgba(201,167,109,0.14);
  color: var(--gold-dark);
  font-weight: 700;
}

.en-room-option.is-disabled {
  color: var(--light-gray);
  cursor: not-allowed;
}

.en-room-hint {
  font-family: 'Mulish', sans-serif;
  font-size: 10.5px;
  color: var(--mid-gray);
  margin: 4px 0 0;
}

.en-btn-gold-block {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Mulish', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  padding: 13px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  transition: transform 0.3s;
}

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

/* ── Quick Inquiry: functional date pickers, selects, button loader ── */
.en-date-wrap { position: relative; width: 100%; }

.en-date-input {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  padding: 0;
  cursor: pointer;
}

.en-date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.65;
}

.en-select-input {
  display: block;
  width: 100%;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding: 0;
}

.en-btn-gold-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.en-btn-gold-block.is-loading { cursor: default; opacity: 0.85; }

.en-btn-spinner {
  display: none;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(30,30,30,0.25);
  border-top-color: var(--charcoal);
  border-radius: 50%;
  animation: en-btn-spin 0.7s linear infinite;
}

.en-btn-gold-block.is-loading .en-btn-spinner { display: inline-block; }

@keyframes en-btn-spin {
  to { transform: rotate(360deg); }
}

.en-booking-price {
    text-align: center;
    font-family: Georgia, serif;
    font-size: 13.5px;
    color: var(--mid-gray);
    margin-top: 10px;
}

.en-booking-price strong {
  color: #1E1E1E;
  font-weight: 500;
}

/* ═══════════════════════════════════════
   QUICK INQUIRY — CUSTOM CALENDAR + GUEST DROPDOWN
   (themed to match gold / charcoal / cream palette)
═══════════════════════════════════════ */
.en-dp-field,
.en-guest-field { position: relative; }

.en-dp-trigger,
.en-room-trigger,
.en-guest-trigger {
  cursor: pointer;
  border-radius: 8px;
  transition: box-shadow 0.25s ease;
}

/* .en-dp-field.is-active .en-dp-trigger,
.en-guest-field.is-active .en-guest-trigger {
  box-shadow: 0 0 0 1.5px var(--gold);
} */

.en-guest-trigger { justify-content: space-between; }

.en-guest-chevron {
  color: var(--mid-gray);
  transition: transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.en-guest-trigger.is-open .en-guest-chevron {
  transform: rotate(180deg);
  color: var(--gold-dark);
}

/* Shared floating-panel look */
.en-dp-panel,
.en-guest-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 60;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 22px 44px rgba(15,15,15,0.22), 0 2px 8px rgba(15,15,15,0.05);
  animation: en-fade-down 0.22s cubic-bezier(.2,.7,.3,1) both;
}

.en-dp-panel { width: 329px; padding: 18px 18px 14px; }
.en-guest-panel { width: 100%; padding: 4px 18px; }

/* ── Calendar ── */
.en-dp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.en-dp-month {
  font-family: 'Mulish', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.en-dp-nav { display: flex; gap: 6px; }

.en-dp-nav-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  background: transparent;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.en-dp-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.en-dp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 2px;
}

.en-dp-weekdays span {
  text-align: center;
  font-family: 'Mulish', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--mid-gray);
  padding-bottom: 8px;
}

.en-dp-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 3px;
}

.en-dp-day {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 34px;
  border: none;
  background: transparent;
  border-radius: 50%;
  font-family: 'Mulish', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
}

.en-dp-day.is-empty { cursor: default; }

.en-dp-day:not(.is-empty):not(.is-disabled):hover {
  background: var(--cream-2);
}

.en-dp-day.is-today {
  border: 1.5px solid var(--gold);
  font-weight: 700;
}

.en-dp-day.is-selected {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--white);
  font-weight: 700;
  border: none;
}

.en-dp-day.is-disabled {
  color: var(--light-gray);
  cursor: not-allowed;
}

.en-dp-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.en-dp-today-btn {
  border: none;
  background: none;
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gold-dark);
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.2s;
}

.en-dp-today-btn:hover { color: var(--charcoal); text-decoration: underline; }

.en-dp-today-btn:disabled {
  color: var(--light-gray);
  cursor: not-allowed;
}

.en-dp-today-btn:disabled:hover { text-decoration: none; color: var(--light-gray); }

/* ── Guest dropdown ── */
.en-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.en-guest-row + .en-guest-row { border-top: 1px solid rgba(0,0,0,0.06); }

.en-guest-row-label {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.en-stepper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.en-step-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  background: var(--white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.en-step-btn:hover:not(:disabled) {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.en-step-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.en-step-value {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  min-width: 16px;
  text-align: center;
}

/* ═══════════════════════════════════════
   TICKER
═══════════════════════════════════════ */
.en-ticker {
  background: var(--navy-deep);
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
  position: relative;
  z-index: 1;
}

.en-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  animation: en-ticker-scroll 32s linear infinite;
}

.en-ticker-track span {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.88);
  display: inline-flex;
  align-items: center;
  gap: 44px;
  white-space: nowrap;
}

.en-ticker-track .dot { color: var(--gold); font-size: 10px; }

@keyframes en-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.en-stats {
  background: var(--cream-1);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.en-stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.en-stat {
  text-align: center;
  padding: 46px 20px;
  border-right: 1px solid rgba(0,0,0,0.08);
}

.en-stat:last-child { border-right: none; }

.en-stat-num {
  font-family: Georgia, serif;
  font-size: 46px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.en-stat-label {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
}

/* ═══════════════════════════════════════
   STORY
═══════════════════════════════════════ */
.en-story {
  background: var(--cream-1);
  padding: 60px 0 60px;
}

.en-story-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.en-story-image {
  position: relative;
}

.en-story-image img {
  border-radius: 6px;
  aspect-ratio: 4/4.6;
  object-fit: cover;
}

.en-story-badge {
  position: absolute;
  right: -1px;
  bottom: 26px;
  background: rgba(247,244,236,0.94);
  padding: 22px 26px;
  max-width: 260px;
  border-radius: 4px 0 0 0;
}

.en-story-badge .since {
  font-family: 'Mulish', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--mid-gray);
  margin-bottom: 8px;
  display: block;
}

.en-story-badge .line {
  font-family: Georgia, serif;
  font-size: 24px;
  color: var(--charcoal);
  line-height: 1.25;
}

.en-label-gold {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  margin-bottom: 18px;
  display: block;
}

.en-story-heading {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 26px;
}

.en-story-body {
  font-family: 'Mulish', sans-serif;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.8;
  color: #6E6D68;
  margin-bottom: 18px;
  max-width: 560px;
  text-align: justify;
}

/* Admin-authored rich-text content (eagle_page.fullcontent) rendered on
   the About page — same typography as .en-story-body above, applied to
   whatever tags the admin's editor produces. */
.en-story-body-html {
  font-family: 'Mulish', sans-serif;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.8;
  color: #6E6D68;
  max-width: 560px;
  text-align: justify;
}
.en-story-body-html p {
  margin-bottom: 18px;
  text-align: justify;
}
.en-story-body-html p:last-child {
  margin-bottom: 0;
}

/* Safety net for whatever the admin's CKEditor content actually contains
   (About page / Home page story section / Villa description) — long
   words, pasted tables, embeds or oversized images should never be able
   to force horizontal scroll on phone or tablet widths. */
.en-story-body,
.en-story-body-html {
  overflow-wrap: break-word;
  word-break: break-word;
}

.en-story-body img,
.en-story-body-html img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 8px 0;
}

.en-story-body table,
.en-story-body-html table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.en-story-body iframe,
.en-story-body-html iframe,
.en-story-body video,
.en-story-body-html video {
  max-width: 100%;
}

.en-story-metrics {
  display: flex;
  gap: 48px;
  margin-top: 34px;
}

.en-story-metric strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.en-story-metric span {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
}

/* ═══════════════════════════════════════
   SECTION HEADER (shared)
═══════════════════════════════════════ */
.en-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.en-section-header .en-label-gold { text-align: center; }

.en-section-heading {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.2;
  color: var(--charcoal);
}

/* ═══════════════════════════════════════
   VILLAS
═══════════════════════════════════════ */
.en-villas {
  background: var(--cream-2);
  padding: 60px 0 60px;
}

.en-villas-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.en-villa-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(30,20,10,0.06);
}

.en-villa-photo {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.en-villa-photo img,
.en-villa-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}

.en-villa-card:hover .en-villa-photo img,
.en-villa-card:hover .en-villa-photo video { transform: scale(1.06); }

.en-villa-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.en-villa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(30,20,10,0.12);
}

.en-villa-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(30,30,30,0.45);
  color: var(--white);
  font-family: 'Mulish', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.en-villa-price {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255,255,255,0.92);
  color: var(--charcoal);
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
}

.en-villa-price strong { font-weight: 700; }

.en-villa-body { padding: 26px 30px 30px; }

.en-villa-name {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.en-villa-desc {
  font-family: 'Mulish', sans-serif;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid-gray);
  margin-bottom: 18px;
}

.en-villa-specs {
  display: flex;
  gap: 22px;
  font-family: 'Mulish', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #4B4B47;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.en-villa-amenities {
  display: flex;
  gap: 34px;
  margin-bottom: 26px;
}

.en-villa-amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Mulish', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #4B4B47;
}

.en-villa-amenity svg { color: #C99A2E; }

.en-villa-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.en-link-view {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.en-btn-reserve {
  font-family: 'Mulish', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  background: linear-gradient(180deg, #C9A76D, #E3CEA9);
  padding: 12px 26px;
  border-radius: 24px;
  transition: transform 0.3s;
}

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

/* ═══════════════════════════════════════
   WHY EAGLE NEST
═══════════════════════════════════════ */
.en-why {
  background: var(--cream-1);
  padding: 60px var(--gutter) 60px;
}

.en-why-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.en-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.en-why-item {
  padding: 44px 44px 40px;
  border-right: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.en-why-item:nth-child(3n) { border-right: none; }
.en-why-item:nth-child(4),
.en-why-item:nth-child(5),
.en-why-item:nth-child(6) { border-bottom: none; }

.en-why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E8E2D9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.4s ease, background 0.4s ease;
}

.en-why-item:hover .en-why-icon {
  transform: translateY(-4px) scale(1.06);
  background: #C99A2E;
}

.en-why-item:hover .en-why-icon svg { color: var(--white); }

.en-why-icon svg { color: #C99A2E; }

.en-why-item h3 {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 21px;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.en-why-item p {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--mid-gray);
}

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.en-gallery {
  background: var(--cream-2);
  padding: 60px 0 60px;
}

.en-gallery-header {
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.en-gallery-heading {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 42px;
  color: var(--charcoal);
}

.en-link-gallery {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Fixed "bento" layout — NOT dynamic masonry. This matches the
   approved design exactly: a tall image top-left, a shorter image
   bottom-left, a wide image top-right, two square-ish images
   side-by-side in the middle-right, and a wide image bottom-right.
   Images are cropped (object-fit: cover) to fill their assigned
   cell — this is a deliberate design choice for visual consistency,
   not a bug. Each block always represents up to 6 photos: en-g1..en-g6
   mark each photo's fixed position. Extra photos beyond 6 render as
   additional stacked .en-gallery-grid blocks (see gallery.php), each
   repeating this exact same layout/position pattern — EXCEPT for a
   final leftover group of fewer than 6 photos, which uses
   .en-gallery-partial instead (below) so it never leaves unused a-f
   positions sitting empty. */
.en-gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows:
    clamp(220px, 26vw, 320px)
    clamp(180px, 20vw, 240px)
    clamp(200px, 22vw, 260px);
  grid-template-areas:
    "a c c"
    "a d e"
    "b f f";
  gap: 20px;
}

.en-gallery-block + .en-gallery-block {
  margin-top: 20px;
}

.en-g1 { grid-area: a; }
.en-g2 { grid-area: b; }
.en-g3 { grid-area: c; }
.en-g4 { grid-area: d; }
.en-g5 { grid-area: e; }
.en-g6 { grid-area: f; }

.en-gallery-grid img,
.en-gallery-partial img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}

.en-gallery-grid img:hover,
.en-gallery-partial img:hover { transform: scale(1.04); }

/* A trailing group of 1-5 leftover photos (fewer than a full 6) can't
   fill the fixed a-f bento positions without leaving some of them
   empty — that was the bug: 3 leftover photos rendered as positions
   a/b/c only, leaving d/e/f as blank space. Instead, leftover photos
   flow compactly left-to-right into a plain equal-cell grid, same
   card styling (rounded corners, hover zoom, cropped-to-fill), just
   without the fixed asymmetric positions. */
.en-gallery-partial {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(200px, 24vw, 280px);
  gap: 20px;
}

/* Mini-bento variants for 2-5 leftover photos — same tall/wide varied
   card design as the 6-photo .en-gallery-grid above, just scaled down.
   Picked by count via [data-count] (set in gallery.js); en-p1..en-p5
   mark each photo's fixed position within its variant. This is what
   makes a filter with only 2 or 5 matching photos (e.g. Architecture,
   Interiors) look the same as a full 6-photo group (e.g. Nature)
   instead of falling back to a plain equal-size grid. */
.en-gallery-partial[data-count="2"] {
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: clamp(260px, 30vw, 380px);
  grid-template-areas: "a b";
}

.en-gallery-partial[data-count="3"] {
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: repeat(2, clamp(160px, 20vw, 220px));
  grid-template-areas:
    "a b b"
    "a c c";
}

.en-gallery-partial[data-count="4"] {
  grid-template-rows:
    clamp(220px, 26vw, 320px)
    clamp(180px, 20vw, 240px);
  grid-template-areas:
    "a b b"
    "a c d";
}

.en-gallery-partial[data-count="5"] {
  grid-template-rows:
    clamp(220px, 26vw, 320px)
    clamp(140px, 16vw, 190px)
    clamp(140px, 16vw, 190px);
  grid-template-areas:
    "a b b"
    "a c d"
    "a e e";
}

.en-p1 { grid-area: a; }
.en-p2 { grid-area: b; }
.en-p3 { grid-area: c; }
.en-p4 { grid-area: d; }
.en-p5 { grid-area: e; }

@media (max-width: 992px) {
  .en-gallery-partial[data-count] {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas:
      "a"
      "b"
      "c"
      "d"
      "e";
  }

  /* Below tablet width the asymmetric bento cramps too much — fall
     back to a simple single-column stack, full natural aspect ratio
     (no cropping), in the same a→f order. */
  .en-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas:
      "a"
      "b"
      "c"
      "d"
      "e"
      "f";
  }

  .en-gallery-partial {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .en-gallery-grid img,
  .en-gallery-partial img {
    height: auto;
    object-fit: unset;
  }
}

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.en-cta {
  position: relative;
  overflow: hidden;
  /* padding: 90px var(--gutter) 100px; */
  padding: 50px 40px 50px;
}

.en-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.en-cta-bg img { width: 100%; height: 100%; object-fit: cover; }

.en-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,24,0.55) 0%, rgba(10,14,24,0.72) 100%);
}

.en-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.en-cta-inner .en-label-gold {
  text-align: center;
  color: var(--gold-light);
}

.en-cta-heading {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 28px;
}

.en-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.en-btn-gold-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  background: linear-gradient(180deg, #C9A76D, #E3CEA9);
  padding: 16px 32px;
  border-radius: 30px;
  transition: transform 0.3s;
}

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

.en-btn-outline-cta {
  display: inline-flex;
  align-items: center;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 16px 32px;
  border-radius: 30px;
  transition: background 0.3s, color 0.3s;
}

.en-btn-outline-cta:hover {
  background: var(--white);
  color: var(--charcoal);
}

/* ── Newsletter card (moved here from the footer) ── */
.en-cta-newsletter {
  position: relative;
  max-width: 680px;
  margin: 36px auto 0;
  padding: 28px 44px 20px;
  background: rgba(10, 14, 24, 0.45);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  text-align: center;
}

.en-cta-newsletter-icon {
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #C9A76D, #E3CEA9);
  border-radius: 50%;
  color: #1a1a1a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.en-cta-newsletter-title {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 21px;
  color: var(--white);
  margin: 0 0 6px;
}

.en-cta-newsletter-text {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  max-width: 560px;
  margin: 0 auto 14px;
}

.en-cta-newsletter-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}

.en-cta-newsletter-input-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.en-cta-newsletter-input-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  stroke: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.en-cta-newsletter-input {
  width: 100%;
  height: 42px;
  padding: 0 16px 0 40px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-right: none;
  border-radius: 30px 0 0 30px;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.en-cta-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.en-cta-newsletter-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.en-cta-newsletter-btn {
  flex-shrink: 0;
  padding: 0 26px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #C9A76D, #E3CEA9);
  border: 1px solid transparent;
  border-radius: 0 30px 30px 0;
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s;
}

.en-cta-newsletter-btn:hover {
  background: #d9b578;
}

.en-cta-newsletter-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.en-cta-newsletter-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 0;
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}

.en-cta-newsletter-note svg {
  stroke: var(--gold);
  flex-shrink: 0;
}

.en-cta-newsletter-note.is-success { color: #7cc98a; }
.en-cta-newsletter-note.is-success svg { stroke: #7cc98a; }
.en-cta-newsletter-note.is-error { color: #e08585; }
.en-cta-newsletter-note.is-error svg { stroke: #e08585; }

@media (max-width: 600px) {
  .en-cta-newsletter { padding: 40px 24px 28px; }
  .en-cta-newsletter-form { flex-direction: column; }
  .en-cta-newsletter-input {
    border-radius: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }
  .en-cta-newsletter-btn {
    border-radius: 30px;
    margin-top: 10px;
    width: 100%;
  }
}

/* ════════════════════════════════════════════
   NEW FOOTER  (PRESERVED EXACTLY FROM EXISTING PROJECT)
   Do not redesign — content-only updates permitted.
   ════════════════════════════════════════════ */
.footer-new {
  position: relative;
  background: #1a1a1a;
  overflow: hidden;
}

/* ── Background image ── */
.footer-new-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.footer-new-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  opacity: 0.45;
}

/* ── Shared inner wrapper ── */
.footer-new-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── TOP section ── */
.footer-new-top {
  padding: 72px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-new-top .footer-new-inner {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.9fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* ── Brand column ── */
.fn-brand {
  display: flex;
  flex-direction: column;
}

.fn-logo {
  display: inline-flex;
  margin-bottom: 18px;
  text-decoration: none;
  flex-shrink: 0;
}

.fn-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

.fn-tagline {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.40);
  line-height: 1.8;
  font-weight: 300;
  max-width: 260px;
  margin-bottom: 28px;
}

/* Social icons */
.fn-socials {
  display: flex;
  gap: 10px;
}

.fn-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  flex-shrink: 0;
}

.fn-social svg {
  stroke: currentColor;
  display: block;
}

.fn-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 151, 45, 0.08);
}

/* ── Nav columns ── */
.fn-col {
  display: flex;
  flex-direction: column;
}

.fn-col-title {
  font-family: 'Mulish', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 26px;
  margin-top: 0;
  padding: 0;
}

.fn-col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fn-col ul li {
  list-style: none;
}

.fn-col ul li a {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 300;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  display: inline-block;
}

.fn-col ul li a:hover {
  color: var(--gold);
}

/* ── Contact column ── */
.fn-col--contact ul {
  gap: 16px;
}

.fn-contact-item {
  display: flex;
  align-items: flex-start;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 300;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s;
}

.fn-contact-item svg {
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  margin-right: 10px;
}

.fn-contact-item:hover {
  color: var(--gold);
}

.fn-contact-addr {
  cursor: default;
}

/* ── Grouped phone numbers: one phone icon, numbers stacked
   underneath it (see fn-contact-phones markup in footer.php) instead
   of the old repeated-icon-per-number list. ── */
.fn-contact-phones {
  align-items: flex-start;
}

.fn-phone-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fn-phone-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.fn-phone-list a:hover {
  color: var(--gold);
}

/* ── Bottom bar ── */
.footer-new-bottom {
  position: relative;
  z-index: 2;
  padding: 20px 0;
}

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

.fn-copy {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.fn-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fn-legal a {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s;
}

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

.fn-legal-divider {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.12);
}

/* ════════════════════════════════════════════
   FOOTER RESPONSIVE (PRESERVED FROM EXISTING PROJECT)
   ════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-new-top .footer-new-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
  }
  .fn-col--contact {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 40px;
  }
  .fn-col--contact ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 40px;
  }
}

@media (max-width: 768px) {
  .footer-new-inner { padding: 0 40px; }
  .footer-new-top .footer-new-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .fn-brand { grid-column: 1 / -1; }
  .fn-col--contact {
    grid-column: unset;
    flex-direction: column;
  }
  .fn-col--contact ul {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-new-inner { padding: 0 24px; }
  .footer-new-top .footer-new-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .fn-brand { grid-column: unset; }
  .fn-col--contact { grid-column: unset; }
  .fn-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ════════════════════════════════════════════
   RESPONSIVE — REST OF SITE
   ════════════════════════════════════════════ */
@media (max-width: 1200px) {
  :root { --gutter: 56px; }
  .en-navbar { padding: 20px var(--gutter) 0; }
  .en-hero-inner { padding: 150px var(--gutter) 70px; grid-template-columns: 1fr; }
  .en-booking { margin-left: 0; max-width: 420px; }
}

@media (max-width: 900px) {
  .en-nav-links { display: none; }
  .en-nav-hamburger { display: flex; }
  .en-logo-icon { width: 80px; height: 80px; }
  .en-story-grid { grid-template-columns: 1fr; gap: 44px; }
  .en-villas-grid { grid-template-columns: 1fr; }
  .en-why-grid { grid-template-columns: 1fr 1fr; }
  .en-why-item:nth-child(3n) { border-right: 1px solid rgba(0,0,0,0.07); }
  .en-why-item:nth-child(2n) { border-right: none; }
  .en-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .en-stat:nth-child(2) { border-right: none; }
  .en-gallery-grid { gap: 16px; }
  .en-cta-heading { font-size: 38px; }
}

@media (max-width: 600px) {
  :root { --gutter: 26px; }
  .en-logo-icon { width: 64px; height: 64px; }
  .en-villa-specs { flex-wrap: wrap; gap: 10px 18px; }
  .en-villa-amenities { flex-wrap: wrap; gap: 18px; }
  .en-why-grid { grid-template-columns: 1fr; }
  .en-why-item { border-right: none !important; }
  .en-stats-grid { grid-template-columns: 1fr 1fr; }
  .en-gallery-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .en-cta-actions { flex-direction: column; }
}

/* ════════════════════════════════════════════
   MOBILE SIDEBAR NAVIGATION
   Luxury hamburger → animated slide-in drawer.
   Desktop nav is untouched; this only appears
   below the 900px nav breakpoint already defined above.
   ════════════════════════════════════════════ */

/* Animated hamburger icon (☰ → ✕) */
.en-nav-hamburger span {
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1), opacity 0.3s ease;
  will-change: transform, opacity;
}

.en-nav-hamburger.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.en-nav-hamburger.is-active span:nth-child(2) { opacity: 0; }
.en-nav-hamburger.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Dark semi-transparent overlay */
.en-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 18, 0.6);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 90;
}

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

/* Slide-in sidebar panel */
.en-mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: min(320px, 82vw);
  background: linear-gradient(180deg, #0E1524, #0B0F16);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s ease;
  z-index: 95;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 36px;
  will-change: transform;
}

.en-mobile-sidebar.is-open {
  transform: translateX(0);
  box-shadow: 30px 0 70px rgba(0,0,0,0.35);
}

.en-mobile-sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.en-mobile-logo .en-logo-icon { width: 76px; height: 76px; }

.en-mobile-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.en-mobile-close:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: rotate(90deg);
}

.en-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: auto;
}

.en-mobile-links li a {
  display: block;
  padding: 15px 4px;
  font-family: 'Mulish', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s, padding-left 0.3s;
}

.en-mobile-links li a:hover,
.en-mobile-links li a:focus-visible {
  color: var(--gold-light);
  padding-left: 8px;
}

.en-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.en-mobile-btn-primary,
.en-mobile-btn-secondary {
  text-align: center;
  justify-content: center;
}

/* Lock body scroll while sidebar is open */
body.en-scroll-lock {
  overflow: hidden;
}

/* Focus visibility for keyboard accessibility */
.en-nav-hamburger:focus-visible,
.en-mobile-close:focus-visible,
.en-mobile-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ════════════════════════════════════════════
   LUXURY MICRO ANIMATIONS — ICONS
   Very subtle floating loop, paused on hover so the
   existing hover-lift/scale effects stay unobstructed.
   ════════════════════════════════════════════ */
@keyframes en-icon-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.en-why-icon {
  animation: en-icon-float 4.2s ease-in-out infinite;
  will-change: transform;
}

.en-why-item:hover .en-why-icon {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .en-why-icon { animation: none; }
}

/* GPU-friendly hints on elements already animated via transform on hover */
.en-villa-card,
.en-villa-photo img,
.en-gallery-grid img,
.en-btn-nav-cta,
.en-btn-gold-block,
.en-btn-gold-pill,
.en-btn-reserve,
.en-btn-outline,
.en-btn-outline-cta {
  will-change: transform;
}

/* ════════════════════════════════════════════
   EXTENDED RESPONSIVE BREAKPOINTS
   Appended only — every rule above stays untouched.
   Fine-tunes spacing/typography across the full
   requested breakpoint range without altering the
   approved desktop appearance.
   ════════════════════════════════════════════ */

/* Ultra-wide monitors — a touch more breathing room, never less */
@media (min-width: 1921px) {
  :root { --gutter: 140px; }
}

@media (max-width: 1600px) {
  :root { --gutter: 90px; }
}

@media (max-width: 1440px) {
  :root { --gutter: 80px; }
}

@media (max-width: 1366px) {
  :root { --gutter: 70px; }
}

@media (max-width: 1280px) {
  :root { --gutter: 60px; }
}

@media (max-width: 1024px) {
  .en-hero-heading { font-size: clamp(38px, 6vw, 60px); }
  .en-story-heading,
  .en-section-heading { font-size: 36px; }
  .en-villa-name { font-size: 24px; }
}

/* BUG FIX (see chat - "Why Eagle's Nest" cards showing as 2-up pairs
   on phone instead of one at a time): this block ("EXTENDED RESPONSIVE
   BREAKPOINTS", appended lower in the file) used to re-declare
   .en-why-grid { grid-template-columns: 1fr 1fr; } here at max-width:
   992px. That's already handled by the max-width: 900px block earlier
   in this file, so it was a redundant duplicate - but because it came
   *later* in the file, and max-width: 992px is still true on every
   phone, it won the cascade tie-break (equal specificity resolves by
   source order, not by which @media range is narrower) and silently
   overrode the correct single-column max-width: 600px rule that's also
   defined earlier. Removed rather than reordered, since the 900px
   block already covers the intended tablet 2-column layout on its own. */

@media (max-width: 768px) {
  :root { --gutter: 32px; }
  .en-hero-inner { padding-top: 130px; padding-bottom: 50px; }
  .en-story-heading,
  .en-section-heading { font-size: 32px; }
  .en-cta-heading { font-size: 32px; }
  .en-villas-grid { gap: 24px; }
  .en-why-item { padding: 32px 28px 28px; }
}

@media (max-width: 576px) {
  :root { --gutter: 20px; }
  .en-hero-heading { font-size: clamp(32px, 9vw, 44px); }
  .en-hero-subtitle { font-size: 14.5px; }
  .en-booking { max-width: 100%; padding: 20px; }
  .en-dp-panel { width: 100%; }
  .en-story-heading,
  .en-section-heading { font-size: 28px; }
  .en-story-metrics { flex-wrap: wrap; gap: 24px; }
  .en-gallery-grid { gap: 16px; }
  .en-cta-heading { font-size: 26px; }
}

@media (max-width: 480px) {
  .en-hero-eyebrow { font-size: 11px; }
  .en-villa-body { padding: 22px 20px 24px; }
  .en-villa-amenities { gap: 16px; row-gap: 16px; }
  .en-mobile-sidebar { width: min(300px, 86vw); padding: 24px 22px 30px; }
}

@media (max-width: 430px) {
  .en-story-badge { max-width: 210px; padding: 16px 18px; }
  .en-btn-nav-cta { padding: 12px 20px; font-size: 11px; }
}

@media (max-width: 390px) {
  .en-hero-heading { font-size: clamp(28px, 10vw, 38px); }
  .en-villa-specs { gap: 8px 14px; }
}

@media (max-width: 375px) {
  .en-why-item { padding: 26px 20px 22px; }
}

@media (max-width: 360px) {
  :root { --gutter: 16px; }
  .en-cta-heading { font-size: 23px; }
  .en-story-metrics { gap: 18px; }
}

@media (max-width: 320px) {
  .en-hero-heading { font-size: clamp(26px, 11vw, 32px); }
  .en-villa-name { font-size: 20px; }
  .en-mobile-sidebar { width: 88vw; }
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL PAGE SKELETON LOADER
   Shown on every page (markup lives in partials/header.php) while
   the page's images/fonts finish loading, then faded out by the
   inline script in partials/footer.php. Generic shimmer blocks —
   not tied to any single page's exact layout — so one loader
   works everywhere without per-page markup.
   ═══════════════════════════════════════════════════════════════ */
#en-skeleton {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #FAF7F1;
  display: flex;
  flex-direction: column;
  padding: 28px var(--gutter, 80px);
  gap: 24px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#en-skeleton.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.en-sk-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.en-sk-block {
  border-radius: 10px;
  background: linear-gradient(100deg, #ECE6DA 8%, #F5F1E8 18%, #ECE6DA 33%);
  background-size: 200% 100%;
  animation: en-sk-shimmer 1.4s ease-in-out infinite;
}

@keyframes en-sk-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.en-sk-logo { width: 96px; height: 96px; border-radius: 50%; flex-shrink: 0; }
.en-sk-nav { display: flex; gap: 28px; }
.en-sk-nav .en-sk-block { width: 70px; height: 14px; }
.en-sk-cta { width: 140px; height: 44px; border-radius: 30px; }

.en-sk-hero { flex: 1; border-radius: 24px; min-height: 0; }

.en-sk-lines { display: flex; flex-direction: column; gap: 14px; max-width: 640px; }
.en-sk-lines .en-sk-block:nth-child(1) { height: 20px; width: 40%; }
.en-sk-lines .en-sk-block:nth-child(2) { height: 46px; width: 90%; }
.en-sk-lines .en-sk-block:nth-child(3) { height: 46px; width: 70%; }
.en-sk-lines .en-sk-block:nth-child(4) { height: 16px; width: 55%; }

@media (max-width: 900px) {
  .en-sk-nav { display: none; }
  .en-sk-logo { width: 80px; height: 80px; }
}

@media (max-width: 600px) {
  #en-skeleton { padding: 20px; gap: 18px; }
  .en-sk-logo { width: 64px; height: 64px; }
  .en-sk-cta { width: 110px; height: 38px; }
  .en-sk-lines .en-sk-block:nth-child(2) { height: 34px; }
  .en-sk-lines .en-sk-block:nth-child(3) { height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .en-sk-block { animation: none; }
}

.en-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.en-hero-slide.active {
  opacity: 1;
}