/* ============================================
   CASSA TIMES SQUARE - Modern Redesign
   ============================================ */

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

:root {
  --gold: #c9a96e;
  --gold-light: #d4b97a;
  --dark: #1a1a1a;
  --darker: #111;
  --charcoal: #2a2a2a;
  --light: #f5f0eb;
  --white: #ffffff;
  --text: #333;
  --text-light: #888;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

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

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

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

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

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

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

.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-logo span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 5px;
  color: var(--gold);
  font-family: var(--font-body);
  margin-top: 2px;
  font-weight: 400;
}

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
}

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

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

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

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

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

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.hero-content .section-label {
  color: var(--gold);
  margin-bottom: 24px;
  font-size: 0.8rem;
  letter-spacing: 6px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.85;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.6;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
}

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

/* --- Page Hero (Subpages) --- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  animation: none;
  transform: scale(1);
}

.page-hero .hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

/* --- Intro / About Section --- */
.intro {
  padding: 120px 0;
  text-align: center;
}

.intro .section-subtitle {
  margin: 0 auto 40px;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* --- Feature Strip --- */
.feature-strip {
  background: var(--dark);
  padding: 80px 0;
}

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

.feature-item {
  text-align: center;
  padding: 40px 20px;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.feature-item h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.feature-item p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* --- Rooms Section --- */
.rooms {
  padding: 120px 0;
}

.rooms-header {
  text-align: center;
  margin-bottom: 80px;
}

.rooms-header .section-subtitle {
  margin: 0 auto;
}

.room-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.room-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0;
}

.room-card-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

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

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

.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.room-card-overlay h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.room-card-overlay .room-type {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.room-card-info {
  padding: 24px 0;
}

.room-card-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* --- Rooms Detail Page --- */
.rooms-detail {
  padding: 100px 0;
}

.room-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 80px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.room-detail-card:nth-child(even) {
  direction: rtl;
}

.room-detail-card:nth-child(even) > * {
  direction: ltr;
}

.room-detail-image {
  height: 500px;
  overflow: hidden;
}

.room-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-detail-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-detail-content h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.room-detail-content .room-bed-type {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.room-detail-content p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.room-amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 30px;
}

.room-amenities-list li {
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* --- Parallax Section --- */
.parallax-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 0 24px;
}

.parallax-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: var(--white);
}

.parallax-content p {
  opacity: 0.8;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

/* --- Dining / Nightlife --- */
.dining {
  padding: 120px 0;
}

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

.dining-image {
  height: 600px;
  overflow: hidden;
  position: relative;
}

.dining-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dining-content {
  padding: 40px 0;
}

.dining-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.dining-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* --- Attractions --- */
.attractions {
  padding: 120px 0;
  background: var(--light);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.attraction-card {
  background: var(--white);
  padding: 40px;
  transition: var(--transition);
}

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

.attraction-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
}

.attraction-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.attraction-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* --- Gallery --- */
.gallery-section {
  padding: 120px 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--white);
  font-size: 1.5rem;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 20px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* --- Residences --- */
.residences {
  padding: 120px 0;
}

.residences-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.residences-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.residences-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.residences-pricing {
  background: var(--light);
  padding: 30px;
  margin-top: 30px;
}

.residences-pricing h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.residences-pricing .price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
}

.residences-pricing .price-note {
  font-size: 0.85rem;
  color: var(--text-light);
}

.residences-types {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.residence-type {
  text-align: center;
  padding: 30px 20px;
  background: var(--light);
  transition: var(--transition);
}

.residence-type:hover {
  background: var(--dark);
  color: var(--white);
}

.residence-type h5 {
  font-size: 1rem;
}

/* --- Hudson Yards --- */
.hudson-yards {
  padding: 120px 0;
  background: var(--light);
}

.hy-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.hy-feature {
  background: var(--white);
  padding: 40px;
  transition: var(--transition);
}

.hy-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hy-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.hy-feature p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* --- Specials --- */
.specials {
  padding: 120px 0;
}

.specials-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.special-card {
  background: var(--light);
  padding: 50px;
  text-align: center;
  transition: var(--transition);
}

.special-card:hover {
  background: var(--dark);
  color: var(--white);
}

.special-card:hover p {
  color: rgba(255,255,255,0.6);
}

.special-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.special-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition);
}

/* --- Map / Location --- */
.location {
  padding: 120px 0;
}

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

.map-container {
  height: 500px;
  background: var(--light);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.location-details {
  margin-bottom: 30px;
}

.location-detail {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.location-detail-icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.location-detail h5 {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 500;
}

.location-detail p {
  font-size: 0.95rem;
}

.airport-distances {
  background: var(--light);
  padding: 30px;
  margin-top: 30px;
}

.airport-distances h4 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.airport-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
}

.airport-item span:last-child {
  color: var(--gold);
  font-weight: 500;
}

/* --- FAQs --- */
.faqs {
  padding: 120px 0;
  background: var(--light);
}

.faq-list {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  background: var(--white);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--gold);
}

.faq-item.active .faq-question .toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 30px 24px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* --- Contact --- */
.contact {
  padding: 120px 0;
}

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

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  background: var(--white);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form-group textarea {
  height: 150px;
  resize: vertical;
}

/* --- Staff Picks --- */
.staff-picks {
  padding: 120px 0;
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.pick-card {
  padding: 30px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.pick-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.pick-date {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pick-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.pick-card p {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* --- Testimonials --- */
.testimonials {
  padding: 100px 0;
  background: var(--dark);
  text-align: center;
}

.testimonials .section-label {
  color: var(--gold);
}

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

.testimonials-slider {
  max-width: 700px;
  margin: 40px auto 0;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial cite {
  color: var(--gold);
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 1px;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--gold);
}

/* --- Footer --- */
.footer {
  background: var(--darker);
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--gold);
}

.footer h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact-item .icon {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

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

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

  .room-detail-card {
    grid-template-columns: 1fr;
  }

  .room-detail-card:nth-child(even) {
    direction: ltr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .residences-types {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .intro-stats {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

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

  .room-cards {
    grid-template-columns: 1fr;
  }

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

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

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

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

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

  .room-detail-content {
    padding: 30px;
  }

  .room-detail-image {
    height: 300px;
  }

  .parallax-bg {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .attractions-grid,
  .specials-list,
  .picks-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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