@charset "UTF-8";

/*
Theme Name: India2027
Theme URI: https://wordpress.org/themes/India2027/
Author: the India2027 team
Requires at least: 5.3
Tested up to: 6.8
Requires PHP: 5.6
Version: 2.6 */

 :root {
    --saffron: #E8651A;
    --turmeric: #D4A017;
    --deep-teal: #1A4A4A;
    --lotus: #C9716E;
    --cream: #FAF6EF;
    --bark: #2C1F0F;
    --mist: #F0EAE0;
    --gold: #B8892A;
    --white: #ffffff;
  }
strong {
    font-weight: 900;
}
  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--bark);
    overflow-x: hidden;
  }

  .bg-white{background-color: var(--white);}
  .bg-beige{background-color: var(--cream);}
  .bg-dbeige{background-color: #d39f19 !important;}
 

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    background: var(--deep-teal);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
    overflow: hidden;
    max-width:100%;
    padding:0;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232,101,26,0.25) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 80% 20%, rgba(212,160,23,0.15) 0%, transparent 50%);
    pointer-events: none;
  }

  .hero-mandala {
    position: absolute;
    width: 600px;
    height: 600px;
    opacity: 0.06;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--turmeric);
    box-shadow:
      inset 0 0 0 30px transparent,
      0 0 0 60px rgba(212,160,23,0.03),
      0 0 0 120px rgba(212,160,23,0.02),
      0 0 0 200px rgba(212,160,23,0.015);
    animation: spin 60s linear infinite;
  }.barMenu {
    position: relative;
    width: 40px;
    height: 24px;
    display:none;cursor:pointer;
}
    .barMenu span {display: block;position: absolute;height: 4px;background: white;border-radius: 2px;opacity: 1;right: 0;transition: all .25s ease-in-out;}

    /* Position each line */
    .barMenu span:nth-child(1) { top: 0px;width: 20px; }
    .barMenu span:nth-child(2) { top: 9px;width: 40px; }
    .barMenu span:nth-child(3) { top: 18px;width: 30px; }
  @keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

  .hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--turmeric);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--cream);
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--turmeric);
  }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: rgba(250,246,239,0.65);
    margin-top: 20px;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
  }

  .hero-dates {
    margin-top: 36px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
  }

  .date-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: 40px;
    padding: 10px 22px;
    font-size: 13px;
    color: var(--cream);
    letter-spacing: 0.05em;
  }

  .date-pill span {
    color: var(--turmeric);
    font-weight: 500;
  }

  .hero-cta {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
  }

  .btn-primary {
    background: var(--saffron);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 3px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-primary:hover { background: #d0561a; transform: translateY(-1px); }

  .btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(250,246,239,0.3);
    padding: 16px 36px;
    border-radius: 3px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s;
  }

  .btn-secondary:hover { border-color: var(--turmeric); color: var(--turmeric); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    background: rgba(26,74,74,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,160,23,0.15);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.05em;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    color: rgba(250,246,239,0.7);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--turmeric); }

  .nav-links .nav-members a {
    color: var(--turmeric);
    border: 1px solid rgba(212,160,23,0.4);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ===== SECTION SHARED ===== */
  section {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--deep-teal);
    margin-bottom: 32px;
  }

  .section-title em {
    font-style: italic;
    color: var(--saffron);
  }

  .divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--turmeric), transparent);
    margin-bottom: 40px;
  }

  /* ===== OVERVIEW: TWO DESTINATIONS ===== */
  #overview p{
    font-size:16px; line-height:1.85; max-width:680px; font-weight:300; color:rgba(44,31,15,0.75);
  }
  
  .destinations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 60px;
  }

  .destination-card {
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
  }

  .destination-card:first-child {
    background: var(--deep-teal);
    color: var(--cream);
  }

  .destination-card:last-child {
    background: var(--bark);
    color: var(--cream);
  }

  .destination-card::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
  }

  .destination-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
  }

  .dest-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 700;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    margin-bottom: -20px;
  }

  .dest-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--turmeric);
    margin-bottom: 12px;
  }

  .dest-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .dest-duration {
    font-size: 13px;
    opacity: 0.5;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
  }

  .dest-desc {
    font-size: 15px;
    line-height: 1.75;
    opacity: 0.8;
    font-weight: 300;
  }

  .dest-features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .dest-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    opacity: 0.75;
  }

  .dest-feature::before {
    content: '—';
    color: var(--turmeric);
    flex-shrink: 0;
  }

  /* team */
  .teamMember img {max-width: 100%;}
  .teamMember figure {
    width: 35%;
  }
  .memberContent {
      width: 60%;
  }
  .teamMember {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
  }
  .memberContent p {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
    color: rgba(44, 31, 15, 0.75);
    margin-bottom: 20px;
  }
  .pt0{padding-top:0 !important;}
  .pb0{padding-bottom:0 !important;}
  .text-center{text-align: center;}



  /* ===== WHO IT'S FOR ===== */
  .who-section {
    background: var(--mist);
    max-width: 100%;
    padding: 100px 48px;
  }

  .who-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .eligibility-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .eligibility-card {
    background: white;
    border-left: 3px solid var(--saffron);
    padding: 28px 32px;
    box-shadow: 0 2px 20px rgba(44,31,15,0.06);
  }

  .eligibility-card.secondary {
    border-left-color: var(--turmeric);
  }

  .elig-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 10px;
    font-weight: 500;
  }

  .eligibility-card.secondary .elig-label { color: var(--gold); }

  .elig-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--deep-teal);
  }

  .elig-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(44,31,15,0.7);
    font-weight: 300;
  }

  /* ===== TIMELINE / FLOWCHART ===== */
  .timeline-section {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .flowchart {
    margin-top: 60px;
    position: relative;
  }

  .flow-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }

  .flow-track::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 26px;
    bottom: 26px;
    width: 2px;
    background: linear-gradient(to bottom, var(--turmeric), var(--saffron), var(--lotus), var(--deep-teal));
    z-index: 0;
  }

  .flow-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 8px;
  }

  .flow-dot {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    z-index: 1;
    position: relative;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
  }

  .flow-dot.earlybird { background: var(--turmeric); color: white; }
  .flow-dot.regular { background: var(--gold); color: white; }
  .flow-dot.payment1 { background: var(--saffron); color: white; }
  .flow-dot.payment2 { background: var(--lotus); color: white; }
  .flow-dot.depart { background: var(--deep-teal); color: white; }
  .flow-dot.Aluva { background: #2A5C5C; color: white; }
  .flow-dot.return { background: var(--bark); color: white; }

  .flow-content {
    background: white;
    border: 1px solid rgba(44,31,15,0.08);
    padding: 24px 32px;
    margin-bottom: 16px;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: default;
  }

  .flow-content:hover {
    box-shadow: 0 8px 32px rgba(44,31,15,0.10);
    transform: translateX(4px);
  }

  .flow-date {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 500;
    margin-bottom: 6px;
  }

  .flow-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 6px;
  }

  .flow-desc {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(44,31,15,0.6);
    font-weight: 300;
  }

  .memberText {
    font-size:15px; line-height:1.8; font-weight:300; color:rgba(250,246,239,0.65); max-width:600px;
  }
  .flow-badge {
    display: inline-block;
    margin-top: 10px;
    background: rgba(212,160,23,0.12);
    color: var(--gold);
    border: 1px solid rgba(212,160,23,0.3);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
  }

  /* ===== MEMBERS GATE ===== */
  .members-section {
    background: var(--deep-teal);
    max-width: 100%;
    padding: 40px 48px;
  }

  .members-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .members-section .section-title {
    color: var(--cream);
  }

  .members-section .section-label {
    color: var(--turmeric);
  }

  .lock-gate {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .gate-card {
    padding: 30px 15px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
.gate-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 27px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 10px;
}
.gate-card p {
    font-size: 13px;
    line-height: 1.55;
    font-weight: 300;
    color: rgba(44, 31, 15, 0.75);
    margin-bottom: 15px;
}
.priceBox {
    display: grid;
    grid-template-columns: 1fr 1fr;
gap:20px;
}
.pinner h3 {
    margin: 5px 0 3px;
    font-family: 'DM Sans', sans-serif;
        font-size: 18px;
}
.pinner p {
    margin-bottom: 0px;
}
.pinner {
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #cbcbcb;
        margin-bottom: 15px;
}
.gate-card hr {
    margin: 13px 0 20px;
    border: none;
    background: #dddddd;
    height: 1px;
}
.pilsb {
    border: 1px solid #9f9f9f;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 300;
    color: rgba(44, 31, 15, 0.75);
}
  .gate-icon {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .gate-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--cream);
    font-weight: 700;
    margin-bottom: 10px;
  }

  .gate-card-desc {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(250,246,239,0.55);
    font-weight: 300;
  }

  .login-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,160,23,0.2);
    padding: 60px;
    text-align: center;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .login-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: rgba(250,246,239,0.7);
    margin-bottom: 32px;
    line-height: 1.5;
  }

  .login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .login-form input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,160,23,0.2);
    padding: 14px 18px;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
  }

  .login-form input::placeholder { color: rgba(250,246,239,0.3); }
  .login-form input:focus { border-color: rgba(212,160,23,0.5); }

  /* ===== FAQ & PRACTICAL ===== */

  .practical-card {
    background: var(--mist);
    padding: 40px 36px;
    text-align:center;
  }


  .practical-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 16px;
  }

  .practical-card p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(44,31,15,0.65);
    font-weight: 300;
    margin-bottom: 5px;
  }
.practical-card h4 {
    font-size: 16px;
    font-weight: 400;
    color: var(--deep-teal);
    margin-bottom: 16px;
}
.practical-card.bg-dbeige h3, .practical-card.bg-dbeige p, .practical-card.bg-dbeige p a {
    color: #fff;
}
.practical-card.bg-dbeige p a:hover{text-decoration: none;}
.practcard .eligibility-card {
    margin-top: 20px;
}
.practcard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.paText h4 {
    font-size: 16px;
    font-weight: 400;
    color: var(--deep-teal);
    margin: 16px 0;
}
.paText ul {
    padding-left: 25px;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(44, 31, 15, 0.65);
    font-weight: 300;
    margin-bottom: 15px;
}
.practcard .eligibility-card {
    margin-top: 20px;
    height: 350px;
    overflow: hidden;
    overflow-y: auto;
}
.buttonpar a,.members-inner a {
    background: var(--saffron);
    color: white;
    text-decoration: none;
    max-width: 300px;
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    transition: .5s all;
}
.buttonpar a:hover {
    background: var(--deep-teal);
    transition: .5s all;
}
.members-inner a:hover{
    
}
.buttonpar {
    text-align: center;
    margin-top: 20px;
    width: 100%;
    display: inline-block;
}
  .practical-icon {
    font-size: 24px;
    margin-bottom: 16px;
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--bark);
    padding: 60px 48px;
    text-align: center;
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 16px;
  }

  footer p {
    font-size: 18px;
    color: rgba(250,246,239,0.4);
    letter-spacing: 0.05em;
  }

  /* ===== MEMBER AREA TABS ===== */
  .member-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(212,160,23,0.2);
    padding-bottom: 0;
  }

  .mtab {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 20px;
    color: rgba(250,246,239,0.5);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -1px;
    white-space: nowrap;
  }

  .mtab:hover { color: rgba(250,246,239,0.8); }
  .mtab.active { color: var(--turmeric); border-bottom-color: var(--turmeric); }

  .mtab-panel { animation: fadeUp 0.3s ease both; }

  .mtab-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 12px;
  }

  .mtab-intro {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(250,246,239,0.6);
    font-weight: 300;
    max-width: 760px;
    margin-bottom: 36px;
  }

  .mtab-location-label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--turmeric);
    font-weight: 500;
    margin-bottom: 16px;
  }
.members-inner a:hover {
    background: var(--bark);
}

  /* Itinerary grid */
  .itinerary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2px;
  }

  .itin-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,160,23,0.12);
    padding: 24px 28px;
    transition: background 0.2s;
  }

  .itin-card:hover { background: rgba(255,255,255,0.08); }

  .itin-date {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--turmeric);
    font-weight: 500;
    margin-bottom: 6px;
  }

  .itin-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 10px;
  }

  .itin-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(250,246,239,0.55);
    font-weight: 300;
  }

  /* Packing / flights two-col grid */
  .packing-cols {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }

  .packing-group {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,160,23,0.12);
    padding: 24px 28px;
  }

  .packing-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--turmeric);
    font-weight: 500;
    margin-bottom: 14px;
  }

  .packing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .packing-list li {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(250,246,239,0.6);
    font-weight: 300;
    padding-left: 16px;
    position: relative;
  }

  .packing-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--turmeric);
    font-size: 11px;
  }

  /* Readings */
  .reading-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .reading-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,160,23,0.12);
    padding: 22px 28px;
    border-left: 3px solid rgba(212,160,23,0.3);
  }

  .reading-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 2px;
    font-style: italic;
  }

  .reading-author {
    font-size: 12px;
    color: var(--turmeric);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    font-weight: 500;
  }

  .reading-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(250,246,239,0.55);
    font-weight: 300;
  }

  /* Payment schedule */
  .payment-schedule {
    border: 1px solid rgba(212,160,23,0.2);
    overflow: hidden;
  }

  .payment-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr 1fr;
    gap: 0;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(212,160,23,0.1);
    font-size: 13px;
    color: rgba(250,246,239,0.65);
    font-weight: 300;
    align-items: center;
  }

  .payment-row:last-child { border-bottom: none; }

  .payment-row.header {
    background: rgba(212,160,23,0.1);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--turmeric);
    font-weight: 500;
  }

  .pay-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
  }

  .pay-badge.open { background: rgba(212,160,23,0.15); color: var(--turmeric); border: 1px solid rgba(212,160,23,0.3); }
  .pay-badge.upcoming { background: rgba(232,101,26,0.12); color: var(--saffron); border: 1px solid rgba(232,101,26,0.25); }
  .pay-badge.paid { background: rgba(26,74,74,0.3); color: #6db8b8; border: 1px solid rgba(109,184,184,0.3); }

  /* Communications */
  .comm-post {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,160,23,0.12);
    border-left: 3px solid var(--saffron);
    padding: 28px 32px;
    margin-bottom: 2px;
  }

  .comm-date {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 500;
    margin-bottom: 6px;
  }

  .comm-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 12px;
  }

  .comm-body {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(250,246,239,0.6);
    font-weight: 300;
  }

  @media(max-width:1023px){
    .teamMember {flex-wrap: wrap;}
    .teamMember figure, .memberContent {width: 100%;}
    .teamMember figure {margin-bottom: 20px;}
    .payment-row { grid-template-columns: 1fr 1fr; gap: 8px; }
    .payment-row.header span:nth-child(3), .payment-row span:nth-child(3) { display: none; }
    .member-tabs { gap: 2px; }
    .mtab { padding: 10px 12px; font-size: 12px; }
    nav { padding: 16px 24px; }
    section { padding: 72px 24px; }
    .destinations, .who-inner, .lock-gate, .practical-grid { grid-template-columns: 1fr; }
    .destination-card { padding: 48px 32px; }
    footer { padding: 40px 24px; }
    .login-box { padding: 40px 24px; }
    .who-section, .members-section { padding: 72px 24px; }
    .timeline-section { padding: 72px 24px; }
    .hero {padding: 75px 15px 20px;}
    .priceBox,.practcard {grid-template-columns: 1fr;gap:0;}
    .barMenu {display:block;}
    .nav-links {display: none;position: absolute;top: 100%;background: rgba(26, 74, 74, 0.85);flex-direction: column;width: 100%;left: 0;padding: 20px;}
    ul.nav-links.show {display: inline-flex;    gap: 15px;}
  }