    :root {
      --forest:    #1a3a2a;
      --pine:      #2d5a3d;
      --sage:      #5a8c6b;
      --gold:      #c9943a;
      --gold-lt:   #e8b95a;
      --cream:     #f8f4ed;
      --warm-off:  #fdf9f3;
      --charcoal:  #1e2329;
      --mid:       #4a5568;
      --light-bg:  #f0ede8;
    }

    * { box-sizing: border-box; }

    body {
      font-family: 'Mulish', sans-serif;
      color: var(--charcoal);
      background: #fff;
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }

/* ── TOP BAR ── */
    #topbar {
      background: linear-gradient(90deg, #0f0a04 0%, #1e1409 50%, #0f0a04 100%);
      border-bottom: 2px solid var(--gold-dk);
      padding: 9px 0;
      position: relative;
      overflow: hidden;
    }
    #topbar::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 120px,
        rgba(201,148,58,.04) 120px,
        rgba(201,148,58,.04) 121px
      );
    }
    .topbar-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      position: relative;
      z-index: 1;
      padding: 0 24px;
    }
    .topbar-info {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 4px;
    }
    .topbar-item {
      display: flex;
      align-items: center;
      gap: 7px;
      color: #c8b99a;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: .03em;
      padding: 0 14px;
      border-right: 1px solid rgba(201,148,58,.25);
    }
    .topbar-item:last-child { border-right: none; }
    .topbar-item:first-child { padding-left: 0; }
    .topbar-item i { color: var(--gold); font-size: 0.88rem; flex-shrink: 0; }
    .topbar-item a { color: #c8b99a; text-decoration: none; transition: color .2s; }
    .topbar-item a:hover { color: var(--gold-lt); }

    .btn-booknow {
      background: linear-gradient(135deg, var(--crimson) 0%, #6b0000 100%);
      color: #fff !important;
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 9px 22px;
      border: 1px solid rgba(201,148,58,.5);
      border-radius: 0;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .25s;
      position: relative;
      overflow: hidden;
    }
    .btn-booknow::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(135deg, var(--gold-dk), var(--gold));
      transition: left .3s;
      z-index: 0;
    }
    .btn-booknow:hover::before { left: 0; }
    .btn-booknow span, .btn-booknow i { position: relative; z-index: 1; }
    .btn-booknow:hover { border-color: #fff; color: #fff !important; }

    /* ── HEADER ── */
    #mainheader {
      background: #fff;
      border-bottom: 3px solid transparent;
      border-image: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson)) 1;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 30px rgba(0,0,0,.12);
    }

    .navbar { padding: 0 !important; }

    /* Three-column grid layout */
    .nav-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      width: 100%;
      padding: 0 20px;
      min-height: 90px;
    }

    /* Left nav */
    .nav-left {
      display: flex;
      justify-content: flex-end;
    }
    .nav-left ul {
      display: flex;
      list-style: none;
      gap: 0;
      margin: 0;
      padding: 0;
      align-items: center;
    }

    /* Right nav */
    .nav-right {
      display: flex;
      justify-content: flex-start;
    }
    .nav-right ul {
      display: flex;
      list-style: none;
      gap: 0;
      margin: 0;
      padding: 0;
      align-items: center;
    }

    /* Logo center */
    .nav-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 6px 24px;
    }
    .nav-logo img {
      height: 80px;
      width: auto;
      object-fit: contain;
      display: block;
      transition: transform .3s;
    }
    .nav-logo img:hover { transform: scale(1.04); }

    /* Nav links */
    .nav-link-hd {
      font-family: 'Raleway', sans-serif;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--charcoal) !important;
      text-decoration: none;
      padding: 10px 13px;
      display: block;
      position: relative;
      white-space: nowrap;
      transition: color .2s;
    }
    .nav-link-hd::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 13px;
      right: 13px;
      height: 2px;
      background: linear-gradient(90deg, var(--crimson), var(--gold));
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .28s cubic-bezier(.4,0,.2,1);
    }
    .nav-link-hd:hover::after,
    .nav-link-hd.active::after { transform: scaleX(1); }
    .nav-link-hd:hover { color: var(--crimson) !important; }
    .nav-link-hd.active { color: var(--crimson) !important; font-weight: 700; }

    /* Ornament divider between logo and navs */
    .nav-divider {
      width: 1px;
      height: 48px;
      background: linear-gradient(180deg, transparent, var(--gold-dk), transparent);
      flex-shrink: 0;
    }

    /* Mobile toggler */
    .mobile-header {
      display: none;
      align-items: center;
      justify-content: space-between;
      padding: 10px 16px;
      width: 100%;
    }
    .mobile-header img { height: 60px; width: auto; }
    .toggler-btn {
      background: var(--crimson);
      border: none;
      padding: 8px 12px;
      color: #000000;
      font-size: 1.2rem;
      cursor: pointer;
      transition: background .2s;
    }
    .toggler-btn:hover { background: #e5d21f; }

    /* Mobile collapse menu */
    #mobileMenu {
      display: none;
      background: #fff;
      border-top: 2px solid var(--gold-dk);
      padding: 8px 0 12px;
    }
    #mobileMenu.open { display: block; }
    #mobileMenu .m-nav-link {
      display: block;
      padding: 11px 24px;
      font-family: 'Raleway', sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--charcoal);
      text-decoration: none;
      border-left: 3px solid transparent;
      transition: all .2s;
    }
    #mobileMenu .m-nav-link:hover {
      color: var(--crimson);
      border-left-color: var(--gold);
      background: #fdf8f0;
    }
    #mobileMenu .m-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,148,58,.3), transparent);
      margin: 6px 16px;
    }

    @media (max-width: 1199px) {
      .nav-link-hd { font-size: .72rem; padding: 10px 9px; letter-spacing: .06em; }
      .nav-logo img { height: 68px; }
    }

    @media (max-width: 991px) {
      .desktop-nav { display: none !important; }
      .mobile-header { display: flex; }
    }

    /* ── SLIDER ───────────────────────────────────────────────── */
    #heroSlider { position: relative; overflow: hidden; }
    .slide-item {
      height: 88vh;
      min-height: 500px;
      position: relative;
      overflow: hidden;
    }
    .slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.06);
      transition: transform 7s ease-out;
    }
    .carousel-item.active .slide-bg { transform: scale(1); }
    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(10,30,18,.72) 0%, rgba(10,30,18,.28) 60%, transparent 100%);
    }
    .slide-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 0 6% 8%;
      color: #fff;
    }
    .slide-tag {
      display: inline-block;
      background: var(--gold);
      font-size: 0.7rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight: 700;
      padding: 5px 14px;
      margin-bottom: 16px;
      font-family: 'Mulish', sans-serif;
    }
    .slide-title {
      font-size: clamp(2rem, 5vw, 3.8rem);
      font-weight: 900;
      line-height: 1.1;
      text-shadow: 0 2px 24px rgba(0,0,0,.4);
      margin-bottom: 14px;
    }
    .slide-desc {
      font-size: clamp(0.9rem, 1.5vw, 1.05rem);
      font-weight: 300;
      max-width: 520px;
      opacity: .9;
      line-height: 1.7;
    }
    .carousel-control-prev, .carousel-control-next {
      width: 52px;
      height: 52px;
      background: rgb(15 10 4 / 54%);
    border: 1px solid #0f0a0482;
      top: 50%;
      transform: translateY(-50%);
      border-radius: 0;
      opacity: 1;
      bottom: auto;
    }
    .carousel-control-prev { left: 20px; }
    .carousel-control-next { right: 20px; }
    .carousel-control-prev:hover,
    .carousel-control-next:hover { background: var(--gold); }
    .carousel-indicators button {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,.4);
      border: none;
    }
    .carousel-indicators button.active { background: var(--gold); }

    /* ── SECTION CHROME ───────────────────────────────────────── */
    .section-label {
      font-size: 0.72rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      font-family: 'Mulish', sans-serif;
      display: block;
      margin-bottom: 8px;
    }
    .section-title {
      font-size: clamp(1.7rem, 3vw, 2.6rem);
      font-weight: 700;
      color: var(--forest);
      margin-bottom: 0;
      line-height: 1.2;
    }
    .gold-rule {
      width: 54px;
      height: 3px;
      background: var(--gold);
      margin: 18px 0 24px;
    }
    .gold-rule.centered { margin: 18px auto 24px; }

    /* ── WELCOME ──────────────────────────────────────────────── */
    #welcome { background: var(--warm-off); padding: 90px 0; }
    .welcome-img-wrap {
      position: relative;
    }
    .welcome-img-wrap img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
    }
    .welcome-accent-box {
      position: absolute;
      bottom: -22px;
      right: -22px;
      width: 100px;
      height: 100px;
      background: var(--gold);
      z-index: -1;
    }
    .welcome-award {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--forest);
      color: #fff;
      padding: 10px 18px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: .04em;
      margin-top: 28px;
    }
    .welcome-award i { color: var(--gold-lt); font-size: 1.1rem; }
    .stat-pill {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      background: var(--forest);
      color: #fff;
      padding: 16px 22px;
      margin-right: 10px;
      margin-bottom: 10px;
      min-width: 90px;
    }
    .stat-pill .num {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold-lt);
      line-height: 1;
    }
    .stat-pill .lbl {
      font-size: 0.68rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      opacity: .75;
      margin-top: 4px;
    }

    /* ── AMENITIES ────────────────────────────────────────────── */
    #amenities { background: var(--cream); padding: 90px 0; }
    .amenity-card {
      background: #fff;
      border-left: 4px solid var(--gold);
      padding: 28px 24px;
      transition: box-shadow .25s, transform .25s;
      height: 100%;
    }
    .amenity-card:hover {
      box-shadow: 0 12px 40px rgba(26,58,42,.12);
      transform: translateY(-4px);
    }
    .amenity-icon {
      width: 52px;
      height: 52px;
      background: var(--forest);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .amenity-icon i { font-size: 1.4rem; color: var(--gold-lt); }
    .amenity-card h5 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--forest);
      margin-bottom: 6px;
    }
    .amenity-card p { font-size: 0.85rem; color: var(--mid); margin: 0; line-height: 1.65; }

    /* ── ATTRACTIONS ──────────────────────────────────────────── */
    #attractions { background: var(--forest); padding: 90px 0; }
    #attractions .section-title { color: #fff; }
    #attractions .section-label { color: var(--gold-lt); }
    .attract-card {
      position: relative;
      overflow: hidden;
      cursor: default;
    }
    .attract-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      transition: transform .5s ease;
      display: block;
    }
    .attract-card:hover img { transform: scale(1.06); }
    .attract-info {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(0deg, rgba(10,30,18,.95) 0%, transparent 100%);
      padding: 40px 18px 18px;
      color: #fff;
      transform: translateY(30px);
      transition: transform .3s;
    }
    .attract-card:hover .attract-info { transform: translateY(0); }
    .attract-info h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: #fff; }
    .attract-info span { font-size: 0.78rem; color: var(--gold-lt); }
    .attract-dist {
      position: absolute;
      top: 12px; right: 12px;
      background: var(--gold);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: .06em;
      padding: 4px 10px;
      font-family: 'Mulish', sans-serif;
    }

    /* ── BG SECTION ───────────────────────────────────────────── */
    #bgcta {
      position: relative;
      padding: 120px 0;
      background: url('https://images.unsplash.com/photo-1596394516093-501ba68a0ba6?w=1600&q=80') center/cover no-repeat;
    }
    #bgcta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(10,30,18,.88) 0%, rgba(10,30,18,.6) 100%);
    }
    #bgcta .inner { position: relative; z-index: 1; color: #fff; }
    #bgcta h2 { color: #fff; }
    #bgcta p { opacity: .85; max-width: 560px; line-height: 1.8; }
    .btn-gold {
      background: var(--gold);
      color: #fff;
      font-weight: 700;
      letter-spacing: .08em;
      font-size: 0.85rem;
      text-transform: uppercase;
      padding: 14px 34px;
      border-radius: 0;
      border: 2px solid var(--gold);
      transition: background .2s, color .2s, transform .15s;
    }
    .btn-gold:hover { background: transparent; color: var(--gold); transform: translateY(-2px); }
    .btn-outline-gold {
      background: transparent;
      color: var(--gold);
      font-weight: 700;
      letter-spacing: .08em;
      font-size: 0.85rem;
      text-transform: uppercase;
      padding: 14px 34px;
      border-radius: 0;
      border: 2px solid var(--gold);
      transition: background .2s, color .2s;
    }
    .btn-outline-gold:hover { background: var(--gold); color: #fff; }

    /* Checkin strip */
    .checkin-strip {
      background: #c31d19;
      padding: 22px 0;
    }
    .checkin-stat {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
    }
    .checkin-stat i { font-size: 1.6rem; opacity: .85; }
    .checkin-stat .cs-label { font-size: 0.7rem; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }
    .checkin-stat .cs-val { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; }
    .cs-divider { width: 1px; background: rgba(255,255,255,.35); height: 40px; }

    /* ── FOOTER ───────────────────────────────────────────────── */
    #footer { background: var(--charcoal); color: #a0a8b0; padding: 70px 0 0; }
    .footer-brand { margin-bottom: 20px; }
    .footer-brand .logo-badge { font-size: 1rem; }
    .footer-brand .logo-sub { color: var(--gold); }
    #footer h6 {
      font-family: 'Mulish', sans-serif;
      font-size: 0.72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 18px;
    }
    #footer a { color: #8a929a; text-decoration: none; font-size: 0.87rem; transition: color .2s; }
    #footer a:hover { color: var(--gold-lt); }
    #footer ul { list-style: none; padding: 0; margin: 0; }
    #footer ul li { margin-bottom: 9px; }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 13px;
      font-size: 0.87rem;
    }
    .footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
    .footer-social { display: flex; gap: 10px; margin-top: 20px; }
    .footer-social a {
      width: 36px; height: 36px;
      background: #2c3340;
      display: flex; align-items: center; justify-content: center;
      color: #8a929a;
      font-size: 1rem;
      transition: background .2s, color .2s;
    }
    .footer-social a:hover { background: var(--gold); color: #fff; }
    .footer-bottom {
      border-top: 1px solid #2c3340;
      margin-top: 50px;
      padding: 18px 0;
      font-size: 0.78rem;
      color: #5a6270;
    }
    .footer-bottom a { color: #5a6270; }
    .footer-bottom a:hover { color: var(--gold); }

    /* ── MISC ─────────────────────────────────────────────────── */
    .divider-pine {
      height: 5px;
      background: linear-gradient(90deg, var(--forest), var(--sage), var(--gold));
    }

    /* Scroll reveal helper */
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .12s; }
    .reveal-delay-2 { transition-delay: .24s; }
    .reveal-delay-3 { transition-delay: .36s; }
    .reveal-delay-4 { transition-delay: .48s; }

    @media (max-width: 991px) {
      .welcome-accent-box { display: none; }
      .navbar-collapse { padding: 12px 0; }
    }
    @media (max-width: 767px) {
      .slide-item { height: 65vh; }
      #bgcta { padding: 80px 0; }
    }
	
	 /* ── SHARED SECTION CHROME ── */
    .sec-eyebrow {
      font-family: 'Raleway', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 10px;
    }
    .sec-title {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 700;
      line-height: 1.15;
      color: #c31d19;
      margin-bottom: 0;
    }
    .sec-title span { color: var(--crimson); font-style: italic; }
    .gold-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 20px 0 28px;
    }
    .gold-bar::before, .gold-bar::after {
      content: '';
      flex: 1;
      max-width: 60px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold));
    }
    .gold-bar::after {
      background: linear-gradient(90deg, var(--gold), transparent);
    }
    .gold-bar .diamond {
      width: 8px; height: 8px;
      background: var(--crimson);
      transform: rotate(45deg);
      flex-shrink: 0;
    }
    .gold-bar.centered { justify-content: center; }

    /* Scroll reveal */
    .reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: .1s; }
    .delay-2 { transition-delay: .2s; }
    .delay-3 { transition-delay: .3s; }
    .delay-4 { transition-delay: .4s; }
    .delay-5 { transition-delay: .5s; }
    .delay-6 { transition-delay: .6s; }

    /* ══════════════════════════════════════════
       WELCOME SECTION
    ══════════════════════════════════════════ */
    #welcome {
      background: var(--warm-white);
      padding: 40px 0;
      position: relative;
      overflow: hidden;
    }
    #welcome::before {
      content: 'HD';
      position: absolute;
      top: -40px; right: -20px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22vw;
      font-weight: 700;
      color: rgba(201,148,58,.04);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .welcome-img-outer {
      position: relative;
    }
    .welcome-img-main {
      width: 100%;
      height: 480px;
      object-fit: cover;
      display: block;
    }
    .welcome-img-accent {
      position: absolute;
      bottom: -18px; right: -18px;
      width: 130px; height: 130px;
      background: linear-gradient(135deg, var(--crimson), #6b0000);
      z-index: -1;
    }
    .welcome-img-badge {
      position: absolute;
      top: 24px; left: -18px;
      background: var(--dark);
      border: 1px solid var(--gold-dk);
      color: #fff;
      padding: 16px 20px;
      min-width: 130px;
      text-align: center;
    }
    .welcome-img-badge .badge-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--gold-lt);
      line-height: 1;
    }
    .welcome-img-badge .badge-lbl {
      font-size: 0.65rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: #c8b99a;
      display: block;
      margin-top: 4px;
    }

    /* Stats pills */
    .stat-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 28px 0;
    }
    .stat-pill {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: var(--dark);
      color: #fff;
      padding: 14px 20px;
      min-width: 88px;
      position: relative;
      overflow: hidden;
    }
    .stat-pill::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--crimson), var(--gold));
    }
    .stat-pill .snum {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--gold-lt);
      line-height: 1;
    }
    .stat-pill .slbl {
      font-size: 0.62rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.6);
      margin-top: 5px;
      white-space: nowrap;
    }

    /* Gold award */
    .award-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, #0f0a04, #1e1409);
      border: 1px solid var(--gold-dk);
      padding: 14px 22px;
      margin-top: 10px;
    }
    .award-badge .award-icon {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--gold-dk), var(--gold-lt));
      clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
      flex-shrink: 0;
    }
    .award-badge .award-text { color: #fff; }
    .award-badge .award-text .at { font-size: 0.65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-lt); }
    .award-badge .award-text .ab { font-size: 0.88rem; font-weight: 600; color: #fff; margin-top: 2px; }

    /* Ornamental corner */
    .orn-corner {
      position: absolute;
      width: 60px; height: 60px;
      border-color: var(--gold-dk);
      border-style: solid;
      opacity: .4;
    }
    .orn-tl { top: 16px; left: 16px; border-width: 2px 0 0 2px; }
    .orn-br { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; }

    /* ══════════════════════════════════════════
       AMENITIES SECTION
    ══════════════════════════════════════════ */
    #amenities {
      background: var(--light-gold);
      padding: 100px 0;
      position: relative;
    }
    #amenities::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
    }

    .amenity-card {
      background: #fff;
      padding: 32px 26px 28px;
      height: 100%;
      position: relative;
      overflow: hidden;
      border-bottom: 3px solid transparent;
      transition: border-color .3s, box-shadow .3s, transform .3s;
    }
    .amenity-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--crimson), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s cubic-bezier(.4,0,.2,1);
    }
    .amenity-card:hover { 
      box-shadow: 0 16px 50px rgba(139,0,0,.12), 0 4px 20px rgba(201,148,58,.1);
      transform: translateY(-6px);
      border-bottom-color: var(--gold-dk);
    }
    .amenity-card:hover::before { transform: scaleX(1); }

    .amenity-icon-wrap {
      width: 58px; height: 58px;
      background: linear-gradient(135deg, var(--dark), #2d1f0a);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
      position: relative;
    }
    .amenity-icon-wrap::after {
      content: '';
      position: absolute;
      inset: -3px;
      border: 1px solid rgba(201,148,58,.3);
      pointer-events: none;
    }
    .amenity-icon-wrap i { font-size: 1.5rem; color: var(--gold-lt); }
    .amenity-card h5 {
      font-family: 'Raleway', sans-serif;
      font-size: 0.92rem;
      font-weight: 700;
      letter-spacing: .04em;
      color: var(--charcoal);
      margin-bottom: 8px;
      text-transform: uppercase;
    }
    .amenity-card p { font-size: 0.84rem; color: var(--mid); line-height: 1.7; margin: 0; }

    .amenity-num {
      position: absolute;
      bottom: 16px; right: 16px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: rgba(201,148,58,.07);
      line-height: 1;
      pointer-events: none;
    }
#amenities {
    background: #cdb40833;
}
    /* ══════════════════════════════════════════
       ATTRACTIONS SECTION
    ══════════════════════════════════════════ */
    #attractions {
      background: linear-gradient(160deg, #0f0a04 0%, #1e1209 40%, #0d0806 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    #attractions::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(139,0,0,.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 30%, rgba(201,148,58,.06) 0%, transparent 70%);
      pointer-events: none;
    }

    #attractions .sec-title { color: #f5e9d0; }

    .attract-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .attract-card img {
      width: 100%; height: 250px;
      object-fit: cover;
      display: block;
      transition: transform .55s cubic-bezier(.4,0,.2,1), filter .55s;
      filter: brightness(.85) saturate(.9);
    }
    .attract-card:hover img {
      transform: scale(1.08);
      filter: brightness(.75) saturate(1.1);
    }
    .attract-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(10,5,0,.9) 0%, rgba(10,5,0,.2) 50%, transparent 100%);
    }
    .attract-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 28px 20px 20px;
      transform: translateY(8px);
      transition: transform .35s;
    }
    .attract-card:hover .attract-content { transform: translateY(0); }
    .attract-content h5 {
      font-size: 1.05rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 4px;
      font-family: 'Cormorant Garamond', serif;
    }
    .attract-content p {
      font-size: 0.75rem;
      color: var(--gold-lt);
      letter-spacing: .06em;
      margin: 0;
      text-transform: uppercase;
      font-weight: 600;
    }
    .attract-dist {
      position: absolute;
      top: 14px; right: 14px;
      background: var(--crimson);
      color: #fff;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: .08em;
      padding: 5px 10px;
      text-transform: uppercase;
      border: 1px solid rgba(255,255,255,.2);
    }
    .attract-num {
      position: absolute;
      top: 14px; left: 14px;
      background: rgba(201,148,58,.15);
      border: 1px solid rgba(201,148,58,.35);
      color: var(--gold-lt);
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 700;
      width: 30px; height: 30px;
      display: flex; align-items: center; justify-content: center;
    }

    .attract-more {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 48px;
    }
    .attract-tag {
      background: rgba(201,148,58,.1);
      border: 1px solid rgba(201,148,58,.3);
      color: var(--gold-lt);
      font-size: 0.72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 7px 16px;
      font-weight: 600;
      transition: background .2s, color .2s;
    }
    .attract-tag:hover {
      background: var(--gold);
      color: var(--dark);
    }

    /* ══════════════════════════════════════════
       BG CTA SECTION
    ══════════════════════════════════════════ */
    #bgcta {
      position: relative;
      padding: 120px 0;
      background: url('https://images.unsplash.com/photo-1596394516093-501ba68a0ba6?w=1600&q=80') center/cover no-repeat;
    }
    #bgcta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, rgba(10,5,2,.92) 0%, rgba(10,5,2,.75) 50%, rgba(139,0,0,.5) 100%);
    }
    .bgcta-inner { position: relative; z-index: 1; }

    #bgcta .sec-title { color: #f5e9d0; }

    .btn-crimson {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--crimson);
      color: #fff;
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 15px 32px;
      border: 2px solid var(--crimson);
      text-decoration: none;
      transition: all .25s;
    }
    .btn-crimson:hover {
      background: transparent;
      color: var(--crimson);
    }
    .btn-gold-outline {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: transparent;
      color: var(--gold-lt);
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 15px 32px;
      border: 2px solid var(--gold-dk);
      text-decoration: none;
      transition: all .25s;
    }
    .btn-gold-outline:hover {
      background: var(--gold);
      color: var(--dark);
      border-color: var(--gold);
    }

    /* Info panel */
    .info-panel {
      background: rgba(10,5,2,.8);
      border: 1px solid rgba(201,148,58,.3);
      padding: 36px 30px;
      backdrop-filter: blur(6px);
    }
    .info-panel h5 {
      color: var(--gold-lt);
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 22px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(201,148,58,.2);
    }
    .info-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 0.86rem;
      color: #d0c4b0;
    }
    .info-item:last-child { margin-bottom: 0; }
    .info-item i {
      color: var(--gold);
      font-size: 1rem;
      flex-shrink: 0;
      width: 18px;
      text-align: center;
    }

    /* ══════════════════════════════════════════
       FOOTER SECTION
    ══════════════════════════════════════════ */
    #footer {
      background: linear-gradient(181deg, #926917 10%, #080502 100%);
      color: #fff;
      padding: 80px 0 0;
      position: relative;
    }
    #footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
    }

    .footer-logo img {
      height: 80px;
      width: auto;
      object-fit: contain;
      margin-bottom: 18px;
    }
    .footer-desc {
      font-size: 0.86rem;
      line-height: 1.85;
      color:#c1af9a;
      max-width: 280px;
    }

    #footer h6 {
      font-family: 'Raleway', sans-serif;
      font-size: 0.68rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 22px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(201,148,58,.15);
    }

    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: #7a6a58;
      text-decoration: none;
      font-size: 0.86rem;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color .2s, gap .2s;
    }
    .footer-links a::before {
      content: '';
      width: 14px; height: 1px;
      background: var(--gold-dk);
      flex-shrink: 0;
      transition: width .2s;
    }
    .footer-links a:hover { color: var(--gold-lt); gap: 12px; }
    .footer-links a:hover::before { width: 20px; }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 0.86rem;
      color: #c1af9a;
    }
    .footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
    .footer-contact-item a { color: #7a6a58; text-decoration: none; transition: color .2s; }
    .footer-contact-item a:hover { color: var(--gold-lt); }

    .policy-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 0.85rem;
      color: #c1af9a;
    }
    .policy-item i { color: var(--crimson); font-size: 0.9rem; flex-shrink: 0; }

    .footer-social {
      display: flex;
      gap: 8px;
      margin-top: 22px;
    }
    .footer-social a {
      width: 38px; height: 38px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(201,148,58,.18);
      display: flex; align-items: center; justify-content: center;
      color: #7a6a58;
      font-size: 1rem;
      text-decoration: none;
      transition: all .25s;
    }
    .footer-social a:hover {
      background: var(--crimson);
      border-color: var(--crimson);
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(201,148,58,.1);
      margin-top: 60px;
      padding: 20px 0;
    }
    .footer-bottom p {
      margin: 0;
      font-size: 0.78rem;
      color: #c1af9a;
    }
    .footer-bottom a { color: #4a3a2a; text-decoration: none; transition: color .2s; }
    .footer-bottom a:hover { color: var(--gold); }

    /* Ornamental divider */
    .ornament-divider {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 40px 0;
    }
    .ornament-divider::before,
    .ornament-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,148,58,.4), transparent);
    }
    .ornament-divider .od-inner {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .ornament-divider .dot {
      width: 5px; height: 5px;
      background: var(--gold-dk);
      transform: rotate(45deg);
    }
    .ornament-divider .line {
      width: 20px; height: 1px;
      background: var(--gold-dk);
    }

    @media (max-width: 767px) {
      #bgcta { padding: 80px 0; }
      .welcome-img-main { height: 300px; }
    }