    :root {
      --ocean: #1a6b8a;
      --ocean-dark: #0d4a62;
      --ocean-light: #2a8fb5;
      --sand: #f5efe6;
      --sand-dark: #e8d8c4;
      --gold: #c9a84c;
      --gold-light: #e8c96b;
      --white: #ffffff;
      --text: #1c2b36;
      --text-light: #4a6070;
      --coral: #e07b5a;
      --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Jost', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ========== TOP BAR ========== */
    .top-bar {
      background: var(--ocean-dark);
      color: rgba(255,255,255,0.88);
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      padding: 7px 0;
    }
    .top-bar-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
    }
    .top-bar a { color: var(--gold-light); text-decoration: none; transition: color var(--transition); }
    .top-bar a:hover { color: var(--white); }
    .top-bar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
    .top-bar-left span { display: flex; align-items: center; gap: 6px; }
    .top-bar-left svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }
    .top-bar-right { display: flex; gap: 16px; align-items: center; }
    .social-link { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; transition: all var(--transition); }
    .social-link:hover { background: var(--gold); border-color: var(--gold); }
    .social-link svg { width: 13px; height: 13px; fill: var(--white); }

    /* ========== HEADER / NAV ========== */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(26,107,138,0.12);
      transition: box-shadow var(--transition);
    }
    header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
    .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }
    .logo-area { display: flex; align-items: center; gap: 14px; text-decoration: none; }
    .logo-icon {
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 14px rgba(26,107,138,0.3);
    }
    .logo-icon svg { width: 30px; height: 30px; fill: var(--white); }
    .logo-text { line-height: 1.1; }
    .logo-text .name { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 600; color: var(--ocean-dark); letter-spacing: 0.02em; display: block; }
    .logo-text .tagline { font-size: 0.65rem; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; font-weight: 500; }

    nav { display: flex; align-items: center; gap: 4px; }
    nav a {
      padding: 8px 14px;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      border-radius: 6px;
      transition: all var(--transition);
      position: relative;
    }
    nav a::after {
      content: '';
      position: absolute;
      bottom: 4px; left: 50%; right: 50%;
      height: 2px;
      background: var(--gold);
      transition: all var(--transition);
      border-radius: 1px;
    }
    nav a:hover { color: var(--ocean); }
    nav a:hover::after { left: 14px; right: 14px; }
    .btn-book-nav {
      background: linear-gradient(135deg, var(--ocean), var(--ocean-dark));
      color: var(--white) !important;
      padding: 10px 22px !important;
      border-radius: 50px !important;
      font-weight: 600 !important;
      letter-spacing: 0.06em;
      box-shadow: 0 4px 16px rgba(26,107,138,0.35);
      transition: all var(--transition) !important;
    }
    .btn-book-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(26,107,138,0.45) !important; }
    .btn-book-nav::after { display: none !important; }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--ocean-dark); border-radius: 2px; transition: all var(--transition); }
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--ocean-dark);
      z-index: 2000;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { color: var(--white); font-size: 1.3rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 40px; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; text-align: center; text-decoration: none; font-family: 'Cormorant Garamond', serif; font-weight: 400; transition: color var(--transition); }
    .mobile-nav a:hover { color: var(--gold-light); }
    .close-menu { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; line-height: 1; }

    /* ========== SLIDESHOW ========== */
    .slideshow {
      position: relative;
      height: 100vh;
      min-height: 600px;
      max-height: 900px;
      overflow: hidden;
    }
    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .slide.active { opacity: 1; }
    .slide img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    }
    .slide-content {
      position: absolute;
      bottom: 0; left: 0; right: 0; top: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 40px 80px;
      max-width: 700px;
    }
    .slide-badge {
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 14px;
      font-weight: 500;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.7s 0.3s ease;
    }
    .slide.active .slide-badge { opacity: 1; transform: translateY(0); }
    .slide-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 18px;
      opacity: 0;
      transform: translateY(24px);
      transition: all 0.7s 0.5s ease;
    }
    .slide.active .slide-title { opacity: 1; transform: translateY(0); }
    .slide-subtitle {
      font-size: 1rem;
      color: rgba(255,255,255,0.82);
      margin-bottom: 32px;
      font-weight: 300;
      line-height: 1.6;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.7s 0.7s ease;
    }
    .slide.active .slide-subtitle { opacity: 1; transform: translateY(0); }
    .btn-slide {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 36px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--ocean-dark);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 50px;
      box-shadow: 0 8px 28px rgba(201,168,76,0.45);
      transition: all var(--transition);
      align-self: flex-start;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s 0.9s ease, transform 0.7s 0.9s ease, background 0.3s ease, box-shadow 0.3s ease, scale 0.3s ease;
    }
    .slide.active .btn-slide { opacity: 1; transform: translateY(0); }
    .btn-slide:hover { scale: 1.04; box-shadow: 0 12px 36px rgba(201,168,76,0.55); }
    .btn-slide svg { width: 18px; height: 18px; }

    /* Slide controls */
    .slide-controls {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }
    .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: all var(--transition);
      border: none;
    }
    .dot.active { background: var(--gold); width: 28px; border-radius: 4px; }
    .slide-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.25);
      color: var(--white);
      width: 52px; height: 52px;
      border-radius: 50%;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all var(--transition);
      font-size: 1.2rem;
    }
    .slide-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--ocean-dark); }
    .slide-prev { left: 24px; }
    .slide-next { right: 24px; }

    /* ========== RESERVATION BOX ========== */
    .reservation-strip {
      background: var(--ocean-dark);
      padding: 0;
      position: relative;
      z-index: 100;
    }
    .reservation-box {
      max-width: 1280px;
      margin: 0 auto;
      padding: 20px 24px;
      display: flex;
      align-items: flex-end;
      gap: 12px;
      flex-wrap: wrap;
    }
    .res-group { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 150px; }
    .res-group label {
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 500;
    }
    .res-group input, .res-group select {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--white);
      padding: 10px 14px;
      border-radius: 8px;
      font-family: 'Jost', sans-serif;
      font-size: 0.9rem;
      outline: none;
      width: 100%;
      transition: border-color var(--transition);
    }
    .res-group input:focus, .res-group select:focus { border-color: var(--gold); }
    .res-group select option { background: var(--ocean-dark); color: var(--white); }
    .res-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.7); cursor: pointer; }
    .btn-check-avail {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--ocean-dark);
      border: none;
      padding: 11px 32px;
      border-radius: 8px;
      font-family: 'Jost', sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      white-space: nowrap;
      transition: all var(--transition);
      flex-shrink: 0;
      box-shadow: 0 4px 18px rgba(201,168,76,0.35);
      align-self: flex-end;
      height: 42px;
    }
    .btn-check-avail:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.5); }

    /* ========== WELCOME ========== */
    .section { padding: 90px 24px; }
    .section-inner { max-width: 1280px; margin: 0 auto; }
    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color:rgb(210 173 71);
      font-weight: 600;
      margin-bottom: 14px;
      display: block;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--ocean-dark);
      margin-bottom: 20px;
    }
    .section-divider {
      width: 60px; height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      margin-bottom: 28px;
      border-radius: 1px;
    }

    .welcome-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }
    .welcome-text p {
      font-size: 1rem;
      line-height: 1.85;
      color: var(--text-light);
      margin-bottom: 16px;
    }
    .welcome-highlights {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 32px;
    }
    .highlight-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 16px;
      background: var(--sand);
      border-radius: 10px;
      border-left: 3px solid var(--gold);
    }
    .highlight-item svg { width: 20px; height: 20px; fill: var(--ocean); flex-shrink: 0; margin-top: 1px; }
    .highlight-item span { font-size: 0.88rem; color: var(--text); font-weight: 500; }
    .welcome-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 220px 220px;
      gap: 14px;
    }
    .welcome-img {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
    }
    .welcome-img:first-child { grid-column: 1; grid-row: 1 / span 2; border-radius: 18px; }
    .welcome-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .welcome-img:hover img { transform: scale(1.05); }
    .welcome-img-badge {
      position: absolute;
      bottom: 12px; left: 12px;
      background: rgba(13,74,98,0.88);
      backdrop-filter: blur(8px);
      color: var(--white);
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      font-weight: 500;
    }

    /* ========== AMENITIES ========== */
    .amenities { background: var(--sand);  }
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin-top: 50px;
    }
    .amenity-card {
      background: var(--white);
      border-radius: 16px;
      padding: 34px 24px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: all var(--transition);
      border: 1px solid transparent;
      position: relative;
      overflow: hidden;
    }
    .amenity-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--ocean), var(--gold));
      transform: scaleX(0);
      transition: transform var(--transition);
    }
    .amenity-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); border-color: rgba(26,107,138,0.1); }
    .amenity-card:hover::before { transform: scaleX(1); }
    .amenity-icon {
      width: 64px; height: 64px;
      background: linear-gradient(135deg, rgba(26,107,138,0.1), rgba(201,168,76,0.15));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
      transition: all var(--transition);
    }
    .amenity-card:hover .amenity-icon { background: linear-gradient(135deg, var(--ocean), var(--ocean-dark)); }
    .amenity-icon svg { width: 28px; height: 28px; fill: var(--ocean); transition: fill var(--transition); }
    .amenity-card:hover .amenity-icon svg { fill: var(--white); }
    .amenity-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--ocean-dark); margin-bottom: 8px; }
    .amenity-card p { font-size: 0.84rem; color: var(--text-light); line-height: 1.6; }

    /* ========== LOCATION ========== */
    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .location-map {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,0,0,0.12);
      height: 420px;
    }
    .location-map iframe { width: 100%; height: 100%; border: none; }
    .location-info { display: flex; flex-direction: column; gap: 24px; }
    .info-item { display: flex; gap: 16px; align-items: flex-start; }
    .info-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--ocean), var(--ocean-dark));
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
    }
    .info-icon svg { width: 22px; height: 22px; fill: var(--white); }
    .info-item h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: #000; margin-bottom: 4px; }
    .info-item p { font-size: 0.95rem; color: var(--text); line-height: 1.5; }
    .info-item a { color: var(--ocean); text-decoration: none; font-weight: 500; }
    .info-item a:hover { color: var(--ocean-dark); }
    .checkin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .checkin-box {
      background: var(--sand);
      border-radius: 12px;
      padding: 18px 20px;
      border-left: 3px solid var(--ocean);
    }
    .checkin-box span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color:#000; display: block; margin-bottom: 4px; }
    .checkin-box strong { font-size: 1.1rem; color:#000; }

    /* ========== GALLERY STRIP ========== */
    .gallery-strip { padding: 0; overflow: hidden; }
    .gallery-scroll {
      display: flex;
      gap: 12px;
      padding: 40px 24px;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .gallery-scroll::-webkit-scrollbar { display: none; }
    .gallery-item {
      flex: 0 0 300px;
      height: 220px;
      border-radius: 14px;
      overflow: hidden;
      position: relative;
    }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-cap {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.65));
      color: var(--white);
      padding: 24px 14px 12px;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.04em;
    }

    /* ========== CTA BANNER ========== */
    .cta-banner {
      background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--ocean) 50%, var(--ocean-light) 100%);
      position: relative;
      overflow: hidden;
      padding: 80px 24px;
      text-align: center; color:#fff;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-banner-inner { max-width: 700px; margin: 0 auto; position: relative; }
    .cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--white); margin-bottom: 14px; }
    .cta-banner p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 36px; line-height: 1.7; }
    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 40px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--ocean-dark);
      text-decoration: none;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 50px;
      box-shadow: 0 8px 30px rgba(201,168,76,0.4);
      transition: all var(--transition);
    }
    .btn-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(201,168,76,0.55); }

    /* ========== FOOTER ========== */
    footer {
      background: var(--ocean-dark);
      color:#fff;
    }
    .footer-main {
      max-width: 1280px;
      margin: 0 auto;
      padding: 60px 24px 40px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
    }
    .footer-brand .logo-text .name { color: var(--white); }
    .footer-brand .logo-text .tagline { color: var(--gold-light); }
    .footer-about {
      font-size: 0.88rem;
      line-height: 1.75;
      color:#fff;
      margin-top: 16px;
      margin-bottom: 20px;
    }
    .footer-socials { display: flex; gap: 10px; }
    .footer-social {
      width: 38px; height: 38px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color:#fff;
      text-decoration: none;
      transition: all var(--transition);
    }
    .footer-social:hover { background: var(--gold); border-color: var(--gold); color: var(--ocean-dark); }
    .footer-social svg { width: 16px; height: 16px; fill: currentColor; }
    .footer-col h4 {
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 18px;
      font-weight: 600;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      color:#fff;
      text-decoration: none;
      font-size: 0.88rem;
      transition: color var(--transition);
      display: flex; align-items: center; gap: 6px;
    }
    .footer-col ul li a::before { content: '›'; color: var(--gold); font-size: 1.1rem; line-height: 1; }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
    .footer-contact-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
    .footer-contact-item span { font-size: 0.86rem; color:#fff; line-height: 1.5; }
    .footer-contact-item a { color: #fff; text-decoration: none; }
    .footer-contact-item a:hover { color: var(--gold-light); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 22px 24px;
    }
    .footer-bottom-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-align: center;
    }
    .footer-bottom p { font-size: 0.78rem; color:#fff; line-height: 1.7; }
    .footer-bottom a { color: #fff; text-decoration: none; transition: color var(--transition); }
    .footer-bottom a:hover { color: var(--gold-light); }
    .footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
    .footer-links a { font-size: 0.78rem; color:#fff; text-decoration: none; border-bottom: 1px solid #fff; padding-bottom: 1px; transition: all var(--transition); }
    .footer-links a:hover { color: var(--gold-light); border-color: var(--gold-light); }

    /* ========== BACK TO TOP ========== */
    .back-top {
      position: fixed;
      bottom: 30px; right: 30px;
      width: 48px; height: 48px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--ocean-dark);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 20px rgba(201,168,76,0.4);
      transition: all var(--transition);
      opacity: 0;
      pointer-events: none;
      z-index: 999;
    }
    .back-top.visible { opacity: 1; pointer-events: all; }
    .back-top:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(201,168,76,0.55); }
    .back-top svg { width: 20px; height: 20px; fill: var(--ocean-dark); }

    /* ========== ANIMATIONS ========== */
    .fade-up {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up-delay-1 { transition-delay: 0.1s; }
    .fade-up-delay-2 { transition-delay: 0.2s; }
    .fade-up-delay-3 { transition-delay: 0.3s; }
    .fade-up-delay-4 { transition-delay: 0.4s; }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .footer-main { grid-template-columns: 1fr 1fr; }
      .welcome-grid, .location-grid { grid-template-columns: 1fr; }
      .welcome-images { grid-template-columns: repeat(3, 1fr); grid-template-rows: 200px; }
      .welcome-img:first-child { grid-column: auto; grid-row: auto; }
    }
    @media (max-width: 768px) {
      nav { display: none; }
      .hamburger { display: flex; }
      .slide-content { padding: 30px 30px; }
      .reservation-box { flex-direction: column; }
      .res-group { min-width: 100%; }
      .amenities-grid { grid-template-columns: 1fr 1fr;}
      .footer-main { grid-template-columns: 1fr; }
      .welcome-images { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .welcome-highlights { grid-template-columns: 1fr;}
      .checkin-grid { grid-template-columns: 1fr;}
      .top-bar-right { display: none; }
      .slide-nav { display: none; } #acc{width:80%; margin:0 auto;}
    }
    @media (max-width: 480px) {
      .amenities-grid { grid-template-columns: 1fr;}
      .welcome-images { display: none; }
      .section { padding: 60px 20px; }
	
    }
#acc {font-size:30px; color:#217B9D; line-height:45px; letter-spacing:1px; width:1080px; margin:0 auto; text-align:center; padding:20px 0;}
@media only screen and (max-width:480px){
  #acc{width:80%; margin:0 auto;}	
	
	}
@media only screen and (min-width:481px) and (max-width:768px){
	
	  #acc{width:80%; margin:0 auto;}
}