
  :root {
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --navy: #1a2744;
    --navy-mid: #243360;
    --teal: #1e6b6b;
    --white: #ffffff;
    --cream: #f9f6f0;
    --gray-light: #f2f2f2;
    --gray-mid: #888;
    --text: #222;
    --accent: #c9a84c;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icons a:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}
  /* ── TOP BAR ── */
  .top-bar {
    background: var(--navy);
    color: #ccc;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 2px solid var(--gold);
  }
  .top-bar .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .top-bar a { color: var(--gold-light); text-decoration: none; }
  .top-bar a:hover { color: var(--white); }
  .top-bar .top-right { display: flex; gap: 20px; align-items: center; }
  .top-bar .phone { font-weight: 600; color: var(--gold-light); letter-spacing: .5px; }

  /* ── HEADER / NAV ── */
  header {
    background: var(--white);
    box-shadow: 0 2px 18px rgba(0,0,0,.09);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .nav-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
  }
  .logo-area { display: flex; align-items: center; gap:30px; }
  .logo-icon {
   display: flex; align-items: center; justify-content: center;
  }
  
  nav { display: flex; align-items: center; gap: 4px; }
  nav a {
    padding: 6px 14px;
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: .4px;
    border-radius: 4px;
    transition: background .2s, color .2s;
    position: relative;
  }
  nav a::after {
    content: '';
    position: absolute; bottom: 0; left: 14px; right: 14px;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transition: transform .25s;
  }
  nav a:hover::after { transform: scaleX(1); }
  nav a:hover { color: var(--teal); }
  nav .btn-book {
    background: var(--gold);
    color: var(--navy) !important;
    border-radius: 4px;
    padding: 8px 20px;
    margin-left: 8px;
    transition: background .2s, transform .15s !important;
  }
  nav .btn-book:hover { background: var(--gold-light); transform: translateY(-1px); }
  nav .btn-book::after { display: none; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
  .hamburger span { width: 24px; height: 2px; background: var(--navy); transition: .3s; display: block; }

  /* ── SLIDESHOW ── */
  .slideshow { position: relative; width: 100%; height: 88vh; min-height: 520px; overflow: hidden; }
  .slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.1s ease;
    display: flex; align-items: center; justify-content: center;
  }
  .slide.active { opacity: 1; }
  .slide img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.06);
    transition: transform 8s ease;
  }
  .slide.active img { transform: scale(1); }
  .slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(10,20,50,.72) 40%, rgba(10,20,50,.18) 100%);
  }
  .slide-content {
    position: relative; z-index: 2;
    max-width: 1200px; width: 100%; padding: 0 40px;
    animation: fadeUp .7s ease both;
  }
  @keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
  .slide-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    padding: 4px 14px; margin-bottom: 18px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
  }
  .slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 5vw, 62px);
    color: var(--white);
    font-weight: 700;
    line-height: 1.15;
    max-width: 640px;
    margin-bottom: 20px;
    text-shadow: 0 2px 18px rgba(0,0,0,.4);
  }
  .slide-sub {
    font-size: 16px; color: rgba(255,255,255,.82);
    max-width: 480px; margin-bottom: 34px; line-height: 1.6;
  }
  .btn-slide {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700; font-size: 14px;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    transition: background .2s, transform .2s;
  }
  .btn-slide:hover { background: var(--gold-light); transform: translateX(4px); }
  .btn-slide svg { width: 16px; height: 16px; }

  /* slide dots */
  .slide-dots {
    position: absolute; bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 5;
  }
  .dot {
    width: 10px; height: 10px;
    border-radius: 50%; background: rgba(255,255,255,.45);
    cursor: pointer; transition: background .3s, transform .3s;
  }
  .dot.active { background: var(--gold); transform: scale(1.3); }

  /* slide arrows */
  .slide-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 5; background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.4);
    color: #fff; width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; backdrop-filter: blur(4px);
    transition: background .2s;
    font-size: 20px;
  }
  .slide-arrow:hover { background: var(--gold); color: var(--navy); }
  .slide-arrow.prev { left: 24px; }
  .slide-arrow.next { right: 24px; }

  /* ── RESERVATION BAR ── */
  .reservation-bar {
    background: var(--navy);
    padding: 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 24px rgba(0,0,0,.22);
  }
  .res-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 24px 20px;
    display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap;
  }
  .res-inner::before {
    content: 'BOOK YOUR STAY';
    position: absolute; top: 0; left: 50%;
    transform: translate(-50%,-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    padding: 4px 20px;
    white-space: nowrap;
  }
  .res-field { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 140px; }
  .res-field label {
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold-light);
  }
  .res-field input, .res-field select {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 3px;
    outline: none;
    transition: border .2s;
    width: 100%;
    font-family: 'Lato', sans-serif;
  }
  .res-field input:focus, .res-field select:focus { border-color: var(--gold); }
  .res-field select option { background: var(--navy); color: #fff; }
  .res-field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .6; }
  .btn-reserve {
    background: var(--gold);
    color: var(--navy);
    border: none; cursor: pointer;
    font-weight: 700; font-size: 14px;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 3px;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    align-self: flex-end;
    flex-shrink: 0;
  }
  .btn-reserve:hover { background: var(--gold-light); transform: translateY(-2px); }

  /* ── WELCOME ── */
  .welcome {
    background: var(--cream);
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .welcome::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='%23c9a84c' fill-opacity='0.05'%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");
  }
  .welcome .inner { max-width: 800px; margin: 0 auto; position: relative; }
  .section-eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
    position: relative;
    padding: 0 24px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: ''; position: absolute; top: 50%;
    width: 18px; height: 1px; background: var(--teal);
  }
  .section-eyebrow::before { right: 0; }
  .section-eyebrow::after { left: 0; }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 46px);
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .welcome p {
    font-size: 17px; color: #555; line-height: 1.8;
    margin-bottom: 16px;
  }
  .gold-divider {
    width: 60px; height: 3px;
    background: var(--gold);
    margin: 24px auto;
  }
  .welcome-stats {
    display: flex; justify-content: center; gap: 40px;
    margin-top: 48px; flex-wrap: wrap;
  }
  .stat {
    text-align: center;
    padding: 24px 30px;
    background: var(--white);
    border-top: 3px solid var(--gold);
    min-width: 140px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: transform .25s;
  }
  .stat:hover { transform: translateY(-4px); }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 700;
    color: var(--navy);
  }
  .stat-label { font-size: 12px; color: var(--gray-mid); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

  /* ── AMENITIES ── */
  .amenities { padding: 90px 20px; background: var(--white); }
  .amenities .inner { max-width: 1200px; margin: 0 auto; }
  .section-header { text-align: center; margin-bottom: 60px; }

  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    border: 1px solid #e8e8e8;
  }
  .amenity-item {
    padding: 40px 32px;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
    transition: background .3s;
  }
  .amenity-item:hover { background: var(--cream); }
  .amenity-item::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--gold);
    transform: scaleY(0);
    transition: transform .3s;
  }
  .amenity-item:hover::before { transform: scaleY(1); }
  .amenity-icon {
    width: 52px; height: 52px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: background .3s;
  }
  .amenity-item:hover .amenity-icon { background: var(--gold); }
  .amenity-icon svg { width: 24px; height: 24px; fill: var(--white); }
  .amenity-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 600;
    color: var(--navy); margin-bottom: 10px;
  }
  .amenity-item p { font-size: 14px; color: #666; line-height: 1.7; }

  /* ── PHOTO STRIP ── */
  .photo-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    height: 340px;
    overflow: hidden;
  }
  .strip-photo {
    position: relative; overflow: hidden;
  }
  .strip-photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
    filter: brightness(.88);
  }
  .strip-photo:hover img { transform: scale(1.08); filter: brightness(1); }
  .strip-photo .label {
    position: absolute; bottom: 16px; left: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 4px 12px;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
    opacity: 0; transition: opacity .3s;
  }
  .strip-photo:hover .label { opacity: 1; }

  /* ── LOCATION ── */
  .location-section {
    background: var(--navy);
    padding: 80px 20px;
    position: relative; overflow: hidden;
  }
  .location-section::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 300px; height: 300px;
    border: 40px solid rgba(201,168,76,.08);
    border-radius: 50%;
  }
  .location-section::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    border: 50px solid rgba(201,168,76,.05);
    border-radius: 50%;
  }
  .loc-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    position: relative; z-index: 1;
  }
  .loc-info .section-title { color: var(--white); }
  .loc-info p { color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
  .loc-detail {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 20px;
  }
  .loc-detail-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .loc-detail-icon svg { width: 18px; height: 18px; fill: var(--gold); }
  .loc-detail-text strong { display: block; color: var(--gold-light); font-size: 14px; margin-bottom: 2px; }
  .loc-detail-text span { color: rgba(255,255,255,.7); font-size: 14px; }
  .loc-detail-text a { color: var(--gold-light); text-decoration: none; }
  .loc-detail-text a:hover { color: var(--white); }
  .map-box {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 4px;
    overflow: hidden;
    height: 320px;
  }
  .map-box iframe { width: 100%; height: 100%; border: none; }

  /* ── FOOTER ── */
  footer {
    background: #0e1829;
    color: rgba(255,255,255,.65);
    padding: 60px 20px 0;
  }
  .footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 48px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .footer-about .logo-text .brand { font-size: 22px; color: var(--white); }
  .footer-about .logo-text .sub { color: var(--gold-light); }
  .footer-about p { font-size: 14px; line-height: 1.8; margin-top: 16px; }
  .footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white); font-size: 16px;
    margin-bottom: 20px; padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
  }
  .footer-col ul { list-style: none; line-height:22px;}
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,.6); text-decoration: none;
    font-size: 14px; transition: color .2s;
  }
  .footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding: 20px 0;
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; text-align: center;
  }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.7; }
  .footer-bottom a{ color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px; transition: color .2s; }
  .footer-bottom a:hover { color: var(--gold-light); }
  .footer-legal { display: flex; gap:5px; flex-wrap: wrap; justify-content: center; }
  .footer-legal a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px; transition: color .2s; }
  .footer-legal a:hover { color: var(--gold-light); }

  /* ── BACK TO TOP ── */
  #backTop {
    position: fixed; bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    background: var(--gold);
    color: var(--navy);
    border: none; border-radius: 3px;
    font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    opacity: 0; transform: translateY(16px);
    transition: opacity .3s, transform .3s;
  }
  #backTop.visible { opacity: 1; transform: translateY(0); }
  #backTop:hover { background: var(--gold-light); transform: translateY(-2px); }

  /* ── MOBILE NAV ── */
  .mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 2px solid var(--gold);
    padding: 16px 20px;
    gap: 4px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    padding: 10px 14px; font-size: 15px;
    font-weight: 600; color: var(--navy);
    text-decoration: none; border-radius: 4px;
    transition: background .2s;
  }
  .mobile-nav a:hover { background: var(--cream); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .loc-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .photo-strip { grid-template-columns: 1fr 1fr; height: auto; }
    .strip-photo { height: 200px; }
  }
  @media (max-width: 600px) {
    .photo-strip { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .res-inner { flex-direction: column; }
    .res-field { min-width: 100%; }
    .welcome-stats { gap: 16px; }
    .top-bar .inner { flex-direction: column; text-align: center; }
    .slide-content { padding: 0 20px; }
    .amenities-grid { grid-template-columns: 1fr; }
  }

  /* Scroll animations */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .txt {color:#000000; text-decoration:none;}
    .txt a{color:#000000; text-decoration:none;}
	.txt a:hover{color:#c9a84c; text-decoration:none;}
