:root{
    --forest-deep:#1a2712;
    --forest:#1f2a1a;
    --forest-mid:#273321;
    --cream:#e3d6c5;
    --cream-warm:#d9ccbb;
    --olive:#75733f;
    --olive-light:#8f9260;
    --olive-tan:#b0a484;
    --clay:#c37b42;
    --ink:#2a301f;
    --line:rgba(42,48,31,0.18);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Jost', sans-serif;
    color:var(--ink);
    background:var(--cream);
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.serif{
    font-family:'Fraunces', serif;
    font-weight:500;
    letter-spacing:-0.01em;
  }
  .script{
    font-family:'Herr Von Muellerhoff', cursive;
    font-weight:400;
    line-height:1.4;
  }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .wrap{max-width:1240px; margin:0 auto; padding:0 40px;}
  .eyebrow{
    font-size:0.78rem;
    letter-spacing:0.16em;
    font-weight:500;
    color:var(--clay);
    text-shadow:0 2px 10px rgba(0,0,0,0.5);
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 26px;
    font-size:0.78rem;
    letter-spacing:0.14em;
    font-weight:500;
    border:1px solid transparent;
    cursor:pointer;
    transition:opacity 0.2s ease, transform 0.2s ease;
  }
  .btn:hover{opacity:0.85;}
  .btn-olive{background:var(--olive); color:var(--cream);}
  .btn-forest{background:var(--forest-deep); color:var(--cream);}
  .btn svg{width:16px; height:16px; stroke:currentColor;}

  .btn-panther{position:relative; display:inline-block; width:100%; max-width:400px; container-type:inline-size; transition:opacity 0.2s ease;}
  .btn-panther:hover{opacity:0.85;}
  .btn-panther img{width:100%; height:auto; display:block;}
  .btn-panther-label{
    position:absolute; top:34%; left:54%; transform:translate(-50%,-50%);
    display:inline-flex; align-items:center; gap:2cqw;
    font-size:3cqw; letter-spacing:0.12em; font-weight:500;
    color:var(--cream); white-space:nowrap;
    text-shadow:0 1px 3px rgba(0,0,0,0.4);
  }
  .btn-panther-label svg{width:3.6cqw; height:3.6cqw; stroke:currentColor; flex:0 0 auto;}

  /* ===== HEADER / HERO ===== */
  .hero{
    position:relative;
    min-height:92vh;
    display:flex;
    flex-direction:column;
    color:var(--cream);
    overflow:hidden;
  }
  .hero-bg{
    position:absolute; inset:0;
    background-image:url('images/hero-leaves.jpg');
    background-size:cover;
    background-position:center 30%;
    z-index:0;
  }
  .hero-overlay{
    position:absolute; inset:0; z-index:1;
    background:
      linear-gradient(100deg, rgba(6,10,4,0.62) 0%, rgba(6,10,4,0.38) 32%, rgba(6,10,4,0.08) 58%),
      linear-gradient(180deg, rgba(8,12,5,0.42) 0%, rgba(8,12,5,0.12) 22%, rgba(8,12,5,0.58) 100%);
  }
  header{
    position:relative; z-index:4;
    display:flex; align-items:center; justify-content:space-between;
    gap:20px;
    padding:28px 40px;
    max-width:1240px; margin:0 auto; width:100%;
  }
  .logo{line-height:1.15; flex:0 0 auto; white-space:nowrap;}
  .logo .brand-top{font-size:0.72rem; letter-spacing:0.2em; font-weight:400;}
  .logo .brand-main{font-family:'Fraunces', serif; font-size:1.4rem; letter-spacing:0.02em; font-weight:500;}
  .logo .brand-sub{font-size:0.65rem; letter-spacing:0.25em; opacity:0.75; display:flex; align-items:center; gap:8px; margin-top:2px;}
  .logo .brand-sub::before, .logo .brand-sub::after{content:""; width:14px; height:1px; background:currentColor; opacity:0.6;}
  nav{display:flex; align-items:center; justify-content:center; gap:22px; flex:1; min-width:0; margin-left:16px;}
  nav a{font-size:0.85rem; letter-spacing:0.1em; font-weight:400; opacity:0.92; white-space:nowrap; text-shadow:0 1px 6px rgba(0,0,0,0.4);}
  .nav-gallery-leaf{display:none;}
  nav a:hover{opacity:1;}
  .nav-toggle{display:none; background:none; border:none; color:var(--cream); cursor:pointer; flex:0 0 auto;}
  header .btn-olive{flex:0 0 auto; white-space:nowrap;}

  .hero-content{
    position:relative; z-index:3;
    flex:1;
    display:flex; align-items:center;
    padding:20px 40px 80px;
    max-width:1240px; margin:0 auto; width:100%;
  }
  .hero-content-inner{max-width:560px;}
  .hero-content h1{
    font-size:clamp(2.6rem, 5.5vw, 4.2rem);
    line-height:1.05;
    margin:18px 0 22px;
    text-shadow:0 3px 16px rgba(0,0,0,0.45);
  }
  .hero-content h1 .line-2{color:var(--clay);}
  .hero-content p{
    font-size:1rem;
    line-height:1.65;
    max-width:420px;
    opacity:0.95;
    margin-bottom:32px;
    font-weight:300;
    text-shadow:0 2px 10px rgba(0,0,0,0.5);
  }

  /* ===== WELCOME / GALLERY ===== */
  .welcome{
    display:grid; grid-template-columns:0.85fr 1.15fr;
  }
  .welcome-text{
    position:relative;
    background:var(--cream-warm) url('images/welcome-leaf.png') center/cover no-repeat;
    padding:80px 60px;
    display:flex; flex-direction:column; justify-content:center;
    overflow:hidden;
  }
  .welcome-text > *{position:relative;}
  .welcome-text .script{font-size:2.8rem; color:var(--olive-dark); margin-bottom:2px;}
  .welcome-text h2{font-size:2.3rem; line-height:1.15; margin-bottom:4px;}
  .welcome-text .loc{font-size:0.78rem; letter-spacing:0.2em; color:#5c6650; margin-bottom:18px;}
  .welcome-text .rule{width:46px; height:2px; background:var(--olive-dark); margin-bottom:22px;}
  .welcome-text p{font-size:0.95rem; line-height:1.7; color:#39442f; font-weight:300; max-width:380px; margin-bottom:30px;}

  .gallery{display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1fr 1fr;}
  .gallery-item{position:relative; overflow:hidden; min-height:220px;}
  .gallery-item img{width:100%; height:100%; object-fit:cover; position:absolute; inset:0;}

  /* ===== EXPERIENCE / BOOK ===== */
  .experience{display:grid; grid-template-columns:1fr 1fr;}
  .exp-left{background:var(--olive-tan); color:var(--ink); padding:64px 56px;}
  .exp-eyebrow{font-size:0.85rem; font-weight:400; letter-spacing:0.01em; margin-bottom:4px; opacity:0.85;}
  .exp-left h2{font-size:1.9rem; line-height:1.2; margin-bottom:8px;}
  .exp-rule{width:100%; max-width:520px; height:1px; background:rgba(42,48,31,0.3); margin:20px 0 34px;}
  .exp-items{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
  .exp-item svg{width:24px; height:24px; stroke:var(--ink); fill:none; stroke-width:1.3; margin-bottom:14px;}
  .exp-item img{height:38px; width:auto; margin-bottom:14px; display:block;}
  .exp-item h4{font-size:0.72rem; letter-spacing:0.08em; font-weight:500; margin-bottom:8px;}
  .exp-item p{font-size:0.78rem; line-height:1.45; font-weight:300; opacity:0.8;}

  .exp-right{
    position:relative;
    background:
      linear-gradient(100deg, rgba(10,14,6,0.72) 0%, rgba(10,14,6,0.48) 45%, rgba(10,14,6,0.62) 100%),
      url('images/book-your-stay-bg.jpg');
    background-size:cover;
    background-position:center;
    color:var(--cream);
    padding:70px 56px;
    display:flex; flex-direction:column; justify-content:center; align-items:center;
    text-align:center;
    overflow:hidden;
  }
  .exp-right .leaf-deco{position:absolute; right:-40px; top:-20px; width:280px; height:280px; opacity:0.18; stroke:var(--cream); fill:none; stroke-width:1;}
  .exp-right .script{font-size:2.4rem; color:var(--olive); margin-bottom:0;}
  .exp-right h2{font-size:2.2rem; line-height:1.15; margin-bottom:18px; position:relative;}
  .exp-right p{font-size:0.92rem; line-height:1.65; font-weight:300; opacity:0.85; max-width:360px; margin-bottom:30px; margin-left:auto; margin-right:auto; position:relative;}

  /* ===== FOOTER ===== */
  footer{background:var(--forest-deep); color:var(--cream); padding:64px 40px 34px;}
  .footer-grid{
    display:grid; grid-template-columns:1.2fr 1fr 1fr auto;
    gap:30px;
    max-width:1240px; margin:0 auto;
    padding-bottom:44px;
    border-bottom:1px solid rgba(242,237,226,0.14);
  }
  footer .logo .brand-sub{color:var(--cream);}
  .footer-col h5{font-size:0.7rem; letter-spacing:0.16em; opacity:0.6; margin-bottom:16px; font-weight:400;}
  .footer-col a, .footer-col p{
    display:block; font-size:0.85rem; font-weight:300; opacity:0.85; margin-bottom:10px; line-height:1.6;
  }
  .footer-col a{font-size:1rem;}
  .socials{display:flex; align-items:center; gap:12px; margin-top:14px;}
  .socials a{
    width:34px; height:34px; border:1px solid rgba(242,237,226,0.35); border-radius:50%;
    display:flex; align-items:center; justify-content:center; flex:0 0 auto;
  }
  .socials svg{width:15px; height:15px; stroke:var(--cream); fill:none; stroke-width:1.4;}
  .socials a.social-handle{
    width:auto; height:auto; border:none; border-radius:0;
    font-size:0.85rem; font-weight:300; opacity:0.85;
  }
  .socials a.social-handle:hover{opacity:1;}
  .badge{
    width:112px; height:112px;
    display:flex; align-items:center; justify-content:center;
  }
  .badge img{width:100%; height:100%; border-radius:50%; object-fit:cover;}
  .footer-bottom{
    max-width:1240px; margin:26px auto 0; display:flex; justify-content:space-between;
    font-size:0.72rem; opacity:0.55; font-weight:300;
  }

  /* ===== RESPONSIVE ===== */
  @media(max-width:860px){
    .wrap, header, .hero-content{padding-left:24px; padding-right:24px;}
    nav{display:none;}
    nav.open{
      display:block; position:absolute; top:100%; left:0; right:0; margin:0;
      padding:4px 24px; z-index:5; text-align:center;
    }
    nav.open .nav-gallery{display:inline-block;}
    nav.open .nav-gallery-text{display:none;}
    nav.open .nav-gallery-leaf{
      display:block; height:clamp(102px, 35vw, 134px); width:auto; max-width:92%; margin:0 auto;
      opacity:0; animation:navLeafFadeIn 1.2s ease forwards;
    }
    @keyframes navLeafFadeIn{
      from{opacity:0;}
      to{opacity:1;}
    }
    .nav-toggle{display:block;}
    header .btn-olive{display:none;}
    .experience{grid-template-columns:1fr;}
    .welcome{grid-template-columns:1fr;}
    .welcome-text{padding:56px 30px;}
    .gallery-item{min-height:180px;}
    .footer-grid{grid-template-columns:1fr 1fr; padding-bottom:0;}
    .footer-grid > *:nth-child(4){grid-column:span 2; margin-top:20px;}
    .footer-bottom{flex-direction:column; gap:8px; text-align:center;}
  }
  @media(max-width:560px){
    .footer-grid{grid-template-columns:1fr;}
    .gallery{grid-template-columns:1fr;}
    .gallery-item{min-height:auto; aspect-ratio:4/3;}
    .welcome-text{padding:48px 24px;}
    .welcome-text .script{font-size:2.4rem;}
    .welcome-text h2{font-size:2rem;}
    .welcome-text .loc{font-size:0.72rem; margin-bottom:16px;}
    .welcome-text p{font-size:0.9rem; margin-bottom:26px;}
    .welcome-text .btn{padding:13px 22px; font-size:0.72rem; gap:9px;}
    .exp-items{grid-template-columns:1fr;}
    .exp-left, .exp-right{padding:50px 26px;}
  }

  /* ===== FULL GALLERY PAGE ===== */
  .exp-right-full{
    min-height:52vh;
    align-items:center;
    text-align:center;
  }
  .exp-right-full p{margin-left:auto; margin-right:auto;}
  .hero-gallery{
    min-height:38vh;
  }
  .full-gallery{
    background:#fff;
    padding:5px;
  }
  .full-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:5px;
    max-width:1600px;
    margin:0 auto;
  }
  .full-gallery-grid img{
    width:100%;
    height:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    display:block;
  }
  .full-gallery-empty{
    text-align:center;
    padding:60px 20px 100px;
    color:#8a8a7a;
    font-size:0.95rem;
    font-weight:300;
  }
  @media(max-width:700px){
    .full-gallery{padding:0;}
    .full-gallery-grid{grid-template-columns:1fr; gap:0;}
  }
