  /* ===== CSS VARIABLES ===== */
  :root {
    --teal: #1a6b5a;
    --teal-dark: #134f43;
    --teal-light: #2a8a74;
    --gold: #c9a84c;
    --gold-light: #e2c06a;
    --navy: #1c2a3a;
    --navy-light: #243447;
    --white: #ffffff;
    --off-white: #f8f6f2;
    --gray-light: #f0eeea;
    --gray: #888;
    --text: #2c2c2c;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Nunito Sans', sans-serif;
    --shadow: 0 4px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
    --radius: 6px;
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  }

  /* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
  }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ===== TOP BAR ===== */
  .topbar {
    background:#1A6B5A;
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 8px 0;
    position: relative;
    z-index: 200;
  }
  .topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .topbar-left a {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
  }
  .topbar-left a:hover { color: var(--gold-light); }
  .topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .topbar-right a {
    color: rgba(255,255,255,0.75);
    font-size: 0.75rem;
    transition: var(--transition);
  }
  .topbar-right a:hover { color: var(--gold-light); }
  .topbar-divider { color: rgba(255,255,255,0.3); }
  .social-icons { display: flex; gap: 10px; }
  .social-icons a {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
  }
  .social-icons a:hover { background: var(--gold); color: var(--navy); }

  /* ===== HEADER / NAV ===== */
  .header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: var(--transition);
  }
  .header.scrolled {
    box-shadow: 0 4px 28px rgba(0,0,0,0.14);
  }
  .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .logo-wrap img {
    height: 52px;
    width: auto;
  }
  .logo-text {
    line-height: 1.2;
  }
  .logo-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--teal-dark);
    font-weight: 700;
  }
  .logo-text span {
    font-size: 0.72rem;
    color: var(--gray);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .nav {
    display: flex;
    align-items: center;
    gap:6px;
  }
  .nav a {
    padding: 8px 14px;
    font-size:1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
  }
  .nav a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }
  .nav a:hover { color: var(--teal); }
  .nav a:hover::after { transform: scaleX(1); }
  .nav-book-btn {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 10px 22px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    transition: var(--transition) !important;
    margin-left: 8px;
  }
  .nav-book-btn:hover {
    background: var(--teal) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
  }
  .nav-book-btn::after { display: none !important; }
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
  }
  .hamburger span {
    width: 24px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
  }
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 999;
    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.4rem;
    font-family: var(--font-display);
    padding: 14px 32px;
    transition: var(--transition);
  }
  .mobile-nav a:hover { color: var(--gold-light); }
  .mobile-close {
    position: absolute;
    top: 24px; right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
  }

  /* ===== SLIDESHOW ===== */
  .slideshow {
    position: relative;
    height: 90vh;
    min-height: 520px;
    max-height: 820px;
    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; z-index: 2; }
  .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 7s ease;
  }
  .slide.active .slide-bg { transform: scale(1); }
  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(20,30,42,0.72) 0%,
      rgba(20,30,42,0.38) 55%,
      rgba(20,30,42,0.15) 100%
    );
  }
  .slide-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    width: 100%;
    padding: 0 48px;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .slide-text {
    max-width: 580px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.9s ease 0.3s;
  }
  .slide.active .slide-text {
    transform: translateY(0);
    opacity: 1;
  }
  .slide-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
  }
  .slide-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 16px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
  }
  .slide-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 440px;
    line-height: 1.7;
  }
  .slide-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 15px 34px;
    border-radius: 40px;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(201,168,76,0.4);
  }
  .slide-book-btn:hover {
    background: var(--white);
    color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.2);
  }
  .slide-book-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* Slideshow controls */
  .slide-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
  }
  .dot.active {
    background: var(--gold);
    border-color: var(--white);
    transform: scale(1.2);
  }
  .slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
  }
  .slide-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
  .slide-prev { left: 24px; }
  .slide-next { right: 24px; }

  /* ===== RESERVATION BOX ===== */
  .reservation-wrap {
    position: relative;
    z-index: 20;
    margin-top: -54px;
    padding: 0 24px;
    display: flex;
    justify-content: center;
  }
  .reservation-box {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 16px 60px rgba(0,0,0,0.16);
    padding: 32px 36px;
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 4px solid var(--gold);
  }
  .res-title {
    width: 100%;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--teal-dark);
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .res-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-light);
  }
  .res-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 130px;
  }
  .res-field label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
  }
  .res-field input,
  .res-field select {
    border: 1.5px solid #ddd;
    border-radius: var(--radius);
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    width: 100%;
  }
  .res-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
  }
  .res-field input:focus,
  .res-field select:focus {
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26,107,90,0.1);
  }
  .res-submit {
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 13px 32px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .res-submit:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,107,90,0.35);
  }
  .res-submit svg { width: 18px; height: 18px; }

  /* ===== SECTION BASE ===== */
  section { padding: 80px 24px; }
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color:#1A6B5A;
    line-height: 1.25;
    margin-bottom: 16px;
  }
  .section-divider {
    width: 56px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 16px 0 32px;
  }

  /* ===== WELCOME SECTION ===== */
  .welcome {
    background: var(--off-white);
  }
  .welcome-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .welcome-text {}
  .welcome-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--teal-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border-left: 3px solid var(--gold);
  }
  .feature-pill svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
  .welcome-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 12px;
  }
  .wi-img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  .wi-img:first-child {
    grid-row: 1 / 3;
  }
  .wi-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .wi-img:hover img { transform: scale(1.05); }
  .wi-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,30,42,0.4), transparent);
    opacity: 0;
    transition: var(--transition);
  }
  .wi-img:hover .wi-img-overlay { opacity: 1; }

  /* ===== AMENITIES ===== */
  .amenities {
    background: var(--white);
  }
  .amenities-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .amenities-header .section-desc { margin: 0 auto; }
  .amenities-header .section-divider { margin: 16px auto 0; }
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .amenity-card {
    background: var(--off-white);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
  }
  .amenity-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.35s ease;
  }
  .amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
  }
  .amenity-card:hover::before { transform: scaleX(1); }
  .amenity-icon {
    width: 60px; height: 60px;
    background: var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    color: var(--white);
    font-size: 1.4rem;
    transition: var(--transition);
  }
  .amenity-card:hover .amenity-icon {
    background: var(--gold);
    color: var(--navy);
  }
  .amenity-name {
 
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .amenity-desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
  }

  /* ===== ROOMS HIGHLIGHT ===== */
  .rooms {
    background: #1A6B5A;
    color: var(--white);
  }
  .rooms-header {
    text-align: center;
    margin-bottom: 52px;
  }
  .rooms-header .section-title { color: var(--white); }
  .rooms-header .section-desc { color: rgba(255,255,255,0.65); margin: 0 auto; }
  .rooms-header .section-divider { margin: 16px auto 0; }
  .rooms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .room-card {
    background:#1A6B5A;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.3);
    border-color: var(--gold);
  }
  .room-img {
      overflow: hidden;
  }
  .room-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .room-card:hover .room-img img { transform: scale(1.07); }
  .room-info {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .room-type {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
  }
  .room-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
  }
  .room-features {
    list-style: none;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
    margin-bottom: 16px;
  }
  .room-features li::before { content: '✓ '; color: var(--gold); font-weight: 700; }
  .room-book-btn {
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
    text-align: center;
  }
  .room-book-btn:hover {
    background: var(--gold);
    color: #1A6B5A;
  }

  /* ===== MAP / LOCATION STRIP ===== */
  .location-strip {
    background: var(--teal);
    color: var(--white);
    padding: 40px 24px;
  }
  .location-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .location-info {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .loc-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
  }
  .loc-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 3px;
  }
  .loc-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
  }
  .loc-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: var(--transition);
  }
  .loc-directions:hover { background: var(--white); color: var(--teal-dark); }

  /* ===== TESTIMONIALS ===== */
  .testimonials {
    background: var(--gray-light);
  }
  .test-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .test-header .section-divider { margin: 16px auto; }
  .test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .test-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    transition: var(--transition);
    position: relative;
  }
  .test-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .test-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
  }
  .test-quote {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 18px;
    font-style: italic;
  }
  .test-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .test-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--teal);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
  }
  .test-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--navy);
  }
  .test-source {
    font-size: 0.74rem;
    color: var(--gray);
  }
  .test-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.62rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.08em;
  }

  /* ===== FOOTER ===== */
  .footer {
    background:#0f6c57;
    color: rgba(255,255,255,0.75);
    padding: 64px 24px 0;
  }
  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand img {
    height:70px;
    width: auto; display:inline-block;
    margin-bottom:4px;
  
  }
  .footer-brand-name {
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .footer-brand p {
    font-size: 0.82rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
  }
  .footer-social {
    display: flex;
    gap: 10px;
  }
  .footer-social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
  }
  .footer-social a:hover { background: var(--gold); color: var(--navy); }
  .footer-col h4 {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-col ul li a {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
  }
  .footer-contact-item svg { width: 16px; height: 16px; margin-top: 2px; color: var(--gold); flex-shrink: 0; }
  .footer-contact-item a { color: rgba(255,255,255,0.6); transition: var(--transition); }
  .footer-contact-item a:hover { color: var(--gold-light); }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom-text {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.7;
    max-width: 640px;
  }
  .footer-legal-links {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer-legal-links a {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
  }
  .footer-legal-links a:hover { color: var(--gold-light); }
  .footer-legal-links span { color: rgba(255,255,255,0.2); }
  
  
    .attractions {
    background: var(--white);
    padding: 90px 24px;
  }
  .attractions-header {
    text-align: center;
    margin-bottom: 40px;
  }
  .attractions-header .section-divider { margin: 16px auto; }


  /* Cards Grid */
  .attract-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }
  .attract-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
  }
  .attract-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  }
  .attract-card.hidden {
    display: none;
  }

  /* Card Image Area */
  .attract-img {
    position: relative;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .attract-img--mansion   { background: linear-gradient(135deg, #2c1654 0%, #6a4c93 100%); }
  .attract-img--pioneer   { background: linear-gradient(135deg, #7b3f00 0%, #c97c3a 100%); }
  .attract-img--standing-bear { background: linear-gradient(135deg, #1a3a2a 0%, #2d6a4f 100%); }
  .attract-img--conoco    { background: linear-gradient(135deg, #1c2a3a 0%, #3a5068 100%); }
  .attract-img--kaw-lake  { background: linear-gradient(135deg, #134f43 0%, #1a8a6e 100%); }
  .attract-img--lake-ponca { background: linear-gradient(135deg, #0d4f6c 0%, #1a8cb0 100%); }
  .attract-img--poncan    { background: linear-gradient(135deg, #6a0f1a 0%, #c9284d 100%); }
  .attract-img--sunfun    { background: linear-gradient(135deg, #c97000 0%, #f0a500 100%); }

  .attract-img::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");
  }
  .attract-img-icon {
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 1;
    transition: var(--transition);
  }
  .attract-card:hover .attract-img-icon {
    transform: scale(1.1);
    color: rgba(255,255,255,0.95);
  }
  .attract-distance {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(201,168,76,0.92);
    color: var(--navy);
    font-size: 0.67rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
  }

  /* Card Info */
  .attract-info {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
  }
  .attract-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
  }
  .attract-desc {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.72;
    flex: 1;
  }
  .attract-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
    transition: var(--transition);
  }
  .attract-link:hover {
    color: var(--gold);
    gap: 10px;
  }

  /* CTA Banner */
  .attract-cta {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    border-radius: 16px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .attract-cta-text {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--white);
  }
  .attract-cta-text span {
    font-size: 2rem;
    flex-shrink: 0;
  }
  .attract-cta-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  .attract-cta-text p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.5;
  }
  .attract-cta-btn {
    background: var(--gold);
    color: var(--navy);
    padding: 13px 30px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.84rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .attract-cta-btn:hover {
    background: var(--white);
    color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  }


  /* ===== BACK TO TOP ===== */
  .back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px; height: 48px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 20px rgba(26,107,90,0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
  }
  .back-to-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .back-to-top:hover {
    background: #ffdd00;
    color: var(--navy);
    transform: translateY(-3px);
  }
  #year{ display:none;}

  /* ===== ANIMATE ON SCROLL ===== */
  [data-aos] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
  }
  [data-aos-delay="100"] { transition-delay: 0.1s; }
  [data-aos-delay="200"] { transition-delay: 0.2s; }
  [data-aos-delay="300"] { transition-delay: 0.3s; }
  [data-aos-delay="400"] { transition-delay: 0.4s; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .rooms-grid { grid-template-columns: 1fr; }
    .room-card { grid-template-columns: 1fr; }
    .room-img { height: 220px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .topbar-right { display: none; }
    .nav { display: none; }
    .hamburger { display: flex; }
    .welcome-inner { grid-template-columns: 1fr; gap: 40px; }
    .welcome-image-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 180px 180px;
    }
    .welcome-features { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .reservation-box { padding: 24px 20px; gap: 14px; }
    .res-field { min-width: 120px; }
    .test-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .location-inner { flex-direction: column; align-items: flex-start; }
    .slide-content { padding: 0 24px; }
    section { padding: 60px 24px; }
  }
  @media (max-width: 480px) {
    .amenities-grid { grid-template-columns: 1fr; }
    .reservation-box { flex-direction: column; }
    .res-field { min-width: unset; width: 100%; }
    .res-submit { width: 100%; }
    .slide-title { font-size: 1.8rem; }
    .slideshow { height: 70vh; }
    .welcome-image-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .wi-img:first-child { grid-row: unset; }
    .wi-img { height: 200px; }
  }

