/* ============================================
   The Mountain House — Custom Styles
   ============================================ */

:root {
  --navy: #1B2A4A;
  --navy-light: #243660;
  --navy-dark: #141F38;
  --gold: #D4A843;
  --gold-light: #E8C36A;
  --gold-dark: #B8922E;
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --warm-white: #FFFCF7;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A5A;
  --text-light: #7A7A8A;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 42, 74, 0.10);
  --shadow-lg: 0 8px 40px rgba(27, 42, 74, 0.14);
  --shadow-xl: 0 16px 60px rgba(27, 42, 74, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus {
  top: 16px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn:active {
  transform: translateY(0);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--navy);
}

/* SECTION TAGS */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 168, 67, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header {
  margin-bottom: 56px;
}
.text-center { text-align: center; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27, 42, 74, 0.06);
  transition: all var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
}
.logo-light { color: #fff; }
.logo-text { font-size: 17px; }
.logo-icon { flex-shrink: 0; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.main-nav a {
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-mid);
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
  background: rgba(27, 42, 74, 0.06);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  position: relative;
}
.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 120px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(27, 42, 74, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 168, 67, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-dark);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
}
.hero-feature svg {
  flex-shrink: 0;
}

/* Hero Images */
.hero-image-wrap {
  position: relative;
  padding: 20px;
}
.hero-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-float {
  position: absolute;
  bottom: -20px;
  left: -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--cream);
}
.hero-image-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--warm-white);
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  background: var(--cream);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}
.stat-number svg {
  width: 28px;
  height: 28px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(27, 42, 74, 0.12);
}
.about-content .section-title {
  margin-bottom: 20px;
}
.about-content > p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 16px;
}
.about-content > p:last-of-type {
  margin-bottom: 32px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.value-item {
  display: flex;
  gap: 16px;
}
.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}
.value-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================
   ROOMS
   ============================================ */
.rooms {
  padding: 100px 0;
  background: var(--cream);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.room-card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card-featured {
  border: 2px solid var(--gold);
}
.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.room-img {
  height: 220px;
  overflow: hidden;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-img img {
  transform: scale(1.06);
}
.room-body {
  padding: 28px;
}
.room-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.room-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  margin-bottom: 24px;
}
.room-amenities li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.rooms-note {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* ============================================
   AREA
   ============================================ */
.area {
  padding: 100px 0;
  background: var(--warm-white);
}
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.area-content .section-title {
  margin-bottom: 20px;
}
.area-content > p {
  color: var(--text-mid);
  margin-bottom: 36px;
  font-size: 16px;
}
.activities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.activity-card {
  background: var(--cream);
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.activity-card:hover {
  background: var(--warm-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.activity-icon {
  margin-bottom: 12px;
}
.activity-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.activity-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}
.area-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.area-img-large {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.area-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.area-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.area-img-row img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 90%, rgba(212, 168, 67, 0.1) 0%, transparent 40%),
                    radial-gradient(circle at 90% 10%, rgba(212, 168, 67, 0.06) 0%, transparent 40%);
  pointer-events: none;
}
.testimonials .section-header {
  position: relative;
  z-index: 1;
}
.testimonials .section-tag {
  background: rgba(212, 168, 67, 0.2);
  color: var(--gold-light);
}
.testimonials .section-title {
  color: #fff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: -16px;
}
.testimonial-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.author-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.author-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.cta-content {
  flex: 1;
  min-width: 280px;
}
.cta-tag {
  background: rgba(212, 168, 67, 0.2);
  color: var(--gold-light);
}
.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-content > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-title {
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--text-mid);
  margin-bottom: 36px;
  font-size: 16px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-item a {
  color: var(--gold-dark);
  font-weight: 600;
  transition: color var(--transition);
}
.contact-item a:hover {
  color: var(--navy);
}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* FORM */
.contact-form-wrap {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.optional {
  font-weight: 400;
  color: var(--text-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(27, 42, 74, 0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--cream);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--warm-white);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--navy);
  margin: 16px 0 8px;
}
.form-success p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
}
.form-success a {
  color: var(--gold-dark);
  font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  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 {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links h4,
.footer-newsletter h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--gold-light);
}
.footer-newsletter p {
  font-size: 14px;
  margin-bottom: 16px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all var(--transition);
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}
.newsletter-success {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(76, 175, 80, 0.15);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: #81C784;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-image-wrap {
    max-width: 520px;
    margin: 0 auto;
  }
  .hero-image-float {
    left: -20px;
    bottom: -16px;
  }
  .about-grid,
  .area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-secondary {
    right: 0;
  }
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(255, 252, 247, 0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    border-bottom: 1px solid rgba(27, 42, 74, 0.08);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }
  .main-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    width: 100%;
  }
  .main-nav .btn-gold {
    text-align: center;
    margin-top: 8px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .hero-headline {
    font-size: clamp(28px, 6vw, 40px);
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-features {
    gap: 16px;
  }
  .hero-image-float {
    display: none;
  }

  .about { padding: 72px 0; }
  .about-stats {
    flex-direction: column;
    text-align: center;
  }
  .stat-divider {
    width: 48px;
    height: 1px;
  }

  .rooms { padding: 72px 0; }
  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .area { padding: 72px 0; }
  .activities-grid {
    grid-template-columns: 1fr;
  }
  .area-img-row {
    grid-template-columns: 1fr;
  }

  .testimonials { padding: 72px 0; }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .cta { padding: 60px 0; }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-content { min-width: auto; }
  .cta-actions { justify-content: center; }

  .contact { padding: 72px 0; }
  .contact-form-wrap {
    padding: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero {
    padding: 90px 0 48px;
  }
  .hero-badge {
    position: relative;
    top: auto;
    right: auto;
    display: inline-flex;
    margin-bottom: 16px;
  }
  .hero-image-wrap {
    padding: 0;
  }
  .hero-image-main {
    border-radius: var(--radius-lg);
  }
}
