/* ── RESET & ROOT ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold-pale:       #f5f1e9;
  --teal:       #0E6A67;
  --teal-dark:  #094E4C;
  --teal-mid:   #1A8A87;
  --teal-light: #D6EEEE;
  --gold:       #C9A34A;
  --gold-light: #E8D4A0;
  --gold-dark: #b5913e;
  /* --gold-pale:  #f5f1e9; */
  --gold-pale: #f7f6f0;
  --near-black: #141414;
  --charcoal:   #2A2A2A;
  --mid:        #5A5550;
  --muted:      #8A8078;
  --white:      #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--gold-pale);
  color: var(--charcoal);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── UTILITIES ─────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.divider {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}
.divider-center { margin: 20px auto; }

/* ── NAV ───────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,163,74,0.18);
  transition: box-shadow 0.3s;
}
#nav.scrolled { box-shadow: 0 2px 32px rgba(0,0,0,0.12); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: auto;
  height: 36px;
  object-fit: contain;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3.5px;
  color: var(--near-black);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--mid);
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  letter-spacing: 1.5px !important;
  font-size: 12px !important;
  transition: background 0.2s !important;
  border-radius:30px;
}
.nav-cta:hover { background: var(--teal-dark) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  border-radius:2px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid rgba(201,163,74,0.2);
  padding: 20px 40px 28px;
  gap: 16px;
}
.nav-mobile a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--mid);
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 1px solid rgba(201,163,74,0.1);
}
.nav-mobile.open { display: flex; }





/* ── HERO ──────────────────────────────────────────────────────── */
#hero {
  background: linear-gradient(180deg, var(--teal) 0%, #1A312E 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(14,106,103,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201,163,74,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 20%, rgba(201,163,74,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.hero-logo {
  width: 360px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 20px auto;
  /* filter: brightness(0) invert(1); */
  opacity: 1;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 4.5px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0.85;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--gold-light);
  margin-bottom: 6px;
  padding:20px 0 40px 0;
  letter-spacing: 0.5px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2.5vw, 21px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin: 18px 0 44px;
  line-height: 1.7;
}
.hero-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto 14px;
  gap: 0;
}
.hero-input {
  flex: 1;
  background: none;
  border: 1px solid rgba(255,255,255,0.4);

  border-radius:30px;
  padding: 15px 20px;
  margin-right:10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.4px;
  outline: none;
  transition: border-color 0.2s;
}
.hero-input:focus { border-color: var(--gold); }
.hero-input::placeholder { color: rgba(255,255,255,0.6); font-style: italic; }
.hero-btn {
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius:30px;
  padding: 15px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.hero-btn:hover { background: var(--gold-light); }
.hero-privacy {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  color: rgba(242,231,216,0.24);
  letter-spacing: 0.8px;
}

.hero-scroll {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.3;
  animation: bounce 2s infinite;
}
.hero-scroll span {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--white), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.signup-confirmation{
    color:var(--gold);
    font-size:14px;
    line-height:18px;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-weight:300;
    letter-spacing: 0.5px;
    padding:10px 0;
}

/* ── EVENT BANNER ─────────────────────────────────────────────── */
#event-banner {
  background: var(--gold);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.event-left {
  background: var(--gold-dark);
  padding: 22px 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.event-date-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.event-date-month {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 4px;
}
.event-sep {
  width: 1px;
  background: rgba(255,255,255,0.18);
  align-self: stretch;
}
.event-right {
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  flex-wrap: wrap;
}
.event-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 3px;
}
.event-details {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.4px;
}
.event-cta-btn {
  margin-left: auto;
  background: var(--white);
  color: var(--teal);
  border-radius:30px;
  padding: 13px 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: background 0.2s;
}
.event-cta-btn:hover { background: var(--teal-dark); }

/* ── WHAT IS The Awareness Club ──────────────────────────────────────────────── */
#about {
  background: var(--gold-pale);
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 50px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--gold);
  margin-bottom: 4px;
}
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--teal);
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 28px 0;
}
.about-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--mid);
}
.pillars { display: flex; flex-direction: column; gap: 14px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border-left: 3px solid var(--teal);
  border-radius: 0 20px 20px 0;
}
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 26px;
}
.pillar-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.pillar-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
}

/* ── PODCAST ──────────────────────────────────────────────────── */
#podcast {
  background: var(--white);
  padding: 100px 0;
}
.podcast-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.podcast-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 50px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1.15;
}
.podcast-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.9;
  max-width: 520px;
  margin-top: 12px;
}
.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 13px 32px;
  font-family: 'Montserrat', sans-serif;
  text-align:center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
  border-radius:30px;
}
.btn-outline:hover { 
    background: var(--teal); color: var(--white); 
      border: 1px solid var(--teal);
}
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ep-card {
  background: var(--gold-pale);
  overflow: hidden;
  transition: transform 0.25s;
  border-radius:20px;
}
.ep-card:hover { transform: translateY(-4px); }
.ep-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:20px;
}
.ep1 { background: linear-gradient(145deg, #0E6A67 0%, #1B4F4E 100%); }
.ep2 { background: linear-gradient(145deg, #1B4F4E 0%, #0E6A67 100%); }
.ep3 { background: linear-gradient(145deg, #0E6A67 0%, #1B4F4E 100%); }
.ep4 { background: linear-gradient(145deg, #1B4F4E 0%, #0E6A67 100%); }
.ep5 { background: linear-gradient(145deg, #0E6A67 0%, #1B4F4E 100%); }
.ep-thumb-content { text-align: center; padding: 24px; }
.ep-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(201,163,74,0.35);
  line-height: 1;
}
.ep-thumb-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(242,231,216,0.8);
  margin-top: 8px;
  line-height: 1.3;
}
.ep-play {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border:2px solid var(--gold);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.ep-card:hover .ep-play { background: var(--gold); transform: scale(1.1); }
.ep-play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 6.5px 0 6.5px 12px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 3px;
}
.ep-body { padding: 20px 22px; }
.ep-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ep-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 9px;
  line-height: 1.3;
}
.ep-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}
.episodes-cta { text-align: center; margin-top: 44px; }

.gold-shimmer-portrait{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    bottom:0;
    right:0;
    left:0;
    z-index:1;
    border-radius:50%;
background:    linear-gradient(180deg, rgba(201, 163, 74, 0) 80%, rgba(201, 163, 74, 0.4) 100%);
}

/* ── PRINCIPLES ───────────────────────────────────────────────── */
#principles {
  background: var(--gold-pale);
  padding: 100px 0;
}
.principles-header { text-align: center; margin-bottom: 56px; }
.principles-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 50px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1.15;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.p-card {
  background: var(--white);
  padding: 32px 28px 28px;
  position: relative;
  border-radius:20px;
}
.p-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  
}
.p-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(201,163,74,0.22);
  line-height: 1;
  margin-bottom: 12px;
}
.p-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.p-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
}

/* ── VISION ───────────────────────────────────────────────────── */
#vision {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 100px 0;
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vision-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 4px;
}
.vision-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  line-height: 2;
  margin-top: 20px;
  max-width: 460px;
}
.stages { display: flex; flex-direction: column; }
.stage {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stage:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.stage-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-on { background: var(--gold); }
.dot-off { background: transparent; border: 1.5px solid rgba(255,255,255,0.25); }
.stage-period {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: 130px;
  flex-shrink: 0;
}
.stage-period-on { color: var(--gold-light); }
.stage-period-off { color: rgba(255,255,255,0.3); }
.stage-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}
.stage-desc-on { color: rgba(255,255,255,0.82); }
.stage-desc-off { color: rgba(255,255,255,0.4); }

/* ── TEAM ─────────────────────────────────────────────────────── */
#team {
  background: var(--white);
  padding: 100px 0;
}
.team-header { margin-bottom: 52px; }
.team-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 50px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1.15;
}
.team-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.9;
  max-width: 520px;
  margin-top: 12px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--teal-light);
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;

}
.team-photo-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--teal-light) 0%, rgba(14,106,103,0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--teal);
  opacity: 0.5;
}
.team-gold-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 6px;
}
.team-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.6;
}
.team-photo img{
  border-radius: 50%;
}

/* ── ELEVATION PATH ───────────────────────────────────────────── */
#elevation {
  background: var(--gold-pale);
  padding: 100px 0;
}
.elevation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.elevation-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 50px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1.15;
}
.elevation-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 2;
  margin-top: 14px;
}
.elevation-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--teal);
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 30px 0;
}
.rhythm-list { display: flex; flex-direction: column; gap: 0; }
.rhythm-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,163,74,0.15);
}
.rhythm-item:first-child { border-top: 1px solid rgba(201,163,74,0.15); }
.rhythm-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  width: 24px;
  flex-shrink: 0;
  text-align: center;
}
.rhythm-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 1px;
  text-transform: uppercase;
  min-width: 150px;
  flex-shrink: 0;
}
.rhythm-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.5;
}

/* ── CTA ──────────────────────────────────────────────────────── */
#cta {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 110px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(14,106,103,0.18) 0%, transparent 70%); */
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  padding: 30px 0 60px 0;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(242,231,216,0.6);
  line-height: 1.9;
  max-width: 460px;
  margin: 0 auto 48px;
  border-radius:30px;
}
.cta-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto 14px;
  gap: 0;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
  background: linear-gradient(180deg, var(--teal-dark) 0%, #1A312E 100%);
  padding: 68px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
  opacity: 1;
  margin-bottom: 14px;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3.5px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius:20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.social-btn:hover { border-color: var(--white); }
.social-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
}
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.40);
}
.footer-legal {
  display: flex;
  gap: 28px;
}
.footer-legal a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.18);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── SUCCESS MESSAGE ──────────────────────────────────────────── */
.form-success {
  display: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold);
  text-align: center;
  padding: 16px 0;
}

.logo-unsubcribe{
  width:300px;
  height:auto;
  margin-bottom:100px;
}
.text-container-unsubscribe{
color:#fff;
}
.text-container-unsubscribe a{
color:#fff;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .about-grid, .vision-grid, .elevation-grid { grid-template-columns: 1fr; gap: 48px; }
  .episodes-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  #nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,163,74,0.18);
  /* NEW */
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.3s;
}

/* Visible state */
#nav.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
  #hero { padding: 0px 24px 72px 24px; }
  .hero-form { flex-direction: column; }
  .hero-input { margin: 0 0 20px 0; text-align:center;}
  .hero-btn { width: 100%; }
  .hero-eyebrow {
  letter-spacing: 2px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 60px);
}
.hero-logo {
  width: 300px;
  height: auto;
  margin-bottom:30px;
}
  #event-banner { flex-direction: column; }
  .event-left { justify-content: center; text-align:center; background: var(--gold);}
  .event-cta-btn { margin: 0 auto; display: block; text-align: center; }
  .event-right {
 text-align:center;
}
.event-badge {
 text-align:center;
}
.event-title {
 text-align:center;
}
.event-details {
 text-align:center;
}
  .episodes-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-form { flex-direction: column; }
  .podcast-header { flex-direction: column; align-items: flex-start; }
.btn-outline{
  display:block;
  width:100%;
  
}

}

/* ── ANIMATIONS ───────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }