/* ============================================
   HOTEL LE SAINT AMANT - Style principal AAA
   Palette : Marine / Sable / Blanc / Or doux
   Fonts : Cormorant Garamond + Inter
   ============================================ */

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

:root {
  /* Colors */
  --navy: #1a2744;
  --navy-light: #2a3d5c;
  --navy-dark: #0f1a2e;
  --sand: #f5f0e8;
  --sand-light: #faf8f4;
  --sand-dark: #e8dfd2;
  --gold: #c9a96e;
  --gold-light: #dfc99e;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e5e5e5;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --gray-800: #374151;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: clamp(60px, 10vw, 120px);
  --container-width: 1280px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul { list-style: none; }

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

/* --- Typography --- */
.section__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.section--dark .section__title {
  color: var(--white);
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
}

.section--dark .section__subtitle {
  color: var(--gray-400);
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section {
  padding: var(--section-padding) 0;
}

.section--dark {
  background: var(--navy);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.nav--scrolled {
  background: rgba(26, 39, 68, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav__links a:hover {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

/* Language switcher */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav__lang:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}

.nav__lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.nav__cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease) !important;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 26, 46, 0.15) 0%,
    rgba(15, 26, 46, 0.05) 30%,
    rgba(15, 26, 46, 0.15) 50%,
    rgba(15, 26, 46, 0.6) 75%,
    rgba(15, 26, 46, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.hero__line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
  opacity: 0;
  transform: scaleX(0);
  animation: lineReveal 0.6s var(--ease-out) 0.2s forwards;
}

.hero__badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

/* Hero bottom info bar */
.hero__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}

.hero__info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

.hero__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s var(--ease) infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 42px;
  font-size: 0.9375rem;
}

/* ============================================
   INTRO
   ============================================ */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro__desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 40px;
}

.intro__stats {
  display: flex;
  gap: 40px;
}

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

.intro__stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.intro__stat-number small {
  font-size: 0.55em;
  color: var(--gray-600);
}

.intro__stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.intro__images {
  position: relative;
  height: 520px;
}

.intro__img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__img--main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 78%;
}

.intro__img--accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border: 6px solid var(--white);
  z-index: 2;
}

.intro__img--badge {
  position: absolute;
  bottom: 44%;
  right: 48%;
  z-index: 3;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}

.intro__img--badge span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.intro__img--badge strong {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

/* ============================================
   ROOMS CAROUSEL
   ============================================ */
.rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Hide carousel nav on desktop */
.carousel__nav {
  display: none;
}

.room-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.room-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.room-card__image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.room-card:hover .room-card__image img {
  transform: scale(1.05);
}

.room-card__price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.room-card__body {
  padding: 28px;
}

.room-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.room-card__desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 20px;
  line-height: 1.6;
}

.room-card__specs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.room-card__spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

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

.room-card__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.3s var(--ease);
}

.room-card:hover .room-card__cta {
  gap: 14px;
}

/* Carousel nav (mobile only) */

.carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.carousel__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.carousel__dots {
  display: flex;
  gap: 8px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel__dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.pricing__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  background: var(--white);
  font-size: 0.9rem;
}

.pricing__table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: 16px 20px;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.pricing__table thead th:first-child {
  text-align: left;
  border-radius: 16px 0 0 0;
}

.pricing__table thead th:last-child {
  border-radius: 0 16px 0 0;
}

.pricing__table thead .pricing__period {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 4px;
}

.pricing__table tbody td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-800);
}

.pricing__table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
}

.pricing__table tbody tr:hover {
  background: var(--sand-light);
}

.pricing__table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 16px;
}

.pricing__table tbody tr:last-child td:last-child {
  border-radius: 0 0 16px 0;
}

.pricing__table .pricing__price {
  font-weight: 600;
  color: var(--navy);
}

/* Extras row spanning full width */
.pricing__table .pricing__extra-row td {
  background: var(--sand-light);
  font-size: 0.85rem;
}

.pricing__table .pricing__extra-row td:first-child {
  font-weight: 600;
}

.pricing__extras {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
}

.pricing__extra-card {
  background: var(--sand-light);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
}

.pricing__extra-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.pricing__extra-card span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.pricing__footer {
  text-align: center;
  margin-top: 28px;
}

.pricing__note {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.pricing__closure {
  display: inline-block;
  margin-top: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
}

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

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 26, 46, 0.85) 0%,
    rgba(15, 26, 46, 0.7) 50%,
    rgba(15, 26, 46, 0.85) 100%
  );
}

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

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-banner__phone {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.cta-banner__phone a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.3s;
}

.cta-banner__phone a:hover {
  color: var(--gold-light);
}

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--sand-light);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.service-card--has-photo {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.service-card__photo {
  height: 180px;
  overflow: hidden;
}

.service-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.service-card:hover .service-card__photo img {
  transform: scale(1.05);
}

.service-card--has-photo .service-card__body {
  padding: 28px;
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.service-card__price {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery__filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery__filter {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.gallery__filter:hover,
.gallery__filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery__item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  transition: all 0.4s var(--ease);
}

.gallery__item:hover {
  transform: scale(1.02);
  z-index: 2;
}

.gallery__item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item.hidden {
  display: none;
}

/* ============================================
   BELLE-ILE EXPERIENCE
   ============================================ */
.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience__desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 36px;
}

.experience__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Reuse location highlight styles for experience section */
.location__highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--sand-light);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}

.location__highlight:hover {
  background: var(--sand);
  transform: translateX(4px);
}

.location__highlight-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.location__highlight-text {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.location__highlight-detail {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 400;
}

/* Mosaic layout */
.experience__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 520px;
}

.experience__img {
  border-radius: 16px;
  overflow: hidden;
}

.experience__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.experience__img:hover img {
  transform: scale(1.05);
}

.experience__img--tall {
  grid-row: span 2;
}

/* Experience video */
.experience__video {
  margin-top: 60px;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  cursor: pointer;
}

.experience__video iframe,
.experience__video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s var(--ease);
}

.experience__video:hover .experience__video-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.experience__video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  transition: background 0.3s;
  pointer-events: none;
}

.experience__video:hover::after {
  background: rgba(0,0,0,0.25);
}

.experience__video.playing::after {
  background: transparent;
  pointer-events: none;
}

.experience__video-play,
.experience__video-cover {
  transition: opacity 0.4s ease;
}

.experience__video.playing .experience__video-play,
.experience__video.playing .experience__video-cover {
  opacity: 0;
  pointer-events: none;
}

.experience__video.playing.paused .experience__video-play {
  opacity: 1;
  pointer-events: auto;
}

.experience__video.playing.paused::after {
  background: rgba(0,0,0,0.25);
}

/* Make iframe clickable through overlay */
.experience__video.playing {
  cursor: pointer;
}

.experience__video #ytIframe,
.experience__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  line-height: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
}

.footer__tagline {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__col p,
.footer__col li {
  font-size: 0.9rem;
  line-height: 2;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
}

.footer__admin {
  opacity: 0.3;
  transition: opacity 0.3s;
}

.footer__admin:hover {
  opacity: 0.7;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s;
}

.lightbox__close:hover { transform: rotate(90deg); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 16px;
  transition: color 0.3s;
  z-index: 10;
}

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__prev:hover,
.lightbox__next:hover { color: var(--gold); }

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes lineReveal {
  to { opacity: 1; transform: scaleX(1); }
}

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

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .intro__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro__images {
    height: 400px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .experience__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .experience__mosaic {
    height: 400px;
  }

  .footer__top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }

  .nav__links.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav__links a {
    font-size: 1.25rem;
  }

  .hero__title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero__bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .hero__info {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero__scroll {
    display: none;
  }

  .rooms__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .rooms__grid::-webkit-scrollbar { display: none; }

  .room-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
  }

  .carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .experience__highlights {
    grid-template-columns: 1fr;
  }

  .experience__mosaic {
    height: 300px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item:nth-child(1) {
    grid-column: span 1;
  }

  .intro__stats {
    gap: 24px;
  }

  .intro__stat-number {
    font-size: 2rem;
  }

  .experience__mosaic {
    grid-template-columns: 1fr;
    height: auto;
  }

  .experience__img--tall {
    grid-row: span 1;
  }

  .experience__img {
    height: 200px;
  }
}
