/* ============================================================
   GODISM CHURCH — Style
   Design system modelled on the Spaciaz theme (gosgroupinc.com)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --primary: #FB923C;
  --primary-hover: #F97316;
  --text: #4B4B4B;
  --text-light: #8A8A8A;
  --border: #E0E0E0;
  --accent: #000000;
  --background: #FFFFFF;
  --background-light: #F6F3EC;
  --white: #ffffff;
  --dark: #000000;
  --dark-2: #0e0e10;
  --container: 1320px;
  --gutter: 30px;
  --radius: 30px;
  --font-heading: "Involve", "Archivo", "Arial Narrow", sans-serif;
  --font-body: "Switzer", "Inter", system-ui, sans-serif;
  --shadow-soft: 0 30px 60px rgba(0, 0, 0, 0.06);
  --transition: 0.3s ease;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--primary);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.5em;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(56px, 6.5vmax, 92px); line-height: 1; letter-spacing: -0.025em; }
h2 { font-size: clamp(42px, 5.2vmax, 68px); line-height: 1.02; letter-spacing: -0.025em; }
h3 { font-size: clamp(34px, 4.6vmax, 50px); line-height: 1.05; letter-spacing: -0.015em; }
h4 { font-size: clamp(28px, 3.6vmax, 36px); line-height: 1.22; letter-spacing: -0.01em; }
h5 { font-size: 26px; line-height: 1.2; }
h6 { font-size: 20px; line-height: 1.4; }

p {
  margin: 0 0 1.4em;
}

em.acc {
  font-style: normal;
  color: var(--primary);
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: calc(var(--gutter) / 2);
  padding-right: calc(var(--gutter) / 2);
}

.section {
  padding: 120px 0;
}

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

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

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark .section-title p {
  color: var(--text-light);
}

/* ---------- Section heading ---------- */
.section-head {
  margin-bottom: 60px;
}

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.section-eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background-color: var(--primary);
  display: inline-block;
}

.section-head--center .section-eyebrow::after {
  content: "";
  width: 42px;
  height: 2px;
  background-color: var(--primary);
  display: inline-block;
}

.section--dark .section-eyebrow {
  color: var(--primary);
}

.section-title {
  margin-bottom: 0;
}

.section-title p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  margin: 22px 0 0;
}

.section--dark .section-title p {
  color: var(--text-light);
}

.section-head .lead {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  border-radius: 30px;
  padding: 18px 34px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--primary);
  color: var(--accent);
}

.btn--primary:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn--outline:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
}

.btn--dark {
  background-color: var(--accent);
  color: var(--white);
}

.btn--dark:hover {
  background-color: var(--primary);
  color: var(--accent);
}

.btn .btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex: none;
  transition: all var(--transition);
}

.btn--primary .btn-icon {
  background-color: var(--accent);
  color: var(--white);
}

.btn--primary:hover .btn-icon {
  background-color: var(--white);
  color: var(--accent);
}

.btn--outline .btn-icon {
  background-color: var(--primary);
  color: var(--accent);
}

.btn--outline:hover .btn-icon {
  background-color: var(--white);
}

.icon-arrow {
  display: inline-block;
  transform: rotate(-45deg);
  font-style: normal;
  font-size: 16px;
}

/* Text link with arrow (e.g. "Our Solutions") */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  padding-bottom: 4px;
}

.link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.35s ease;
}

.link-arrow:hover {
  color: var(--accent);
}

.link-arrow:hover::after {
  width: 100%;
}

.link-arrow .icon-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: none;
  transition: all var(--transition);
}

.link-arrow:hover .icon-arrow {
  background-color: var(--accent);
  color: var(--white);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 26px 0;
  transition: all 0.4s ease;
}

.site-header.is-sticky {
  position: fixed;
  background-color: rgba(10, 10, 12, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(251, 146, 60, 0.18);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: none;
}

.brand-img {
  width: 52px;
  height: 52px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
}

.brand-name span {
  color: var(--white);
}

.brand-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 5px;
}

/* Primary nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.35s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.main-nav a.is-active {
  color: var(--primary);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-actions .btn {
  padding: 11px 20px;
  font-size: 13px;
  background-color: var(--primary);
  color: var(--white);
}

.header-actions .btn:hover {
  background-color: var(--primary-hover);
  color: var(--white);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background-color: rgba(8, 8, 10, 0.98);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  padding: 10px 0;
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--primary);
}

.mobile-nav .mobile-nav-cta {
  margin-top: 40px;
}

/* ============================================================
   Hero (home) — exact layout of the Spaciaz reference hero
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 92vh;
  background-color: var(--dark-2);
  color: var(--white);
  overflow: hidden;
}

/* Left media column (background image panel) */
.hero-media {
  width: 44%;
  flex: none;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 640px;
  animation: heroMediaIn 1.1s ease both;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 calc(100% - 110px), rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 calc(100% - 110px), rgba(0, 0, 0, 0) 100%);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.5) 0%, rgba(11, 11, 13, 0.08) 24%),
    linear-gradient(90deg, rgba(11, 11, 13, 0) 0%, rgba(11, 11, 13, 0.28) 100%);
}

@keyframes heroMediaIn {
  from { transform: translateX(-40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Right content column */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 200px clamp(24px, 5vw, 90px) 90px;
}

.hero-content-inner {
  width: 100%;
  max-width: 880px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 30px;
  max-width: 860px;
}

.hero-title em {
  font-style: normal;
  color: var(--primary);
}

.rotating-word {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.hero-text {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 660px;
  margin-bottom: 44px;
}

/* Meta row: counter + label + watch (reference layout) */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-counter {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.hero-counter .suffix {
  color: var(--primary);
  font-size: 38px;
  margin-left: 4px;
}

.hero-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: var(--primary);
  display: inline-block;
  flex: none;
}

.hero-meta-label {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.hero-meta-divider {
  width: 1px;
  height: 58px;
  background-color: rgba(255, 255, 255, 0.2);
  flex: none;
}

/* Watch video popup button */
.btn-play {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn-play-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--transition);
}

.btn-play-icon::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(251, 146, 60, 0.4);
  animation: pulse 2.4s ease-out infinite;
}

.btn-play-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
  margin-left: 4px;
}

.btn-play:hover {
  color: var(--primary);
}

.btn-play:hover .btn-play-icon {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-play:hover .btn-play-icon svg {
  fill: var(--accent);
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  overflow: hidden;
  padding: 34px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.marquee--dark {
  background-color: var(--dark);
  border-bottom: 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.4vmax, 46px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--accent);
  white-space: nowrap;
}

.marquee--dark .marquee-item {
  color: var(--white);
}

.marquee-item .dot {
  color: var(--primary);
  margin: 0 26px;
  font-size: 0.7em;
  transform: translateY(-4px);
}

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

/* ============================================================
   Numbered cards (01 / 02 / 03)
   ============================================================ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.num-card {
  background-color: var(--background-light);
  border-radius: var(--radius);
  padding: 46px 42px 42px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), background-color var(--transition), color var(--transition);
}

.num-card:hover {
  transform: translateY(-8px);
}

.num-card--dark {
  background-color: var(--dark-2);
  color: var(--text-light);
}

.num-card--dark h4 {
  color: var(--white);
}

.num-card--img {
  padding: 0;
  background-color: var(--dark-2);
}

.num-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.65;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.num-card--img:hover .num-card-img {
  opacity: 0.5;
  transform: scale(1.05);
}

.num-card--img .num-card-body {
  position: relative;
  z-index: 2;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 46px 42px 42px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85));
}

.num-card--img h4 {
  color: var(--white);
}

.num-card--img p {
  color: rgba(255, 255, 255, 0.75);
}

.num-card--img .link-arrow {
  color: var(--white);
}

.num-card--img .link-arrow:hover {
  color: var(--white);
}

.num-card-number {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 34px;
  display: inline-block;
}

.num-card h4 {
  margin-bottom: 18px;
}

.num-card p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 30px;
}

/* ============================================================
   Pillars strip (teachings)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.pillar {
  padding: 38px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background-color var(--transition);
  animation: pillar-progress-bg 15s ease-in-out infinite;
}

.path-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: stretch;
}

.path-media {
  border-radius: var(--radius);
  overflow: hidden;
}

.path-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.path-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.path-content .pillars {
  grid-template-columns: repeat(2, 1fr);
}

.pillar:hover {
  background-color: var(--primary);
  animation: none;
}

.pillar .pillar-num {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 18px;
  animation: pillar-progress-num 15s ease-in-out infinite;
}

.pillar:hover .pillar-num {
  color: var(--accent);
  animation: none;
}

.pillar h5 {
  font-size: 19px;
  margin-bottom: 0;
  line-height: 1.3;
  animation: pillar-progress-h5 15s ease-in-out infinite;
}

.pillar:hover h5 {
  color: var(--accent);
  animation: none;
}

.pillar:nth-child(1),
.pillar:nth-child(1) .pillar-num,
.pillar:nth-child(1) h5 {
  animation-delay: -12.5s;
}

.pillar:nth-child(2),
.pillar:nth-child(2) .pillar-num,
.pillar:nth-child(2) h5 {
  animation-delay: -10s;
}

.pillar:nth-child(3),
.pillar:nth-child(3) .pillar-num,
.pillar:nth-child(3) h5 {
  animation-delay: -7.5s;
}

.pillar:nth-child(4),
.pillar:nth-child(4) .pillar-num,
.pillar:nth-child(4) h5 {
  animation-delay: -5s;
}

.pillar:nth-child(5),
.pillar:nth-child(5) .pillar-num,
.pillar:nth-child(5) h5 {
  animation-delay: -2.5s;
}

@keyframes pillar-progress-bg {
  0%,
  10% {
    background-color: transparent;
  }
  12%,
  20% {
    background-color: var(--primary);
  }
  22%,
  100% {
    background-color: transparent;
  }
}

@keyframes pillar-progress-num {
  0%,
  10% {
    color: var(--text-light);
  }
  12%,
  20% {
    color: var(--accent);
  }
  22%,
  100% {
    color: var(--text-light);
  }
}

@keyframes pillar-progress-h5 {
  0%,
  10% {
    color: var(--text);
  }
  12%,
  20% {
    color: var(--accent);
  }
  22%,
  100% {
    color: var(--text);
  }
}

/* ============================================================
   Stats section
   ============================================================ */
.stats-section {
  position: relative;
  background-color: var(--dark-2);
  background-size: cover;
  background-position: center;
  padding: 130px 0;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 8, 0.82);
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stats-section .section-eyebrow {
  color: var(--primary);
}

.stats-section .section-eyebrow::before,
.stats-section .section-eyebrow::after {
  background-color: var(--primary);
}

.stats-section .section-title {
  color: var(--white);
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 70px;
}

.stats-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-item {
  text-align: center;
  padding: 0 20px;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: clamp(52px, 6vmax, 84px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-item .stat-num span {
  color: var(--primary);
}

.stat-item .stat-label {
  margin-top: 18px;
  font-size: 16px;
  color: var(--text-light);
}

/* ============================================================
   Feature grid (The Pillars of Godism)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.section--light .feature-card {
  background-color: var(--white);
}

.feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: background-color var(--transition);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--accent);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h5 {
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 0;
  color: var(--text);
}

/* ============================================================
   Books
   ============================================================ */
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.book-card {
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.book-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-8px);
}

.book-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.book-card:hover .book-cover img {
  transform: scale(1.05);
}

.book-cover .book-status {
  position: absolute;
  top: 22px;
  left: 22px;
  background-color: var(--primary);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 9px 18px;
  border-radius: 20px;
}

.book-body {
  padding: 30px 34px 34px;
}

.book-body .book-price {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.book-body h4 {
  font-size: 28px;
  margin-bottom: 12px;
}

.book-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
}

/* ============================================================
   Quote / testimonial
   ============================================================ */
.quote-section {
  position: relative;
  background-color: var(--background-light);
  padding: 130px 0;
  text-align: center;
}

.quote-mark {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 34px;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vmax, 44px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--accent);
  max-width: 900px;
  margin: 0 auto 36px;
  letter-spacing: -0.01em;
}

.quote-text em {
  color: var(--primary);
  font-style: normal;
}

.quote-author {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}

.quote-author small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-light);
  margin-top: 8px;
  font-size: 15px;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  background-color: var(--dark-2);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 130px 0;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 120% at 85% 20%, rgba(251, 146, 60, 0.22), transparent 60%), rgba(6, 6, 8, 0.88);
}

.cta .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta p {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 0;
  max-width: 520px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cta-phone {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.cta-phone:hover {
  color: var(--primary);
}

.cta-phone small {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 2px;
}

/* ============================================================
   Page hero (sub pages)
   ============================================================ */
.page-hero {
  position: relative;
  background-color: var(--dark-2);
  color: var(--white);
  overflow: hidden;
  padding: 220px 0 110px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 6, 0.9), rgba(5, 5, 6, 0.55));
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  max-width: 900px;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 26px;
}

.page-hero .breadcrumb a {
  color: var(--text-light);
}

.page-hero .breadcrumb a:hover {
  color: var(--primary);
}

.page-hero .breadcrumb .sep {
  color: var(--primary);
}

.page-hero .breadcrumb .current {
  color: var(--white);
}

/* ============================================================
   Generic content blocks (used on sub pages)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.split--reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-media .media-badge {
  position: absolute;
  bottom: 34px;
  left: 34px;
  background-color: var(--primary);
  color: var(--accent);
  border-radius: 20px;
  padding: 18px 26px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.split-body .section-eyebrow {
  margin-bottom: 20px;
}

.split-body h2 {
  margin-bottom: 26px;
}

.split-body p {
  font-size: 17px;
  line-height: 1.75;
}

.split-body p:last-child {
  margin-bottom: 0;
}

.split-body .link-arrow {
  margin-top: 30px;
}

/* checklist */
.check-list {
  margin-top: 30px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text);
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list .check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex: none;
  margin-top: 2px;
}

/* timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item:nth-child(odd) .tl-content {
  grid-column: 1;
  text-align: right;
}

.timeline-item:nth-child(even) .tl-content {
  grid-column: 2;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 0 8px rgba(251, 146, 60, 0.18);
}

.timeline-item .tl-year {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.timeline-item .tl-content h4 {
  margin-bottom: 12px;
}

.timeline-item .tl-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* stage cards (neophyte -> acolyte -> adept) */
.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: stage;
}

.stage-card {
  position: relative;
  background-color: var(--background-light);
  border-radius: var(--radius);
  padding: 52px 40px;
  transition: all var(--transition);
}

.stage-card:hover {
  background-color: var(--accent);
  transform: translateY(-6px);
}

.stage-card:hover h5,
.stage-card:hover .stage-num,
.stage-card:hover p {
  color: var(--white);
}

.stage-card:hover p {
  color: var(--text-light);
}

.stage-num {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: inline-block;
  margin-bottom: 30px;
}

.stage-card h5 {
  margin-bottom: 14px;
}

.stage-card p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 0;
}

.stage-arrow {
  position: absolute;
  top: 50%;
  right: -34px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 3;
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background-color: var(--background-light);
  border-radius: var(--radius);
  padding: 34px 36px;
  display: flex;
  gap: 22px;
  transition: all var(--transition);
}

.contact-card:hover {
  background-color: var(--primary);
}

.contact-card:hover p,
.contact-card:hover a {
  color: var(--accent);
}

.contact-card .cc-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  box-shadow: var(--shadow-soft);
}

.contact-card .cc-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h5 {
  font-size: 19px;
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 0;
}

.contact-card a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Service times */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--dark-2);
  border-radius: var(--radius);
  padding: 46px 40px;
  transition: transform var(--transition), background-color var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  background-color: var(--primary);
}

.service-card .service-day {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card:hover .service-day {
  color: var(--accent);
}

.service-card h4 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card:hover h4 {
  color: var(--accent);
}

.service-card .service-time {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.service-card:hover .service-time {
  color: var(--accent);
}

.contact-form-wrap {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 46px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent);
}

.form-control {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background-color: var(--background-light);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--accent);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.3);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.form-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
}

/* map placeholder */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--dark-2);
  background-size: cover;
  background-position: center;
  min-height: 420px;
  position: relative;
}

.map-wrap .map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  text-align: center;
  color: var(--white);
}

.map-wrap .map-pin .pin-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 26px;
  box-shadow: 0 0 0 12px rgba(251, 146, 60, 0.18);
  animation: pulse 2.4s ease-out infinite;
}

.map-wrap .map-pin .pin-label {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 18px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 100px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
}

.footer-brand .brand-name {
  font-size: 30px;
}

.footer-brand .brand-tagline {
  margin-bottom: 26px;
}

.footer-about {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 24px;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col h5 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 26px;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul a {
  color: var(--white);
  font-size: 16px;
}

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.footer-contact li svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
  margin-top: 3px;
}

.footer-contact a {
  color: var(--white);
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--white);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) {
  .section {
    padding: 90px 0;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-media {
    width: 100%;
    min-height: clamp(300px, 46vh, 420px);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(11, 11, 13, 0.5) 0%, rgba(11, 11, 13, 0.08) 30%, rgba(11, 11, 13, 0.45) 100%);
  }

  .hero-content {
    padding: 70px clamp(24px, 5vw, 60px) 90px;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .num-card--img .num-card-body {
    min-height: 380px;
  }

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

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

  .books-grid .book-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .split--reverse .split-media {
    order: 0;
  }

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

  .path-media img {
    min-height: clamp(360px, 60vh, 520px);
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 20px;
  }

  .stat-item:nth-child(3) {
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

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

  .stage-arrow {
    display: none;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 40px;
  }

  .timeline-item:nth-child(odd) .tl-content,
  .timeline-item:nth-child(even) .tl-content {
    grid-column: 1;
    text-align: left;
  }

  .timeline-dot {
    left: 8px;
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  body {
    font-size: 17px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-media {
    min-height: clamp(240px, 38vh, 300px);
  }

  .hero-content {
    padding: 40px 24px 80px;
  }

  .hero-title {
    font-size: clamp(40px, 11vw, 54px);
  }

  .hero-text {
    font-size: 17px;
    margin-bottom: 30px;
  }

  .hero-counter {
    font-size: 44px;
  }

  .hero-counter .suffix {
    font-size: 30px;
  }

  .hero-meta {
    align-items: flex-start;
    gap: 20px;
  }

  .hero-meta-divider {
    display: none;
  }

  .hero-meta-label {
    font-size: 16px;
  }

  .btn-play-icon {
    width: 78px;
    height: 78px;
  }

  .btn-play-icon svg {
    width: 20px;
    height: 20px;
  }

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

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

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

  .books-grid .book-card:last-child {
    grid-column: auto;
    max-width: none;
  }

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

  .service-card {
    padding: 36px 28px;
  }

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

  .stat-item + .stat-item {
    border-left: 0;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 30px 24px;
  }

  .cta {
    text-align: center;
  }

  .cta .container {
    justify-content: center;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 44px;
  }

  .section-eyebrow {
    font-size: 13px;
  }

  .header-actions .btn {
    display: none;
  }

  .site-header {
    padding: 16px 0;
  }

  .brand-img {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-tagline {
    font-size: 9px;
  }

  .mobile-nav {
    padding: 84px 28px;
  }

  .mobile-nav a {
    font-size: 28px;
  }

  .mobile-nav .mobile-nav-cta {
    margin-top: 30px;
  }

  .btn {
    padding: 16px 26px;
    font-size: 14px;
  }

  .num-card {
    padding: 38px 28px;
  }

  .num-card--img .num-card-body {
    min-height: 320px;
    padding: 38px 28px;
  }

  .pillar {
    padding: 28px 20px;
  }

  .feature-card {
    padding: 36px 26px;
  }

  .book-body {
    padding: 26px 24px 30px;
  }

  .quote-section {
    padding: 80px 0;
  }

  .quote-text {
    font-size: clamp(24px, 8vw, 32px);
  }

  .quote-mark {
    width: 64px;
    height: 64px;
    font-size: 34px;
    margin-bottom: 26px;
  }

  .stats-section {
    padding: 84px 0;
  }

  .stats-grid {
    gap: 36px 16px;
    margin-top: 50px;
  }

  .stat-item {
    padding: 0 10px;
  }

  .stat-item .stat-num {
    font-size: clamp(44px, 13vw, 62px);
  }

  .cta {
    padding: 84px 0;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-phone {
    font-size: 20px;
  }

  .page-hero {
    padding-top: 150px;
    padding-bottom: 72px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 10vw, 50px);
  }

  .split {
    gap: 40px;
  }

  .split-media img {
    min-height: 300px;
  }

  .map-wrap {
    min-height: 300px;
  }

  .marquee {
    padding: 26px 0;
  }

  .marquee-item {
    font-size: clamp(24px, 8vw, 32px);
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-media {
    min-height: clamp(190px, 34vh, 240px);
  }

  .hero-title {
    font-size: clamp(32px, 10.5vw, 38px);
  }

  .hero-content {
    padding: 30px 22px 64px;
  }

  .hero-text {
    margin-bottom: 26px;
  }

  .hero-counter {
    font-size: 38px;
  }

  .hero-counter .suffix {
    font-size: 26px;
  }

  .hero-meta-label {
    font-size: 15px;
  }

  .btn-play-icon {
    width: 68px;
    height: 68px;
  }

  .btn-play-icon svg {
    width: 18px;
    height: 18px;
  }

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

  .path-content .pillars {
    grid-template-columns: 1fr;
  }

  .path-media img {
    min-height: 320px;
  }

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

  .stat-item .stat-num {
    font-size: clamp(40px, 12vw, 54px);
  }

  .contact-card {
    padding: 26px 22px;
  }

  .service-card {
    padding: 30px 24px;
  }

  .mobile-nav {
    padding: 70px 24px;
  }

  .mobile-nav a {
    font-size: 24px;
  }

  .mobile-nav .mobile-nav-cta {
    margin-top: 24px;
  }

  .footer-grid {
    gap: 44px;
  }

  .page-hero {
    padding-top: 140px;
  }

  .split {
    gap: 36px;
  }

  .section-head .lead {
    font-size: 16px;
  }
}

@media (max-height: 640px) and (max-width: 767px) {
  .hero-media {
    min-height: 170px;
  }

  .hero-content {
    padding-top: 24px;
    padding-bottom: 46px;
  }

  .hero-meta {
    margin-top: 16px;
  }

  .mobile-nav {
    padding-top: 70px;
    padding-bottom: 40px;
    overflow-y: auto;
  }

  .mobile-nav a {
    font-size: 22px;
    padding: 6px 0;
  }

  .mobile-nav .mobile-nav-cta {
    margin-top: 18px;
  }
}
