
    :root {
      --saffron: #c9a84c;        /* rich deep gold – accent / CTA */
      --gold: #e8c96a;           /* bright warm gold – highlights */
      --rust: #1a5c3a;           /* dark emerald – hover / secondary */
      --cream: #f0f5f0;          /* soft white-green – page background */
      --parchment: #d6e8d6;      /* light emerald tint – card bg / tags */
      --lake-deep: #0e3d24;      /* very deep forest green – lake section bg */
      --lake-mist: #9ecfb0;      /* mint-green mist – lake text */
      --dark: #0b2212;           /* darkest forest – nav/footer/about bg */
      --stone: #2e5c3a;          /* mid forest green – labels, borders */
      --text: #122a1a;           /* near-black green – body text */
      --muted: #3d6b4a;          /* medium green – muted text */
      --white: #f5faf5;          /* clean white-green – form / card bg */
      --prayer-red: #9b2335;     /* keeps original red for prayer flags */
    }
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
    img { display: block; width: 100%; }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 3px; }

    /* PRAYER FLAG */
    .prayer-stripe {
      height: 5px;
      background: repeating-linear-gradient(90deg,
        var(--prayer-red) 0 60px,var(--gold) 60px 120px,#0e3d24 120px 180px,#1a5c3a 180px 240px,var(--saffron) 240px 300px);
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    }

    /* ===== NAV ===== */
    nav {
      position: fixed; top: 5px; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 48px;
      transition: background 0.4s, box-shadow 0.4s;
    }
    nav.scrolled {
      background: rgba(11,34,18,0.97);
      box-shadow: 0 4px 40px rgba(0,0,0,0.4);
      backdrop-filter: blur(16px);
    }
    .nav-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
}

.logo-img{
  width: 140px;
  height: auto;
}

.logo-text span{
  display: block;
  font-size: 12px;
  color: #666;
}
    .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--cream); text-decoration: none; line-height: 1.1; }
    .nav-logo span { display: block; font-size: 0.6rem; font-family: 'Jost', sans-serif; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); }
    .nav-links { display: flex; gap: 26px; list-style: none; }
    .nav-links a { color: rgba(248,240,227,0.82); text-decoration: none; font-size: 0.76rem; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase; transition: color 0.2s; position: relative; }
    .nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--gold); transition:width 0.3s; }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }

    /* ===== NAV ===== */

nav{
  position:fixed;
  top:5px;
  left:0;
  right:0;
  z-index:100;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:12px 48px;
  transition:background .4s, box-shadow .4s;
}

nav.scrolled{
  background:rgba(11,34,18,0.97);
  box-shadow:0 4px 40px rgba(0,0,0,0.4);
  backdrop-filter:blur(16px);
}

/* Logo */

.nav-logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logo-img{
  width:140px;
  height:auto;
}

/* Nav Links */

.nav-links{
  display:flex;
  gap:26px;
  list-style:none;
}

.nav-links a{
  color:rgba(248,240,227,0.85);
  text-decoration:none;
  font-size:0.76rem;
  font-weight:500;
  letter-spacing:1.8px;
  text-transform:uppercase;
  position:relative;
  transition:color .2s;
}

.nav-links a::after{
  content:'';
  position:absolute;
  bottom:-4px;
  left:0;
  width:0;
  height:1px;
  background:var(--gold);
  transition:.3s;
}

.nav-links a:hover{
  color:var(--gold);
}

.nav-links a:hover::after{
  width:100%;
}

/* Hamburger */

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  background:none;
  border:none;
}

.hamburger span{
  width:26px;
  height:2px;
  background:var(--cream);
  display:block;
}

/* ===== MOBILE MENU ===== */

@media (max-width:960px){

nav{
  padding:12px 22px;
}

/* show hamburger */
.hamburger{
  display:flex;
}

/* hide menu */
.nav-links{
  position:fixed;
  top:70px;
  left:0;
  width:100%;

  background:var(--dark);

  flex-direction:column;
  align-items:center;

  padding:30px 0;

  display:none;
}

/* open menu */
.nav-links.active{
  display:flex;
}

/* spacing */

.nav-links li{
  padding:12px 0;
}

.nav-links a{
  font-size:0.9rem;
}

/* responsive logo */

.logo-img{
  width:110px;
}

}
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; z-index: 101; }
    .hamburger span { display: block; width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: all 0.3s; }

    /* Full-screen mobile drawer */
    .nav-drawer {
      display: none; position: fixed; inset: 0; top: 5px;
      background: rgba(11,34,18,0.99); z-index: 99;
      flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    }
    .nav-drawer.open { display: flex; }
    .nav-drawer a { color: var(--cream); text-decoration: none; font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 300; letter-spacing: 2px; padding: 10px 20px; transition: color 0.2s; }
    .nav-drawer a:hover { color: var(--gold); }
    .nav-drawer-close { position: absolute; top: 22px; right: 26px; background: none; border: none; color: var(--cream); font-size: 2rem; cursor: pointer; font-weight: 300; line-height: 1; }

    /* ===== HERO ===== */
    #home { position: relative; height: 100vh; min-height: 580px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom,rgba(11,34,18,0.22) 0%,rgba(11,34,18,0.75) 100%),
        url('/assets/banner.jpeg') center/cover no-repeat;
      animation: heroZoom 22s ease-in-out infinite alternate;
    }
    @keyframes heroZoom { from { transform:scale(1.0); } to { transform:scale(1.07); } }
    .hero-wave { position:absolute; bottom:0; left:0; right:0; z-index:2; }
    .hero-content { position:relative; z-index:3; text-align:center; padding:0 20px; max-width:800px; animation:fadeUp 1.2s ease 0.3s both; }
    @keyframes fadeUp { from{opacity:0;transform:translateY(50px);} to{opacity:1;transform:translateY(0);} }
    .hero-tag { display:inline-block; border:1px solid rgba(212,168,75,0.5); color:var(--gold); font-size:0.67rem; letter-spacing:4px; text-transform:uppercase; padding:7px 20px; margin-bottom:18px; }
    .hero-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2.2rem,8vw,5.6rem); color:var(--cream); line-height:1.05; font-weight:300; margin-bottom:8px; }
    .hero-title em { color:var(--gold); font-style:italic; font-weight:400; }
    .hero-divider { display:flex; align-items:center; justify-content:center; gap:14px; margin:14px auto; opacity:0.6; }
    .hero-divider::before,.hero-divider::after { content:''; width:60px; height:1px; background:linear-gradient(to right,transparent,var(--gold)); }
    .hero-divider::after { background:linear-gradient(to left,transparent,var(--gold)); }
    .hero-divider span { color:var(--gold); font-size:0.9rem; }
    .hero-sub { font-size:clamp(0.85rem,2.2vw,1rem); color:rgba(237,224,196,0.85); font-weight:300; line-height:1.8; margin-bottom:20px; font-family:'Noto Serif',serif; font-style:italic; }
    .hero-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
    .btn-primary { background:var(--saffron); color:var(--cream); padding:14px 30px; text-decoration:none; font-weight:500; font-size:0.76rem; letter-spacing:2.5px; text-transform:uppercase; transition:all 0.3s; border:1px solid var(--saffron); white-space:nowrap; }
    .btn-primary:hover { background:var(--gold); border-color:var(--gold); transform:translateY(-2px); box-shadow:0 8px 28px rgba(200,116,42,0.45); }
    .btn-ghost { background:transparent; color:var(--cream); padding:14px 30px; text-decoration:none; font-weight:500; font-size:0.76rem; letter-spacing:2.5px; text-transform:uppercase; border:1px solid rgba(248,240,227,0.35); transition:all 0.3s; display:inline-flex; align-items:center; gap:8px; white-space:nowrap; }
    .btn-ghost:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }

    .hero-bar { position:absolute; bottom:0; left:0; right:0; z-index:3; display:flex; flex-wrap:wrap; background:rgba(11,34,18,0.9); backdrop-filter:blur(12px); border-top:1px solid rgba(232,201,106,0.2); }
    .hero-bar-item { flex:1 1 20%; min-width:100px; padding:13px 16px; text-align:center; border-right:1px solid rgba(212,168,75,0.15); }
    .hero-bar-item:last-child { border-right:none; }
    .hero-bar-item .label { font-size:0.58rem; letter-spacing:3px; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:4px; }
    .hero-bar-item .value { font-size:0.85rem; font-family:'Cormorant Garamond',serif; font-weight:600; color:var(--cream); }

    /* ===== SHARED ===== */
    section { padding:88px 48px; }
    .section-label { font-size:0.65rem; letter-spacing:4px; text-transform:uppercase; color:var(--saffron); font-weight:600; margin-bottom:12px; display:block; }
    .section-title { font-family:'Cormorant Garamond',serif; font-size:clamp(1.85rem,4vw,3rem); color:var(--dark); line-height:1.18; margin-bottom:18px; font-weight:400; }
    .section-text { font-size:0.94rem; line-height:1.85; color:var(--muted); max-width:560px; font-weight:300; }

    /* ===== ABOUT ===== */
    #about { background:var(--dark); padding:88px 48px; position:relative; overflow:hidden; }
    #about::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 15% 60%,rgba(201,168,76,0.08) 0%,transparent 55%),radial-gradient(circle at 85% 20%,rgba(46,92,58,0.1) 0%,transparent 55%); pointer-events:none; }
    .about-grid { display:grid; grid-template-columns:1fr 1fr; gap:68px; max-width:1120px; margin:0 auto; align-items:center; }
    .about-imgs { position:relative; height:490px; }
    .about-img-main { position:absolute; top:0; left:0; width:72%; height:78%; object-fit:cover; box-shadow:0 24px 70px rgba(0,0,0,0.6); }
    .about-img-accent { position:absolute; bottom:0; right:0; width:54%; height:52%; object-fit:cover; box-shadow:0 20px 60px rgba(0,0,0,0.5); border:4px solid var(--dark); }
    .about-imgs::after { content:''; position:absolute; top:-12px; left:-12px; width:52px; height:52px; border-top:2px solid var(--gold); border-left:2px solid var(--gold); }
    .about-badge { position:absolute; top:50%; left:60%; transform:translate(-50%,-50%); background:var(--saffron); color:var(--cream); width:90px; height:90px; display:flex; flex-direction:column; align-items:center; justify-content:center; font-weight:600; font-size:0.68rem; text-align:center; line-height:1.4; box-shadow:0 10px 30px rgba(0,0,0,0.4); z-index:2; clip-path:polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%); }
    .about-badge strong { font-size:1.4rem; display:block; font-family:'Cormorant Garamond',serif; }
    .about-text .section-title { color:var(--parchment); }
    .about-text .section-text { color:rgba(214,232,214,0.75); max-width:100%; }
    .feature-pills { display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
    .pill { background:rgba(46,92,58,0.25); border:1px solid rgba(46,92,58,0.5); color:var(--parchment); padding:8px 14px; font-size:0.76rem; letter-spacing:0.5px; }

    /* ===== LAKE ===== */
    #lake-feature { background:var(--lake-deep); padding:88px 48px; position:relative; overflow:hidden; }
    .lake-bg-img { position:absolute; inset:0; background:url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1600&q=70') center/cover no-repeat; opacity:0.18; }
    .lake-inner { max-width:1120px; margin:0 auto; position:relative; z-index:1; }
    .lake-top { text-align:center; max-width:740px; margin:0 auto 52px; }
    .lake-inner .section-label { color:var(--lake-mist); }
    .lake-inner .section-title { color:var(--cream); }
    .lake-text { font-size:0.97rem; line-height:1.85; color:rgba(158,207,176,0.88); font-family:'Noto Serif',serif; font-style:italic; }
    .lake-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
    .lake-card { position:relative; overflow:hidden; height:330px; border-radius:0; }
    .lake-card img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s; }
    .lake-card:hover img { transform:scale(1.07); }
    .lake-card-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(11,34,18,0.93) 0%,rgba(11,34,18,0.05) 65%); display:flex; flex-direction:column; justify-content:flex-end; padding:26px 22px; }
    .lake-card-line { width:30px; height:2px; background:var(--saffron); margin-bottom:11px; }
    .lake-card-overlay h4 { font-family:'Cormorant Garamond',serif; font-size:1.25rem; color:var(--cream); margin-bottom:7px; font-weight:600; }
    .lake-card-overlay p { font-size:0.78rem; color:rgba(158,207,176,0.88); line-height:1.6; font-weight:300; }

    /* ===== ACCOMMODATION ===== */
    #accommodation { background:var(--cream); position:relative; }
    #accommodation::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:repeating-linear-gradient(90deg,var(--prayer-red) 0 40px,var(--gold) 40px 80px,#0e3d24 80px 120px,#1a5c3a 120px 160px,var(--saffron) 160px 200px); }
    .acc-header { text-align:center; max-width:620px; margin:0 auto 60px; }
    .acc-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:26px; max-width:1120px; margin:0 auto; }
    .room-card { background:var(--white); box-shadow:0 4px 30px rgba(45,35,24,0.08); transition:transform 0.4s,box-shadow 0.4s; position:relative; overflow:hidden; }
    .room-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--saffron); transform:scaleX(0); transform-origin:left; transition:transform 0.4s; }
    .room-card:hover { transform:translateY(-8px); box-shadow:0 24px 60px rgba(45,35,24,0.15); }
    .room-card:hover::after { transform:scaleX(1); }
    .room-img { position:relative; height:210px; overflow:hidden; }
    .room-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s; }
    .room-card:hover .room-img img { transform:scale(1.08); }
    .room-tag { position:absolute; top:0; right:0; background:var(--saffron); color:var(--cream); font-size:0.6rem; letter-spacing:2px; text-transform:uppercase; font-weight:600; padding:6px 12px; }
    .room-body { padding:24px; }
    .room-body h3 { font-family:'Cormorant Garamond',serif; font-size:1.3rem; color:var(--dark); margin-bottom:8px; font-weight:600; }
    .room-body p { font-size:0.84rem; color:var(--muted); line-height:1.7; margin-bottom:14px; font-weight:300; }
    .room-amenities { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:18px; }
    .amenity { background:var(--parchment); color:var(--stone); font-size:0.68rem; padding:4px 9px; }
    .room-cta { display:inline-flex; align-items:center; gap:8px; color:var(--saffron); font-weight:600; font-size:0.76rem; letter-spacing:1.5px; text-transform:uppercase; text-decoration:none; transition:gap 0.2s; }
    .room-cta:hover { gap:14px; color:var(--rust); }

    /* ===== EXPERIENCES ===== */
    #experiences { background: #0b2212; padding:88px 48px; }
    .exp-inner { max-width:1120px; margin:0 auto; }
    .exp-inner .section-title { color:var(--parchment); }
    .exp-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:4px; margin-top:48px; }
    .exp-card { position:relative; overflow:hidden; height:310px; }
    .exp-card img { width:100%; height:100%; object-fit:cover; transition:transform 0.7s; }
    .exp-card:hover img { transform:scale(1.1); }
    .exp-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(26,18,8,0.92) 0%,rgba(26,18,8,0.08) 70%); display:flex; flex-direction:column; justify-content:flex-end; padding:22px 18px; transition:background 0.3s; }
    .exp-card:hover .exp-overlay { background:linear-gradient(to top,rgba(14,61,36,0.95) 0%,rgba(11,34,18,0.2) 70%); }
    .exp-line { width:26px; height:2px; background:var(--gold); margin-bottom:9px; transition:background 0.3s; }
    .exp-card:hover .exp-line { background:var(--gold); }
    .exp-overlay h4 { font-family:'Cormorant Garamond',serif; font-size:1.15rem; color:var(--cream); margin-bottom:5px; font-weight:600; }
    .exp-overlay p { font-size:0.76rem; color:rgba(237,224,196,0.75); line-height:1.6; font-weight:300; max-height:0; overflow:hidden; transition:max-height 0.4s ease,opacity 0.4s; opacity:0; }
    .exp-card:hover .exp-overlay p { max-height:100px; opacity:1; }

    /* ===== GALLERY ===== */
    #gallery { background:var(--dark); padding:88px 48px; }
    .gallery-header { text-align:center; max-width:560px; margin:0 auto 48px; }
    .gallery-header .section-title { color:var(--parchment); }
    .gallery-header .section-text { color:rgba(237,224,196,0.55); margin:0 auto; }
    .gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); grid-template-rows:230px 230px; gap:4px; max-width:1120px; margin:0 auto; }
    .gallery-item { overflow:hidden; cursor:pointer; position:relative; }
    .gallery-item:nth-child(1) { grid-column:1/3; }
    .gallery-item:nth-child(5) { grid-column:3/5; }
    .gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s; }
    .gallery-item:hover img { transform:scale(1.08); }
    .gallery-overlay { position:absolute; inset:0; background:rgba(14,61,36,0); transition:background 0.3s; display:flex; align-items:flex-end; padding:14px; }
    .gallery-item:hover .gallery-overlay { background:rgba(14,61,36,0.45); }
    .gallery-caption { font-family:'Cormorant Garamond',serif; color:var(--cream); font-size:0.95rem; opacity:0; transform:translateY(8px); transition:opacity 0.3s,transform 0.3s; letter-spacing:1px; }
    .gallery-item:hover .gallery-caption { opacity:1; transform:translateY(0); }

    /* ===== CONTACT ===== */
    #contact { background:var(--parchment); }
    .contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; max-width:1120px; margin:0 auto; align-items:start; }
    .contact-details { margin-top:32px; display:flex; flex-direction:column; gap:20px; }
    .contact-icon{
  font-size:20px;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#2e7d32;
  border-radius:50%;
  color:#ffffff;
}
    .contact-item { display:flex; align-items:flex-start; gap:14px; }
    .contact-item-text strong { display:block; font-size:0.5rem; letter-spacing:2.5px; text-transform:uppercase; color:var(--saffron); margin-bottom:3px; }
    .contact-item-text span { font-size:0.875rem; color:var(--text); line-height:1.2; }
    .contact-item-text a { color:var(--text); text-decoration:none; transition:color 0.2s; }
    .contact-item-text a:hover { color:var(--saffron); }
    .whatsapp-float { display:inline-flex; align-items:center; gap:10px; background:#25D366; color:white; padding:13px 26px; text-decoration:none; font-weight:600; font-size:0.78rem; letter-spacing:1px; margin-top:24px; transition:all 0.3s; box-shadow:0 6px 24px rgba(37,211,102,0.35); }
    .whatsapp-float:hover { transform:translateY(-2px); box-shadow:0 10px 30px rgba(37,211,102,0.5); }
    .map-container { overflow:hidden; height:220px; box-shadow:0 12px 50px rgba(45,35,24,0.15); margin-top:26px; border:1px solid rgba(200,116,42,0.2); }
    .map-container iframe { width:100%; height:100%; border:none; }
    .contact-form-wrap { background:var(--white); padding:38px; box-shadow:0 8px 50px rgba(45,35,24,0.1); position:relative; }
    .contact-form-wrap::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--saffron); }
    .contact-form-wrap h3 { font-family:'Cormorant Garamond',serif; font-size:1.6rem; color:var(--dark); margin-bottom:24px; font-weight:400; }
    .form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
    .form-group { margin-bottom:15px; }
    .form-group label { display:block; font-size:0.62rem; font-weight:600; letter-spacing:2px; color:var(--stone); margin-bottom:6px; text-transform:uppercase; }
    .form-group input,.form-group textarea,.form-group select { width:100%; padding:11px 13px; border:1px solid rgba(200,116,42,0.22); font-family:'Jost',sans-serif; font-size:0.87rem; color:var(--text); background:var(--cream); outline:none; border-radius:0; -webkit-appearance:none; appearance:none; transition:border 0.2s,box-shadow 0.2s; }
    .form-group input:focus,.form-group textarea:focus,.form-group select:focus { border-color:var(--saffron); box-shadow:0 0 0 3px rgba(200,116,42,0.1); background:var(--white); }
    .form-group textarea { resize:vertical; min-height:90px; }
    .btn-submit { width:100%; background:var(--dark); color:var(--cream); padding:14px; border:none; font-family:'Jost',sans-serif; font-size:0.78rem; font-weight:600; cursor:pointer; transition:all 0.3s; letter-spacing:3px; text-transform:uppercase; }
    .btn-submit:hover { background:var(--saffron); transform:translateY(-1px); box-shadow:0 8px 24px rgba(200,116,42,0.35); }

    /* ===== FOOTER ===== */
    .footer { background:var(--dark); text-align:center; padding:54px 24px 26px; position:relative; }
    .footer::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:repeating-linear-gradient(90deg,var(--prayer-red) 0 50px,var(--gold) 50px 100px,#0e3d24 100px 150px,#1a5c3a 150px 200px,var(--saffron) 200px 250px); }
    .footer-logo { font-family:'Cormorant Garamond',serif; font-size:1.85rem; font-weight:300; color:var(--parchment); margin-bottom:6px; letter-spacing:2px; }
    .footer-logo span { color:var(--gold); }
    .footer-tagline { font-size:0.68rem; color:var(--gold); letter-spacing:3px; text-transform:uppercase; margin-bottom:26px; }
    .footer-divider { border:none; height:1px; background:rgba(212,168,75,0.15); margin:20px auto; width:60%; }
    .footer-copy { font-size:0.72rem; color:rgba(237,224,196,0.28); }

    /* SCROLL UP */
    .scroll-up { position:fixed; bottom:26px; right:26px; z-index:90; width:42px; height:42px; background:var(--saffron); color:var(--cream); border:none; font-size:1rem; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 20px rgba(200,116,42,0.45); transition:all 0.3s; opacity:0; transform:translateY(20px); }
    .scroll-up.visible { opacity:1; transform:translateY(0); }
    .scroll-up:hover { background:var(--gold); transform:translateY(-3px); }

    /* ===== TABLET ≤960px ===== */
    @media (max-width:960px) {
      nav { padding:14px 22px; }
      .nav-links { display:none; }
      .hamburger { display:flex; }
      section { padding:68px 28px; }
      #about,#lake-feature,#experiences { padding:68px 28px; }

      .hero-bar { display:grid; grid-template-columns:repeat(3,1fr); }
      .hero-bar-item { border-right:1px solid rgba(212,168,75,0.15); border-bottom:1px solid rgba(212,168,75,0.15); }
      .hero-bar-item:nth-child(3) { border-right:none; }
      .hero-bar-item:nth-child(4),.hero-bar-item:nth-child(5) { border-bottom:none; }
      .hero-bar-item:nth-child(6n) { border-right:none; }

      .about-grid { grid-template-columns:1fr; gap:36px; }
      .about-imgs { height:340px; }

      .lake-cards { grid-template-columns:1fr 1fr; }
      .lake-cards .lake-card:nth-child(3) { grid-column:1/3; height:240px; }

      .exp-grid { grid-template-columns:repeat(2,1fr); }
      .exp-card { height:270px; }

      .gallery-grid { grid-template-columns:repeat(2,1fr); grid-template-rows:200px 200px 200px; }
      .gallery-item:nth-child(1) { grid-column:1/3; grid-row:1; }
      .gallery-item:nth-child(5) { grid-column:1/3; grid-row:3; }

      .contact-grid { grid-template-columns:1fr; gap:36px; }
      .map-container { height:240px; }
      .acc-grid { grid-template-columns:1fr 1fr; }
    }

    /* ===== MOBILE ≤640px ===== */
    @media (max-width:640px) {
      nav { padding:12px 18px; }
      section { padding:56px 18px; }
      #about,#lake-feature,#experiences { padding:56px 18px; }

      .hero-title { font-size:2.4rem; }
      .hero-sub br { display:none; }
      .hero-btns { flex-direction:column; align-items:center; width:100%; max-width:300px; margin:0 auto; }
      .btn-primary,.btn-ghost { width:100%; justify-content:center; text-align:center; }

      .hero-bar { display:grid; grid-template-columns:1fr 1fr; }
      .hero-bar-item { padding:11px 14px; border-right:none; border-bottom:1px solid rgba(212,168,75,0.15); }
      .hero-bar-item:nth-child(odd) { border-right:1px solid rgba(212,168,75,0.15); }
      .hero-bar-item:nth-child(4),.hero-bar-item:nth-child(5) { border-bottom:none; }

      .about-imgs { height:260px; }
      .about-img-main { width:76%; height:70%; }
      .about-img-accent { width:54%; height:48%; }
      .about-imgs::after { display:none; }
      .about-badge { width:70px; height:70px; font-size:0.6rem; }
      .about-badge strong { font-size:1.1rem; }

      .lake-cards { grid-template-columns:1fr; }
      .lake-cards .lake-card:nth-child(3) { grid-column:1; }
      .lake-card { height:240px; }

      .acc-grid { grid-template-columns:1fr; }

      .exp-grid { grid-template-columns:1fr; }
      .exp-card { height:240px; }
      /* show text on mobile always */
      .exp-overlay p { max-height:60px; opacity:1; }

      .gallery-grid { grid-template-columns:1fr 1fr; grid-template-rows:150px 150px 150px; gap:3px; }
      .gallery-item:nth-child(1) { grid-column:1/3; }
      .gallery-item:nth-child(5) { grid-column:1/3; }

      .contact-form-wrap { padding:24px 16px; }
      .form-row { grid-template-columns:1fr; gap:0; }
      .footer-logo { font-size:1.45rem; }
      .scroll-up { bottom:18px; right:14px; width:38px; height:38px; }
    }

    /* ===== TINY ≤380px ===== */
    @media (max-width:380px) {
      .hero-title { font-size:1.95rem; }
      .hero-tag { font-size:0.58rem; letter-spacing:2.5px; }
      .gallery-grid { grid-template-columns:1fr; grid-template-rows:auto; }
      .gallery-item { height:190px; }
      .gallery-item:nth-child(1),.gallery-item:nth-child(5) { grid-column:1; }
      .lake-card { height:200px; }
    }