/* ========================================
   BRUTON STABLES — Custom Styles
   Burgundy + Blush | Vibrant Modern
   ======================================== */

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

:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5C1F2C;
  --burgundy-light: #9E3A4D;
  --blush: #F5D5D0;
  --blush-light: #FDF6F5;
  --blush-mid: #F8E8E5;
  --cream: #FFF9F8;
  --dark: #1A0A0E;
  --text: #2D1519;
  --text-light: #6B4A50;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(123, 45, 59, 0.08);
  --shadow-lg: 0 12px 48px rgba(123, 45, 59, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}

em {
  font-style: italic;
  color: var(--burgundy);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* --- Tag --- */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--blush);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.tag.light {
  color: var(--blush);
  background: rgba(255,255,255,0.15);
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.section-header.light h2,
.section-header.light p {
  color: var(--white);
}

.section-header.light p { opacity: 0.85; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.btn--primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn--outline:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
}

.btn--light:hover {
  background: var(--blush);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--nav {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn--full { width: 100%; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 246, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: 0 4px 20px rgba(123, 45, 59, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
}

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

.logo svg { flex-shrink: 0; }

.links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

.links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: var(--transition);
}

.links a:not(.btn):hover { color: var(--burgundy); }
.links a:not(.btn):hover::after { width: 100%; }

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

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 10, 14, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

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

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush-mid) 50%, var(--blush) 100%);
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content .tag { margin-bottom: 20px; }

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--dark);
}

.hero-p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

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

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

.stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--burgundy);
  font-weight: 700;
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(123, 45, 59, 0.2);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--burgundy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}

/* Geometric shapes */
.hero-geo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.geo--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(123, 45, 59, 0.06) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.geo--2 {
  width: 200px;
  height: 200px;
  background: var(--blush);
  border: 3px solid rgba(123, 45, 59, 0.1);
  bottom: 100px;
  right: -60px;
}

.geo--3 {
  width: 80px;
  height: 80px;
  background: var(--burgundy);
  border-radius: 16px;
  transform: rotate(45deg);
  top: 200px;
  left: -30px;
  opacity: 0.15;
}

/* Wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

/* ========================================
   ROOMS
   ======================================== */
.rooms {
  padding: 100px 24px;
  background: var(--blush-light);
  position: relative;
}

.rooms::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush), var(--burgundy));
}

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

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.room-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 520/340;
}

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

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

.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.room-tag.pet {
  background: var(--dark);
}

.room-card-body {
  padding: 28px;
}

.room-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.room-card-body > p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.room-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--burgundy);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========================================
   AMENITIES
   ======================================== */
.amenities {
  padding: 100px 24px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.amenities::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(123, 45, 59, 0.04) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

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

.amenities-left .tag { margin-bottom: 16px; }

.amenities-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 20px;
}

.amenities-p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.amenities-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.amenity {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.amenity:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.amenity-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--blush);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.amenity:hover .amenity-icon {
  background: var(--burgundy);
}

.amenity:hover .amenity-icon svg path,
.amenity:hover .amenity-icon svg rect,
.amenity:hover .amenity-icon svg circle,
.amenity:hover .amenity-icon svg polyline {
  stroke: var(--white);
}

.amenity h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.amenity p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  padding: 100px 24px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

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

.about-float-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--burgundy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
}

.about-float-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}

.about-geo {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--blush);
  border-radius: 24px;
  transform: rotate(30deg);
  top: -30px;
  left: -30px;
  z-index: -1;
  opacity: 0.6;
}

.about-content .tag { margin-bottom: 16px; }

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 20px;
}

.about-content > p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blush);
  line-height: 1;
  flex-shrink: 0;
}

.value h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.value p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 100px 24px;
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  border-radius: 50%;
}

.testimonials::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.05;
  bottom: -100px;
  right: -50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--blush);
  color: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   LOCATION
   ======================================== */
.location {
  padding: 100px 24px;
  background: var(--blush-light);
}

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

.location-info .tag { margin-bottom: 16px; }

.location-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 20px;
}

.location-p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.loc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.loc-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.loc-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.loc-item span,
.loc-item a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.loc-item a:hover { color: var(--burgundy); text-decoration: underline; }

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
  padding: 100px 24px;
  background: var(--cream);
  position: relative;
}

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

.contact-left .tag { margin-bottom: 16px; }

.contact-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 20px;
}

.contact-p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  background: var(--burgundy);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-method:hover {
  background: var(--burgundy-deep);
  transform: translateX(4px);
}

.cm-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.contact-method span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Form */
.contact-right {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid var(--blush);
  border-radius: var(--radius);
  background: var(--blush-light);
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 16px 20px;
  background: #E8F5E9;
  border-radius: var(--radius);
  color: #2E7D32;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-success.show {
  display: flex;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 50%, var(--burgundy-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-geo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.geo--a {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  top: -150px;
  left: -100px;
}

.geo--b {
  width: 200px;
  height: 200px;
  background: rgba(245, 213, 208, 0.08);
  bottom: -80px;
  right: 10%;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

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

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-col ul li svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-col ul a:hover { color: var(--blush); text-decoration: underline; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-bottom a:hover { color: var(--blush); text-decoration: underline; }

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

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
  .about-grid { gap: 48px; }
  .amenities-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .links.active { right: 0; }

  .links a {
    font-size: 1.1rem;
    color: var(--dark);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; max-width: 480px; margin: 0 auto; }
  .hero-badge { left: 50%; transform: translateX(-50%); }

  .rooms-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  .amenities-grid { grid-template-columns: 1fr; }
  .amenities-left { text-align: center; }
  .amenities-left .btn { margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; margin: 0 auto; }
  .about-img-float { right: -16px; bottom: -24px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }

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

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

@media (max-width: 480px) {
  .hero { padding: 100px 16px 60px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
}
