:root {
  --bg:#f7f4ee;
  --panel:#eee8de;
  --ink:#161616;
  --muted:#6f6a63;
  --line:#dfd8ce;
  --white:#fffdfa;
  --accent:#9b7567;
  --soft:#f2ede6;
  --shadow:0 24px 70px rgba(44,35,28,.08);
  --radius:28px
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth
}

body {
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,sans-serif;
  background:var(--bg);
  color:var(--ink);
  overflow-x:hidden
}

a {
  color:inherit;
  text-decoration:none
}

img {
  max-width:100%;
  display:block
}

.navbar {
  position:sticky;
  top:0;
  z-index:50;
  height:66px;
  padding:0 58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(247,244,238,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(0,0,0,.03)
}

.brand {
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-weight:800;
  font-size:20px;
  letter-spacing:-.04em
}

.brand-mark {
  width:31px;
  height:31px;
  border:1.5px solid #1e1e1e;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative
}

.brand-mark:after {
  content:"";
  width:12px;
  height:12px;
  background:#171717;
  border-radius:50%;
  display:block
}

.nav-links {
  display:flex;
  gap:42px;
  font-size:14px;
  color:#4d4a45
}

.nav-links a:hover {
  color:#000
}

.nav-cta {
  background:#151515;
  color:white;
  padding:12px 23px;
  border-radius:999px;
  font-size:14px;
  box-shadow:0 10px 25px rgba(0,0,0,.12)
}

.menu-btn {
  display:none;
  background:transparent;
  border:0;
  font-size:24px
}

.section {
  padding:92px 9vw
}

.hero {
  position:relative;
  min-height:calc(100vh - 66px);
  padding-top:72px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  overflow:hidden
}

.hero-glow {
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  opacity:.55;
  z-index:-1
}

.hero-glow.one {
  width:420px;
  height:420px;
  background:#ead9cc;
  right:10%;
  top:10%
}

.hero-glow.two {
  width:520px;
  height:520px;
  background:#f7eee1;
  left:-10%;
  bottom:10%
}

.eyebrow {
  font-size:12px;
  letter-spacing:.32em;
  color:#928a80;
  font-weight:700;
  margin:0 0 24px
}

.hero h1,.registration-hero h1 {
  font-size:clamp(54px,8.2vw,118px);
  line-height:.88;
  letter-spacing:-.08em;
  max-width:960px;
  margin:0 auto 28px;
  font-weight:800
}

.hero h1 em,.registration-hero h1 em,.contact-copy h2 em {
  font-family:Georgia,serif;
  font-weight:400;
  color:var(--accent)
}

.hero-copy {
  max-width:760px;
  margin:0 auto 34px;
  color:#4e4a44;
  font-size:19px;
  line-height:1.55
}

.hero-actions {
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap
}

.btn {
  border:0;
  border-radius:999px;
  padding:17px 27px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  font-size:15px
}

.primary {
  background:#151515;
  color:#fff;
  box-shadow:0 18px 38px rgba(0,0,0,.13)
}

.secondary {
  background:rgba(255,255,255,.55);
  border:1px solid var(--line)
}

.btn:hover,.nav-cta:hover {
  transform:translateY(-2px)
}

.hero-media-wrap {
  position:relative;
  width:min(1050px,90vw);
  margin-top:76px
}

.hero-media {
  border-radius:24px;
  overflow:hidden;
  height:430px;
  box-shadow:var(--shadow)
}

.hero-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.85)
}

.floating {
  position:absolute;
  z-index:2;
  left:-22px;
  top:34px
}

.drop-card {
  display:flex;
  gap:14px;
  align-items:center;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.9);
  box-shadow:0 18px 50px rgba(22,22,22,.12);
  border-radius:18px;
  padding:15px 20px;
  text-align:left
}

.mini-icon,.icon {
  width:38px;
  height:38px;
  border-radius:12px;
  background:#eee8e0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#8e695d
}

.drop-card small {
  display:block;
  color:#918b82
}

.drop-card strong {
  font-size:14px
}

.section-heading {
  margin-bottom:50px
}

.section-heading.split {
  display:grid;
  grid-template-columns:1.1fr .8fr;
  gap:40px;
  align-items:end
}

.section-heading h2,.community-panel h2,.contact-copy h2 {
  font-size:clamp(36px,5vw,64px);
  line-height:1.03;
  letter-spacing:-.06em;
  margin:0
}

.section-heading p {
  color:#5d5851;
  line-height:1.65;
  font-size:17px
}

.narrow {
  max-width:940px
}

.experience-grid {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  grid-template-rows:repeat(2,360px);
  gap:24px
}

.experience-card {
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow);
  min-height:320px
}

.experience-card.large {
  grid-row:span 2
}

.experience-card img {
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.82) saturate(.82)
}

.card-content {
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  color:white;
  padding:24px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(0,0,0,.15),rgba(0,0,0,.62));
  backdrop-filter:blur(6px)
}

.card-content h3 {
  font-size:30px;
  margin:6px 0 10px;
  letter-spacing:-.05em
}

.card-content p {
  color:rgba(255,255,255,.86);
  line-height:1.55
}

.tag {
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.22em
}

.pillars {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px
}

.pillar-card {
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.75);
  border-radius:24px;
  padding:34px;
  box-shadow:var(--shadow);
  min-height:250px;
  position:relative
}

.pillar-card span {
  position:absolute;
  right:32px;
  top:32px;
  color:#aaa19a;
  font-size:13px
}

.pillar-card h3 {
  font-size:25px;
  margin:28px 0 12px;
  letter-spacing:-.04em
}

.pillar-card p {
  color:#605a53;
  line-height:1.6
}

.community-panel {
  border-radius:36px;
  background:var(--panel);
  padding:70px;
  box-shadow:inset 0 1px rgba(255,255,255,.7);
  text-align:center
}

.community-panel p {
  max-width:640px;
  margin:22px auto;
  color:#625d56;
  line-height:1.65
}

.stats {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:750px;
  margin:34px auto
}

.stats div {
  background:#fff;
  border-radius:20px;
  padding:23px
}

.stats strong {
  display:block;
  font-size:20px
}

.stats span {
  color:#8b837b;
  font-size:14px
}

.contact {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center
}

.contact-copy p {
  color:#5b554f;
  line-height:1.65;
  font-size:17px
}

.contact-list {
  list-style:none;
  padding:0;
  margin:34px 0 0;
  display:grid;
  gap:22px
}

.contact-list li {
  display:flex;
  gap:17px;
  align-items:center
}

.contact-list span {
  width:36px;
  height:36px;
  background:#fff;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center
}

.contact-form,.register-form {
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.9);
  border-radius:28px;
  padding:46px;
  box-shadow:var(--shadow)
}

label {
  font-size:12px;
  letter-spacing:.22em;
  color:#8b837b;
  font-weight:800;
  display:grid;
  gap:12px
}

input,textarea,select {
  width:100%;
  border:1px solid var(--line);
  background:#f8f6f2;
  border-radius:14px;
  padding:18px 19px;
  font:inherit;
  outline:none;
  color:#161616
}

textarea {
  min-height:170px;
  resize:vertical
}

.form-row {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-bottom:20px
}

.contact-form>label,.register-form>label {
  margin-bottom:20px
}

.footer {
  padding:0 58px 38px
}

.footer-main {
  background:var(--panel);
  padding:70px 58px;
  border-radius:0;
  display:grid;
  grid-template-columns:1.4fr .55fr .65fr .45fr;
  gap:70px;
  border-top:1px solid var(--line)
}

.footer h2 {
  font-size:32px;
  letter-spacing:-.05em;
  margin:26px 0 12px
}

.footer p {
  color:#5f5953;
  line-height:1.55
}

.email-capture {
  display:flex;
  gap:10px;
  max-width:450px;
  margin-top:22px
}

.email-capture input {
  background:#fff;
  border-radius:999px
}

.email-capture button {
  border:0;
  background:#151515;
  color:#fff;
  border-radius:999px;
  padding:0 26px
}

.footer-col {
  display:flex;
  flex-direction:column;
  gap:14px;
  font-size:14px
}

.footer-col p {
  font-size:12px;
  letter-spacing:.28em;
  color:#9b9289;
  font-weight:800
}

.socials {
  display:flex;
  gap:12px
}

.socials a {
  width:34px;
  height:34px;
  background:#eee7df;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center
}

.footer-bottom {
  display:flex;
  justify-content:space-between;
  padding-top:28px;
  border-top:1px solid var(--line);
  font-size:12px;
  color:#777067
}

.registration-page {
  padding:70px 8vw 100px
}

.registration-hero {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
  min-height:calc(100vh - 150px)
}

.register-copy h1 {
  font-size:clamp(48px,6.2vw,92px);
  max-width:650px;
  margin:0 0 28px
}

.register-copy>p {
  font-size:18px;
  color:#5b554f;
  line-height:1.65;
  max-width:580px
}

.register-note {
  display:flex;
  gap:16px;
  background:#fff;
  border:1px solid var(--line);
  padding:20px;
  border-radius:22px;
  margin-top:34px;
  max-width:450px
}

.register-note span {
  color:#2b2b2b
}

.register-note p {
  margin:6px 0 0;
  color:#6b645d
}

.form-title {
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:30px
}

.form-title p {
  margin:0;
  color:#8b837b;
  font-size:12px;
  letter-spacing:.22em;
  font-weight:800
}

.form-title h2 {
  margin:3px 0 0;
  font-size:28px;
  letter-spacing:-.05em
}

.full {
  width:100%;
  justify-content:center
}

.tiny {
  font-size:12px!important;
  color:#8b837b!important;
  text-align:center;
  margin:17px 0 0!important
}

.toast {
  position:fixed;
  left:50%;
  bottom:28px;
  transform:translate(-50%,120px);
  background:#151515;
  color:white;
  padding:15px 22px;
  border-radius:999px;
  box-shadow:0 20px 60px rgba(0,0,0,.22);
  transition:.35s;
  z-index:100
}

.toast.show {
  transform:translate(-50%,0)
}

.reveal {
  opacity:0;
  transform:translateY(26px);
  transition:opacity .8s ease,transform .8s ease
}

.reveal.visible {
  opacity:1;
  transform:translateY(0)
}

@media(max-width:900px) {
  .navbar {
  padding:0 22px
}

.nav-links {
  display:none
}

.menu-btn {
  display:block
}

.section {
  padding:70px 24px
}

.hero h1 {
  font-size:62px
}

.hero-media {
  height:300px
}

.floating {
  left:10px;
  top:18px
}

.section-heading.split,.contact,.registration-hero {
  grid-template-columns:1fr
}

.experience-grid {
  grid-template-columns:1fr;
  grid-template-rows:auto
}

.experience-card.large {
  grid-row:auto
}

.experience-card {
  height:380px
}

.pillars,.stats,.footer-main {
  grid-template-columns:1fr
}

.form-row {
  grid-template-columns:1fr
}

.footer {
  padding:0 18px 28px
}

.footer-main {
  padding:40px 24px
}

.footer-bottom {
  flex-direction:column;
  gap:12px
}

.community-panel {
  padding:42px 22px
}

.contact-form,.register-form {
  padding:26px
}

.hero-actions {
  flex-direction:column
}

.btn {
  justify-content:center
}

.email-capture {
  flex-direction:column
}

.email-capture button {
  height:52px
}

}



/* ===== LOGO FIX ===== */
.logo {
  height: 32px;
  width: auto;
  max-width: 40px;
  object-fit: contain;
  display: block;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand span {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

/* ===== INSTAGRAM ICON FIX ===== */
.insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.insta-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: inline-block;
}

.insta:hover {
  opacity: 0.7;
}

/* ===== CONTACT INSTAGRAM LAYOUT FIX ===== */
.contact-insta-item {
  display: flex;
  align-items: center;
}

.contact-insta {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}

.contact-insta-icon {
  width: 36px;
  height: 36px;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
  object-fit: contain;
  box-sizing: border-box;
  display: block;
}

/* ===== INSTA TEXT WHITE BOX FIX ===== */
.contact-insta span,
.contact-insta .insta-text {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  display: inline !important;
}

/* ===== EMAIL JOIN ANIMATION FIX ===== */
.email-capture button {
  transition: all 0.25s ease;
}

.email-capture button.joined {
  background: #1f8f4d;
  color: white;
  transform: scale(1.05);
}

.email-capture input.fade-out {
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.25s ease;
}

/* ===== MEET THE TEAM BUTTON FIX ===== */

.team-btn {
  background: #151515;
  color: white;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  transition: all 0.25s ease;
}

.team-btn:hover {
  transform: translateY(-2px);
}

/* ===== TEAM PAGE FIX ===== */
.team-page {
  min-height: 100vh;
  background: var(--bg);
}

.team-title {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  max-width: 850px;
  margin: 0 0 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  gap: 48px;
}

.team-card {
  width: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ===== REGISTRATION SUBMIT ANIMATION FIX ===== */
#registrationSubmitBtn {
  transition: all 0.25s ease;
}

#registrationSubmitBtn.submitted {
  background: #1f8f4d !important;
  color: white !important;
  transform: scale(1.03);
}

/* ===== CONTACT FORM FIX ===== */
#contactSubmitBtn {
  transition: all 0.25s ease;
}

#contactSubmitBtn.submitted {
  background: #1f8f4d !important;
  color: white !important;
  transform: scale(1.03);
}

/* ===== PAYMENT PAGE FIX ===== */
.payment-page {
  min-height: calc(100vh - 66px);
  padding: 70px 8vw 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.payment-card {
  width: min(720px, 100%);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  padding: 44px;
  box-shadow: var(--shadow);
  text-align: center;
}

.payment-card h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin: 0 0 28px;
}

.payment-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  margin: 26px 0;
  text-align: left;
}

.payment-summary p {
  margin: 10px 0;
  color: var(--muted);
}

.payment-summary strong {
  color: var(--ink);
}

.qr-box {
  width: min(330px, 100%);
  margin: 28px auto 18px;
  background: white;
  padding: 18px;
  border-radius: 28px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.qr-box img {
  width: 100%;
  border-radius: 18px;
}

.upi-text {
  color: var(--muted);
  margin-bottom: 28px;
}

.transaction-form {
  display: none;
  margin-top: 28px;
  text-align: left;
  animation: slideDown 0.35s ease;
}

.transaction-form.show {
  display: block;
}

.payment-note {
  margin-top: 18px;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}

#transactionSubmitBtn {
  transition: all 0.25s ease;
}

#transactionSubmitBtn.submitted {
  background: #1f8f4d !important;
  color: white !important;
  transform: scale(1.03);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 900px) {
  .logo {
    height: 28px;
    max-width: 36px;
  }

  .brand span {
    font-size: 18px;
  }

  .team-title {
    font-size: 46px;
  }
}

@media (max-width: 600px) {
  .payment-card {
    padding: 28px 20px;
  }
}
.drop-card a {
  text-decoration: underline;
}
.team-button-wrap,
.gallery-button-wrap {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}
.gallery-page {
  min-height: 100vh;
  background: var(--bg);
}

.gallery-title {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  max-width: 900px;
  margin: 0 0 28px;
}

.gallery-copy {
  max-width: 760px;
  font-size: 18px;
  color: #5b554f;
  line-height: 1.7;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
  gap: 48px;
}

.gallery-card {
  width: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .gallery-title {
    font-size: 46px;
  }
}
.gallery-title em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--accent);
}

.gallery-page .section {
  padding-top: 88px;
}

.gallery-copy {
  max-width: 760px;
  font-size: 18px;
  color: #5b554f;
  line-height: 1.75;
  margin-bottom: 56px;
}
.gallery-divider {
  width: 120px;
  height: 2px;
  background: var(--accent);
  margin: 0 0 56px;
  border-radius: 999px;
}
.middle-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 0;
}
#community {
  padding-top: 0 !important;
}
.team-button-wrap,
.gallery-button-wrap {
  margin: 0;
}