/* =========================================================================
   Morris Gargar — Speak Life & Purpose
   Design system inspired by the "Lyfpro" motivational-speaker template:
   deep navy + signature red, Rajdhani display + Source Sans body.
   ========================================================================= */

/* ---- Tokens ---------------------------------------------------------- */
:root {
  --navy:        #222d35;   /* primary dark            */
  --navy-900:    #19222a;   /* darker panels / footer  */
  --navy-700:    #2d3a44;   /* raised surfaces on dark */
  --red:         #ff4612;   /* signature accent (Everlead orange) */
  --red-dark:    #e23600;   /* hover                   */
  --white:       #ffffff;
  --off:         #f5f6f7;   /* alt section background  */
  --off-2:       #eceef0;   /* borders on light        */
  --ink:         #222d35;   /* headings on light       */
  --body:        #5f6b73;   /* body copy               */
  --muted:       #93a1ab;   /* captions / meta         */
  --line:        #e4e7ea;   /* hairlines               */
  --gold:        #e0a83d;   /* stars / small warmth    */

  --font-display: 'Rajdhani', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Source Sans Pro', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 4px 14px rgba(34, 45, 53, .08);
  --shadow-md: 0 14px 40px rgba(34, 45, 53, .12);
  --shadow-red: 0 12px 26px rgba(210, 63, 81, .30);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---- Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--red-dark); }
ul { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p  { margin: 0 0 1.1rem; }

/* ---- Layout helpers -------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.bg-off   { background: var(--off); }
.bg-navy  { background: var(--navy); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }
.bg-navy p { color: #b7c2cb; }
.text-center { text-align: center; }

/* Section heading block */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .82rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--red); display: inline-block; }
.section-head { max-width: 680px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p { font-size: 1.08rem; }
.lead { font-size: 1.2rem; color: var(--body); }

/* ---- Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #10171d; color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ---- Navbar ---------------------------------------------------------- */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255,255,255,0);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding: 18px 0;
}
.navbar.solid { background: #fff; box-shadow: 0 6px 24px rgba(0,0,0,.07); padding: 12px 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  color: var(--navy); letter-spacing: .5px; text-transform: uppercase;
}
.brand .name b { color: var(--red); }
.brand .tag { font-size: .68rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
/* On the transparent hero, brand text is light until scrolled */
.navbar:not(.solid) .brand .name { color: #fff; }
.navbar:not(.solid) .brand .tag  { color: rgba(255,255,255,.75); }

.nav-menu { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-menu a {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .8px; font-size: .96rem; color: var(--navy); position: relative; padding: 4px 0;
}
.navbar:not(.solid) .nav-menu a { color: #fff; }
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--red); transition: width .25s var(--ease);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: var(--red); }
.navbar:not(.solid) .nav-menu a:hover, .navbar:not(.solid) .nav-menu a.active { color: #fff; }
.nav-cta { margin-left: 6px; }
.nav-menu .nav-cta a, .nav-menu a.btn { color: #fff; }
.nav-menu a.btn::after { display: none; }

.nav-toggle {
  display: none; background: none; border: 0; width: 42px; height: 42px;
  flex-direction: column; justify-content: center; gap: 6px; padding: 0;
}
.nav-toggle span { display: block; height: 3px; width: 26px; background: var(--navy); border-radius: 2px; transition: .3s var(--ease); }
.navbar:not(.solid) .nav-toggle span { background: #fff; }
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---- Hero ------------------------------------------------------------ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(23,32,40,.80) 0%, rgba(23,32,40,.52) 44%, rgba(23,32,40,.16) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 60px; }
.hero-inner { max-width: 760px; }
.hero .eyebrow { color: #ff96a3; }
.hero .eyebrow::before { background: #ff96a3; }
.hero h1 { color: #fff; margin-bottom: 22px; text-shadow: 0 2px 24px rgba(16,22,27,.45); }
.hero-sub { font-size: 1.3rem; color: #eef2f5; max-width: 620px; margin-bottom: 18px; text-shadow: 0 1px 16px rgba(16,22,27,.4); }
.hero-scripture {
  border-left: 3px solid var(--red); padding-left: 18px; margin: 26px 0 32px;
  font-style: italic; color: #e6ebef; max-width: 560px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,.7); font-size: .8rem; letter-spacing: 2px; text-transform: uppercase;
  font-family: var(--font-display); text-align: center;
}
.hero-scroll span { display: block; width: 1px; height: 40px; background: rgba(255,255,255,.4); margin: 8px auto 0; animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%,100%{opacity:.2;transform:scaleY(.4)} 50%{opacity:1;transform:scaleY(1)} }

/* Page hero (interior pages) */
.page-hero {
  position: relative; padding: 190px 0 90px; color: #fff; text-align: center;
  background: var(--navy); overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 78% 15%, rgba(255,70,18,.42), transparent 45%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #c4cdd4; max-width: 620px; margin: 0 auto; font-size: 1.15rem; }
.crumbs { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1.5px; font-size: .85rem; color: #9fb0bb; margin-top: 18px; }
.crumbs a { color: #fff; }
.crumbs span { color: var(--red); margin: 0 8px; }

/* ---- Stats ----------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-display); font-weight: 700; font-size: 3.2rem; line-height: 1;
  color: #fff; display: flex; justify-content: center; align-items: baseline; gap: 2px;
}
.stat .num .suffix { color: var(--red); }
.bg-off .stat .num { color: var(--navy); }
.stat .label { text-transform: uppercase; letter-spacing: 1.5px; font-size: .9rem; color: #9fb0bb; margin-top: 8px; font-family: var(--font-display); font-weight: 600; }
.bg-off .stat .label { color: var(--muted); }

/* ---- Cards ----------------------------------------------------------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 32px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: var(--red);
  transition: width .35s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { width: 100%; }
.card .card-icon {
  width: 64px; height: 64px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.7rem; background: rgba(255,70,18,.08); color: var(--red); margin-bottom: 22px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.card:hover .card-icon { background: var(--red); color: #fff; }
.card h4 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { margin-bottom: 16px; font-size: 1rem; }
.card .card-link {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  font-size: .9rem; color: var(--navy); display: inline-flex; align-items: center; gap: 6px;
}
.card .card-link:hover { color: var(--red); gap: 12px; }
.card--num { padding-top: 46px; }
.card .card-num {
  position: absolute; top: 24px; right: 28px; font-family: var(--font-display); font-weight: 700;
  font-size: 2.6rem; color: var(--off-2); line-height: 1;
}

/* Numbered process list */
.numbered { display: grid; gap: 22px; }
.numbered .item { display: flex; gap: 20px; align-items: flex-start; }
.numbered .n {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #fff; background: var(--red);
}
.numbered h4 { margin-bottom: 4px; }

/* ---- Split (image + text) ------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split-media.framed::before {
  content: ""; position: absolute; inset: -18px -18px auto auto; width: 60%; height: 70%;
  border: 3px solid var(--red); border-radius: var(--radius-lg); z-index: -1;
}
.media-badge {
  position: absolute; left: -24px; bottom: 28px; background: var(--red); color: #fff;
  padding: 20px 26px; border-radius: var(--radius); box-shadow: var(--shadow-red);
}
.media-badge .b-num { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; line-height: 1; }
.media-badge .b-txt { font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }

/* Check-mark list */
.checks { list-style: none; display: grid; gap: 14px; margin: 22px 0; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks li::before {
  content: "✓"; flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,70,18,.1); color: var(--red); display: grid; place-items: center;
  font-weight: 700; font-size: .85rem; margin-top: 2px;
}
.bg-navy .checks li { color: #cdd6dc; }

/* Value item */
.value { display: flex; gap: 16px; align-items: flex-start; }
.value .v-ico { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; background: var(--navy); color: #fff; display: grid; place-items: center; font-size: 1.2rem; }
.value h4 { margin-bottom: 4px; font-size: 1.15rem; }
.value p { font-size: .98rem; margin: 0; }

/* ---- Testimonials ---------------------------------------------------- */
.quote-card {
  background: #fff; border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); position: relative;
}
.quote-card .mark { font-family: var(--font-display); font-size: 4rem; line-height: .6; color: var(--red); opacity: .18; margin-bottom: 6px; }
.quote-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.quote-card blockquote { margin: 0 0 20px; font-size: 1.06rem; color: #4a555d; font-style: italic; }
.who { display: flex; align-items: center; gap: 14px; }
.who .avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; background: var(--off-2); }
.who .avatar.mono { display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; background: var(--navy); }
.who .who-name { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.who .who-role { font-size: .85rem; color: var(--muted); }

/* ---- CTA band -------------------------------------------------------- */
.cta-band { position: relative; background: var(--red); color: #fff; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.14), transparent 40%); }
.cta-band .container { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.9); margin: 0; max-width: 560px; }
.cta-band .btn-white { background: #fff; color: var(--red); }
.cta-band .btn-white:hover { background: var(--navy); color: #fff; }

/* Scripture strip */
.scripture-strip { text-align: center; }
.scripture-strip .verse {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  color: #fff; line-height: 1.3; max-width: 900px; margin: 0 auto 14px;
}
.scripture-strip .ref { color: var(--red); text-transform: uppercase; letter-spacing: 2px; font-family: var(--font-display); font-weight: 700; }
.bg-off .scripture-strip .verse { color: var(--navy); }

/* ---- Forms ----------------------------------------------------------- */
.form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 44px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; font-size: .82rem; color: var(--navy); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fbfbfc;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,70,18,.12); background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: .9rem; color: var(--muted); }
.form-status { display: none; margin-top: 14px; padding: 14px 18px; border-radius: var(--radius); background: rgba(22,140,70,.07); border: 1px solid rgba(22,140,70,.30); color: #14804a; font-weight: 600; }
.form-status.show { display: block; }
.form-status.error { background: rgba(255,70,18,.07); border-color: rgba(255,70,18,.32); color: var(--red-dark); }

/* Service selector tiles */
.select-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 8px; }
.select-tile {
  border: 1.5px solid var(--line); border-radius: var(--radius); padding: 16px 18px; cursor: pointer;
  transition: .2s var(--ease); background: #fff;
}
.select-tile:hover { border-color: var(--red); }
.select-tile.active { border-color: var(--red); background: rgba(255,70,18,.04); box-shadow: inset 0 0 0 1px var(--red); }
.select-tile .st-title { font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.select-tile .st-meta { font-size: .85rem; color: var(--muted); }

/* Info tiles (contact) */
.info-tile { text-align: center; padding: 34px 24px; background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); transition:.3s var(--ease); }
.info-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.info-tile .i-ico { width:60px;height:60px;border-radius:50%;background:var(--navy);color:#fff;display:grid;place-items:center;margin:0 auto 16px;font-size:1.4rem; }
.info-tile h4 { margin-bottom:6px; }
.info-tile p { margin:0; font-size:.98rem; }

/* FAQ / accordion */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 40px 22px 0; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--navy); }
.faq-q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--red); transition: transform .3s var(--ease); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding-bottom: 22px; margin: 0; }

/* Filter chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 44px; }
.chip {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  font-size: .9rem; padding: 9px 22px; border-radius: 30px; border: 1.5px solid var(--line);
  background: #fff; color: var(--navy); transition: .2s var(--ease);
}
.chip:hover { border-color: var(--red); color: var(--red); }
.chip.active { background: var(--red); border-color: var(--red); color: #fff; }

/* Sermon cards */
.sermon { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); overflow:hidden; transition:.3s var(--ease); }
.sermon:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.sermon .thumb { position:relative; aspect-ratio: 16/10; background: linear-gradient(135deg,var(--navy),var(--navy-700)); display:grid; place-items:center; }
.sermon .thumb .play { width:64px;height:64px;border-radius:50%;background:var(--red);color:#fff;display:grid;place-items:center;font-size:1.3rem;box-shadow:var(--shadow-red);transition:.3s var(--ease); }
.sermon:hover .thumb .play { transform: scale(1.1); }
.sermon .thumb .tag { position:absolute; top:14px; left:14px; background:var(--red); color:#fff; font-family:var(--font-display); font-weight:600; text-transform:uppercase; letter-spacing:1px; font-size:.72rem; padding:5px 12px; border-radius:4px; }
.sermon .s-body { padding: 24px; }
.sermon .s-meta { font-size:.82rem; color:var(--muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:8px; font-family:var(--font-display); font-weight:600; }
.sermon h4 { margin-bottom: 8px; }
.sermon p { font-size:.96rem; margin-bottom: 0; }

/* ---- Footer ---------------------------------------------------------- */
.footer { background: var(--navy-900); color: #9fb0bb; padding: 76px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 54px; }
.footer h4 { color: #fff; font-size: 1.15rem; margin-bottom: 20px; }
.footer .f-brand .name { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color:#fff; text-transform: uppercase; }
.footer .f-brand .name b { color: var(--red); }
.footer p { font-size: .96rem; color: #8fa1ac; }
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a { color: #9fb0bb; font-size: .98rem; }
.footer ul a:hover { color: #fff; padding-left: 4px; }
.footer .socials { display: flex; gap: 12px; margin-top: 8px; }
.footer .socials a {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy-700); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; transition: .25s var(--ease);
}
.footer .socials a:hover { background: var(--red); transform: translateY(-3px); }
.footer .f-scripture { font-style: italic; border-left: 3px solid var(--red); padding-left: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; text-align: center; font-size: .88rem; color: #6f818d; }
.footer-bottom a { color: #9fb0bb; }

/* ---- Reveal animation ------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

/* ---- Responsive ------------------------------------------------------ */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .media-badge { left: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); background: #fff;
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 100px 32px 40px; gap: 22px; transform: translateX(100%); transition: transform .35s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,.2); z-index: 90;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a, .navbar:not(.solid) .nav-menu a { color: var(--navy); font-size: 1.05rem; }
  .nav-menu a.btn, .navbar:not(.solid) .nav-menu a.btn { color:#fff; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(16,22,27,.5); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); z-index: 80; }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .select-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .hero-sub { font-size: 1.15rem; }
  .form-card { padding: 28px 22px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   Split hero — white background, photo beside the content (Everlead-inspired)
   ========================================================================= */
.hero--split { min-height: 90vh; background: #fff; color: var(--ink); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; width: 100%; }
.hero-content .eyebrow { color: var(--red); margin-bottom: 16px; }
.hero-content .eyebrow::before { background: var(--red); }
.hero--split h1 { color: var(--ink); text-shadow: none; margin-bottom: 22px; }
.hero-lead { font-size: 1.2rem; line-height: 1.6; color: var(--body); max-width: 520px; margin-bottom: 30px; }
.hero-content .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-socials { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.hero-socials .hs-label { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: .78rem; color: var(--muted); margin-right: 4px; }
.hero-socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid var(--line); color: var(--navy);
  font-family: var(--font-display); font-weight: 700; font-size: .9rem;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.hero-socials a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 16%;
  border-radius: 12px; box-shadow: var(--shadow-md); position: relative; z-index: 1;
}
.hero-photo::before { content: ""; position: absolute; right: -18px; top: -18px; width: 58%; height: 52%; border: 3px solid var(--red); border-radius: 12px; z-index: 0; }
/* Personal Brand card floating over the photo (the "side" placement) */
.brand-card {
  position: absolute; left: -30px; bottom: 34px; z-index: 3;
  max-width: 320px; background: #fff; border-radius: 10px;
  padding: 22px 24px; box-shadow: 0 24px 60px rgba(20,28,34,.20);
  border-left: 4px solid var(--red);
}
.brand-card .bc-label {
  display: block; font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; font-size: .78rem;
  color: var(--red); margin-bottom: 8px;
}
.brand-card p { margin: 0; font-size: .98rem; line-height: 1.55; color: var(--navy); }

@media (max-width: 992px) {
  .hero--split { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-photo { order: 2; max-width: 430px; margin: 0 auto; }
  .hero-photo::before { right: -12px; top: -12px; }
  .brand-card { position: static; max-width: none; margin: 18px auto 0; left: auto; bottom: auto; }
}
@media (max-width: 768px) {
  .hero-lead { font-size: 1.08rem; }
}
