/* ============================================
   LA VISTA MOTEL — Styles
   Charcoal + Coral | Confident Corporate
   ============================================ */

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

:root {
  --charcoal: #2D2D2D;
  --charcoal-deep: #1A1A1A;
  --charcoal-light: #3D3D3D;
  --neutral-100: #F7F7F5;
  --neutral-200: #EDECE8;
  --neutral-300: #D4D3CF;
  --neutral-400: #A8A6A0;
  --neutral-500: #6B6966;
  --coral: #FF6B4A;
  --coral-dark: #E85A3A;
  --coral-light: #FF8A72;
  --white: #FFFFFF;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--neutral-100);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal-deep);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--coral);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--neutral-500);
  max-width: 560px;
  line-height: 1.7;
}

.text-coral {
  color: var(--coral);
}

.italic-accent {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.35);
}

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

.btn-outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

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

.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.logo-mark {
  color: var(--white);
  flex-shrink: 0;
}

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

.logo-dot {
  color: var(--coral);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* --- MOBILE NAV --- */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--charcoal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

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

.mobile-nav-link {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 12px 24px;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--coral);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.88) 0%,
    rgba(45, 45, 45, 0.75) 50%,
    rgba(26, 26, 26, 0.6) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.hero-tag-line {
  width: 32px;
  height: 2px;
  background: var(--coral);
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

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

/* --- STAT CARDS --- */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateX(4px);
}

.stat-card--accent {
  background: var(--coral);
  border-color: var(--coral);
}

.stat-card--accent .stat-label {
  color: rgba(255,255,255,0.8);
}

.stat-card--wide {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.stat-icon {
  color: var(--coral);
  flex-shrink: 0;
}

.stat-card--accent .stat-icon {
  color: var(--white);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

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

/* --- HERO SCROLL --- */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* --- SECTIONS --- */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin-bottom: 0;
}

/* --- INTRO --- */
.intro {
  background: var(--white);
}

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

.intro-images {
  position: relative;
}

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

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

.intro-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

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

.intro-accent-box {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--coral);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.accent-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.accent-number span {
  font-size: 1.2rem;
}

.accent-label {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.4;
  margin-top: 4px;
}

.intro-text .section-title {
  margin-bottom: 24px;
}

.intro-text > p {
  color: var(--neutral-500);
  margin-bottom: 16px;
  line-height: 1.75;
}

.intro-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.intro-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
}

.intro-features svg {
  color: var(--coral);
  flex-shrink: 0;
}

/* --- ROOMS --- */
.rooms {
  background: var(--neutral-100);
}

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

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--neutral-200);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.room-card--featured {
  border: 2px solid var(--coral);
  position: relative;
}

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

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.room-badge--coral {
  background: var(--coral);
}

.room-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.room-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}

.room-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal-deep);
}

.room-desc {
  font-size: 14px;
  color: var(--neutral-500);
  line-height: 1.7;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.room-features li {
  background: var(--neutral-100);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
}

/* --- AMENITIES --- */
.amenities {
  background: var(--charcoal-deep);
  color: var(--white);
}

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

.amenities .section-label {
  color: var(--coral);
}

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

.amenities .section-desc {
  color: rgba(255,255,255,0.55);
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.amenity-item {
  display: flex;
  gap: 16px;
}

.amenity-icon {
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}

.amenity-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.amenity-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.amenities-img-stack {
  position: relative;
  height: 100%;
  min-height: 500px;
}

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

.amenities-img-stack img:first-child {
  height: 60%;
  margin-bottom: -40px;
  position: relative;
  z-index: 1;
}

.amenities-img-stack img:last-child {
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  z-index: 2;
  border: 4px solid var(--charcoal-deep);
}

/* --- LOCATION --- */
.location {
  background: var(--white);
}

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

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

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

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.15); }
}

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

.location-card {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--neutral-100);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.location-card:hover {
  background: var(--neutral-200);
  transform: translateX(4px);
}

.location-card-icon {
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-bottom: 4px;
}

.location-card-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.6;
}

.location-card-value a {
  color: var(--coral);
  transition: var(--transition);
}

.location-card-value a:hover {
  color: var(--coral-dark);
  text-decoration: underline;
}

.nearby {
  background: var(--charcoal-deep);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  color: var(--white);
}

.nearby-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.nearby-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nearby-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nearby-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.nearby-name {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.nearby-dist {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* --- CTA BANNER --- */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

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

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 26, 26, 0.92) 0%,
    rgba(45, 45, 45, 0.85) 100%
  );
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* --- CONTACT --- */
.contact {
  background: var(--neutral-100);
}

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

.contact-info .section-title {
  margin-bottom: 20px;
}

.contact-info > .section-desc {
  margin-bottom: 36px;
}

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

.contact-item {
  display: flex;
  gap: 16px;
}

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

.contact-item-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-bottom: 4px;
}

.contact-item div:last-child {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-item a {
  color: var(--coral);
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--coral-dark);
  text-decoration: underline;
}

/* --- FORM --- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
}

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

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

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--neutral-100);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.1);
}

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

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

.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 74, 0.1);
  border-radius: 50%;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal-deep);
}

.form-success p {
  font-size: 15px;
  color: var(--neutral-500);
  line-height: 1.7;
  max-width: 360px;
}

.form-success a {
  color: var(--coral);
  font-weight: 600;
}

/* --- FOOTER --- */
.footer {
  background: var(--charcoal-deep);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.logo-light {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

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

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

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

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

  .hero-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-card {
    flex: 1;
    min-width: 140px;
  }

  .stat-card--wide {
    flex: 2;
  }

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

  .intro-img-secondary {
    right: 0;
    bottom: -30px;
  }

  .intro-accent-box {
    left: 0;
    top: -16px;
  }

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

  .amenities-img-stack {
    min-height: 360px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .nav, .header .btn-coral {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

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

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

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

  .stat-card--wide {
    flex: auto;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

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

  .amenities-img-stack {
    min-height: 300px;
    position: relative;
  }

  .amenities-img-stack img:first-child {
    height: 70%;
  }

  .amenities-img-stack img:last-child {
    height: 55%;
    width: 70%;
  }

  .location-map {
    height: 280px;
  }

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

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

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

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

  .section {
    padding: 72px 0;
  }

  .hero-scroll {
    display: none;
  }
}

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

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

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

  .intro-img-secondary {
    display: none;
  }

  .intro-accent-box {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    margin-bottom: 20px;
  }
}

/* --- ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }
