:root {
  --ink: #0C0A07;
  --ink-2: #17130D;
  --gold: #C6A15B;
  --gold-bright: #E9CE8E;
  --cream: #F3EEE2;
  --muted: #9C927D;
  --radius: 14px;
}

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

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

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

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  /* NEW — stacks the pill and dropdown vertically */
  align-items: center;
  /* NEW — stops align-items:stretch from blowing up the pill's height */
  padding: 0 20px;
}

.navbar__inner {
  width: 100%;
  max-width: 920px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 20px;
  background: #080705;
  /* was rgba(243,238,226,0.92) — now matches footer */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(198, 161, 91, 0.3);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: background .3s ease, box-shadow .3s ease;
}

.navbar__logo {
  display: flex;
  align-items: center;
  height: 100%;
}


.navbar__logo img {
  margin-left: 25px;
  /* logo was getting lost against the pill */
  height: 52px;
  /* was 34px — was getting lost against the pill */
  width: auto;
  display: block;
}

.navbar__links {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 500;
}

.navbar__links a {
  color: var(--muted);
  position: relative;
  transition: color .25s ease;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}

.navbar__links a:hover {
  color: var(--gold-bright);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  background: var(--gold);
  /* was var(--ink) — invisible on dark */
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background .25s ease, transform .2s ease;
  white-space: nowrap;
}

.navbar__cta:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.navbar__toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  /* was 32px — also fixes an undersized tap target */
  height: 38px;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: background .25s ease, box-shadow .25s ease;
}

.navbar__toggle span {
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease, background .25s ease;
}

.navbar__toggle:hover,
.navbar__toggle:focus-visible {
  background: rgba(198, 161, 91, 0.15);
  box-shadow: 0 0 0 6px rgba(198, 161, 91, 0.08);
  /* the "light up" glow ring */
}

.navbar__toggle.active {
  background: rgba(198, 161, 91, 0.18);
}

.navbar__toggle.active span {
  background: var(--gold-bright);
}

.navbar__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar__mobile {
  max-width: 920px;
  margin: 8px auto 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: #080705;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: 20px;
  transition: max-height 0.3s ease, opacity .3s ease, padding .3s ease;
}

.navbar__mobile.open {
  max-height: 420px;
  opacity: 1;
  padding: 14px 8px;
}

.navbar__mobile a {
  display: block;
  padding: 12px 20px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: background .2s ease;
}

.navbar__mobile a:hover {
  background: rgba(198, 161, 91, 0.1);
  color: var(--gold-bright);
}

.navbar__mobile-cta {
  margin-top: 6px;
  background: var(--gold) !important;
  color: var(--ink) !important;
  text-align: center;
  font-weight: 600;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* This is the "gradient overlaps the image from left text area into right image" seam */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg,
      var(--ink) 0%,
      var(--ink) 30%,
      rgba(12, 10, 7, 0.92) 42%,
      rgba(12, 10, 7, 0.55) 55%,
      rgba(12, 10, 7, 0.15) 68%,
      rgba(12, 10, 7, 0) 82%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1024px;
  padding: 140px 6vw 80px;
}

.hero__kicker {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero__text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 38px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all .25s ease;
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
}

.btn--gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1px solid rgba(243, 238, 226, 0.3);
  color: var(--cream);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:860px) {
  .navbar__links {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .hero__content {
    max-width: 100%;
    padding: 120px 24px 60px;
  }

  .hero__scrim {
    background: linear-gradient(180deg,
        var(--ink) 0%,
        var(--ink) 45%,
        rgba(12, 10, 7, 0.75) 65%,
        rgba(12, 10, 7, 0.25) 85%,
        rgba(12, 10, 7, 0) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- ABOUT ---------- */
.about {
  position: relative;
  background:
    radial-gradient(ellipse at top left, rgba(198, 161, 91, 0.06), transparent 55%),
    var(--ink-2);
  padding: 110px 6vw;
  overflow: hidden;
}

.about__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.about__glow--1 {
  width: 480px;
  height: 480px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(198, 161, 91, 0.28), transparent 70%);
  animation: drift1 22s ease-in-out infinite;
}

.about__glow--2 {
  width: 420px;
  height: 420px;
  bottom: 0;
  right: -80px;
  background: radial-gradient(circle, rgba(233, 206, 142, 0.18), transparent 70%);
  animation: drift2 26s ease-in-out infinite;
}

@keyframes drift1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(40px, 60px);
  }
}

@keyframes drift2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-50px, -40px);
  }
}

.about__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.about__kicker {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.about__heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.2;
  max-width: 680px;
  margin-bottom: 22px;
}

.about__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
}

.about__subhead {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 36px;
}

.about__subhead--light {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* Story timeline */
.about__story {
  margin-top: 100px;
}

.timeline {
  list-style: none;
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(198, 161, 91, 0.15));
}

.timeline__item {
  position: relative;
  padding-bottom: 44px;
}

.timeline__item--last {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(198, 161, 91, 0.18);
}

.timeline__content h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--cream);
}

.timeline__content p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
  font-size: 0.98rem;
}

/* Vision */
.about__vision {
  margin-top: 100px;
  padding: 52px 0;
  border-top: 1px solid rgba(198, 161, 91, 0.2);
  border-bottom: 1px solid rgba(198, 161, 91, 0.2);
  text-align: left;
}

.vision__quote {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.4;
  max-width: 820px;
  background: linear-gradient(100deg, var(--cream) 30%, var(--gold-bright) 60%, var(--gold) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Mission checklist */
.about__mission {
  margin-top: 100px;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 18px;
  max-width: 680px;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  transition: color .25s ease, transform .25s ease;
}

.checklist li:hover {
  color: var(--cream);
  transform: translateX(4px);
}

/* Values bento grid */
.about__values {
  margin-top: 100px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 14px;
}

.value-tile {
  background: linear-gradient(155deg, rgba(198, 161, 91, 0.05), rgba(198, 161, 91, 0) 60%), var(--ink-2);
  border: 1px solid rgba(198, 161, 91, 0.22);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* was flex-end, then briefly space-between — flex-start is correct: icon → title → text, top to bottom, like every other card on the page */
  gap: 10px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.value-tile--big{
  grid-column:span 2;
  grid-row:span 2;
  align-self:start;   /* NEW — stops grid from force-stretching this tile to the 300px track, so content sizes naturally instead of getting clipped */
  position:relative;
  overflow:hidden;
  border-color:rgba(198,161,91,0.55);
  box-shadow:0 0 0 1px rgba(198,161,91,0.12), 0 24px 60px rgba(198,161,91,0.18);
}

.value-tile--big::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(233, 206, 142, 0.25), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  animation: tileGlow 6s ease-in-out infinite;
  z-index: 0;
}

.value-tile:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(198, 161, 91, 0.15);
}

.value-tile h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.value-tile--big h4 {
  font-size: 1.4rem;
}

.value-tile p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width:860px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(140px, auto);
    /* was fixed 140px — now grows to fit content */
  }

  .value-tile--big {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 220px;
    /* ensures room for badge + icon + heading + paragraph */
  }

  .timeline {
    padding-left: 26px;
  }
}

@media (max-width:520px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-tile--big {
    grid-column: span 1;
    min-height: auto;
    /* single column — let it size naturally to its own content */
  }
}

@media (prefers-reduced-motion: reduce) {
  .about__glow {
    animation: none;
  }
}

/* Intro: two-column */
.about__intro {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.stat-card {
  background: linear-gradient(155deg, rgba(198, 161, 91, 0.08), transparent 70%), var(--ink-2);
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.stat-card i {
  font-size: 1.6rem;
  color: var(--gold);
  width: 44px;
  text-align: center;
}

.stat-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--cream);
  line-height: 1;
}

.stat-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

/* Mission: two-column */
.about__mission {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0;
}

.checklist li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.checklist li::before {
  content: none;
}

/* remove old empty-box marker, icon replaces it */

.mission__visual {
  background: linear-gradient(155deg, rgba(198, 161, 91, 0.1), transparent 70%), var(--ink-2);
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.mission__visual i {
  font-size: 2rem;
  color: rgba(198, 161, 91, 0.4);
  margin-bottom: 16px;
}

.mission__visual p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--cream);
}

/* Timeline dot with icon */
.timeline__dot {
  position: absolute;
  left: -42px;
  top: -2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gold);
}

.timeline {
  padding-left: 52px;
}

.timeline::before {
  left: 14px;
}

/* Value tile icon + fix empty big-tile space */

.value-tile i {
  font-size: 1.3rem;
  color: var(--gold);
  opacity: 0.8;
}

.value-tile--big i,
.value-tile--big h4,
.value-tile--big p,
.value-tile__tag {
  position: relative;
  z-index: 1;
}

.value-tile__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 4px;
  width: fit-content;
}

@keyframes tileGlow {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width:860px) {
  .about__intro {
    grid-template-columns: 1fr;
  }

  .about__mission {
    grid-template-columns: 1fr;
  }
}

/* ---------- WHY BPG ---------- */
.why {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--ink);
}

.why__media {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.why__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why__media-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 7, 0.1) 0%, rgba(12, 10, 7, 0.75) 100%);
}

.why__stat {
  position: absolute;
  left: 36px;
  bottom: 36px;
  display: flex;
  flex-direction: column;
}

.why__stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--gold-bright);
  line-height: 1;
}

.why__stat-label {
  font-size: 0.9rem;
  color: var(--cream);
  margin-top: 6px;
  max-width: 200px;
}

.why__content {
  padding: 130px 6vw 130px 5vw;
}

.why__kicker {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.why__heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
}

.why__intro {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 60px;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.why__item {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.why__item-text h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.why__item-text p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.98rem;
  max-width: 420px;
}

/* Stickers: rotated circular badges, not flat icon tiles */
.sticker {
  position: relative;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 26px rgba(198, 161, 91, 0.3);
  transition: transform .3s ease;
}

.sticker::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1.5px dashed rgba(198, 161, 91, 0.45);
  border-radius: 50%;
}

.why__item:hover .sticker {
  transform: rotate(0deg) scale(1.06);
}

.sticker--1 {
  transform: rotate(-9deg);
}

.sticker--2 {
  transform: rotate(7deg);
}

.sticker--3 {
  transform: rotate(-6deg);
}

.sticker--4 {
  transform: rotate(9deg);
}

.sticker--5 {
  transform: rotate(-8deg);
}

.sticker--6 {
  transform: rotate(6deg);
}

@media (max-width:900px) {
  .why {
    grid-template-columns: 1fr;
  }

  .why__media {
    position: relative;
    height: 320px;
  }

  .why__content {
    padding: 70px 6vw;
  }
}

/* ---------- PHILOSOPHY ---------- */
.philosophy {
  background: var(--ink-2);
  padding: 130px 6vw;
}

.philosophy__inner {
  max-width: 900px;
  margin: 0 auto;
}

.philosophy__intro {
  text-align: center;
  margin-bottom: 100px;
}

.philosophy__kicker {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.philosophy__heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.7rem);
}

/* Manifesto list */
.manifesto {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.manifesto__item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: 640px;
}

.manifesto__item--right {
  align-self: flex-end;
  flex-direction: row-reverse;
  text-align: right;
}

.manifesto__num {
  font-family: 'Fraunces', serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(198, 161, 91, 0.4);
  line-height: 1;
  flex-shrink: 0;
}

.manifesto__text h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.manifesto__text p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

/* Cultural pillars */
.pillars {
  margin-top: 140px;
  padding-top: 70px;
  border-top: 1px solid rgba(198, 161, 91, 0.2);
  text-align: center;
}

.pillars__kicker {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 40px;
}

.pillars__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.pillar {
  max-width: 220px;
}

.pillar h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

.pillar span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.pillar-divider {
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.5;
}

@media (max-width:760px) {

  .manifesto__item,
  .manifesto__item--right {
    flex-direction: row;
    text-align: left;
    align-self: flex-start;
  }

  .pillars__row {
    gap: 24px;
  }

  .pillar-divider {
    display: none;
  }
}


/* ---------- PHILOSOPHY: THE BPG BREW ---------- */
.philosophy {
  position: relative;
  background: var(--ink-2);
  padding: 130px 6vw;
  overflow: hidden;
}

/* CSS-drawn coffee beans — no image asset needed */
.philosophy__beans {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bean {
  position: absolute;
  display: block;
  background: linear-gradient(135deg, #6B4A2A, #3E2A17);
  border-radius: 50%;
  opacity: 0.16;
  animation: beanDrift 14s ease-in-out infinite;
}

.bean::after {
  content: '';
  position: absolute;
  top: -6%;
  left: 50%;
  width: 2px;
  height: 112%;
  background: rgba(12, 10, 7, 0.5);
  border-radius: 50%;
  transform: translateX(-50%) rotate(6deg);
}

@keyframes beanDrift {

  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }

  50% {
    transform: translateY(-16px) rotate(var(--r, 0deg));
  }
}

.philosophy__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.philosophy__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 100px;
}

.philosophy__kicker {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.philosophy__heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.philosophy__lead {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

/* Brew line — staggered ingredient cards on a drip line */
.brew-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
  padding-top: 10px;
}

.brew-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(198, 161, 91, 0.35) 60%, transparent 0%);
  background-size: 14px 1px;
  z-index: 0;
}

.brew-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #241B12, #1B140D);
  border: 1px solid rgba(198, 161, 91, 0.25);
  padding: 30px 24px 26px;
  clip-path: polygon(0% 6%, 6% 0%, 94% 0%, 100% 6%, 100% 100%, 0% 100%);
}

.brew-card--down {
  margin-top: 44px;
}

.brew-card__bean {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.brew-card__bean .bean {
  position: static;
  opacity: 1;
  width: 20px;
  height: 13px;
}

.brew-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.brew-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* The Blend */
.blend {
  margin-top: 150px;
  text-align: center;
}

.blend__kicker {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 46px;
}

.blend__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.blend__ingredient {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.blend__ingredient .sticker {
  width: 54px;
  height: 54px;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.blend__ingredient h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--gold-bright);
}

.blend__sub {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

.blend__arrow {
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.6;
}

.blend__cup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 26px;
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: 16px;
  background: rgba(198, 161, 91, 0.06);
}

.blend__cup i {
  font-size: 2rem;
  color: var(--gold);
}

.blend__cup span {
  font-size: 0.85rem;
  color: var(--cream);
  font-weight: 600;
}

@media (max-width:860px) {
  .brew-line {
    grid-template-columns: 1fr 1fr;
  }

  .brew-card--down {
    margin-top: 0;
  }

  .brew-line::before {
    display: none;
  }
}

@media (max-width:560px) {
  .brew-line {
    grid-template-columns: 1fr;
  }

  .blend__row {
    flex-direction: column;
  }

  .blend__arrow {
    transform: rotate(90deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .value-tile--big::before {
    animation: none;
  }

  .bean {
    animation: none;
  }
}


/* ---------- HOW BPG WORKS ---------- */
.how-works {
  position: relative;
  background: var(--ink);
  padding: 130px 6vw;
  overflow: hidden;
}

.how-works__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.how-works__glow--1 {
  width: 520px;
  height: 520px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(198, 161, 91, 0.16), transparent 70%);
}

.how-works__glow--2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  left: -100px;
  background: radial-gradient(circle, rgba(233, 206, 142, 0.1), transparent 70%);
}

.how-works__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.how-works__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.how-works__intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.how-works__kicker {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.how-works__heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.how-works__lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Journey stepper */
.journey {
  position: relative;
  padding-left: 70px;
}

.journey::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(198, 161, 91, 0.1));
}

.journey__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding-bottom: 56px;
}

.journey__step--last {
  padding-bottom: 0;
}

.journey__num {
  position: absolute;
  left: -70px;
  top: -6px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold-bright);
}

.journey__content {
  background: linear-gradient(155deg, rgba(198, 161, 91, 0.05), transparent 70%), var(--ink-2);
  border: 1px solid rgba(198, 161, 91, 0.18);
  border-radius: 14px;
  padding: 22px 26px;
  flex: 1;
}

.journey__content i {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.journey__content h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.journey__content p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

/* First 90 Days — sits BELOW how-works__grid, full width, own row */
.days90 {
  margin-top: 130px;
  padding-top: 70px;
  border-top: 1px solid rgba(198, 161, 91, 0.2);
}

.days90__kicker {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.days90__heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.9rem;
  margin-bottom: 50px;
}

.days90__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(198, 161, 91, 0.2);
  border: 1px solid rgba(198, 161, 91, 0.2);
}

.days90__phase {
  background: var(--ink-2);
  padding: 32px 28px;
}

.days90__range {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.days90__phase h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.days90__phase ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.days90__phase li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.days90__phase li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width:960px) {
  .how-works__grid {
    grid-template-columns: 1fr;
  }

  .how-works__intro {
    position: static;
  }

  .journey {
    padding-left: 56px;
  }

  .journey__num {
    left: -56px;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .days90__track {
    grid-template-columns: 1fr;
  }

  /* NEW — was missing entirely */
}

/* ---------- MEETINGS & ACTIVITIES ---------- */
.meetings {
  background: var(--ink-2);
  padding: 130px 6vw;
}

.meetings__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.meetings__intro {
  max-width: 640px;
  margin-bottom: 80px;
}

.meetings__kicker {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.meetings__heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.meetings__lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Flagship + secondary format cards */
.format-cards {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.format-card {
  background: linear-gradient(155deg, rgba(198, 161, 91, 0.05), transparent 60%), var(--ink-2);
  border: 1px solid rgba(198, 161, 91, 0.22);
  border-radius: 20px;
  padding: 36px;
}

.format-card--flagship {
  border-color: rgba(198, 161, 91, 0.45);
  background: linear-gradient(155deg, rgba(198, 161, 91, 0.1), transparent 65%), var(--ink-2);
}

.format-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(198, 161, 91, 0.12);
  color: var(--gold);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.format-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.format-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 22px;
}

.format-card__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
}

.format-card__grid h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 5px;
}

.format-card__grid p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.format-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.format-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.96rem;
}

.format-card__list i {
  color: var(--gold);
  font-size: 0.85rem;
}

/* Compact strip for the remaining five formats */
.format-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.format-chip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--ink-2);
  border: 1px solid rgba(198, 161, 91, 0.15);
  border-radius: 14px;
  padding: 22px 20px;
  transition: border-color .25s ease, transform .25s ease;
}

.format-chip:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.format-chip i {
  font-size: 1.2rem;
  color: var(--gold);
}

.format-chip h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.format-chip p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width:960px) {
  .format-cards {
    grid-template-columns: 1fr;
  }

  .format-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .format-strip {
    grid-template-columns: 1fr;
  }

  .format-card__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CHAPTERS & ZONES ---------- */
.chapters {
  background: var(--ink);
  padding: 130px 6vw;
}

.chapters__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.chapters__intro {
  max-width: 620px;
  margin-bottom: 70px;
}

.chapters__kicker {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.chapters__heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  margin-bottom: 18px;
}

.chapters__lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.chapters__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.india-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  /* matches the SVG's 1000x1000 viewBox exactly — this is what makes the % coordinates stay accurate at every screen size */
  background: var(--ink-2);
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
}

.india-map__base {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: sepia(1) saturate(0.7) brightness(0.6) hue-rotate(-12deg);
}

.city-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 4px rgba(198, 161, 91, 0.25);
  cursor: pointer;
  padding: 0;
  transition: transform .2s ease, background .2s ease;
}

.city-dot::before {
  content: '';
  position: absolute;
  inset: -15px;
  /* expands the tap target to ~44px without changing the visible dot */
}

.city-dot:hover,
.city-dot.active {
  background: var(--gold-bright);
  transform: translate(-50%, -50%) scale(1.4);
}

.city-dot span {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.75rem;
  color: var(--cream);
  background: var(--ink-2);
  border: 1px solid rgba(198, 161, 91, 0.3);
  padding: 3px 9px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.city-dot:hover span {
  opacity: 1;
}

.chapter-panel {
  background: linear-gradient(155deg, rgba(198, 161, 91, 0.06), transparent 65%), var(--ink-2);
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: 20px;
  padding: 40px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chapter-panel__empty {
  text-align: center;
  color: var(--muted);
}

.chapter-panel__empty i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.chapter-panel__content {
  width: 100%;
}

.chapter-panel__content h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--gold-bright);
  margin-bottom: 26px;
}

.chapter-panel__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(198, 161, 91, 0.15);
}

.chapter-panel__row:last-child {
  border-bottom: none;
}

.chapter-panel__row span {
  font-size: 0.85rem;
  color: var(--muted);
  flex-shrink: 0;
}

.chapter-panel__row p {
  font-size: 0.95rem;
  color: var(--cream);
  text-align: right;
}

@media (max-width:900px) {
  .chapters__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CONTACT US ---------- */
.contact {
  background: var(--ink-2);
  padding: 130px 6vw;
}

.contact__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.contact__intro {
  max-width: 600px;
  margin-bottom: 70px;
}

.contact__kicker {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.contact__heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  margin-bottom: 18px;
}

.contact__lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--ink);
  border: 1px solid rgba(198, 161, 91, 0.18);
  border-radius: 14px;
  padding: 20px 22px;
}

.info-card i {
  font-size: 1.2rem;
  color: var(--gold);
  width: 24px;
  text-align: center;
  margin-top: 3px;
}

.info-card h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.info-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.info-card p a {
  color: var(--muted);
  transition: color .2s ease;
}

.info-card p a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(198, 161, 91, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: background .2s ease, color .2s ease;
}

.social-links a:hover {
  background: var(--gold);
}

.social-links a i:hover {
  color: var(--ink);
}

.partner-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(155deg, rgba(198, 161, 91, 0.1), transparent 70%), var(--ink);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: 16px;
  padding: 26px;
  margin-top: 10px;
}

.partner-cta i {
  font-size: 1.5rem;
  color: var(--gold);
}

.partner-cta h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.partner-cta p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}


.contact__map {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(198, 161, 91, 0.25);
  filter: grayscale(0.3) invert(0.92) contrast(0.9);
  margin-top: 60px;
}

/* Form */
.contact__form-wrap {
  background: linear-gradient(155deg, rgba(198, 161, 91, 0.06), transparent 65%), var(--ink);
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: 20px;
  padding: 40px;
}

.contact__form h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 28px;
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.contact__form input,
.contact__form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  background: var(--ink-2);
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--gold);
}

.contact__form textarea {
  resize: vertical;
}

.contact__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.contact__form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
}

@media (max-width:900px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:520px) {
  .contact__form-wrap {
    padding: 26px;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background: #080705;
  border-top: 1px solid rgba(198, 161, 91, 0.2);
  padding: 80px 6vw 0;
}

.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer__logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer__logo {
  height: 64px;
  /* was 44px */
  width: auto;
}

.footer__wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.footer__brand p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 22px;
}

.footer__socials {
  margin-top: 0;
}

.footer__col h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer__col a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 2.1;
  transition: color .2s ease;
}

.footer__col a i {
  color: var(--gold);
  font-size: 0.85rem;
  width: 16px;
}

.footer__col a i:hover {
  color: var(--ink);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 0;
  border-top: 1px solid rgba(198, 161, 91, 0.12);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer__credit {
  color: var(--muted);
}

@media (max-width:900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width:560px) {
  .footer__top {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width:600px) {

  .about,
  .philosophy,
  .how-works,
  .meetings,
  .chapters,
  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer {
    padding-top: 60px;
  }
}

/* ---------- ENTRY FIREWORKS ---------- */
#fireworksCanvas{
  position:fixed;
  top:0;
  left:0;
  width:100vw;
  height:100vh;
  pointer-events:none;   /* never blocks clicks on the navbar/hero underneath */
  z-index:9999;
}

@media (prefers-reduced-motion: reduce){
  #fireworksCanvas{display:none;}
}