/* ============================================
   Beachfront — Miramar Beach, FL
   Luxury Hotels & Lodging
   ============================================ */

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

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --cream-50: #faf8f5;
  --cream-100: #f5f0e8;
  --cream-200: #ede5d8;
  --cream-300: #e0d5c4;
  --sand-400: #d4a574;
  --sand-500: #c49a6c;
  --charcoal: #1a1a1a;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--emerald-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--sand-400);
  margin: 0 auto 16px;
  animation: preloaderLine 1.2s var(--ease-smooth) infinite;
}

@keyframes preloaderLine {
  0%, 100% { transform: scaleX(0.3); opacity: 0.4; }
  50% { transform: scaleX(1); opacity: 1; }
}

.preloader-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream-100);
  letter-spacing: 0.05em;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--emerald-900);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  border-radius: 0 0 4px 4px;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 0;
}

/* --- Header --- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#site-header.scrolled {
  border-bottom-color: var(--cream-200);
  box-shadow: 0 1px 20px rgba(6, 78, 59, 0.06);
}

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

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--emerald-900);
  letter-spacing: -0.01em;
}

.logo-icon {
  color: var(--emerald-800);
}

.logo-text {
  transition: color 0.2s;
}

/* --- Nav --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
}

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

.nav-links a:hover {
  color: var(--emerald-800);
}

.nav-links a:hover::after {
  width: 100%;
}

/* --- Header Actions --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}

.btn-sm { padding: 8px 20px; font-size: 0.8125rem; }
.btn-lg { padding: 14px 32px; font-size: 0.9375rem; }
.btn-block { width: 100%; padding: 14px 24px; }

.btn-primary {
  background: var(--emerald-800);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--emerald-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(6, 95, 70, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--emerald-800);
  border: 1.5px solid var(--emerald-800);
}

.btn-outline:hover {
  background: var(--emerald-800);
  color: var(--white);
}

.btn-accent {
  background: var(--sand-400);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--sand-500);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.35);
}

/* --- Menu Toggle --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  align-items: flex-end;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--cream-50);
  border-bottom: 1px solid var(--cream-200);
  padding: 24px;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out);
  z-index: 999;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu a:hover {
  background: var(--cream-100);
  color: var(--emerald-800);
}

/* --- Section Labels & Titles --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--sand-400);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--emerald-800);
}

.section-sub {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  padding: 100px 0 60px;
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 95, 70, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.hero-content {
  padding-right: 16px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 28px;
}

.label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--sand-400);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  max-width: 560px;
}

.hero-headline em {
  font-style: italic;
  color: var(--emerald-800);
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--emerald-900);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-300);
}

/* --- Hero Visual --- */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 520px;
}

.hero-image-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(6, 78, 59, 0.15);
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-accent {
  position: absolute;
  bottom: -32px;
  left: -48px;
  width: 240px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(6, 78, 59, 0.18);
  border: 4px solid var(--cream-50);
}

.hero-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-900);
  color: var(--cream-100);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.25);
}

/* --- Hero Scroll --- */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gray-400), transparent);
  animation: scrollPulse 2s var(--ease-smooth) infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* --- About --- */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(6, 78, 59, 0.1);
}

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

.about-image-secondary {
  position: absolute;
  bottom: -40px;
  right: -32px;
  width: 55%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(6, 78, 59, 0.14);
  border: 4px solid var(--white);
}

.about-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content-col {
  padding: 16px 0;
}

.about-content-col > p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature svg {
  color: var(--emerald-700);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* --- Rooms --- */
.rooms {
  padding: 120px 0;
  background: var(--cream-50);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-sub {
  margin: 0 auto;
}

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

.room-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(6, 78, 59, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(6, 78, 59, 0.12);
}

.room-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 7/5;
}

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

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

.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--emerald-900);
  color: var(--cream-100);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-content {
  padding: 28px;
}

.room-name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.room-desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.room-features li {
  font-size: 0.8125rem;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
}

.room-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--emerald-600);
  border-radius: 50%;
}

.btn-room {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.8125rem;
}

/* --- Experience --- */
.experience {
  padding: 120px 0;
  background: var(--emerald-900);
  color: var(--white);
}

.exp-header {
  text-align: center;
  margin-bottom: 64px;
}

.exp-header .section-label {
  color: var(--sand-400);
}

.exp-header .section-label::before {
  background: var(--sand-400);
}

.exp-header .section-title {
  color: var(--white);
}

.exp-header .section-title em {
  color: var(--sand-400);
}

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

.exp-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 36px 28px;
  transition: background 0.3s, transform 0.3s;
}

.exp-item:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.exp-icon {
  color: var(--sand-400);
  margin-bottom: 20px;
}

.exp-title {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.exp-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* --- Location --- */
.location {
  padding: 120px 0;
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.location-info {
  padding: 16px 0;
}

.location-desc {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 28px;
}

.location-address {
  font-style: normal;
  font-size: 1.0625rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: var(--cream-50);
  border-radius: 10px;
  border-left: 3px solid var(--emerald-700);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.location-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.location-detail svg {
  color: var(--emerald-700);
  flex-shrink: 0;
}

.location-detail a {
  color: var(--emerald-800);
  font-weight: 500;
  transition: color 0.2s;
}

.location-detail a:hover {
  color: var(--emerald-600);
}

.map-placeholder {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(6, 78, 59, 0.1);
  aspect-ratio: 6/5;
}

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

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(6, 78, 59, 0.9), transparent);
  padding: 40px 24px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
}

.map-overlay svg {
  flex-shrink: 0;
}

/* --- Contact --- */
.contact {
  padding: 120px 0;
  background: var(--cream-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  padding: 16px 0;
}

.contact-info > p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.contact-method:hover {
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.08);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-100);
  border-radius: 8px;
  color: var(--emerald-800);
  flex-shrink: 0;
}

.contact-method-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-method-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
}

.contact-method a {
  color: inherit;
}

/* --- Contact Form --- */
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(6, 78, 59, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--cream-50);
  border: 1.5px solid var(--cream-200);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-600);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.btn-submit {
  align-self: flex-start;
  padding: 14px 36px;
}

/* --- Form Success --- */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s var(--ease-out);
}

.success-icon {
  color: var(--emerald-600);
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

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

/* --- Footer --- */
#site-footer {
  background: var(--charcoal);
  color: var(--cream-200);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo {
  color: var(--white);
}

.footer-nav h4,
.footer-contact h4,
.footer-cta h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-400);
  margin-bottom: 20px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

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

.footer-contact address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.footer-contact p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

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

.footer-cta p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

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

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--emerald-800);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(6, 78, 59, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--ease-out);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--emerald-700);
  transform: translateY(-2px);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 480px;
  }

  .hero-image-accent {
    left: -16px;
    width: 200px;
  }

  .about-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-secondary {
    right: 0;
    width: 50%;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .btn-sm {
    display: none;
  }

  .hero {
    padding: 100px 0 80px;
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-image-accent {
    width: 160px;
    bottom: -20px;
    left: -8px;
  }

  .hero-badge {
    right: 8px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px;
  }

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

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

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 90px 0 60px;
  }

  .hero-headline {
    font-size: 1.875rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-image-secondary {
    display: none;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .rooms,
  .about,
  .experience,
  .location,
  .contact {
    padding: 80px 0;
  }
}
