
    :root {
      --night: #03045e;
      --ocean: #0077b6;
      --turquoise: #00b4d8;
      --sand-orange: #f4a261;
      --coral: #e76f51;
      --sand-light: #f5f0e8;
      --cream: #faf8f4;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: #333;
      overflow-x: hidden;
      background: var(--cream);
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 18px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.4s ease;
      background: linear-gradient(180deg, rgba(3,4,94,0.7) 0%, transparent 100%);
    }
    .navbar.scrolled {
      background: linear-gradient(135deg, #03045e 0%, #023e8a 100%);
      backdrop-filter: blur(10px);
      padding: 12px 40px;
      box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    }
    .navbar-logo {
      font-family: 'Playfair Display', serif;
      color: #ffffff;
      font-size: 26px;
      font-weight: 700;
      letter-spacing: 2px;
      text-decoration: none;
      text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    }
    .navbar-logo span { color: var(--sand-orange); }
    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      color: #ffffff;
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: color 0.3s;
      position: relative;
      text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--sand-orange);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: white; }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      padding: 10px 24px;
      background: var(--sand-orange);
      color: var(--night) !important;
      border-radius: 30px;
      font-weight: 600 !important;
      letter-spacing: 0.5px !important;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(244,162,97,0.4);
    }
    .nav-cta::after { display: none !important; }

    /* Mobile menu */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
    }
    .hamburger span {
      width: 25px;
      height: 2px;
      background: white;
      transition: 0.3s;
    }

    /* ===== HERO ===== */
    .hero {
      height: 100vh;
      position: relative;
      overflow: hidden;
    }
    .hero-slides {
      position: absolute;
      inset: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      overflow: hidden;
      opacity: 0;
      z-index: 1;
    }
    .hero-slide .slide-bg {
      position: absolute;
      inset: -20px;
      background-size: cover;
      background-position: center;
      transition: transform 8s ease-out;
    }
    /* Ken Burns zoom effect */
    @keyframes kenBurns {
      0% { transform: scale(1) translate(0, 0); }
      100% { transform: scale(1.15) translate(-1%, -1%); }
    }
    .hero-slide .slide-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        135deg,
        rgba(3,4,94,0.6) 0%,
        rgba(0,119,182,0.2) 40%,
        rgba(3,4,94,0.7) 100%
      );
    }

    /* Floating particles */
    .hero-particles {
      position: absolute;
      inset: 0;
      z-index: 5;
      pointer-events: none;
      overflow: hidden;
    }
    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(244,162,97,0.5);
      border-radius: 50%;
      animation: floatUp linear infinite;
    }
    .particle:nth-child(odd) {
      background: rgba(0,180,216,0.4);
      width: 3px;
      height: 3px;
    }
    @keyframes floatUp {
      0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
    }

    /* Hero content with staggered text animations */
    .hero-content {
      position: absolute;
      bottom: 15%;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      z-index: 10;
      color: white;
      width: 90%;
      max-width: 750px;
    }
    .hero-badge {
      display: inline-block;
      padding: 8px 24px;
      border: 1px solid rgba(255,255,255,0.4);
      border-radius: 30px;
      font-size: 11px;
      letter-spacing: 5px;
      text-transform: uppercase;
      margin-bottom: 24px;
      backdrop-filter: blur(6px);
      background: rgba(255,255,255,0.08);
      opacity: 0;
      animation: fadeSlideUp 1s 0.3s ease-out forwards;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 6vw, 72px);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 16px;
      text-shadow: 0 4px 40px rgba(0,0,0,0.4);
    }
    .hero h1 .word {
      display: inline-block;
      opacity: 0;
      transform: translateY(60px) rotateX(-40deg);
      animation: wordReveal 0.8s ease-out forwards;
    }
    .hero h1 .word:nth-child(1) { animation-delay: 0.5s; }
    .hero h1 .word:nth-child(2) { animation-delay: 0.65s; }
    .hero h1 .word:nth-child(3) { animation-delay: 0.8s; }
    .hero h1 .word:nth-child(4) { animation-delay: 0.95s; }
    .hero h1 .word:nth-child(5) { animation-delay: 1.1s; }
    .hero h1 .word:nth-child(6) { animation-delay: 1.25s; }
    @keyframes wordReveal {
      to { opacity: 1; transform: translateY(0) rotateX(0); }
    }
    .hero-line {
      width: 60px;
      height: 3px;
      background: var(--sand-orange);
      margin: 20px auto;
      border-radius: 2px;
      opacity: 0;
      transform: scaleX(0);
      animation: lineGrow 0.6s 1.4s ease-out forwards;
    }
    @keyframes lineGrow {
      to { opacity: 1; transform: scaleX(1); }
    }
    .hero p {
      font-size: clamp(14px, 2vw, 18px);
      font-weight: 300;
      opacity: 0;
      margin-bottom: 36px;
      line-height: 1.7;
      animation: fadeSlideUp 1s 1.6s ease-out forwards;
    }
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeSlideUp 1s 1.9s ease-out forwards;
    }

    /* Animated gradient border on primary button */
    .btn-primary {
      position: relative;
      z-index: 1;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 32px;
      background: linear-gradient(135deg, var(--sand-orange), var(--coral), var(--turquoise), var(--sand-orange));
      background-size: 300% 300%;
      animation: gradientShift 3s ease infinite;
      z-index: -1;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .btn-primary:hover::before { opacity: 1; }
    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Slide counter */
    .slide-counter {
      position: absolute;
      bottom: 40px;
      right: 40px;
      z-index: 10;
      color: white;
      font-size: 14px;
      font-weight: 300;
      letter-spacing: 2px;
    }
    .slide-counter .current {
      font-size: 36px;
      font-weight: 700;
      color: var(--sand-orange);
    }
    .slide-counter .separator {
      margin: 0 6px;
      opacity: 0.4;
    }

    /* Progress bar for autoplay */
    .hero-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: rgba(255,255,255,0.15);
      z-index: 10;
    }
    .hero-progress .bar {
      height: 100%;
      background: linear-gradient(90deg, var(--sand-orange), var(--coral));
      width: 0%;
      transition: width 0.1s linear;
    }
    .btn-primary {
      padding: 14px 36px;
      background: var(--sand-orange);
      color: var(--night);
      border: none;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      text-transform: uppercase;
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(244,162,97,0.5);
    }
    .btn-outline {
      padding: 14px 36px;
      background: transparent;
      color: white;
      border: 2px solid rgba(255,255,255,0.5);
      border-radius: 30px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      text-transform: uppercase;
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.15);
      border-color: white;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      animation: bounce 2s infinite;
      color: white;
      font-size: 28px;
      opacity: 0.6;
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(10px); }
    }

    /* Slide dots removed — using custom counter + progress bar */

    /* ===== SECTION UTILITIES ===== */
    section { padding: 100px 0; }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .section-badge {
      display: inline-block;
      font-size: 12px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--turquoise);
      font-weight: 600;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .section-subtitle {
      font-size: 16px;
      color: #777;
      line-height: 1.7;
      max-width: 600px;
    }
    .text-center { text-align: center; }
    .mx-auto { margin-left: auto; margin-right: auto; }

    /* ===== WELCOME ===== */
    .welcome {
      background: var(--sand-light);
      position: relative;
      overflow: hidden;
    }
    .welcome::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    .welcome-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-top: 40px;
    }
    .welcome-text h3 {
      font-family: 'Dancing Script', cursive;
      font-size: 28px;
      color: var(--turquoise);
      margin-bottom: 16px;
    }
    .welcome-text p {
      font-size: 16px;
      line-height: 1.8;
      color: #555;
      margin-bottom: 20px;
    }
    .features-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 50px;
    }
    .feature-card {
      text-align: center;
      padding: 30px 16px;
      background: white;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }
    .feature-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin: 0 auto 14px;
      color: white;
    }
    .feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, var(--turquoise), var(--ocean)); }
    .feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, var(--ocean), var(--night)); }
    .feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, var(--sand-orange), var(--coral)); }
    .feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, var(--coral), #c1121f); }
    .feature-card h4 {
      font-size: 15px;
      font-weight: 600;
      color: var(--night);
      margin-bottom: 6px;
    }
    .feature-card p {
      font-size: 13px;
      color: #888;
      line-height: 1.5;
    }

    /* ===== ACCOMMODATION ===== */
    .accommodation {
      background: var(--night);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .accommodation::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 200px;
      background: linear-gradient(to top, rgba(0,119,182,0.15), transparent);
    }
    .accommodation .section-badge { color: var(--sand-orange); }
    .accommodation .section-subtitle { color: rgba(255,255,255,0.6); }
    .houses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 30px;
      margin-top: 50px;
      position: relative;
      z-index: 1;
    }
    .house-card {
      border-radius: 20px;
      overflow: hidden;
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.08);
      transition: transform 0.4s, box-shadow 0.4s;
    }
    .house-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    }
    .house-image {
      height: 240px;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .house-image::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background: linear-gradient(to top, rgba(3,4,94,0.8), transparent);
    }
    .house-info {
      padding: 24px;
    }
    .house-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      margin-bottom: 8px;
    }
    .house-info p {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .house-features {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .house-features span {
      padding: 5px 14px;
      background: rgba(0,180,216,0.15);
      border-radius: 20px;
      font-size: 12px;
      color: var(--turquoise);
    }

    /* ===== GALLERY ===== */
    .gallery {
      background: white;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 200px;
      gap: 12px;
      margin-top: 50px;
    }
    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .gallery-item:hover img {
      transform: scale(1.08);
    }
    .gallery-item::after {
      content: '🔍';
      position: absolute;
      inset: 0;
      background: rgba(3,4,94,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover::after { opacity: 1; }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-item:nth-child(5) { grid-column: span 2; }

    /* ===== ACTIVITIES ===== */
    .activities {
      background: linear-gradient(135deg, var(--ocean) 0%, var(--turquoise) 50%, #48cae4 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .activities::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
    }
    .activities .section-badge { color: rgba(255,255,255,0.7); }
    .activities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin-top: 50px;
    }
    .activity-card {
      padding: 36px 24px;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.15);
      text-align: center;
      transition: transform 0.3s, background 0.3s;
    }
    .activity-card:hover {
      transform: translateY(-6px);
      background: rgba(255,255,255,0.18);
    }
    .activity-icon {
      font-size: 44px;
      margin-bottom: 16px;
      display: block;
    }
    .activity-card h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .activity-card p {
      font-size: 13px;
      opacity: 0.8;
      line-height: 1.6;
    }

    /* ===== LOCATION ===== */
    .location {
      background: var(--sand-light);
    }
    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      margin-top: 50px;
    }
    .location-map {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    .location-map iframe {
      width: 100%;
      height: 400px;
      border: none;
    }
    .location-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      color: var(--night);
      margin-bottom: 16px;
    }
    .location-info p {
      color: #666;
      line-height: 1.8;
      margin-bottom: 12px;
    }
    .location-detail {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .location-detail span:first-child {
      font-size: 20px;
    }

    /* ===== GUESTBOOK ===== */
    .guestbook {
      background: var(--night);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .guestbook::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(244,162,97,0.06) 0%, transparent 70%);
      border-radius: 50%;
    }
    .guestbook .section-badge { color: var(--sand-orange); }
    .guestbook .section-subtitle { color: rgba(255,255,255,0.5); }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 50px;
    }
    .review-card {
      background: rgba(255,255,255,0.05);
      border-radius: 16px;
      padding: 28px;
      border: 1px solid rgba(255,255,255,0.08);
      position: relative;
    }
    .review-card::before {
      content: '"';
      font-family: 'Playfair Display', serif;
      font-size: 60px;
      color: var(--sand-orange);
      opacity: 0.3;
      position: absolute;
      top: 10px;
      left: 20px;
      line-height: 1;
    }
    .review-stars {
      color: var(--sand-orange);
      font-size: 14px;
      margin-bottom: 14px;
    }
    .review-text {
      font-size: 15px;
      line-height: 1.7;
      font-style: italic;
      color: rgba(255,255,255,0.8);
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }
    .review-author {
      font-size: 13px;
      font-weight: 600;
      color: var(--turquoise);
    }
    .review-date {
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      margin-top: 4px;
    }

    .guestbook-form {
      margin-top: 60px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      background: rgba(255,255,255,0.04);
      border-radius: 20px;
      padding: 40px;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .guestbook-form h3 {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      margin-bottom: 8px;
      text-align: center;
    }
    .guestbook-form > p {
      text-align: center;
      color: rgba(255,255,255,0.5);
      font-size: 14px;
      margin-bottom: 28px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    .form-group { margin-bottom: 16px; }
    .form-group input, .form-group textarea {
      width: 100%;
      padding: 14px 18px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 12px;
      color: white;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      transition: border-color 0.3s;
      outline: none;
    }
    .form-group input::placeholder, .form-group textarea::placeholder {
      color: rgba(255,255,255,0.3);
    }
    .form-group input:focus, .form-group textarea:focus {
      border-color: var(--sand-orange);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }

    /* ===== RESERVATION ===== */
    .reservation {
      background: linear-gradient(135deg, var(--sand-orange) 0%, var(--coral) 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .reservation::before {
      content: '';
      position: absolute;
      bottom: -100px;
      right: -100px;
      width: 350px;
      height: 350px;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
    }
    .reservation .section-title { color: white; }
    .reservation-form {
      max-width: 800px;
      margin: 40px auto 0;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      border-radius: 24px;
      padding: 40px;
      border: 1px solid rgba(255,255,255,0.2);
    }
    .reservation-form .form-row {
      grid-template-columns: 1fr 1fr 1fr;
    }
    .reservation-form input,
    .reservation-form textarea,
    .reservation-form select {
      width: 100%;
      padding: 14px 18px;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 12px;
      color: white;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color 0.3s;
    }
    .reservation-form input::placeholder,
    .reservation-form textarea::placeholder {
      color: rgba(255,255,255,0.6);
    }
    .reservation-form input:focus,
    .reservation-form textarea:focus {
      border-color: white;
    }
    .reservation-form select option { color: #333; }
    .reservation-form textarea { resize: vertical; min-height: 100px; }
    .reservation-form label {
      display: block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0.9;
    }

    .btn-white {
      padding: 16px 48px;
      background: white;
      color: var(--coral);
      border: none;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s;
      text-transform: uppercase;
    }
    .btn-white:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    /* ===== FOOTER ===== */
    footer {
      background: #020024;
      color: rgba(255,255,255,0.5);
      padding: 60px 0 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      color: white;
      margin-bottom: 12px;
    }
    .footer-brand h3 span { color: var(--sand-orange); }
    .footer-brand p {
      font-size: 14px;
      line-height: 1.7;
    }
    .footer-col h4 {
      color: white;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 14px;
      margin-bottom: 10px;
      transition: color 0.3s;
    }
    .footer-col a:hover { color: var(--sand-orange); }
    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 16px;
    }
    .social-links a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: background 0.3s;
      margin: 0;
    }
    .social-links a:hover { background: var(--sand-orange); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 24px;
      text-align: center;
      font-size: 13px;
      color: rgba(255,255,255,0.6);
    }

    /* ===== LIGHTBOX ===== */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .lightbox.active { display: flex; }
    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 8px;
      box-shadow: 0 0 60px rgba(0,0,0,0.5);
    }
    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: white;
      font-size: 36px;
      cursor: pointer;
      opacity: 0.7;
      transition: opacity 0.3s;
    }
    .lightbox-close:hover { opacity: 1; }

    /* ===== ANIMATIONS ===== */
    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.active {
      opacity: 1;
      transform: translate(0, 0) scale(1) rotate(0);
    }
    .reveal-left {
      opacity: 0;
      transform: translateX(-60px);
      transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-left.active {
      opacity: 1;
      transform: translateX(0);
    }
    .reveal-right {
      opacity: 0;
      transform: translateX(60px);
      transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-right.active {
      opacity: 1;
      transform: translateX(0);
    }
    .reveal-scale {
      opacity: 0;
      transform: scale(0.85);
      transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-scale.active {
      opacity: 1;
      transform: scale(1);
    }
    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }
    .reveal-delay-4 { transition-delay: 0.6s; }

    /* Counter animation */
    .count-up {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      font-weight: 700;
      color: var(--sand-orange);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 968px) {
      .welcome-grid,
      .location-grid { grid-template-columns: 1fr; }
      .features-row { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
      }
      .gallery-item:nth-child(1) { grid-column: span 2; }
      .gallery-item:nth-child(5) { grid-column: span 1; }
      .reservation-form .form-row { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
    }
    @media (max-width: 600px) {
      .features-row { grid-template-columns: 1fr; }
      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
      }
      .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
      .form-row { grid-template-columns: 1fr !important; }
      .footer-grid { grid-template-columns: 1fr; }
    }

/* ==============================
   REDUCED MOTION SUPPORT
   ============================== */
@media (prefers-reduced-motion: reduce) {
  .hero-slide .slide-bg { animation: none !important; transition: none !important; }
  .particle { animation: none !important; display: none; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { transition: none !important; opacity: 1; transform: none; }
  .hero h1 .word { animation: none !important; opacity: 1; transform: none; }
  .hero-badge, .hero-line, .hero p, .hero-buttons { animation: none !important; opacity: 1; transform: none; }
}
  