:root {
    --ink: #0d0f0a;
    --parchment: #f5f0e8;
    --sage: #7a8c6e;
    --moss: #3d5a3e;
    --mist: #c8d4be;
    --amber: #c8853a;
    --cream: #faf7f2;
    --charcoal: #1c1f18;
    --gold: #b8972a;
    --bone: #e8e0d0;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  .main-logo{
    height: 40px;;
  }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    mix-blend-mode: multiply;
  }
  nav.scrolled {
    background: rgba(245,240,232,0.92);
    backdrop-filter: blur(12px);
    mix-blend-mode: normal;
    border-bottom: 1px solid var(--bone);
    transition: background 0.4s;
  }
  .logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--moss);
    text-decoration: none;
  }
  .logo span { color: var(--amber); }
  .logo-img-link { display: flex; align-items: center; text-decoration: none; }
  .nav-logo-img {
    height: 52px;
    width: auto;
    transition: opacity 0.3s;
  }
  nav.scrolled .nav-logo-img {
    opacity: 1;
  }
  .footer-logo-img {
    height: 64px;
    width: auto;
    margin-bottom: 1.2rem;
    display: block;
  }
  .motto {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-style: italic;
    letter-spacing: 0.12em;
    color: var(--sage);
    margin-top: 0.3rem;
  }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--amber);
    transition: width 0.3s;
  }
  .nav-links a:hover::after { width: 100%; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8rem 4rem 6rem;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .hero-eyebrow::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--sage);
  }

  .hero-title {
    font-size: clamp(4rem, 8vw, 7.5rem);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: var(--charcoal);
  }
  .hero-title em {
    font-style: italic;
    color: var(--moss);
    display: block;
  }
  .hero-title .accent-word {
    color: var(--amber);
  }

  .hero-sub {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--sage);
    max-width: 38ch;
    font-style: italic;
  }

  .hero-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }

  .btn-primary {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: var(--moss);
    color: var(--parchment);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--amber);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
  }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }

  .btn-ghost {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    display: none;
  }
  .btn-ghost .arrow {
    width: 32px; height: 1px;
    background: var(--ink);
    position: relative;
    transition: width 0.3s;
  }
  .btn-ghost .arrow::after {
    content: '';
    position: absolute;
    right: 0; top: -3px;
    width: 6px; height: 6px;
    border-top: 1px solid var(--ink);
    border-right: 1px solid var(--ink);
    transform: rotate(45deg);
  }
  .btn-ghost:hover .arrow { width: 52px; }

  .hero-right {
    position: relative;
    overflow: hidden;
  }
  .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--moss) 0%, #1a2e1b 40%, #0d1a10 100%);
    z-index: 1;
  }

  /* SVG nature illustration fills hero right */
  .hero-illustration {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.85;
  }

  .hero-coords {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--sage);
  }

  .hero-motto {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    animation: heroIn 1s 0.85s both ease;
  }
  .motto-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-style: italic;
    letter-spacing: 0.12em;
    color: var(--amber);
    white-space: nowrap;
  }
  .motto-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--amber));
    max-width: 60px;
  }
  .motto-line:last-child {
    background: linear-gradient(to left, transparent, var(--amber));
  }
  .scroll-indicator {
    position: absolute;
    bottom: 3rem;
    right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage);
    writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--sage), transparent);
    animation: scrollPulse 2s ease infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }

  /* ─── MARQUEE ─── */
  .marquee-wrap {
    background: var(--moss);
    padding: 1rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mist);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }
  .marquee-item::before { content: '✦'; color: var(--gold); }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── INTRO SECTION ─── */
  .intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  .intro-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    padding-top: 0.5rem;
  }
  .intro-text {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 300;
    line-height: 1.55;
    color: var(--charcoal);
  }
  .intro-text em {
    font-style: italic;
    color: var(--moss);
  }

  /* ─── PILLARS SECTION ─── */
  .pillars {
    padding: 4rem 4rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--bone);
  }
  .pillar {
    padding: 3.5rem;
    border-right: 1px solid var(--bone);
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
  }
  .pillar:last-child { border-right: none; }
  .pillar::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--moss);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
  }
  .pillar:hover::before { transform: scaleX(1); }
  .pillar:hover { background: var(--parchment); }

  .pillar-number {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    color: var(--amber);
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
  }
  .pillar-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    opacity: 0.7;
  }
  .pillar h3 {
    font-size: 1.9rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    color: var(--charcoal);
  }
  .pillar p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--sage);
    font-style: italic;
  }
  .pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--moss);
    text-decoration: none;
  }
  .pillar-link::after {
    content: '→';
    transition: transform 0.2s;
  }
  .pillar-link:hover::after { transform: translateX(4px); }

  /* ─── FEATURED DESTINATIONS ─── */
  .destinations {
    background: var(--charcoal);
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .destinations::before {
    content: 'WILD';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(8rem, 20vw, 18rem);
    color: rgba(255,255,255,0.03);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.1em;
  }
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--parchment);
    line-height: 1;
  }
  .section-title em { font-style: italic; color: var(--mist); }
  .section-subtitle {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.75rem;
  }

  .dest-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .dest-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: auto;
    min-height: 300px;
    cursor: pointer;
  }
  .dest-card:first-child {
    grid-row: 1 / 3;
    min-height: 620px;
  }
  .dest-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
    filter: brightness(0.7) saturate(0.8);
  }
  .dest-card:hover .dest-card-bg {
    transform: scale(1.06);
    filter: brightness(0.6) saturate(0.6);
  }
  .dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,12,0.9) 0%, transparent 60%);
  }
  .dest-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    z-index: 2;
  }
  .dest-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .dest-name {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--parchment);
    line-height: 1.1;
  }
  .dest-card:first-child .dest-name {
    font-size: 2.8rem;
  }
  .dest-meta {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--mist);
    margin-top: 0.4rem;
  }

  /* Nature SVG backgrounds for cards */
  .bg-ranthambore {
    background: linear-gradient(160deg, #1a2e1a 0%, #2d4a20 40%, #1a3020 100%);
  }
  .bg-corbett {
    background: linear-gradient(160deg, #1e2d1a 0%, #263d1e 100%);
  }
  .bg-kaziranga {
    background: linear-gradient(160deg, #1a2e24 0%, #203a2a 100%);
  }
  .bg-pench {
    background: linear-gradient(160deg, #2a2d1a 0%, #3a3d20 100%);
  }
  .bg-sundarbans {
    background: linear-gradient(160deg, #1a2a2e 0%, #1e3040 100%);
  }

  /* ─── BIRDING SECTION ─── */
  .birding {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
  }
  .birding-visual {
    position: relative;
  }
  .birding-frame {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--parchment);
    border: 1px solid var(--bone);
    position: relative;
    overflow: hidden;
  }
  .birding-frame-inner {
    position: absolute;
    inset: 1.5rem;
    background: linear-gradient(135deg, #1a2e1a, #0d1a10);
    overflow: hidden;
  }
  .birding-counter {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 120px;
    height: 120px;
    background: var(--amber);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
  }
  .birding-counter .num {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    line-height: 1;
  }
  .birding-counter .label {
    font-family: 'Space Mono', monospace;
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    text-align: center;
  }
  .birding-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  .birding-content h2 em {
    font-style: italic;
    color: var(--moss);
    display: block;
  }
  .birding-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--sage);
    font-style: italic;
    margin-bottom: 1.5rem;
  }
  .birds-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }
  .bird-card {
    background: rgba(250, 247, 242, 0.95);
    border: 1px solid rgba(61, 90, 62, 0.15);
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(13, 15, 10, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
  }
  .bird-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px rgba(13, 15, 10, 0.08);
  }
  .bird-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }
  .bird-card span {
    display: block;
    padding: 1rem;
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: var(--ink);
    background: var(--cream);
  }

  /* ─── CONSERVATION ─── */
  .conservation {
    background: var(--ink);
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .conservation-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }
  .conservation h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--parchment);
    line-height: 1.05;
  }
  .conservation h2 em {
    font-style: italic;
    color: var(--mist);
    display: block;
  }
  .conservation-quote {
    border-left: 2px solid var(--amber);
    padding-left: 2rem;
    margin: 3rem 0;
  }
  .conservation-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--mist);
    line-height: 1.6;
    font-weight: 300;
  }
  .conservation-quote cite {
    display: block;
    margin-top: 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    font-style: normal;
  }
  .conservation-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .stat-block {
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.3s;
  }
  .stat-block:hover { border-color: var(--amber); }
  .stat-num {
    font-size: 3rem;
    font-weight: 300;
    color: var(--parchment);
    line-height: 1;
    display: block;
  }
  .stat-num em { color: var(--amber); font-style: normal; }
  .stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-top: 0.5rem;
    display: block;
  }
  .stat-desc {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(200,212,190,0.5);
    margin-top: 0.75rem;
    line-height: 1.6;
  }

  /* ─── TRIPS SECTION ─── */
  .trips {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  .trips-list {
    border-top: 1px solid var(--bone);
  }
  .trip-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--bone);
    cursor: pointer;
    transition: padding-left 0.3s;
    position: relative;
  }
  .trip-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--parchment);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
    z-index: 0;
  }
  .trip-item:hover::before { transform: scaleX(1); }
  .trip-item > * { position: relative; z-index: 1; }
  .trip-item:hover { padding-left: 1.5rem; }

  .trip-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    color: var(--amber);
    letter-spacing: 0.1em;
    width: 3rem;
  }
  .trip-info h3 {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--charcoal);
  }
  .trip-info span {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--sage);
  }
  .trip-date {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--sage);
    text-transform: uppercase;
  }
  .trip-type {
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--bone);
    color: var(--moss);
  }

  /* ─── NEWSLETTER ─── */
  .newsletter {
    background: var(--moss);
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(200,133,58,0.15) 0%, transparent 60%);
  }
  .newsletter h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--parchment);
    margin-bottom: 0.75rem;
  }
  .newsletter h2 em { font-style: italic; color: var(--mist); }
  .newsletter p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--mist);
    margin-bottom: 2.5rem;
  }
  .newsletter-form {
    display: flex;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .newsletter-form input,
  .newsletter-form select {
    flex: 1;
    min-width: 180px;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-right: none;
    color: var(--parchment);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
  }
  .newsletter-form select {
    border-right: none;
    color: var(--parchment);
    background: rgba(255,255,255,0.1);
  }
  .newsletter-form input::placeholder,
  .newsletter-form select option:first-child {
    color: rgba(200,212,190,0.5);
  }
  .newsletter-form button {
    padding: 1rem 2rem;
    background: var(--amber);
    border: none;
    color: white;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
  }
  .newsletter-form button:hover { background: var(--gold); }

  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.82);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 9999;
  }
  .modal-overlay.active {
    display: flex;
  }
  .modal-content {
    width: min(100%, 660px);
    background: rgba(18, 28, 18, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem;
    box-shadow: 0 24px 80px rgba(0,0,0,0.35);
    position: relative;
  }
  .image-modal-content {
    position: relative;
    width: min(95vw, 960px);
    max-height: 90vh;
    padding: 1rem;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .image-modal-content img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 1rem;
    display: block;
  }
  .image-modal-content p {
    margin-top: 1rem;
    color: var(--cream);
    text-align: center;
    font-size: 0.95rem;
    font-style: normal;
  }
  .image-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.45);
    color: var(--cream);
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
  }
  .modal-content h2 {
    color: var(--amber);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 2.75rem);
  }
  .modal-content p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  .info-list {
    list-style: none;
    color: rgba(255,255,255,0.9);
    margin-top: 1rem;
    padding-left: 1rem;
  }
  .info-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
  }
  .info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--amber);
    top: 0;
  }
  .modal-footer {
    margin-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
  }
  .modal-footer a {
    color: var(--mist);
    text-decoration: underline;
  }
  .modal-footer a:hover {
    color: var(--parchment);
  }
  .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: var(--parchment);
    font-size: 1.35rem;
    cursor: pointer;
    display: grid;
    place-items: center;
  }
  .modal-close:hover {
    background: rgba(255,255,255,0.06);
  }
  body.modal-open {
    overflow: hidden;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--charcoal);
    padding: 5rem 4rem 3rem;
  }
  .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-brand .logo { font-size: 0.9rem; display: block; margin-bottom: 1.5rem; }
  .footer-brand p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--sage);
    line-height: 1.8;
  }
  .footer-col h4 {
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.5rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.75rem; }
  .footer-col ul li a {
    font-size: 0.9rem;
    color: var(--sage);
    text-decoration: none;
    font-style: italic;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--parchment); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
  }
  .footer-bottom p {
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: rgba(120,140,110,0.5);
    text-transform: uppercase;
  }
  .footer-social {
    display: flex;
    gap: 1.5rem;
  }
  .footer-social a {
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-social a:hover { color: var(--amber); }

  /* ─── ENTRANCE ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
  }
  .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; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* Hero entrance */
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow { animation: heroIn 1s 0.3s both ease; }
  .hero-title { animation: heroIn 1s 0.5s both ease; }
  .hero-sub { animation: heroIn 1s 0.7s both ease; }
  .hero-cta { animation: heroIn 1s 0.9s both ease; }
  .hero-coords { animation: heroIn 1s 1.1s both ease; }

  /* ─── MOBILE RESPONSIVE STYLES ─── */

  /* Mobile Styles (max-width: 768px) */
  @media (max-width: 768px) {
    /* Navigation */
    nav {
      padding: 1rem 2rem;
    }

    .nav-links {
      display: none; /* Hide nav links on mobile - could add hamburger menu later */
    }

    /* Hero Section */
    .hero {
      grid-template-columns: 1fr;
      min-height: 64vh;
    }

    .hero-left {
      padding: 4rem 2rem 2rem;
      text-align: center;
      justify-content: flex-start;
    }

    .hero-right {
      display: none; /* Hide illustration on mobile for better performance */
    }

    .hero-coords {
      display: none; /* Hide coordinates on mobile */
    }

    .scroll-indicator {
      display: none; /* Hide scroll indicator on mobile */
    }

    .hero-cta .btn-ghost {
      display: none; /* Hide discover button on mobile */
    }

    .hero-cta {
      justify-content: center; /* Center the explore trips button */
    }

    /* General Section Spacing */
    .intro, .pillars, .destinations, .birding, .conservation, .trips, .newsletter, footer {
      padding-left: 2rem;
      padding-right: 2rem;
    }

    /* Intro Section */
    .intro {
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 4rem 2rem;
    }

    /* Pillars Section */
    .pillars {
      padding: 4rem 2rem 6rem;
    }

    .pillars-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .pillar {
      border-right: none;
      border-bottom: 1px solid var(--bone);
      padding: 2.5rem 1rem;
    }

    .pillar:last-child {
      border-bottom: none;
    }

    /* Destinations Section */
    .destinations {
      padding: 4rem 2rem;
    }

    .section-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .dest-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .dest-card:first-child {
      grid-row: auto;
      min-height: 400px;
    }

    .dest-card-content {
      padding: 1.5rem;
    }

    .dest-name {
      font-size: 1.5rem;
    }

    .dest-card:first-child .dest-name {
      font-size: 2rem;
    }

    /* Birding Section */
    .birding {
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 4rem 2rem;
    }

    .birding-content h2 {
      text-align: center;
    }

    /* Conservation Section */
    .conservation {
      padding: 4rem 2rem;
    }

    .conservation-inner {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .conservation-stats {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    /* Trips Section */
    .trips {
      padding: 4rem 2rem;
    }

    .trip-item {
      grid-template-columns: 1fr;
      gap: 1rem;
      padding: 2rem 0;
    }

    .trip-info h3 {
      font-size: 1.5rem;
    }

    /* Newsletter Section */
    .newsletter {
      padding: 4rem 2rem;
    }

    .newsletter-form {
      flex-direction: column;
      gap: 1rem;
      align-items: stretch;
    }

    .newsletter-form input,
    .newsletter-form select {
      border-right: 1px solid rgba(255,255,255,0.3);
      min-width: auto;
    }

    .newsletter-form button {
      align-self: stretch;
      padding: 1.2rem 2rem;
    }

    .birds-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Footer */
    footer {
      padding: 3rem 2rem 2rem;
    }

    .footer-top {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem;
      padding-bottom: 3rem;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
    }

    /* Modal */
    .modal-content {
      padding: 2rem 1.5rem;
    }

    /* Button hover states - remove cursor effects */
    .btn-primary, .btn-ghost, .trip-item, .dest-card {
      cursor: pointer;
    }
  }

  /* Tablet Styles (769px to 1024px) */
  @media (min-width: 769px) and (max-width: 1024px) {
    /* Adjust spacing for tablets */
    .intro, .pillars, .destinations, .birding, .conservation, .trips, .newsletter, footer {
      padding-left: 3rem;
      padding-right: 3rem;
    }

    .hero-left {
      padding: 6rem 3rem 4rem;
    }

    /* Destinations grid adjustment */
    .dest-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto auto;
    }

    .dest-card:first-child {
      grid-column: 1 / -1;
      grid-row: 1 / 2;
    }

    /* Pillars grid for tablets */
    .pillars-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .pillar:nth-child(2) {
      border-right: none;
    }

    /* Footer adjustment */
    .footer-top {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 3rem;
    }
  }
