/* ============================================================
   EVERY 15 — Bible App Landing Page
   Brand: Gold #D09B20 | Navy #1B2B5E | White | Warm paper
   Type: Playfair Display (display) + Inter (body)
   Signature: The "15 pulse" — a gold clock-ring motif that
   recurs as a visual heartbeat across every section.
   ============================================================ */

/* ---- Design tokens ---- */
:root {
  --gold:        #D09B20;
  --gold-light:  #E8AE2A;
  --gold-pale:   #FDF3DC;
  --gold-border: rgba(208, 155, 32, 0.25);
  --navy:        #1B2B5E;
  --navy-deep:   #0F1A3A;
  --navy-mid:    #243575;
  --white:       #FFFFFF;
  --paper:       #FAF8F4;
  --paper-2:     #F3EFE7;
  --ink:         #1A1A1A;
  --muted:       #6B6253;
  --light-text:  #C8C0B0;
  --line:        #E5DDD0;
  --line-dark:   rgba(255, 255, 255, 0.14);
  --maxw:        1160px;
  --radius:      14px;
  --shadow:      0 24px 60px -20px rgba(27, 43, 94, 0.22);
  --gold-shadow: 0 12px 40px -10px rgba(208, 155, 32, 0.35);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
}

/* ---- Layout wrapper ---- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.8rem;
}

/* ============================================================
   SHARED TYPOGRAPHY
   ============================================================ */

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.eyebrow--light {
  color: var(--gold-light);
}

.eyebrow--center {
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.08;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  color: var(--navy);
}

.section-title--white {
  color: #fff;
}

.section-title--center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 58ch;
  margin-top: 1rem;
  line-height: 1.8;
}

.section-lead--light {
  color: var(--light-text);
}

.section-lead--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: 0.03em;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease,
              border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--gold-shadow);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 50px -10px rgba(208, 155, 32, 0.5);
}

.btn--navy {
  background: var(--navy);
  color: #fff;
}

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

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

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

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

/* ============================================================
   SECTION BLOCKS — background variants
   ============================================================ */

.block {
  padding: 5.5rem 0;
}

.block--white {
  background: var(--white);
}

.block--paper {
  background: var(--paper);
}

.block--paper-2 {
  background: var(--paper-2);
}

.block--navy {
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color: #fff;
}

.block--white + .block--white,
.block--paper + .block--paper,
.block--paper-2 + .block--paper-2 {
  border-top: 1px solid var(--line);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.8rem 1.8rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.nav-logo__img {
  height: 48px;
  width: auto;
}

.nav-logo__name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-logo__name-accent {
  color: var(--gold);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-links__item a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.nav-links__item a:hover {
  color: var(--gold);
}

.nav-links__item--support a {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links__item--support a:hover {
  background: var(--gold);
  color: #fff;
}

.nav-links__item--cta a {
  background: var(--gold);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 0.88rem;
}

.nav-links__item--cta a:hover {
  background: var(--gold-light);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle__bar {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  display: block;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: #fff;
  overflow: hidden;
  padding: 5.5rem 0 5rem;
}

.hero__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(208, 155, 32, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208, 155, 32, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 85% 80% at 75% 40%, #000 20%, transparent 75%);
}

.hero__ring {
  position: absolute;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 2px solid rgba(208, 155, 32, 0.18);
  pointer-events: none;
}

.hero__ring::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(208, 155, 32, 0.12);
}

.hero__ring::after {
  content: '';
  position: absolute;
  inset: 100px;
  border-radius: 50%;
  border: 1px solid rgba(208, 155, 32, 0.08);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero__headline-accent {
  color: var(--gold-light);
  font-style: italic;
}

.hero__sub {
  color: var(--light-text);
  font-size: 1.15rem;
  max-width: 50ch;
  margin: 1.6rem 0 2.2rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 1.4rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
}

.hero__stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-top: 0.2rem;
  display: block;
}

/* Phone mockup stack */
.hero__phones {
  position: relative;
  height: 520px;
}

.phone-frame {
  background: #fff;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15);
  position: absolute;
}

.phone-frame--main {
  width: 240px;
  height: 490px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-frame--back {
  width: 210px;
  height: 430px;
  bottom: 20px;
  left: calc(50% + 90px);
  z-index: 2;
  opacity: 0.85;
  transform: rotate(5deg);
}

.phone-frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ============================================================
   MARQUEE BAND
   ============================================================ */

.marquee-band {
  background: var(--gold);
  padding: 0.7rem 0;
  overflow: hidden;
}

.marquee-band__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee-band__item {
  font-family: 'Playfair Display SC', serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.marquee-band__item::before {
  content: '•';
  margin-right: 2.5rem;
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

/* ============================================================
   SMITH WIGGLESWORTH SECTION
   ============================================================ */

.smith {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.smith__photo-wrap {
  position: relative;
}

.smith__photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.smith__photo-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  filter: sepia(0.2) contrast(1.05);
}

.smith__photo-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--gold);
  color: #fff;
  border-radius: 12px;
  padding: 1rem 1.3rem;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
  box-shadow: var(--gold-shadow);
  text-align: center;
}

.smith__photo-badge-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.15rem;
}

.smith__content {
  padding-left: 1rem;
}

.smith__body-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.smith__body-text + .smith__body-text {
  margin-top: 1rem;
}

.smith__quote {
  margin: 1.8rem 0;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--gold);
  background: var(--gold-pale);
  border-radius: 0 12px 12px 0;
}

.smith__quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.12rem;
  color: var(--navy);
  line-height: 1.7;
}

.smith__quote-cite {
  display: block;
  margin-top: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.smith__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}

.smith__fact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}

.smith__fact-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.smith__fact-label {
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   QUOTE BAND
   ============================================================ */

.quote-band {
  text-align: center;
  padding: 5rem 0;
}

.quote-band__logo {
  height: 60px;
  width: auto;
  margin: 0 auto 1.5rem;
  opacity: 0.85;
}

.quote-band__blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--navy);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.55;
  position: relative;
  padding: 0 2rem;
}

.quote-band__blockquote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  font-family: 'Playfair Display', serif;
  position: absolute;
  left: -0.5rem;
  top: -1.5rem;
  line-height: 1;
}

.quote-band__cite {
  display: block;
  margin-top: 1.4rem;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   MISSION SECTION
   ============================================================ */

.mission {
  text-align: center;
}

.mission__wrap {
  position: relative;
  padding: 5rem 0;
}

.mission__bg-number {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(6rem, 16vw, 12rem);
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: -0.05em;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.mission__content {
  position: relative;
  z-index: 2;
}

.mission__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
  text-align: left;
}

.mission__card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mission__card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

.mission__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(208, 155, 32, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.mission__card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission__card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.mission__card-body {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.7;
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
  counter-reset: steps;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  counter-increment: steps;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step::before {
  content: counter(steps);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--gold-pale);
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
}

.step__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step__body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   APP FEATURE ROWS
   ============================================================ */

.features-intro {
  text-align: center;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 5rem;
}

.feature-row--reverse {
  direction: rtl;
}

.feature-row--reverse > * {
  direction: ltr;
}

.feature-row__media {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: flex-start;
}

.feature-phone {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 200px;
  flex-shrink: 0;
}

.feature-phone--wide {
  width: 220px;
}

.feature-phone--mid {
  align-self: center;
}

.feature-phone__img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}

.feature-row__eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.feature-row__title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 0.9rem;
  line-height: 1.15;
}

.feature-row__body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.feature-row__list {
  list-style: none;
  margin-top: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.feature-row__list-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink);
}

.feature-row__list-item::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9900C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ============================================================
   DOWNLOAD SECTION
   ============================================================ */

.download {
  text-align: center;
}

.download__row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.download__note {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1.6rem;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 16px -6px rgba(0, 0, 0, 0.12);
}

.store-btn:hover {
  box-shadow: 0 8px 28px -6px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.store-btn__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-btn__text {
  text-align: left;
}

.store-btn__sub {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.store-btn__name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--navy);
  line-height: 1.1;
}

/* ============================================================
   PLEDGE / SIGN-UP SECTION
   ============================================================ */

.pledge__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.pledge__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.pledge__headline-accent {
  font-style: italic;
  color: var(--gold-light);
}

.pledge__body {
  color: var(--light-text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.pledge__commitments {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.pledge__commitment-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--light-text);
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
}

.pledge__commitment-item::before {
  content: '✦';
  color: var(--gold-light);
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 2px;
}

/* Honeypot — visually hidden, only bots fill this in */
.pledge__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}


.pledge__form-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 2.4rem 2rem;
}

.pledge__form-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.8rem;
  text-align: center;
}

.pledge__form-title-accent {
  color: var(--gold-light);
}

.pledge__count-bar {
  text-align: center;
  margin-bottom: 1.6rem;
  padding: 0.8rem;
  background: rgba(208, 155, 32, 0.12);
  border: 1px solid rgba(208, 155, 32, 0.25);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.field {
  margin-bottom: 1.1rem;
}

.field__label {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.45rem;
}

.field__input,
.field__select,
.field__textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
}

.field__input::placeholder,
.field__textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  outline: 2px solid var(--gold-light);
  outline-offset: 1px;
  border-color: transparent;
}

.field__select option {
  background: var(--navy);
  color: #fff;
}

.pledge__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1.3rem 0 1.6rem;
  cursor: pointer;
}

.pledge__checkbox-input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}

.pledge__checkbox-text {
  font-size: 0.9rem;
  color: var(--light-text);
  line-height: 1.6;
}

.pledge__note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: 0.8rem;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy-deep);
  color: var(--light-text);
  padding: 3rem 0;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-footer__logo-img {
  height: 40px;
  width: auto;
  opacity: 0.85;
}

.site-footer__logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__links {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 500;
}

.site-footer__links a {
  color: var(--light-text);
}

.site-footer__links a:hover {
  color: var(--gold-light);
}

.site-footer__copy {
  font-size: 0.82rem;
  opacity: 0.55;
  text-align: center;
  margin-top: 1.6rem;
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================================ */

@media (max-width: 900px) {

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

  .hero__phones {
    height: 340px;
  }

  .phone-frame--main {
    width: 180px;
    height: 365px;
    left: 50%;
    transform: translateX(-50%);
  }

  .phone-frame--back {
    display: none;
  }

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

  .smith__photo-img {
    height: 380px;
  }

  .smith__photo-badge {
    right: 1rem;
    bottom: -14px;
  }

  .smith__content {
    padding-left: 0;
  }

  .smith__facts {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .feature-row {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .feature-row--reverse {
    direction: ltr;
  }

  .feature-row--reverse > * {
    direction: ltr;
  }

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

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

}

/* ============================================================
   RESPONSIVE — Mobile (≤ 600px)
   ============================================================ */

@media (max-width: 600px) {

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

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

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

  .nav-links {
    display: none;
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 1.8rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid var(--line);
    z-index: 99;
  }

  .nav-toggle {
    display: flex;
  }

  .hero__stats {
    gap: 0.8rem;
  }

}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */

.thankyou__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}

.thankyou__icon {
  font-size: 3.5rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: block;
  animation: pulse-star 2s ease-in-out infinite;
}

@keyframes pulse-star {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.2); opacity: 0.75; }
}

.thankyou__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.4rem;
}

.thankyou__body {
  color: var(--light-text);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.thankyou__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================================
   SUPPORT SECTION
   ============================================================ */

.support__inner {
  max-width: var(--maxw);
}

.support__text {
  margin-bottom: 3rem;
}

.support__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.support__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.support__card--featured {
  border-top: 4px solid var(--gold);
}

.support__card-number {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.support__card--featured .support__card-number {
  color: var(--gold);
  opacity: 0.35;
}

.support__card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.7rem;
}

.support__card-body {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.support__card-coming-soon {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1.5px solid var(--gold-border);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  margin-top: 0.4rem;
}

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