*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --forest:   #1A3A2A;
      --forest-mid: #2A5040;
      --cream:    #F5EFE0;
      --gold:     #C8923A;
      --gold-lt:  #E0B46A;
      --fog:      #EEF2EE;
      --bark:     #7A5C3A;
      --dark:     #0D2018;
      --text:     #2C2C2C;
      --text-lt:  #5A5A5A;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Vazirmatn', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; right: 0; left: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.1rem 2.5rem;
      background: transparent;
      transition: background .4s, box-shadow .4s;
    }
    nav.scrolled {
      background: rgba(13,32,24,.92);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 18px rgba(0,0,0,.3);
    }
    .nav-logo { color: var(--gold-lt); font-size: 1.15rem; font-weight: 700; letter-spacing: .02em; }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { color: rgba(255,255,255,.85); text-decoration: none; font-size: .9rem; font-weight: 400; transition: color .2s; }
    .nav-links a:hover { color: var(--gold-lt); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: .3s; }

    /* ─── HERO ─── */
    .hero {
      position: relative; height: 100svh; min-height: 560px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('../images/web/large/1.jpg') center center / cover no-repeat;
      transform: scale(1.06);
      transition: transform 8s ease-out;
    }
    .hero-bg.loaded { transform: scale(1); }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(160deg, rgba(13,32,24,.72) 0%, rgba(26,58,42,.5) 55%, rgba(13,32,24,.8) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      text-align: center; padding: 0 1.5rem;
      max-width: 780px;
    }
    .hero-eyebrow {
      display: inline-block;
      font-size: .8rem; font-weight: 500; letter-spacing: .14em;
      color: var(--gold-lt); text-transform: uppercase;
      border: 1px solid var(--gold); border-radius: 30px;
      padding: .28rem 1.1rem; margin-bottom: 1.4rem;
      opacity: 0; animation: fadeUp .7s .2s forwards;
    }
    .hero h1 {
      font-size: clamp(2.4rem, 6vw, 4.6rem);
      font-weight: 900; line-height: 1.15;
      color: #fff;
      text-shadow: 0 2px 24px rgba(0,0,0,.45);
      opacity: 0; animation: fadeUp .8s .45s forwards;
    }
    .hero h1 span { color: var(--gold-lt); }
    .hero-sub {
      margin-top: 1.2rem;
      font-size: clamp(1rem, 2.2vw, 1.2rem); font-weight: 300; color: rgba(255,255,255,.8);
      line-height: 1.8;
      opacity: 0; animation: fadeUp .8s .7s forwards;
    }
    .hero-cta {
      margin-top: 2.2rem;
      display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
      opacity: 0; animation: fadeUp .8s .95s forwards;
    }
    .btn {
      display: inline-block; padding: .8rem 2rem;
      border-radius: 4px; font-family: inherit; font-size: .95rem; font-weight: 600;
      cursor: pointer; text-decoration: none; transition: .25s;
    }
    .btn-primary { background: var(--gold); color: #fff; border: 2px solid var(--gold); }
    .btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); }
    .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
    .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }

    .hero-scroll {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
      color: rgba(255,255,255,.55); font-size: .75rem;
      animation: bounce 2s infinite;
    }
    .hero-scroll svg { width: 20px; height: 20px; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(8px); }
    }

    /* ─── SECTION BASE ─── */
    section { padding: 6rem 1.5rem; }
    .container { max-width: 1080px; margin: 0 auto; }
    .section-label {
      font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
      color: var(--gold); margin-bottom: .6rem;
    }
    .section-title {
      font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800;
      color: var(--forest); line-height: 1.2;
    }
    .section-title span { color: var(--gold); }
    .divider {
      width: 56px; height: 3px; background: var(--gold);
      border-radius: 2px; margin: 1.2rem 0 1.8rem;
    }

    /* ─── WEATHER ─── */
    #weather { background: var(--forest); color: white; }
    #weather .section-title { color: white; }
    #weather .divider { background: var(--gold-lt); }
    .weather-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem; margin-top: 2.5rem;
    }
    .weather-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px; padding: 1.8rem 1.6rem;
      transition: background .25s, transform .25s;
    }
    .weather-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
    .weather-icon { font-size: 2.4rem; margin-bottom: 1rem; }
    .weather-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--gold-lt); margin-bottom: .5rem; }
    .weather-card p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.72); font-weight: 300; }
    .weather-intro { max-width: 640px; font-size: 1.05rem; line-height: 1.85; color: rgba(255,255,255,.8); font-weight: 300; }

    /* ─── ABOUT ─── */
    #about { background: var(--fog); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }
    .about-img-wrap {
      position: relative; border-radius: 12px; overflow: hidden;
      aspect-ratio: 4/3; box-shadow: 0 12px 48px rgba(26,58,42,.2);
    }
    .about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .about-badge {
      position: absolute; bottom: 1.2rem; right: 1.2rem;
      background: var(--forest); color: var(--gold-lt);
      border-radius: 8px; padding: .8rem 1.2rem;
      font-size: .85rem; font-weight: 700; text-align: center;
      box-shadow: 0 4px 16px rgba(0,0,0,.25);
    }
    .about-badge span { display: block; font-size: 1.6rem; font-weight: 900; }
    .about-text p { font-size: 1rem; line-height: 1.9; color: var(--text-lt); margin-bottom: 1rem; }
    .about-features { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
    .feature-tag {
      background: var(--forest); color: var(--cream);
      border-radius: 30px; padding: .38rem 1rem;
      font-size: .82rem; font-weight: 500;
    }

    /* ─── STAY RULES ─── */
    #stay-rules {
      position: relative; overflow: hidden;
      background: var(--cream);
    }
    #stay-rules::before {
      content: ''; position: absolute; width: 320px; height: 320px;
      left: -120px; top: -150px; border-radius: 50%;
      background: rgba(200,146,58,.1);
    }
    .rules-heading { position: relative; max-width: 660px; }
    .rules-heading > p:last-child {
      color: var(--text-lt); font-size: 1rem; line-height: 1.85;
    }
    .rules-grid {
      position: relative; display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 1.4rem; margin-top: 2.5rem;
    }
    .rule-card {
      display: flex; align-items: center; gap: 1.4rem;
      min-height: 190px; padding: 2rem;
      background: rgba(255,255,255,.65);
      border: 1px solid rgba(26,58,42,.12);
      border-radius: 16px;
      box-shadow: 0 12px 36px rgba(26,58,42,.08);
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    .rule-card:hover {
      transform: translateY(-4px);
      border-color: rgba(200,146,58,.55);
      box-shadow: 0 18px 44px rgba(26,58,42,.13);
    }
    .rule-icon {
      flex: 0 0 76px; width: 76px; height: 76px;
      display: grid; place-items: center;
      background: var(--forest); border-radius: 50%;
      font-size: 2rem;
      box-shadow: 0 8px 22px rgba(26,58,42,.22);
    }
    .rule-number {
      display: inline-block; margin-bottom: .45rem;
      color: var(--gold); font-size: .72rem; font-weight: 800;
      letter-spacing: .08em;
    }
    .rule-content h3 {
      color: var(--forest); font-size: 1.15rem; font-weight: 800;
      margin-bottom: .55rem;
    }
    .rule-content p {
      color: var(--text-lt); font-size: .9rem; line-height: 1.75;
    }
    .rules-note {
      position: relative; margin-top: 1.5rem; text-align: center;
      color: var(--forest-mid); font-size: .86rem; font-weight: 500;
    }

    /* ─── GALLERY ─── */
    #gallery { background: var(--cream); }
    .gallery-intro { max-width: 560px; }
    .gallery-intro p { font-size: 1rem; line-height: 1.8; color: var(--text-lt); margin-top: .8rem; }
    .masonry {
      columns: 4; column-gap: 12px;
      margin-top: 2.8rem;
    }
    .masonry-item {
      break-inside: avoid; margin-bottom: 12px;
      border-radius: 8px; overflow: hidden;
      cursor: pointer; position: relative;
    }
    .masonry-item img {
      width: 100%; display: block;
      transition: transform .45s ease;
    }
    .masonry-item:hover img { transform: scale(1.06); }
    .masonry-item .overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(13,32,24,.6));
      opacity: 0; transition: opacity .35s;
      display: flex; align-items: flex-end; padding: .8rem;
    }
    .masonry-item:hover .overlay { opacity: 1; }
    .overlay-icon { color: white; font-size: 1.2rem; }

    /* ─── LIGHTBOX ─── */
    #lightbox {
      display: none; position: fixed; inset: 0; z-index: 500;
      background: rgba(0,0,0,.92); align-items: center; justify-content: center;
    }
    #lightbox.open { display: flex; }
    #lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 6px; object-fit: contain; }
    #lb-close {
      position: absolute; top: 1.2rem; left: 1.5rem;
      background: none; border: none; color: white; font-size: 2rem; cursor: pointer;
    }
    #lb-prev, #lb-next {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
      color: white; border-radius: 50%; width: 44px; height: 44px;
      font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    #lb-prev:hover, #lb-next:hover { background: rgba(255,255,255,.25); }
    #lb-prev { right: 1.5rem; }
    #lb-next { left: 1.5rem; }
    #lb-counter {
      position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,.6); font-family: 'Vazirmatn', sans-serif; font-size: .85rem;
    }

    /* ─── MAP ─── */
    #map-section { background: var(--forest); }
    #map-section .section-title { color: white; }
    #map-section .divider { background: var(--gold-lt); }
    .map-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; margin-top: 2.5rem; }
    .map-frame {
      border-radius: 12px; overflow: hidden;
      box-shadow: 0 12px 40px rgba(0,0,0,.4);
      aspect-ratio: 4/3;
    }
    .map-frame iframe { width: 100%; height: 100%; border: none; display: block; }
    .map-info { color: rgba(255,255,255,.8); }
    .info-row {
      display: flex; gap: 1rem; align-items: flex-start;
      padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .info-row:last-child { border-bottom: none; }
    .info-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .05rem; }
    .info-row h4 { font-size: .8rem; color: var(--gold-lt); font-weight: 700; letter-spacing: .06em; margin-bottom: .25rem; }
    .info-row p { font-size: .92rem; font-weight: 300; line-height: 1.65; }
    .info-row a[href^="tel:"] {
      display: inline-block;
      color: var(--gold-lt);
      font-size: 1.1rem;
      font-weight: 700;
      text-underline-offset: .2em;
    }
    .info-row a[href^="tel:"]:hover,
    .info-row a[href^="tel:"]:focus-visible { color: #fff; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark); color: rgba(255,255,255,.5);
      text-align: center; padding: 2rem 1.5rem;
      font-size: .82rem; font-weight: 300; line-height: 2;
    }
    footer span { color: var(--gold); font-weight: 600; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 860px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; flex-direction: column; position: absolute;
        top: 100%; right: 0; left: 0;
        background: rgba(13,32,24,.97); padding: 1.5rem 2rem;
        gap: 1.2rem; border-top: 1px solid rgba(255,255,255,.1); }
      .nav-links.open { display: flex; }
      .hamburger { display: flex; }

      .about-grid { grid-template-columns: 1fr; gap: 2rem; }
      .about-img-wrap { aspect-ratio: 16/9; }
      .rules-grid { grid-template-columns: 1fr; }

      .map-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 680px) {
      section { padding: 4rem 1.2rem; }
      .masonry { columns: 2; }
      .rule-card { padding: 1.4rem; min-height: 0; }
      .rule-icon { flex-basis: 62px; width: 62px; height: 62px; font-size: 1.65rem; }
    }

    @media (max-width: 420px) {
      .masonry { columns: 2; column-gap: 8px; }
      .masonry-item { margin-bottom: 8px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-bg, .masonry-item img { transition: none; }
      .hero-eyebrow, .hero h1, .hero-sub, .hero-cta { animation: none; opacity: 1; }
    }
