/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ========== NAVIGATION ========== */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 253, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: box-shadow 0.3s ease;
}

.nav-fixed.scrolled {
  box-shadow: 0 4px 30px rgba(27, 67, 50, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1B4332;
}

.nav-logo-icon {
  color: #1B4332;
}

.nav-logo-text {
  letter-spacing: -0.02em;
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1B4332;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1B4332;
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: #2e7d32;
}

.nav-cta-desktop {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #1B4332;
  color: #fefdf8;
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta-desktop:hover {
  background: #2e7d32;
  transform: translateY(-1px);
}

.nav-menu-btn,
.nav-close-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #1B4332;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.nav-menu-btn:hover,
.nav-close-btn:hover {
  background: rgba(27, 67, 50, 0.08);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(254, 253, 248, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay .nav-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  display: flex;
}

.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.nav-links .nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
}

.nav-links .nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #1B4332;
  color: #fefdf8;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #fefdf8;
  padding: 6rem 2rem 4rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(27, 67, 50, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(27, 67, 50, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(27, 67, 50, 0.08);
  border: 1px solid rgba(27, 67, 50, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1B4332;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #1B4332;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: #1B4332;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-headline-accent {
  display: block;
  color: #2e7d32;
  font-style: italic;
  font-weight: 400;
  font-size: 0.85em;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #4a6b5a;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1B4332;
  color: #fefdf8;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.25);
}

.btn-primary:hover {
  background: #2e7d32;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27, 67, 50, 0.3);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #1B4332;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid rgba(27, 67, 50, 0.2);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  border-color: #1B4332;
  background: rgba(27, 67, 50, 0.04);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B4332;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: #6b9b7a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 0.25rem;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(27, 67, 50, 0.15);
}

/* Hero Image Stack */
.hero-right {
  position: relative;
}

.hero-image-stack {
  position: relative;
  height: 600px;
}

.hero-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(27, 67, 50, 0.15);
}

.hero-img-main {
  width: 100%;
  height: 520px;
}

.hero-img-main img,
.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: #1B4332;
  border-radius: 16px;
  z-index: -1;
}

.hero-img-float {
  position: absolute;
  bottom: 40px;
  left: -60px;
  width: 260px;
  height: 195px;
  border: 6px solid #fefdf8;
  z-index: 2;
}

.hero-geometric {
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 3;
  animation: float-geo 6s ease-in-out infinite;
}

@keyframes float-geo {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #6b9b7a;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #1B4332, transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

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

/* ========== COLOR BLOCKS ========== */
.color-block {
  position: relative;
  height: 120px;
  overflow: hidden;
}

.color-block-green {
  background: #1B4332;
}

.color-block-cream {
  background: #fefdf8;
  border-top: 1px solid rgba(27, 67, 50, 0.06);
  border-bottom: 1px solid rgba(27, 67, 50, 0.06);
}

.color-block-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ========== SECTIONS COMMON ========== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1B4332;
  margin-bottom: 1rem;
}

.section-label-line {
  width: 32px;
  height: 2px;
  background: #1B4332;
  display: block;
}

.section-label-light {
  color: #fefdf8;
}

.section-label-line-light {
  background: rgba(254, 253, 248, 0.5);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: #1B4332;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.section-title-accent {
  color: #2e7d32;
  font-style: italic;
  font-weight: 400;
}

.section-title-light {
  color: #fefdf8;
}

.section-title-accent-light {
  color: rgba(254, 253, 248, 0.7);
  font-style: italic;
  font-weight: 400;
}

.section-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #4a6b5a;
  max-width: 600px;
}

.section-desc-light {
  color: rgba(254, 253, 248, 0.75);
  max-width: 480px;
}

/* ========== ROOMS ========== */
.rooms-section {
  padding: 7rem 2rem;
  background: #fefdf8;
}

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

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.room-card {
  background: #fefdf8;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(27, 67, 50, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(27, 67, 50, 0.12);
}

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

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

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

.room-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #1B4332;
  color: #fefdf8;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-card-tag-accent {
  background: #d4a017;
  color: #1B4332;
}

.room-card-body {
  padding: 1.75rem;
}

.room-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B4332;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.room-card-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #6b9b7a;
  margin-bottom: 1.25rem;
}

.room-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.room-card-amenities li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1B4332;
}

.room-card-amenities svg {
  color: #2e7d32;
  flex-shrink: 0;
}

.room-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1B4332;
  border-bottom: 2px solid rgba(27, 67, 50, 0.2);
  padding-bottom: 2px;
  transition: border-color 0.3s ease, gap 0.3s ease;
}

.room-card-cta:hover {
  border-color: #1B4332;
  gap: 0.75rem;
}

/* ========== EXPERIENCE ========== */
.experience-section {
  padding: 7rem 2rem;
  background: #1B4332;
  position: relative;
  overflow: hidden;
}

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

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.experience-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  height: 500px;
}

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

.experience-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 240px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  border: 5px solid #1B4332;
  z-index: 2;
}

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

.experience-img-accent-border {
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(254, 253, 248, 0.15);
  border-radius: 20px;
  z-index: -1;
}

.experience-geo-shape {
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: 3;
  opacity: 0.8;
}

.experience-text-col {
  padding: 2rem 0;
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.exp-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.exp-feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(254, 253, 248, 0.08);
  border: 1px solid rgba(254, 253, 248, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fefdf8;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.exp-feature-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(254, 253, 248, 0.6);
}

/* ========== LOCATION ========== */
.location-section {
  padding: 7rem 2rem;
  background: #fefdf8;
}

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

.location-header {
  margin-bottom: 3rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-card {
  background: #fefdf8;
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.location-card:hover {
  box-shadow: 0 12px 40px rgba(27, 67, 50, 0.08);
  transform: translateY(-2px);
}

.location-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(27, 67, 50, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B4332;
  margin-bottom: 0.875rem;
}

.location-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1B4332;
  margin-bottom: 0.375rem;
}

.location-card-text {
  font-size: 0.9375rem;
  color: #6b9b7a;
  line-height: 1.6;
}

.location-card-text a {
  color: #2e7d32;
  font-weight: 500;
  transition: color 0.2s ease;
}

.location-card-text a:hover {
  color: #1B4332;
}

.location-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.location-card-list li {
  font-size: 0.9375rem;
  color: #6b9b7a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #2e7d32;
  border-radius: 50%;
  flex-shrink: 0;
}

.location-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(27, 67, 50, 0.1);
  min-height: 400px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.location-map-cta {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1B4332;
  color: #fefdf8;
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(27, 67, 50, 0.3);
}

.location-map-cta:hover {
  background: #2e7d32;
  transform: translateY(-2px);
}

/* ========== CONTACT ========== */
.contact-section {
  padding: 7rem 2rem;
  background: #1B4332;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.contact-left {
  position: relative;
}

.contact-geometric {
  position: absolute;
  top: -60px;
  right: -60px;
  z-index: 0;
  pointer-events: none;
}

.contact-left > * {
  position: relative;
  z-index: 1;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(254, 253, 248, 0.06);
  border: 1px solid rgba(254, 253, 248, 0.1);
  border-radius: 14px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-direct-item:hover {
  background: rgba(254, 253, 248, 0.1);
  transform: translateX(4px);
}

.contact-direct-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(254, 253, 248, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fefdf8;
}

.contact-direct-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(254, 253, 248, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-direct-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fefdf8;
}

/* Contact Form */
.contact-form {
  background: rgba(254, 253, 248, 0.06);
  border: 1px solid rgba(254, 253, 248, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(254, 253, 248, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(254, 253, 248, 0.06);
  border: 1px solid rgba(254, 253, 248, 0.15);
  border-radius: 12px;
  color: #fefdf8;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: rgba(254, 253, 248, 0.3);
}

.form-input:focus {
  border-color: rgba(254, 253, 248, 0.4);
  background: rgba(254, 253, 248, 0.08);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(254,253,248,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline x1='6' y1='9' x2='12' y2='15' x3='18' y3='9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: #1B4332;
  color: #fefdf8;
}

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

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fefdf8;
  color: #1B4332;
  padding: 1rem;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: #f5edc8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.form-submit svg {
  transition: transform 0.3s ease;
}

.form-submit:hover svg {
  transform: translate(3px, -3px);
}

/* Form Success */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(254, 253, 248, 0.06);
  border: 1px solid rgba(254, 253, 248, 0.1);
  border-radius: 20px;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  background: rgba(254, 253, 248, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.form-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fefdf8;
  margin-bottom: 0.5rem;
}

.form-success-text {
  font-size: 0.9375rem;
  color: rgba(254, 253, 248, 0.6);
  line-height: 1.65;
  max-width: 320px;
}

/* ========== FOOTER ========== */
.footer {
  background: #0d231a;
  padding: 4rem 2rem 2rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(254, 253, 248, 0.08);
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fefdf8;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  color: #fefdf8;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(254, 253, 248, 0.5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fefdf8;
  margin-bottom: 0.25rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(254, 253, 248, 0.5);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fefdf8;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(254, 253, 248, 0.5);
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(254, 253, 248, 0.5);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #fefdf8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(254, 253, 248, 0.3);
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  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 {
    gap: 2.5rem;
  }

  .hero-image-stack {
    height: 480px;
  }

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

  .rooms-grid .room-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .experience-grid {
    gap: 3rem;
  }

  .location-grid {
    gap: 2rem;
  }
}

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

  .nav-menu-btn {
    display: flex;
  }

  .hero {
    padding: 7rem 1.5rem 4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-right {
    order: -1;
  }

  .hero-image-stack {
    height: 380px;
  }

  .hero-img-main {
    height: 340px;
  }

  .hero-img-float {
    width: 180px;
    height: 135px;
    left: -20px;
    bottom: 20px;
  }

  .hero-geometric {
    width: 80px;
    height: 80px;
    top: -15px;
    right: -15px;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stat-num {
    font-size: 1.25rem;
  }

  .rooms-section,
  .experience-section,
  .location-section,
  .contact-section {
    padding: 5rem 1.5rem;
  }

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

  .rooms-grid .room-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

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

  .experience-image-col {
    order: -1;
  }

  .experience-img-main {
    height: 350px;
  }

  .experience-img-accent {
    width: 180px;
    height: 135px;
    bottom: -20px;
    right: -20px;
  }

  .experience-geo-shape {
    display: none;
  }

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

  .location-map {
    min-height: 300px;
  }

  .location-map iframe {
    min-height: 300px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-geometric {
    display: none;
  }

  .contact-form {
    padding: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 480px) {
  .hero {
    padding: 6rem 1.25rem 3rem;
  }

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

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

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat-divider {
    display: none;
  }

  .room-card-img {
    height: 200px;
  }

  .room-card-body {
    padding: 1.25rem;
  }

  .contact-form {
    padding: 1.25rem;
  }
}
