/* ============================================================
   OBEDIENT LIVING — Style
   Inspired by: Luminate (agnidesigns)
   Palette: Charcoal · Honey Oak · White · Sage · Bronze
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* --- TOKENS ----------------------------------------------- */
:root {
  --charcoal:    #242220;
  --charcoal-m:  #3A3835;
  --charcoal-l:  #5A5754;
  --honey:       #C49A3C;
  --honey-d:     #A07830;
  --honey-l:     #D4B06A;
  --honey-pale:  #F5ECD4;
  --sage:        #7FA87A;
  --sage-l:      #A8C8A4;
  --sage-pale:   #EBF2E9;
  --bronze:      #8C6B3E;
  --white:       #FAF8F4;
  --white-pure:  #FFFFFF;
  --cream:       #F0E8DC;
  --cream-d:     #E0D4C4;
  --text:        #242220;
  --text-m:      #5A5754;
  --text-l:      #8A8784;
  --border:      rgba(36,34,32,.12);
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;
  --ease:     cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(0,0,.2,1);
}

/* --- RESET ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
#nav.solid {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 80px;
  padding: 0 48px;
  max-width: 1440px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.nav-logo svg { width: 38px; height: 38px; }
.logo-mark {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 50%;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Great Vibes', cursive;
  font-size: 23px;
  color: var(--white);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 3px;
}
.logo-mark-sm { width: 34px; height: 34px; min-width: 34px; font-size: 19px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.show-name {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--white);
  transition: color .35s;
}
.show-sub {
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .35s;
}
#nav.solid .show-name { color: var(--charcoal); }
#nav.solid .show-sub  { color: var(--text-l); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
#nav.solid .nav-links a { color: var(--text-m); }
#nav.solid .nav-links a:hover { color: var(--charcoal); }

.nav-cta {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,.5);
  color: var(--white);
  transition: background .2s, color .2s, border-color .2s;
  display: inline-block;
}
.nav-cta:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
#nav.solid .nav-cta { border-color: var(--charcoal); color: var(--charcoal); }
#nav.solid .nav-cta:hover { background: var(--charcoal); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block; height: 1.5px;
  background: var(--white);
  transition: transform .3s var(--ease), opacity .3s, background .35s;
}
#nav.solid .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  pointer-events: none;
}
.mobile-nav.open { transform: none; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--white);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--honey); }
.mobile-nav .nav-cta {
  font-family: var(--sans);
  font-size: .72rem;
  margin-top: 8px;
}

/* ============================================================
   HERO — Full-screen photo
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.18) 0%,
    rgba(0,0,0,.04) 35%,
    rgba(0,0,0,.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 88px;
  max-width: 880px;
}
.hero-eyebrow {
  display: block;
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--honey-l);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; font-weight: 400; }
.hero-sub {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin: 0 auto 40px;
  letter-spacing: .02em;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,.55), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.35} 50%{opacity:1} }
.hero-scroll-label {
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.btn-honey { background: var(--honey); color: var(--white); border: 1px solid var(--honey); }
.btn-honey:hover { background: var(--honey-d); border-color: var(--honey-d); }
.btn-outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--charcoal); border: 1px solid var(--white); }
.btn-white:hover { background: var(--cream); }
.btn-outline-dark { background: transparent; color: var(--charcoal); border: 1px solid var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-charcoal { background: var(--charcoal); color: var(--white); border: 1px solid var(--charcoal); }
.btn-charcoal:hover { background: var(--charcoal-m); }
.btn-submit {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 13px 28px;
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
  transition: background .2s;
  cursor: pointer;
}
.btn-submit:hover { background: var(--charcoal-m); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--charcoal);
  overflow: hidden;
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.m-item {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
  padding: 0 44px;
}
.m-dot { color: var(--honey); margin-left: 44px; }

/* ============================================================
   PLATFORM STRIP
   ============================================================ */
.platform-strip {
  background: var(--white-pure);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.platform-cards {
  display: flex;
  align-items: stretch;
  border-left: 1px solid var(--border);
}
.platform-card {
  flex: 1;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-right: 1px solid var(--border);
  transition: background .2s;
  cursor: pointer;
}
.platform-card:hover { background: var(--white); }
.p-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.p-label {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-l);
  margin-bottom: 4px;
}
.p-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.p-link {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--honey);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
  display: inline-block;
}
.platform-card:hover .p-link { border-color: var(--honey); }

/* ============================================================
   HOMEPAGE TILES — Luminate style
   ============================================================ */
.tile-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
/* Photo tile */
.tile {
  position: relative;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.tile:hover .tile-bg { transform: scale(1.05); }
.tile-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.65) 100%);
  transition: background .4s;
}
.tile:hover .tile-overlay { background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.75) 100%); }
/* Color tiles */
.tile-charcoal { background: #1C1A18; }
.tile-honey    { background: #1E1408; }
.tile-sage     { background: #131E11; }
.tile-bronze   { background: #1A1008; }
.tile-content { position: relative; z-index: 2; }
.tile-eyebrow {
  display: block;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--honey-l);
  margin-bottom: 12px;
}
.tile-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.tile-title em { font-style: italic; }
.tile-desc {
  font-size: .83rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.68);
  max-width: 360px;
  margin-bottom: 28px;
}
.tile-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 3px;
  transition: border-color .2s, color .2s;
}
.tile:hover .tile-link { color: var(--honey-l); border-color: var(--honey-l); }

/* Full-width tile */
.tile-fw {
  position: relative;
  height: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.tile-fw:hover .tile-bg { transform: scale(1.05); }
.tile-fw .tile-overlay {
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.0) 70%);
}
.tile-fw:hover .tile-overlay {
  background: linear-gradient(90deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.05) 70%);
}
.tile-fw .tile-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 72px;
  position: relative;
  z-index: 2;
}

/* ============================================================
   EMAIL STRIP
   ============================================================ */
#email-strip {
  background: var(--cream);
  padding: 80px 24px;
  text-align: center;
}
.es-eyebrow {
  display: block;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 16px;
}
.es-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.es-sub {
  font-size: .87rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-m);
  max-width: 460px;
  margin: 0 auto 32px;
}
.email-row {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
}
.email-row input {
  flex: 1;
  height: 50px;
  padding: 0 16px;
  font-family: var(--sans);
  font-size: .85rem;
  border: 1px solid var(--cream-d);
  border-right: none;
  background: var(--white-pure);
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
}
.email-row input:focus { border-color: var(--charcoal); }
.email-row button {
  height: 50px;
  padding: 0 22px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
  transition: background .2s;
  cursor: pointer;
}
.email-row button:hover { background: var(--charcoal-m); }
.email-row button:disabled { opacity: .5; }
.email-success-msg { display:none; font-size:.85rem; color:var(--sage); margin-top:16px; letter-spacing:.04em; }
.email-success-msg.show { display:block; }
.es-note { font-size: .68rem; color: var(--text-l); margin-top: 12px; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.7) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 64px 56px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.page-eyebrow {
  display: block;
  font-size: .62rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--honey-l); margin-bottom: 14px;
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.1;
  color: var(--white);
}
.page-title em { font-style: italic; }

/* ============================================================
   SHARED LAYOUT
   ============================================================ */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 96px 0; }
.s-eyebrow {
  display: block;
  font-size: .62rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--honey); margin-bottom: 14px;
}
.s-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.2;
  color: var(--charcoal); margin-bottom: 20px;
}
.s-title em { font-style: italic; }
.s-body {
  font-size: .9rem; font-weight: 300;
  line-height: 1.88; color: var(--text-m);
  max-width: 620px;
}
.divider { width: 36px; height: 1px; background: var(--honey); margin: 20px 0; }

/* About layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.about-photo-col { position: relative; overflow: hidden; }
.about-photo-col img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-text-col {
  background: var(--white);
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-name {
  font-family: var(--serif);
  font-size: 1.05rem; font-style: italic;
  color: var(--bronze); margin-bottom: 20px;
}
.about-pull {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 400;
  line-height: 1.55; color: var(--charcoal); margin-bottom: 24px;
}
.about-body {
  font-size: .87rem; font-weight: 300;
  line-height: 1.9; color: var(--text-m); margin-bottom: 16px;
}
.social-row { display: flex; gap: 10px; margin-top: 24px; }
.soc {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-m);
  transition: background .2s, color .2s, border-color .2s;
}
.soc:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.soc svg { width: 15px; height: 15px; }

/* Episodes */
.ep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.ep-card {
  background: var(--white-pure);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .3s;
}
.ep-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.ep-thumb {
  position: relative; aspect-ratio: 16/9;
  background: var(--charcoal); overflow: hidden;
}
.ep-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.ep-viral-flag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: .58rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  background: var(--honey); color: var(--white); padding: 4px 10px;
}
.ep-body { padding: 24px; }
.ep-guest {
  display: block;
  font-size: .62rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--honey); margin-bottom: 8px;
}
.ep-title {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 500; line-height: 1.3;
  color: var(--charcoal); margin-bottom: 10px;
}
.ep-desc { font-size: .82rem; line-height: 1.7; color: var(--text-m); margin-bottom: 18px; }
.ep-link {
  font-size: .65rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--charcoal); border-bottom: 1px solid var(--charcoal); padding-bottom: 2px;
  display: inline-block; transition: color .2s, border-color .2s;
}
.ep-link:hover { color: var(--honey); border-color: var(--honey); }

/* Discipleship */
.disc-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px; align-items: start;
}
.scripture-pull {
  font-family: var(--serif);
  font-size: 1.3rem; font-style: italic; font-weight: 400;
  line-height: 1.65; color: var(--charcoal);
  padding: 28px 0 28px 28px;
  border-left: 2px solid var(--honey);
  margin: 28px 0;
}
.scripture-cite {
  display: block;
  font-family: var(--sans);
  font-size: .65rem; font-style: normal; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--honey); margin-top: 12px;
}
.radio-stack { display: flex; flex-direction: column; gap: 2px; margin-bottom: 24px; }
.radio-opt {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color .2s;
  background: var(--white-pure);
}
.radio-opt:hover { border-color: var(--charcoal); }
.radio-opt input[type="radio"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--honey); }
.radio-label { display: block; font-size: .85rem; font-weight: 500; color: var(--charcoal); margin-bottom: 3px; }
.radio-desc  { display: block; font-size: .78rem; color: var(--text-m); font-weight: 300; }

/* Forms */
.form-card { background: var(--white-pure); border: 1px solid var(--border); padding: 40px; width: 100%; box-sizing: border-box; display: block; }
.form-card-title {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 500; color: var(--charcoal); margin-bottom: 4px;
}
.form-card-sub { display: block; font-size: .8rem; color: var(--text-m); margin-bottom: 28px; }
.fg { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f { display: flex; flex-direction: column; gap: 6px; }
.f.full { grid-column: 1 / -1; }
.f label { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal); }
.f input, .f textarea, .f select {
  font-family: var(--sans); font-size: .85rem; font-weight: 300;
  padding: 11px 14px; border: 1px solid var(--border);
  background: var(--white); color: var(--text);
  outline: none; transition: border-color .2s;
  appearance: none; border-radius: 0;
  width: 100%; max-width: 100%; box-sizing: border-box;
}
.f { min-width: 0; }
.fg { width: 100%; }
.f input:focus, .f textarea:focus, .f select:focus { border-color: var(--charcoal); }
.f textarea { resize: none; min-height: 100px; width: 100%; max-width: 100%; box-sizing: border-box; }
.f .note { font-size: .7rem; color: var(--text-l); margin-top: 4px; }
.form-foot { display: flex; align-items: center; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.priv { font-size: .7rem; color: var(--text-l); font-style: italic; }
.f-success {
  display: none; text-align: center; padding: 40px 24px;
  background: var(--sage-pale); border: 1px solid var(--sage-l);
}
.f-success.show { display: block; }
.f-success .icon { font-size: 1.8rem; margin-bottom: 12px; }
.f-success h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--charcoal); margin-bottom: 10px; }
.f-success p { font-size: .85rem; color: var(--text-m); line-height: 1.75; }

/* Tabs */
.tab-row { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.tab-btn {
  font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 28px; color: var(--text-m);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .2s, border-color .2s; white-space: nowrap;
}
.tab-btn:hover { color: var(--charcoal); }
.tab-btn.active { color: var(--charcoal); border-bottom-color: var(--charcoal); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Sponsors */
.stat-row { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 2.5rem; }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--charcoal); }
.stat-label { display: block; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-l); margin-top: 4px; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.value-block { padding: 2rem; border: 1px solid rgba(255,255,255,.1); border-radius: 4px; }
.value-block h4 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: .6rem; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.tier-card { background: var(--white); padding: 48px 36px; }
.tier-featured { background: var(--charcoal); }
.tier-featured .tier-name { color: var(--honey-l); }
.tier-featured .tier-price { color: var(--white); }
.tier-featured .tier-list li { color: var(--cream-d); }
.tier-badge { display: inline-block; font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-bottom: 16px; }
.tier-icon { margin-bottom: 18px; }
.tier-icon svg { width: 28px; height: 28px; }
.tier-name { font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--honey); margin-bottom: 8px; }
.tier-price { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; color: var(--charcoal); line-height: 1; }
.tier-per { font-size: .7rem; color: var(--text-l); margin: 4px 0 20px; }
.tier-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.tier-list li { font-size: .82rem; font-weight: 300; color: var(--text-m); padding-left: 16px; position: relative; line-height: 1.5; }
.tier-list li::before { content: '—'; position: absolute; left: 0; color: var(--honey); font-size: .75rem; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0; font-family: var(--serif); font-size: 1rem; font-weight: 500;
  color: var(--charcoal); text-align: left; cursor: pointer; transition: color .2s;
}
.faq-q:hover { color: var(--honey); }
.faq-plus { font-size: 1.3rem; font-weight: 300; color: var(--honey); flex-shrink: 0; transition: transform .3s var(--ease); line-height: 1; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a {
  font-size: .87rem; font-weight: 300; line-height: 1.85; color: var(--text-m);
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--charcoal); padding: 72px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer-tagline {
  font-size: .82rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,.45); margin-top: 16px; max-width: 270px;
}
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.f-soc {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.45);
  transition: background .2s, color .2s, border-color .2s;
}
.f-soc:hover { background: var(--honey); color: var(--white); border-color: var(--honey); }
.f-soc svg { width: 14px; height: 14px; }
.footer-col h4 {
  font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col li a:hover { color: var(--white); }
.footer-bot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 26px; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: .7rem; color: rgba(255,255,255,.28); letter-spacing: .04em; }
.footer-verse { font-family: var(--serif); font-size: .8rem; font-style: italic; color: var(--honey); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { gap: 20px; display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .tile-fw { grid-template-columns: 1fr; height: 480px; }
  .tile-fw .tile-overlay { background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.7) 100%); }
  .tile-fw .tile-content { padding: 44px 44px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-text-col { padding: 56px 48px; }
  .disc-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tier-grid { grid-template-columns: 1fr; gap: 0; }
  .ep-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }
  .tile-grid-2 { grid-template-columns: 1fr; }
  .tile { height: 420px; padding: 32px; }
  .hero-content { padding: 0 24px 64px; }
  .footer-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 24px; }
  .page-hero-content { padding: 0 24px 40px; }
  .fg { grid-template-columns: 1fr; }
  .ep-grid { grid-template-columns: 1fr; }
  #email-strip { padding: 60px 24px; }
  .footer-bot { flex-direction: column; align-items: flex-start; }
  .platform-cards { flex-direction: column; }
  .platform-card { border-right: none; border-bottom: 1px solid var(--border); }
}
