  :root {
    --green-primary: #05b835;
    --green-dark: #1a2d1f;
    --green-mid: #30693f;
    --green-light: #4ce174;
    --green-pale: #d4f5df;
    --gold: #c9a84c;
    --wheat: #e8d5a3;
    --cream: #f5ede0;
    --parchment: #faf3e8;
    --mist: #c8d8c4;
    --snow: #f0f5f1;
    --deep: #0d1a10;
    --bark: #6b4c2a;
    --clay: #a0684a;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--parchment);
    color: var(--deep);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  .navbar-custom {
    background: rgba(13,26,16,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.3);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    transition: all 0.3s;
  }
  .navbar-custom.scrolled {
    padding: 0.6rem 2rem;
    background: rgba(13,26,16,1);
  }

  .nav-brand { display: flex; align-items: center; gap: 0.75rem; }
    .nav-brand .leaf { font-size: 1.4rem; }
    .nav-brand-text { font-family: 'Cormorant Garamond', serif; color: var(--green-primary); font-size: 1.1.6rem; font-weight: 600; line-height: 1.2; }
    .nav-brand-text small { display: block; font-size: 0.68rem; color: var(--mist); letter-spacing: 2px; text-transform: uppercase; font-family: 'DM Sans', sans-serif; font-weight: 400; }

  /* .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--wheat) !important;
    text-decoration: none;
    letter-spacing: 0.05em;
  } */

  .navbar-custom .nav-link {
    display: block;
    align-items: center;
    color: var(--mist) !important;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    padding: 0.2rem 0.4rem !important;
    transition: color 0.3s;
  }
  .navbar-custom .nav-link:hover { color: var(--gold) !important; }
  .navbar-custom .nav-link.book-now-nav {
    background: var(--green-primary);
    color: #fff !important;
    border-radius: 2px;
    font-weight: 600;
  }
  .navbar-custom .nav-link.book-now-nav:hover {
    background: var(--green-mid);
  }
  .nav-social a {
    color: var(--mist);
    font-size: 1.1rem;
    margin-left: 0.6rem;
    transition: color 0.3s;
    text-decoration: none;
  }
  .nav-social a:hover { color: var(--gold); }
  .navbar-toggler {
    border-color: rgba(201,168,76,0.4) !important;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(200,216,196,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }

  /* ── HERO ── */
  .hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--deep);
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(13,26,16,0.35) 0%, rgba(13,26,16,0.65) 60%, rgba(13,26,16,0.97) 100%),
      url('/assets/gallery-2.jpeg') center/cover no-repeat;
    transform: scale(1.05);
    animation: slowZoom 20s ease-in-out infinite alternate;
  }
  @keyframes slowZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
  }
  .mountain-silhouette {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 180px;
  }
  .mountain-silhouette svg { width: 100%; height: 100%; display: block; }
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 820px;
    animation: fadeUp 1.2s ease both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.8rem;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 4rem);
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    font-weight: 600;
  }
  .hero h1 em { font-style: italic; color: var(--green-light); }
  .hero-sub {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--mist);
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }
  .btn-primary-cta {
    background: var(--green-primary);
    color: #fff;
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--green-primary);
    transition: all 0.3s;
    display: inline-block;
    border-radius: 2px;
  }
  .btn-primary-cta:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    color: #fff;
  }
  .btn-outline-cta {
    border: 2px solid var(--mist);
    color: var(--mist);
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border-radius: 2px;
  }
  .btn-outline-cta:hover { border-color: var(--wheat); color: var(--wheat); }
  .hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* WhatsApp Float */
  .whatsapp-float {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    text-decoration: none;
    animation: waPulse 2.5s ease infinite;
  }
  @keyframes waPulse {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
  }

  /* ── SECTIONS ── */
  section { position: relative; }
  .section-inner { max-width: 1100px; margin: 0 auto; padding: 6rem 2rem; }
  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--green-primary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .section-label::before {
    content: '';
    display: inline-block;
    width: 30px; height: 1px;
    background: var(--green-primary);
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--green-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; color: var(--green-light); }

  /* ── WELCOME ── */
  .welcome { background: var(--parchment); overflow: hidden; }
  .welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .welcome-text p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #4a3728;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }
  .welcome-quote {
    border-left: 3px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--bark);
    background: rgba(201,168,76,0.07);
  }
  .welcome-image { position: relative; }
  .welcome-image img { width: 100%; height: 480px; object-fit: cover; display: block; position: relative; z-index: 1; }
  .welcome-image::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px; right: 15px; bottom: 15px;
    border: 2px solid var(--gold);
    z-index: 0; opacity: 0.4;
  }
  .welcome-badge {
    position: absolute;
    bottom: -20px; left: -20px;
    z-index: 2;
    background: var(--green-dark);
    color: var(--wheat);
    padding: 1.2rem 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    text-align: center;
    border: 2px solid var(--gold);
    width: 140px;
  }
  .welcome-badge strong { display: block; font-size: 1.8rem; color: var(--gold); }

  /* ── CULTURE ── */
  .culture { background: var(--green-dark); color: var(--cream); overflow: hidden; }
  .culture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .culture-image img { width: 100%; height: 500px; object-fit: cover; display: block; filter: sepia(10%) saturate(90%); }
  .culture-text .section-title { color: var(--wheat); }
  .culture-text .section-label { color: var(--gold); }
  .culture-text .section-label::before { background: var(--gold); }
  .culture-text p { font-family: 'Lora', serif; font-size: 1rem; color: var(--mist); line-height: 1.6; margin-bottom: 1rem; }
  .culture-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
  .fact-item { border-top: 1px solid rgba(201,168,76,0.3); padding-top: 1rem; }
  .fact-item h4 { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1rem; margin-bottom: 0.4rem; }
  .fact-item p { font-size: 0.85rem; color: var(--mist); line-height: 1.6; margin: 0; }

  /* ── FARM ── */
  .farm { background: var(--snow); }
  .farm-header { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
  .farm-header .section-label { justify-content: center; }
  .farm-header .section-label::before { display: none; }
  .farm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-bottom: 3rem; }
  .farm-card { background: white; overflow: hidden; box-shadow: 0 4px 30px rgba(5,184,53,0.08); transition: transform 0.3s, box-shadow 0.3s; }
  .farm-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(5,184,53,0.15); }
  .farm-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
  .farm-card-body { padding: 1.5rem; border-top: 3px solid var(--green-primary); }
  .farm-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-dark); margin-bottom: 0.6rem; }
  .farm-card p { font-size: 0.9rem; color: #6b6b5a; line-height: 1.7; }
  .farm-menu { background: var(--green-dark); padding: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
  .farm-menu h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--wheat); margin-bottom: 1.5rem; }
  .menu-list { list-style: none; }
  .menu-list li { display: flex; align-items: center; gap: 0.8rem; color: var(--mist); font-family: 'Lora', serif; font-size: 0.95rem; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .menu-list li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0; }
  .farm-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.4rem; color: var(--wheat); line-height: 1.6; padding-left: 2rem; border-left: 3px solid var(--gold); }

  /* ── ROOMS ── */
  .rooms { background: var(--parchment); }
  .rooms-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2.5rem; }
  .room-card { position: relative; overflow: hidden; background: white; box-shadow: 0 4px 30px rgba(48,105,63,0.1); }
  .room-card img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.5s; }
  .room-card:hover img { transform: scale(1.04); }
  .room-card-body { padding: 2rem; border-top: 3px solid var(--green-mid); }
  .room-type { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-primary); margin-bottom: 0.5rem; }
  .room-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--green-dark); margin-bottom: 0.8rem; }
  .room-card p { font-size: 0.9rem; color: #6b6b5a; line-height: 1.7; margin-bottom: 1.2rem; }
  .room-amenities { display: flex; gap: 0.6rem; flex-wrap: wrap; }
  .amenity-tag { background: var(--snow); border: 1px solid var(--mist); color: var(--green-dark); font-size: 0.7rem; padding: 0.25rem 0.7rem; }

  /* ── BOOK NOW BAND ── */
  .book-band {
    background: var(--green-primary);
    padding: 4rem 2rem;
    text-align: center;
  }
  .book-band h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 0.8rem;
  }
  .book-band p {
    color: rgba(255,255,255,0.85);
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }
  .btn-book-band {
    background: #fff;
    color: var(--green-dark);
    padding: 1rem 2.8rem;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #fff;
  }
  .btn-book-band:hover {
    background: transparent;
    color: #fff;
  }
  .book-band-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    text-decoration: none;
    margin-left: 1.2rem;
    background: rgba(255,255,255,0.15);
    padding: 1rem 1.8rem;
    border-radius: 2px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s;
  }
  .book-band-wa:hover { background: rgba(255,255,255,0.25); color: #fff; }

  /* ── GALLERY MARQUEE ── */
  .gallery { background: var(--deep); padding: 5rem 0; overflow: hidden; }
  .gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem,4vw,2.5rem);
    color: var(--wheat);
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .gallery-subtitle {
    text-align: center;
    color: var(--mist);
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 3rem;
  }
  .gallery-track-wrap {
    overflow: hidden;
    position: relative;
  }
  /* fade masks */
  .gallery-track-wrap::before,
  .gallery-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .gallery-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--deep), transparent);
  }
  .gallery-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--deep), transparent);
  }
  .gallery-track {
    display: flex;
    gap: 10px;
    width: max-content;
  }
  .gallery-track.row1 { animation: scrollLeft 40s linear infinite; margin-bottom: 10px; }
  .gallery-track.row2 { animation: scrollRight 45s linear infinite; }
  @keyframes scrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @keyframes scrollRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }
  .gallery-track:hover { animation-play-state: paused; }
  .gallery-item {
    flex-shrink: 0;
    width: 260px;
    height: 190px;
    overflow: hidden;
    border-radius: 4px;
  }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s, filter 0.5s;
    filter: saturate(80%) sepia(10%);
  }
  .gallery-item:hover img { transform: scale(1.08); filter: saturate(110%) sepia(0%); }

  /* ── TREKKING ── */
  .trekking { background: var(--cream); overflow: hidden; }
  .trekking::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 45%;
    background: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=800&q=80') center/cover no-repeat;
    opacity: 0.12;
  }
  .trekking-inner { position: relative; z-index: 1; }
  .attractions { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
  .attraction-card { background: white; padding: 2rem; border-top: 4px solid var(--green-mid); box-shadow: 0 2px 20px rgba(48,105,63,0.08); transition: transform 0.3s; }
  .attraction-card:hover { transform: translateY(-4px); }
  .attraction-icon { font-size: 2rem; margin-bottom: 1rem; }
  .attraction-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-dark); margin-bottom: 0.5rem; }
  .attraction-card p { font-size: 0.88rem; color: #6b6b5a; line-height: 1.7; }
  .attraction-dist { margin-top: 0.8rem; font-size: 0.75rem; color: var(--green-primary); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

  /* ── MAP ── */
  .map-section { background: var(--green-mid); padding: 5rem 2rem; }
  .map-section h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--wheat); text-align: center; margin-bottom: 0.5rem; }
  .map-section p { text-align: center; color: var(--mist); font-family: 'Lora', serif; font-style: italic; margin-bottom: 2.5rem; }
  .map-wrapper { max-width: 900px; margin: 0 auto; border: 3px solid rgba(201,168,76,0.3); overflow: hidden; }
  .map-wrapper iframe { width: 100%; height: 420px; border: none; display: block; }

  /* ── CONTACT ── */
  .contact { background: var(--parchment); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; }
  .contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
  .contact-detail .icon { width: 40px; height: 40px; background: var(--green-dark); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
  .contact-detail div { font-size: 0.9rem; color: #5a4a38; line-height: 1.6; }
  .contact-detail strong { display: block; color: var(--green-dark); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.2rem; }
  .contact-detail a { color: #5a4a38; text-decoration: none; }
  .contact-detail a:hover { color: var(--green-primary); }
  .booking-form h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--green-dark); margin-bottom: 0.4rem; }
  .booking-form p.sub { color: #7a6a58; font-size: 0.88rem; margin-bottom: 2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bark); margin-bottom: 0.4rem; font-weight: 600; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.85rem 1rem;
    border: 1px solid var(--mist);
    background: white;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem; color: var(--deep);
    outline: none; transition: border-color 0.3s; appearance: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(5,184,53,0.1);
  }
  .form-group textarea { height: 110px; resize: vertical; }
  .form-submit {
    background: var(--green-primary); color: #fff;
    border: 2px solid var(--green-primary);
    padding: 1rem 2.5rem;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
    font-weight: 700; cursor: pointer; transition: all 0.3s; width: 100%;
  }
  .form-submit:hover { background: var(--green-mid); border-color: var(--green-mid); }

  /* ── FOOTER ── */
  footer { background: var(--deep); padding: 4rem 2rem 2rem; text-align: center; color: var(--mist); }
  .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--wheat); margin-bottom: 0.5rem; }
  .footer-logo span { color: var(--gold); }
  .footer-tagline { font-family: 'Lora', serif; font-style: italic; font-size: 0.95rem; color: var(--mist); margin-bottom: 1.5rem; }
  .footer-himalaya { font-family: 'Playfair Display', serif; font-size: 0.85rem; color: var(--gold); letter-spacing: 0.15em; opacity: 0.7; margin-bottom: 1.5rem; }
  .footer-social { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
  .footer-social a {
    width: 42px; height: 42px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--mist);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
  }
  .footer-social a:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,0.1); }
  .footer-links { display: flex; justify-content: center; gap: 2rem; list-style: none; margin-bottom: 2rem; flex-wrap: wrap; }
  .footer-links a { color: var(--mist); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-contacts { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
  .footer-contacts a { color: var(--gold); text-decoration: none; font-size: 0.85rem; }
  .footer-divider { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 1.5rem; opacity: 0.4; }
  .footer-copy { font-size: 0.78rem; color: rgba(200,216,196,0.5); }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  .scroll-hint {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: var(--mist); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    animation: bounce 2s ease infinite;
  }
  @keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-8px); }
  }
  .scroll-hint::after { content: ''; width: 1px; height: 40px; background: linear-gradient(to bottom, var(--mist), transparent); }

  /* ── RESPONSIVE ── */
  @media (max-width: 991px) {
    .welcome-grid, .culture-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .farm-grid, .rooms-grid, .attractions { grid-template-columns: 1fr; }
    .farm-menu { grid-template-columns: 1fr; }
    .culture-facts { grid-template-columns: 1fr; }
    .welcome-image::before { display: none; }
    .welcome-badge { left: 10px; bottom: 10px; }
    .trekking::after { display: none; }
    .gallery-item { width: 200px; height: 150px; }
  }
  @media (max-width: 576px) {
    .section-inner { padding: 4rem 1.2rem; }
    .map-wrapper iframe { height: 280px; }
    .form-row { grid-template-columns: 1fr; }
    .book-band-wa { margin-left: 0; margin-top: 0.8rem; }
    .book-band .d-flex { flex-direction: column; align-items: center; }
  }