/* Stand-To! Coaching. Palette: orange #F5B169, blue #2740CC, green #33A33C, red #E3071D */

:root {
  --color-orange: #f5b169;
  --color-blue: #2740cc;
  --color-green: #33a33c;
  --color-red: #e3071d;
  --color-cream: #fff8f0;
  --color-ink: #1a1a2e;
  --color-muted: #4a4a62;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 12px 40px rgba(39, 64, 204, 0.15);
  --max: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-cream);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-blue);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(135deg, var(--color-blue) 0%, #1e3499 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
  line-height: 1.15;
}

.brand-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: min(320px, 42vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.brand-text-warm {
  color: var(--color-orange);
}

@media (max-width: 640px) {
  .brand {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 0.65rem;
  }

  .brand-logo {
    height: 56px;
    max-width: min(260px, 85vw);
  }

  .brand-text {
    font-size: 1rem;
    text-align: center;
    width: 100%;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  justify-content: flex-end;
}

.nav > a {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav > a:hover,
.nav > a:focus-visible {
  color: var(--color-orange);
  outline: none;
}

.nav > a[aria-current="page"] {
  color: var(--color-orange);
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.2em;
}

.nav-dropdown__menu a[aria-current="page"] {
  color: var(--color-orange);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav-dropdown__trigger:hover,
.nav-dropdown__trigger:focus-visible {
  color: var(--color-orange);
  outline: none;
}

.nav-dropdown__menu {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  min-width: 12.5rem;
  background: linear-gradient(180deg, #1e3499 0%, #162a7a 100%);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.45rem 1rem;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  color: var(--color-orange);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

@media (min-width: 641px) {
  .nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition:
      opacity 0.15s ease,
      visibility 0.15s ease,
      transform 0.15s ease;
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-dropdown__trigger {
    text-align: center;
  }

  .nav-dropdown__menu {
    margin-top: 0.35rem;
    padding: 0.35rem 0;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-dropdown__menu a {
    text-align: center;
    padding: 0.4rem 0.75rem;
  }
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}

.section-label.on-dark {
  color: var(--color-orange);
}

/* Hero kicker: longer line reads better in sentence case */
.section-label--hero {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
  max-width: 36ch;
  color: var(--color-blue);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.85rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

p strong {
  color: var(--color-ink);
}

/* Inline links in main copy (not buttons/nav) */
main .wrap > section p a:not([class]) {
  color: var(--color-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

main .wrap > section p a:not([class]):hover {
  color: #1e3499;
}

/* Hero */
.hero {
  background: linear-gradient(
      165deg,
      rgba(245, 177, 105, 0.35) 0%,
      transparent 45%
    ),
    var(--color-cream);
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

.lede {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 38ch;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  border: 2px solid var(--color-blue);
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin-top: 0;
  font-size: 1rem;
  color: var(--color-blue);
}

.hero-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-muted);
}

.hero-list li {
  margin-bottom: 0.35rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-subcta {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-subcta a {
  color: var(--color-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 0.07em;
  text-underline-offset: 0.18em;
}

.hero-subcta a:hover {
  color: #1e3499;
}

.hero-subcta-rest {
  color: var(--color-muted);
  font-weight: 400;
}

/* Standalone pages (e.g. What is a Christian) */
.subpage-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--color-ink);
}

.subpage-back {
  margin: 1rem 0 0;
}

.subpage-back a {
  color: var(--color-blue);
  font-weight: 600;
  text-decoration: none;
}

.subpage-back a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-green);
  color: #fff;
  box-shadow: 0 4px 0 #267d2d;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.btn-secondary:hover {
  background: rgba(39, 64, 204, 0.08);
}

/* Bands */
.band-blue {
  background: linear-gradient(160deg, #1e3499 0%, var(--color-blue) 50%, #2038b8 100%);
  color: #fff;
}

.band-blue p,
.band-blue li {
  color: rgba(255, 255, 255, 0.88);
}

.band-blue h2 {
  color: #fff;
}

.band-warm {
  background: linear-gradient(
    180deg,
    rgba(245, 177, 105, 0.25) 0%,
    var(--color-cream) 100%
  );
}

.band-white {
  background: #fff;
}

.cred-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  text-align: center;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}

.cred-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-orange);
}

.cred-item span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.cred-about-link-wrap {
  margin: 1.5rem 0 0;
  text-align: center;
}

.band-blue .cred-about-link {
  color: var(--color-orange);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.band-blue .cred-about-link:hover {
  color: #fff;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .card-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
}

.band-white .card {
  background: var(--color-cream);
  border-color: rgba(39, 64, 204, 0.15);
}

.card h3 {
  margin-top: 0;
  color: var(--color-ink);
}

.band-blue .card h3 {
  color: #fff;
}

.pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--color-red);
  color: #fff;
  margin-bottom: 0.5rem;
}

.steps-preview {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.steps-preview li {
  position: relative;
  padding: 0.85rem 0 0.85rem 3rem;
  border-bottom: 1px solid rgba(39, 64, 204, 0.12);
  color: var(--color-muted);
}

.steps-preview li:last-child {
  border-bottom: none;
}

.steps-preview li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* A.A. Twelve Steps + NIV blueprint */
.aa-guide-note {
  padding: 0.85rem 1rem;
  background: rgba(39, 64, 204, 0.08);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-blue);
  font-size: 0.95rem;
  color: var(--color-muted);
}

.aa-guide-note strong {
  color: var(--color-ink);
}

.aa-steps-list {
  margin: 1.75rem 0 0;
  padding: 0;
}

.aa-step {
  margin: 0 0 1.35rem;
  padding: 1.2rem 1.2rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(39, 64, 204, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(39, 64, 204, 0.06);
}

.aa-step:last-child {
  margin-bottom: 0;
}

.aa-step-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-blue);
  letter-spacing: -0.02em;
}

.aa-step-aa {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-ink);
}

.aa-step-aa strong {
  color: var(--color-ink);
}

.aa-ref {
  margin: 1rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-green);
}

.aa-step-aa + .aa-ref {
  margin-top: 0;
}

.aa-niv + .aa-ref {
  margin-top: 0.95rem;
}

.aa-niv {
  margin: 0 0 0.85rem;
  padding: 0.75rem 0 0.75rem 1rem;
  border-left: 3px solid rgba(245, 177, 105, 0.9);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-muted);
  font-style: normal;
}

.aa-niv:last-child {
  margin-bottom: 0;
}

.aa-attribution {
  margin-top: 2rem;
  padding: 1.15rem 1.2rem;
  background: rgba(245, 177, 105, 0.22);
  border: 1px solid rgba(39, 64, 204, 0.15);
  border-radius: var(--radius);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.aa-attribution p {
  margin: 0 0 0.85rem;
  color: var(--color-muted);
}

.aa-attribution p:last-child {
  margin-bottom: 0;
}

.aa-attribution strong {
  color: var(--color-ink);
}

/* Romans Road litmus: spiritual check-in */
.band-litmus {
  background: linear-gradient(
    165deg,
    rgba(51, 163, 60, 0.12) 0%,
    rgba(245, 177, 105, 0.18) 35%,
    var(--color-cream) 70%
  );
  border-top: 1px solid rgba(39, 64, 204, 0.08);
  border-bottom: 1px solid rgba(39, 64, 204, 0.08);
}

.litmus-wrap {
  max-width: 52rem;
}

.litmus-lead {
  font-size: 1.05rem;
  color: var(--color-muted);
}

.litmus-lead strong {
  color: var(--color-ink);
}

.litmus-road {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.litmus-stop {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 0 0 1.5rem;
}

.litmus-stop:last-child {
  margin-bottom: 0;
}

.litmus-stop-marker {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(39, 64, 204, 0.25);
}

.litmus-stop--1 .litmus-stop-marker {
  background: var(--color-blue);
}

.litmus-stop--2 .litmus-stop-marker {
  background: linear-gradient(145deg, #e8893a, var(--color-orange));
  box-shadow: 0 4px 16px rgba(232, 137, 58, 0.35);
}

.litmus-stop--3 .litmus-stop-marker {
  background: var(--color-green);
  box-shadow: 0 4px 16px rgba(51, 163, 60, 0.35);
}

.litmus-stop--4 .litmus-stop-marker {
  background: var(--color-blue);
}

.litmus-stop--5 .litmus-stop-marker {
  background: linear-gradient(145deg, var(--color-green), #2d8f35);
}

.litmus-stop-body {
  flex: 1;
  min-width: 0;
  background: #fff;
  padding: 1.2rem 1.3rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(39, 64, 204, 0.12);
  box-shadow: 0 10px 36px rgba(39, 64, 204, 0.07);
}

.litmus-stop-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}

.litmus-verse {
  margin: 0 0 1rem;
  padding: 0.85rem 0 0.85rem 1rem;
  border-left: 3px solid var(--color-orange);
  font-size: 0.95rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--color-muted);
}

.litmus-verse-label {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-blue);
  margin-bottom: 0.4rem;
}

.litmus-prompt {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-ink);
}

.litmus-closing {
  margin-top: 2.25rem;
  padding: 1.5rem 1.35rem 1.35rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  border: 1px solid rgba(39, 64, 204, 0.14);
  box-shadow: 0 8px 32px rgba(39, 64, 204, 0.06);
}

.litmus-closing p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.litmus-closing p:last-of-type {
  margin-bottom: 0;
}

.litmus-closing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
}

.litmus-btn-secondary {
  background: rgba(255, 255, 255, 0.9);
}

.litmus-niv-note {
  margin: 1.25rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--color-muted);
}

.disclaimer-box {
  border-left: 4px solid var(--color-red);
  padding: 1rem 1rem 1rem 1.25rem;
  background: rgba(227, 7, 29, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1.5rem;
}

.disclaimer-box p {
  margin: 0;
  font-size: 0.95rem;
}

.faq details {
  border: 1px solid rgba(39, 64, 204, 0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  background: #fff;
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  color: var(--color-blue);
}

.faq details[open] summary {
  margin-bottom: 0.5rem;
}

.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 2rem 0 2.5rem;
  font-size: 0.9rem;
}

.site-footer h2 {
  color: #fff;
  font-size: 1.1rem;
}

.site-footer a {
  color: var(--color-orange);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-legal {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-copyright {
  margin: 0;
}

/* Downloads / password gate */
.download-hero {
  padding-bottom: 1rem;
}

.download-wrap {
  max-width: 42rem;
}

.download-lead {
  font-size: 1.05rem;
  color: var(--color-muted);
}

.download-lead a {
  color: var(--color-blue);
  font-weight: 600;
}

.download-card {
  padding: 0.25rem 0 1rem;
}

.download-card h2 {
  margin-top: 0;
}

.download-meta {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0 0 1.25rem;
}

.download-preview {
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(39, 64, 204, 0.15);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.download-preview p:last-child {
  margin-bottom: 0;
}

.download-must {
  padding: 0.85rem 1rem;
  background: rgba(227, 7, 29, 0.07);
  border-left: 4px solid var(--color-red);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: var(--color-ink);
}

.download-gate {
  margin-bottom: 0.5rem;
}

.download-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.5rem;
}

.download-input {
  flex: 1 1 200px;
  padding: 0.65rem 0.85rem;
  border: 2px solid rgba(39, 64, 204, 0.25);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.download-input:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(39, 64, 204, 0.2);
}

.download-unlock-btn {
  border: none;
  cursor: pointer;
}

.download-feedback {
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: var(--color-red);
  margin: 0.5rem 0 0;
}

.download-reveal {
  padding: 1rem 1.1rem;
  background: rgba(51, 163, 60, 0.1);
  border: 1px solid rgba(51, 163, 60, 0.35);
  border-radius: var(--radius);
  margin-top: 0.5rem;
}

.download-success {
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: var(--color-ink);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.download-hint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.download-inventory-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  color: var(--color-ink);
}

.download-inventory {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.download-inventory li {
  margin-bottom: 0.5rem;
}

.download-inventory a {
  color: var(--color-blue);
  font-weight: 600;
  text-decoration: none;
}

.download-inventory a:hover {
  text-decoration: underline;
}

.download-badge {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.download-badge--locked {
  background: rgba(39, 64, 204, 0.12);
  color: var(--color-blue);
}

.download-badge--free {
  background: rgba(51, 163, 60, 0.18);
  color: #1f6f25;
}

.download-card--free .download-preview {
  background: rgba(255, 255, 255, 0.85);
}

.download-free-actions {
  margin-top: 1rem;
}

.download-hint--inline {
  margin-top: 0.75rem;
  max-width: 40rem;
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .nav {
    justify-content: center;
  }

  .nav > a {
    font-size: 0.85rem;
  }

  .nav-dropdown__trigger {
    font-size: 0.85rem;
  }
}

/* About page */
.about-page {
  background: #fff;
  color: var(--color-ink);
}

.about-hero {
  padding: 2.5rem 0 3.5rem;
  background: linear-gradient(
    180deg,
    rgba(245, 177, 105, 0.12) 0%,
    var(--color-cream) 100%
  );
}

@media (min-width: 768px) {
  .about-hero {
    padding: 3rem 0 4rem;
  }
}

.about-hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  max-width: var(--max);
}

@media (min-width: 900px) {
  .about-hero-inner {
    grid-template-columns: minmax(240px, 380px) 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.about-kicker {
  color: var(--color-blue);
}

.about-portrait-wrap {
  position: relative;
  max-width: 22rem;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .about-portrait-wrap {
    margin: 0;
  }
}

.about-portrait {
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #e8e8ef 0%, #d4d4de 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-bottom: 8px solid var(--color-orange);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.about-secondary-photo {
  margin: 0 0 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-bottom: 5px solid rgba(39, 64, 204, 0.35);
  overflow: hidden;
  max-width: 100%;
}

.about-secondary-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-portrait-wrap::after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  width: 7rem;
  height: 7rem;
  background: var(--color-blue);
  opacity: 0.08;
  border-radius: var(--radius);
  z-index: 0;
  pointer-events: none;
}

.about-headline {
  font-family: var(--font-body);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.85rem;
  color: var(--color-ink);
}

.about-hero-lead {
  margin: 0 0 1.15rem;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--color-ink);
}

.about-iron-quote {
  font-style: italic;
}

.about-scripture {
  font-size: 0.92em;
  font-style: normal;
  font-weight: 600;
  color: var(--color-muted);
  white-space: nowrap;
}

.about-hero-body {
  margin: 0 0 1.25rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.about-lets-talk {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-blue);
}

.about-story {
  padding: 2.75rem 0 3.25rem;
}

.about-prose {
  max-width: 38rem;
  margin: 0 auto;
}

.about-story-title {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  color: var(--color-ink);
}

.about-prose p {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  line-height: 1.68;
  color: var(--color-muted);
}

.about-prose p:last-child {
  margin-bottom: 0;
}

.about-prose strong {
  color: var(--color-ink);
  font-weight: 600;
}

.about-story-close {
  margin-top: 1.5rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26, 26, 46, 0.1);
  color: var(--color-ink) !important;
}

.about-beyond {
  position: relative;
  padding: 3.5rem 0;
  background: linear-gradient(165deg, #141428 0%, var(--color-ink) 45%, #252540 100%);
  color: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.about-beyond-deco {
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 22rem;
  height: 22rem;
  border: 3px solid rgba(245, 177, 105, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.about-beyond-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.about-beyond-inner--narrow {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.about-quote-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  backdrop-filter: blur(6px);
}

.about-quote-heading {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #fff;
}

.about-beyond .about-quote-card {
  width: 100%;
}

.about-quote {
  margin: 0;
  padding: 0;
  border: none;
}

.about-quote p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
}

.about-quote-sig {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
}

.about-quote-line {
  width: 3rem;
  height: 2px;
  background: var(--color-orange);
  flex-shrink: 0;
}

.about-quote-name {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-orange);
}

.about-cta {
  padding: 3rem 0 3.5rem;
  text-align: center;
}

.about-cta-inner {
  max-width: 36rem;
  margin: 0 auto;
}

.about-cta-inner h2 {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--color-ink);
}

.about-cta-lead {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(51, 163, 60, 0.25);
}

.about-cta-chevron {
  display: flex;
  transition: transform 0.2s ease;
}

.about-cta-btn:hover .about-cta-chevron {
  transform: translateX(4px);
}

/* Contact / inquiry page */
.contact-page {
  background: #fff;
  color: var(--color-ink);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-hero {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(
    180deg,
    rgba(245, 177, 105, 0.14) 0%,
    var(--color-cream) 100%
  );
}

@media (min-width: 768px) {
  .contact-hero {
    padding: 3rem 0 2.25rem;
  }
}

.contact-hero-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.contact-kicker {
  color: var(--color-blue);
}

.contact-hero-inner h1,
.booking-intro-inner h1 {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--color-ink);
}

.contact-lead {
  margin: 0 0 1.25rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.contact-meta {
  margin: 0;
  padding: 1rem 1.15rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-ink);
  background: rgba(39, 64, 204, 0.06);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-blue);
}

.contact-form-section {
  padding: 0 0 3rem;
  background: var(--color-cream);
}

@media (min-width: 768px) {
  .contact-form-section {
    padding: 0 0 3.5rem;
  }
}

.contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.contact-form-shell {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-bottom: 8px solid var(--color-orange);
  overflow: hidden;
}

.contact-form-iframe {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  min-height: 1480px;
  border: 0;
}

.contact-form-fallback {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.98rem;
  color: var(--color-muted);
}

.contact-form-fallback a {
  font-weight: 600;
  color: var(--color-blue);
}

.contact-form-fallback a:hover,
.contact-form-fallback a:focus-visible {
  color: var(--color-orange);
}

/* Schedule / booking page (Google Calendar appointments) */
.schedule-page {
  background: #fff;
  color: var(--color-ink);
}

.booking-intro-inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.booking-intro-lead {
  margin-bottom: 0;
}

.booking-calendar-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.booking-calendar-shell {
  max-width: 100%;
}

.booking-calendar-iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  height: 700px;
  border: 0;
}

@media (min-width: 768px) {
  .booking-calendar-iframe {
    min-height: 720px;
    height: 780px;
  }
}

.booking-calendar-fallback {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
