:root {
    --blue-deep:  #1A4E8A;
    --blue-mid:   #2E7DD1;
    --blue-light: #5BA4E8;
    --blue-pale:  #C8DFF8;
    --blue-wash:  #EBF4FF;
    --white:      #FFFFFF;
    --sky:        #F0F7FF;
    --navy:       #0D2F5E;
    --text-dark:  #0D2340;
    --text-mid:   #2A4A70;
    --text-light: #5A7A9A;
    --border:     rgba(30,100,200,0.13);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { background: var(--white); color: var(--text-dark); font-family: 'Nunito', sans-serif; overflow-x: hidden; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    height: 68px; padding: 0 52px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(30,100,200,0.07);
  }
  .nav-logo {
    width: 200px;
  }
  .nav-logo span { color: var(--blue-mid); }
  .nav-links { display: flex; gap: 34px; list-style: none; align-items: center; }
  .nav-links a {
    color: var(--text-mid); text-decoration: none;
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--blue-mid); }
  .nav-btn {
    padding: 9px 24px;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
    color: white !important; border-radius: 7px;
    box-shadow: 0 4px 16px rgba(30,100,200,0.28);
    transition: transform 0.2s, box-shadow 0.2s !important;
  }
  .nav-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(30,100,200,0.38) !important; }

  /* ── HERO ── */
  .hero {
    position: relative; height: 100vh; min-height: 640px;
    display: flex; align-items: flex-end;
    overflow: hidden;
  }
  .hero-img {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?w=1600&q=85');
    background-size: cover; background-position: center 40%;
    transform: scale(1.04);
    animation: heroZoom 14s ease-in-out infinite alternate;
  }
  @keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.10); }
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(13,35,64,0.18) 0%,
      rgba(13,35,64,0.10) 30%,
      rgba(13,35,64,0.55) 65%,
      rgba(13,35,64,0.88) 100%
    );
  }
  /* Subtle blue tint */
  .hero-overlay-blue {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(30,100,200,0.12) 0%, transparent 60%);
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 0 64px 72px;
    max-width: 820px;
    animation: fadeUp 1.2s ease both;
  }
  .hero-eyebrow {
    font-size: 0.72rem; letter-spacing: 6px; text-transform: uppercase;
    color: var(--blue-pale); font-weight: 700; margin-bottom: 14px;
    display: flex; align-items: center; gap: 14px;
  }
  .hero-eyebrow::before {
    content: ''; width: 40px; height: 1px;
    background: var(--blue-pale); opacity: 0.7;
  }
  .hero-limbu {
    font-family: 'Crimson Pro', serif;
    font-style: italic; font-size: 1rem;
    color: rgba(200,223,248,0.7); letter-spacing: 3px; margin-bottom: 10px;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.4rem, 7vw, 6rem);
    line-height: 1.06; font-weight: 700; color: white;
    margin-bottom: 18px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  }
  .hero-title em { font-style: italic; color: var(--blue-pale); }
  .hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 300; color: rgba(255,255,255,0.82);
    line-height: 1.75; max-width: 540px; margin-bottom: 36px;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    padding: 14px 38px;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
    color: white; font-family: 'Nunito', sans-serif;
    font-size: 0.88rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    text-decoration: none; border-radius: 8px;
    box-shadow: 0 8px 28px rgba(30,100,200,0.4);
    transition: all 0.3s;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(30,100,200,0.5); }
  .btn-ghost {
    padding: 14px 38px;
    border: 1.5px solid rgba(255,255,255,0.45);
    color: white; font-family: 'Nunito', sans-serif;
    font-size: 0.88rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    text-decoration: none; border-radius: 8px;
    transition: all 0.3s; backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.08);
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: white; }

  /* Hero stats strip */
  .hero-stats {
    position: absolute; bottom: 0; right: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    display: flex; gap: 0;
    border-radius: 12px 0 0 0;
    overflow: hidden;
    box-shadow: -4px -4px 24px rgba(30,100,200,0.12);
    z-index: 3;
  }
  .stat {
    padding: 22px 32px; border-right: 1px solid var(--border); text-align: center;
  }
  .stat:last-child { border-right: none; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; font-weight: 700; color: var(--blue-deep);
    display: block; line-height: 1;
  }
  .stat-label { font-size: 0.68rem; letter-spacing: 2px; color: var(--text-light); text-transform: uppercase; font-weight: 600; margin-top: 4px; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── DIVIDERS ── */
  .line-divider {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-pale), transparent);
  }
  .section-divider {
    display: flex; align-items: center; gap: 20px; margin: 30px 0;
  }
  .section-divider::before, .section-divider::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
  }
  .section-divider span { font-size: 0.7rem; letter-spacing: 5px; color: var(--blue-mid); text-transform: uppercase; font-weight: 700; }

  /* ── SHARED SECTION STYLES ── */
  .section-tag {
    font-size: 0.7rem; letter-spacing: 6px; text-transform: uppercase;
    color: var(--blue-mid); font-weight: 700; margin-bottom: 10px;
  }
  .section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy); line-height: 1.18;
  }
  .section-heading em {
    font-style: italic;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .section-lead { font-size: 1.05rem; line-height: 1.85; color: var(--text-mid); max-width: 600px; margin-top: 14px; }

  /* ── NEARBY PLACES ── */
  .nearby-section {
    padding: 100px 64px;
    background: white;
    border-top: 1px solid var(--border);
  }
  .nearby-inner { max-width: 1160px; margin: 0 auto; }
  .nearby-header { text-align: center; margin-bottom: 60px; }
  .nearby-lead {
    font-size: 1.05rem; color: var(--text-mid);
    max-width: 580px; margin: 14px auto 0; line-height: 1.75;
  }

  .nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .nearby-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 16px rgba(30,100,200,0.06);
  }
  .nearby-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(30,100,200,0.14);
  }

  .nearby-img-wrap {
    position: relative;
    overflow: hidden;
    height: 210px;
    flex-shrink: 0;
  }
  .nearby-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
  }
  .nearby-card:hover .nearby-img-wrap img { transform: scale(1.06); }

  .nearby-badge {
    position: absolute; top: 12px; left: 12px;
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(6px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--blue-deep);
    border: 1px solid var(--blue-pale);
  }
  .nearby-badge-blue { background: rgba(46,125,209,0.92); color: white; border-color: transparent; }
  .nearby-badge-green { background: rgba(37,163,90,0.9); color: white; border-color: transparent; }

  .nearby-body {
    padding: 24px 22px 26px;
    display: flex; flex-direction: column;
    gap: 9px; flex: 1;
  }
  .nearby-dist {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--blue-mid);
  }
  .nearby-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; color: var(--navy);
    line-height: 1.25;
  }
  .nearby-desc {
    font-size: 0.875rem; line-height: 1.8;
    color: var(--text-mid); flex: 1;
  }
  .nearby-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-top: 8px;
  }
  .nearby-tags span {
    padding: 4px 11px;
    background: var(--blue-wash);
    border: 1px solid var(--blue-pale);
    border-radius: 12px;
    font-size: 0.7rem; font-weight: 700;
    color: var(--blue-deep); letter-spacing: 0.5px;
  }

  /* ── CULTURE STRIP ── */
  .culture-strip {
    background: linear-gradient(135deg, #EBF4FF 0%, #D9EEFF 50%, #EBF4FF 100%);
    border-top: 1px solid var(--blue-pale);
    border-bottom: 1px solid var(--blue-pale);
    padding: 80px 64px;
    position: relative; overflow: hidden;
  }
  .culture-strip-inner {
    max-width: 1160px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .culture-img-wrap {
    position: relative; 
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(30,100,200,0.18);
    aspect-ratio: 4/3;
  }
  .culture-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .culture-img-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 10px 18px; border-radius: 8px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--blue-deep);
    border-left: 3px solid var(--blue-mid);
  }
  .fact-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
  .fact-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px 20px; background: white; border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(30,100,200,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .fact-item:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(30,100,200,0.12); }
  .fact-text-wrap {}
  .fact-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 4px; }
  .fact-body { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

  /* ── PHOTO GRID — EXPERIENCES ── */
  .experiences-section { padding: 100px 64px; background: white; }
  .experiences-inner { max-width: 1160px; margin: 0 auto; }
  .photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: 16px;
    margin-top: 52px;
  }
  .photo-card {
    position: relative; border-radius: 14px; overflow: hidden;
    cursor: pointer; transition: transform 0.35s ease;
  }
  .photo-card:hover { transform: scale(1.02); }
  .photo-card.tall { grid-row: span 2; }
  .photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
  .photo-card:hover img { transform: scale(1.06); }
  .photo-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 28px 22px 20px;
    background: linear-gradient(to top, rgba(13,35,64,0.85) 0%, transparent 100%);
  }
  .photo-caption h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: white; margin-bottom: 3px; }
  .photo-caption p { font-size: 0.78rem; color: rgba(200,223,248,0.9); letter-spacing: 1px; }

  /* ── SERVICES ── */
  .services-section {
    padding: 90px 64px;
    background: linear-gradient(180deg, var(--sky) 0%, #E0EFFF 100%);
    border-top: 1px solid var(--border);
  }
  .services-inner { max-width: 1160px; margin: 0 auto; }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 52px;
  }
  .service-card {
    background: white; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(30,100,200,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(30,100,200,0.13); }
  .service-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
  .service-card-body { padding: 26px 24px; }
  .service-card-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--blue-wash); }
  .service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .service-list li { font-size: 0.865rem; color: var(--text-mid); padding-left: 14px; position: relative; line-height: 1.5; }
  .service-list li::before { content: '›'; position: absolute; left: 0; color: var(--blue-mid); font-weight: 700; font-size: 1rem; line-height: 1.3; }

  /* ── TESTIMONIAL / WHY STAY ── */
  .why-section {
    padding: 100px 64px;
    background: white;
  }
  .why-inner { max-width: 1160px; margin: 0 auto; }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .why-img { border-radius: 18px; box-shadow: 0 20px 60px rgba(30,100,200,0.15); }
  .why-img img { width: 100%; display: block; }
  .why-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
  .pill {
    border: 1.5px solid var(--blue-pale);
    padding: 9px 20px; font-size: 0.82rem;
    color: var(--blue-deep); font-weight: 600;
    border-radius: 24px; background: var(--sky);
    transition: all 0.3s; cursor: default;
  }
  .pill:hover { background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep)); color: white; border-color: transparent; box-shadow: 0 6px 20px rgba(30,100,200,0.22); }

  /* ── BIG IMAGE BANNER ── */
  .image-banner {
    position: relative; height: 480px; overflow: hidden;
  }
  .image-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .image-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,35,64,0.72) 0%, rgba(0, 0, 0, 0.35) 100%);
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    text-align: center; padding: 40px;
  }
  .image-banner-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    color: white; line-height: 1.15; margin-bottom: 14px;
  }
  .image-banner-overlay h2 em { font-style: italic; color: var(--blue-pale); }
  .image-banner-overlay p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 560px; line-height: 1.7; margin-bottom: 28px; }

  /* ── CONTACT SECTION ── */
  .contact-section {
    padding: 100px 64px;
    background: linear-gradient(180deg, var(--sky) 0%, #E0EFFF 100%);
    border-top: 1px solid var(--border);
  }
  .contact-inner { max-width: 1160px; margin: 0 auto; }
  .contact-header { text-align: center; margin-bottom: 56px; }
  .contact-sub { font-size: 1.05rem; color: var(--text-mid); margin-top: 14px; }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
    margin-bottom: 52px;
  }

  .contact-card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(30,100,200,0.07);
    overflow: hidden;
  }

  /* WhatsApp Card */
  .wa-card { padding: 36px 32px; display: flex; flex-direction: column; gap: 0; }
  .wa-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
  .wa-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); }
  .wa-sub { font-size: 0.78rem; color: var(--text-light); letter-spacing: 1px; margin-top: 2px; }
  .wa-msg-preview {
    background: var(--sky);
    border: 1px solid var(--blue-pale);
    border-radius: 12px 12px 12px 4px;
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--text-mid);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
    position: relative;
  }
  .wa-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 28px;
    background: #25D366;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem; font-weight: 700; letter-spacing: 1px;
    text-decoration: none; border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
    margin-bottom: 28px;
  }
  .wa-btn:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.4); }

  .contact-details { display: flex; flex-direction: column; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border); }
  .contact-detail-row {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.9rem; color: var(--text-mid);
    text-decoration: none;
    padding: 10px 14px; border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    font-weight: 600;
  }
  .contact-detail-row svg { color: var(--blue-mid); flex-shrink: 0; }
  .contact-detail-row:hover { background: var(--sky); color: var(--blue-deep); }

  /* Map Card */
  .map-card { display: flex; flex-direction: column; }
  .map-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 28px 18px;
    border-bottom: 1px solid var(--border);
  }
  .map-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); }
  .map-directions-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
    color: white; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
    text-decoration: none; border-radius: 7px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(30,100,200,0.25);
  }
  .map-directions-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(30,100,200,0.35); }
  .map-embed-wrap { flex: 1; min-height: 280px; }
  .map-embed-wrap iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }
  .map-info-strip {
    display: flex; align-items: center;
    padding: 16px 28px;
    background: var(--sky);
    border-top: 1px solid var(--border);
    gap: 0;
  }
  .map-info-item { flex: 1; text-align: center; }
  .map-info-label { display: block; font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; font-weight: 600; }
  .map-info-val { font-size: 0.9rem; font-weight: 700; color: var(--blue-deep); }
  .map-info-sep { width: 1px; height: 32px; background: var(--border); }

  /* Social Row */
  .social-row { text-align: center; }
  .social-label { font-size: 0.72rem; letter-spacing: 5px; text-transform: uppercase; color: var(--blue-mid); font-weight: 700; margin-bottom: 20px; }
  .social-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
  .social-link {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 24px;
    background: white; border: 1.5px solid var(--border);
    border-radius: 50px; color: var(--text-mid);
    text-decoration: none; font-size: 0.88rem; font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(30,100,200,0.06);
  }
  .social-link:hover { border-color: var(--blue-mid); color: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,100,200,0.14); }
  .social-link.wa-social:hover { border-color: #25D366; color: #1a9948; }
  .social-link.yt-social:hover { border-color: #FF0000; color: #CC0000; }

  /* Footer Social */
  .footer-social { display: flex; gap: 12px; margin-top: 20px; }
  .footer-social a {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(200,223,248,0.1); border: 1px solid rgba(200,223,248,0.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(200,223,248,0.6); text-decoration: none;
    transition: all 0.25s;
  }
  .footer-social a:hover { background: rgba(200,223,248,0.2); color: white; border-color: rgba(200,223,248,0.4); }

  /* FLOATING WHATSAPP BUTTON */
  .whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    display: flex; align-items: center; gap: 10px;
    background: #25D366; color: white;
    padding: 14px 22px; border-radius: 50px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem; font-weight: 700;
    box-shadow: 0 6px 28px rgba(37,211,102,0.45);
    transition: all 0.3s;
    animation: floatPulse 2.5s ease-in-out infinite;
  }
  .whatsapp-float:hover { background: #1db954; transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 36px rgba(37,211,102,0.55); animation: none; }
  .wa-float-label { letter-spacing: 0.5px; }
  @keyframes floatPulse {
    0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
    50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.65); }
  }

  /* ── FOOTER ── */
  footer {
    background: linear-gradient(135deg, var(--navy) 0%, #1A3A6E 100%);
    color: white; padding: 72px 64px 40px;
    position: relative; overflow: hidden;
  }
  footer::before {
    content: ''; position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1200&q=30') center/cover no-repeat;
    opacity: 0.06; pointer-events: none;
  }
  .footer-inner { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(200,223,248,0.12);
    margin-bottom: 32px;
  }
  .footer-brand { min-width: 0; }
  .footer-logo { font-family: 'Playfair Display', serif; font-size: 2rem; color: white; margin-bottom: 8px; }
  .footer-logo span { color: var(--blue-pale); }
  .footer-about { font-size: 0.88rem; line-height: 1.78; color: rgba(200,223,248,0.58); max-width: 300px; margin-top: 8px; }
  .footer-col { min-width: 0; }
  .footer-col h4 {
    font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--blue-pale); font-weight: 700; margin-bottom: 16px; opacity: 0.65;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { color: rgba(200,223,248,0.58); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; line-height: 1.4; }
  .footer-links a:hover { color: white; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px;
  }
  .footer-copy { font-size: 0.74rem; color: rgba(200,223,248,0.32); letter-spacing: 1px; }
  .footer-limbu { font-family: 'Crimson Pro', serif; font-style: italic; font-size: 0.85rem; color: rgba(200,223,248,0.32); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    .nav-links li:not(:last-child) { display: none; }
    .hero-content { padding: 0 28px 60px; }
    .hero-stats { display: none; }
    .culture-strip { padding: 60px 28px; }
    .culture-strip-inner { grid-template-columns: 1fr; gap: 40px; }
    .experiences-section, .services-section, .why-section { padding: 70px 28px; }
    .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .photo-card.tall { grid-row: span 1; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-section { padding: 70px 28px; }
    .contact-grid { grid-template-columns: 1fr; }
    .nearby-section { padding: 70px 28px; }
    .nearby-grid { grid-template-columns: 1fr 1fr; }
    .whatsapp-float { bottom: 20px; right: 16px; padding: 12px 18px; }
    footer { padding: 52px 28px 32px; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .image-banner { height: 380px; }
    .image-banner-overlay p { font-size: 0.95rem; }
  }

  @media (max-width: 600px) {
    nav { padding: 0 16px; height: 60px; }
    .nav-logo { width: 140px; }

    /* Hero */
    .hero { min-height: 100svh; }
    .hero-content { padding: 0 20px 50px; }
    .hero-title { font-size: clamp(2.6rem, 12vw, 3.4rem); }
    .hero-desc { font-size: 0.95rem; margin-bottom: 28px; }
    .hero-actions { gap: 12px; }
    .btn-primary, .btn-ghost { padding: 12px 24px; font-size: 0.8rem; letter-spacing: 1.5px; }

    /* Sections padding */
    .nearby-section { padding: 60px 16px; }
    .experiences-section,
    .services-section,
    .why-section { padding: 60px 16px; }
    .culture-strip { padding: 50px 16px; }
    .contact-section { padding: 60px 16px; }
    footer { padding: 44px 16px 28px; }

    /* Grids → single column */
    .nearby-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }

    /* Photo grid: stack all */
    .photo-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
    }
    .photo-card { height: 220px; }
    .photo-card.tall { grid-row: span 1; height: 220px; }

    /* Culture strip */
    .culture-strip-inner { gap: 28px; }
    .culture-img-wrap { aspect-ratio: 16/10; }

    /* Why section */
    .why-grid { gap: 32px; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 20px; }
    .wa-card { padding: 24px 20px; }
    .map-info-strip { padding: 12px 16px; flex-wrap: wrap; gap: 12px; }
    .map-info-item { min-width: 40%; }
    .map-info-sep { display: none; }
    .map-embed-wrap { min-height: 220px; }
    .map-embed-wrap iframe { min-height: 220px; }

    /* Social links — stack on very small screens */
    .social-links { gap: 10px; }
    .social-link { padding: 10px 16px; font-size: 0.82rem; }

    /* Footer */
    .footer-top { gap: 28px; }
    .footer-logo { font-size: 1.6rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

    /* Image banner */
    .image-banner { height: 320px; }
    .image-banner-overlay { padding: 24px 20px; }
    .image-banner-overlay p { font-size: 0.88rem; margin-bottom: 20px; }

    /* Section headings */
    .section-heading { font-size: clamp(1.7rem, 7vw, 2.2rem); }

    /* Floating WA btn — icon only on very small */
    .wa-float-label { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 16px; }
  }

  @media (max-width: 380px) {
    .hero-title { font-size: 2.4rem; }
    .btn-primary, .btn-ghost { padding: 11px 18px; font-size: 0.75rem; }
    .nearby-body { padding: 18px 16px 20px; }
    .service-card-body { padding: 20px 18px; }
  }