:root {
  --navy: #294157;
  --deep-navy: #071526;
  --mid-navy: #102844;
  --blue: #1d5fae;
  --gold: #d6a83f;
  --gold-light: #f1c96a;
  --cream: #f8f5ee;
  --cream-dark: #efe6d6;
  --white: #ffffff;
  --text: #1f2d3a;
  --muted: #667085;
  --border: #e5e1d8;
  --shadow: 0 18px 45px rgba(31, 51, 70, 0.12);
  --dark-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --max-width: 1120px;
}

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

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

a {
  color: inherit;
}

p {
  color: var(--text);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  color: var(--deep-navy);
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

main {
  overflow: hidden;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) 1.5rem;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-intro {
  color: var(--muted);
  max-width: 720px;
  font-size: 1.05rem;
}

.horizontal-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

/* BUTTONS */

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
button:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.button-gold {
  color: #111827;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 26px rgba(214, 168, 63, 0.28);
}

.button-blue,
.header-button,
.hero-book-copy .button {
  color: #111827;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 26px rgba(214, 168, 63, 0.28);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "?";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* HEADER */

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  color: var(--gold);
  padding: 1.25rem 1.5rem;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 14px;
}

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

.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.05em;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--white);
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.main-nav a {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

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

.header-button {
  min-height: 44px;
  padding: 0.75rem 1.15rem;
}

/* HERO */

.hero {
  min-height: 880px;
  padding: 7rem 1.5rem 8rem;
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 0.85fr 1.1fr;
  align-items: center;
  gap: 2rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(39, 111, 198, 0.22), transparent 28rem),
    radial-gradient(circle at 82% 30%, rgba(214, 168, 63, 0.26), transparent 26rem),
    linear-gradient(90deg, #071526 0%, #071526 49.5%, #fff6e6 50%, #fffaf0 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 38, 0.18), rgba(7, 21, 38, 0.1)),
    url("../images/home/mountain-path-hero.png");
  background-size: cover;
  background-position: center;
  opacity: 0.76;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 49.5%;
  width: 170px;
  background: linear-gradient(
    95deg,
    rgba(7, 21, 38, 0.78),
    rgba(7, 21, 38, 0.50),
    rgba(255, 250, 240, 0)
  );
  transform: skewX(-7deg);
  transform-origin: top;
  pointer-events: none;
}

.hero-left,
.hero-center,
.hero-right {
  position: relative;
  z-index: 2;
}

.hero-left {
  color: var(--white);
  display: grid;
  justify-items: center;
  gap: 1.5rem;
}

.hero-phone-wrap {
  width: min(470px, 82vw);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.55));
}

.hero-phone {
  border-radius: 38px;
}

.hero-app-copy {
  max-width: 320px;
  text-align: left;
}

.hero-app-copy .eyebrow,
.blue-eyebrow {
  color: var(--gold);
}

.hero-app-copy h2 {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.4rem;
}

.hero-app-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.hero-center {
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
  transform: translate(-1.5rem, -3rem);
}

.hero-center h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--white);
}

.hero-center h1 span {
  color: var(--white);
}

.hero-summary {
  max-width: 330px;
  margin: 1.35rem auto 0;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.hero-right {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  color: var(--deep-navy);
}

.hero-book-stack {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.5rem;
  min-height: 260px;
}

.hero-book {
  width: clamp(130px, 10vw, 175px);
  border-radius: 8px;
  box-shadow: 0 28px 50px rgba(7, 21, 38, 0.35);
}

.hero-resource-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 0.75rem;
  width: min(430px, 100%);
}

.mini-resource-card {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  background: #0f2743;
  color: var(--white);
  border: 1px solid rgba(214, 168, 63, 0.35);
  border-radius: 14px;
  padding: 0.8rem;
  box-shadow: 0 14px 28px rgba(31, 51, 70, 0.22);
}

.mini-resource-card h3 {
  color: var(--gold);
  font-size: 0.9rem;
  margin: 0 0 0.15rem;
}

.mini-resource-card p {
  color: var(--white);
  font-size: 0.75rem;
  line-height: 1.35;
  margin: 0;
}

.mini-icon {
  color: var(--gold);
  font-size: 1.4rem;
}

.hero-book-copy {
  text-align: center;
}

.hero-book-copy .eyebrow {
  color: var(--gold);
}

.hero-book-copy h2 {
  color: var(--white);
  font-family: "Inter", sans-serif;
  letter-spacing: -0.04em;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.hero-book-copy p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1rem;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

/* BENEFITS STRIP */

.benefits-strip {
  max-width: var(--max-width);
  margin: -3rem auto 0;
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, #102844, #081b31);
  color: var(--white);
  border: 1px solid rgba(214, 168, 63, 0.28);
  border-radius: 20px;
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: var(--dark-shadow);
}

.strip-eyebrow {
  text-align: center;
  color: var(--gold);
  margin-bottom: 1rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.benefit-item {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-item:last-child {
  border-right: none;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.benefit-item h3 {
  color: var(--gold);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 0;
}

/* APP SECTION */

.app-section {
  padding-top: 4rem;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.1rem;
}

.app-card,
.resource-card,
.article-card,
.book-card,
.faq-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(31, 51, 70, 0.09);
}

.app-card {
  padding: 1.4rem;
  min-height: 260px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.app-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 14px 26px rgba(31, 51, 70, 0.16);
}

.guard-card .app-icon {
  background: linear-gradient(135deg, #1263b8, #49a1ff);
}

.calm-card .app-icon {
  background: linear-gradient(135deg, #7037d6, #9b78ff);
}

.faith-card .app-icon {
  background: linear-gradient(135deg, #b6781e, #e7b84e);
}

.stride-card .app-icon {
  background: linear-gradient(135deg, #007b7a, #47b9a8);
}

.legacy-card .app-icon {
  background: linear-gradient(135deg, #43345f, #9472bb);
}

.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.app-status {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #e9f7ef;
  color: #176b3a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.app-status.pending {
  background: #fff2c9;
  color: #725400;
}

.app-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

/* BOOKS */

.books-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 168, 63, 0.1), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(239, 230, 214, 0.4));
  max-width: none;
}

.books-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.75fr 2fr;
  gap: 2rem;
  align-items: center;
}

.books-intro {
  max-width: 300px;
}

.books-intro h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.books-intro h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 1.5rem;
  background: var(--gold);
}

.books-intro p {
  color: var(--muted);
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.book-card {
  position: relative;
  min-height: 420px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(31, 51, 70, 0.09);
}

.book-cover {
  width: 100%;
  max-width: 150px;
  height: 210px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 20px 35px rgba(31, 51, 70, 0.22);
  margin-bottom: 1.25rem;;
}

.book-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.book-content h3 {
  font-size: 1.15rem;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.book-content p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.book-content .text-link {
  margin-top: auto;
}

.coming-soon-badge {
  position: static;
  width: fit-content;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #111827;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

/* RESOURCES */

.resources-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

.resource-card {
  padding: 1.4rem;
}

.resource-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
  background: #0f2743;
  border-radius: 15px;
  font-size: 1.5rem;
}

.resource-card p {
  color: var(--muted);
}

/* INSIGHTS */

.insights-section {
  background: var(--cream);
}

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

.article-card {
  overflow: hidden;
}

.article-image {
  width: 100%;
  height: 180px;
  background: var(--deep-navy);
  object-fit: cover;
}

.article-content {
  padding: 1.1rem;
}

.article-category {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.article-content h3 {
  font-size: 1.1rem;
}

.article-content p {
  color: var(--muted);
  font-size: 0.9rem;
}

.article-meta {
  font-size: 0.78rem;
  margin-bottom: 0;
}

/* WHY + FAQ */

.why-faq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.why-card {
  min-height: 330px;
  background:
    linear-gradient(180deg, rgba(7, 21, 38, 0.58), rgba(7, 21, 38, 0.96)),
    url("../images/home/mountain-path-hero.png");
  background-size: cover;
  background-position: center bottom;
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 2.6rem);
  box-shadow: var(--dark-shadow);
}

.why-card h2 {
  color: var(--gold);
}

.why-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
}

.section-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
  border: 1px solid rgba(214, 168, 63, 0.5);
  border-radius: 50%;
  font-size: 1.4rem;
}

.faq-card {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.faq-card h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

details {
  background: rgba(248, 245, 238, 0.82);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 0.75rem;
}

summary {
  color: var(--deep-navy);
  font-weight: 800;
  cursor: pointer;
}

details p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.6rem 0 0;
}

/* FINAL CTA */

.final-cta {
  background:
    linear-gradient(90deg, rgba(7, 21, 38, 0.98), rgba(7, 21, 38, 0.72)),
    url("../images/home/mountain-path-hero.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: clamp(2.3rem, 5vw, 3.5rem) 1.5rem;
}

.final-cta-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.final-cta h2 {
  color: var(--gold);
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin-bottom: 0.6rem;
}

.final-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
}

/* FOOTER */

.site-footer {
  background: #071526;
  color: var(--white);
  padding: 3rem 1.5rem 1.25rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr) 1.35fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand p,
.footer-column p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-column h3 {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.45rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-form {
  display: flex;
  margin: 0.85rem 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  overflow: hidden;
}

.footer-form input {
  min-width: 0;
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--white);
  font: inherit;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-form button {
  min-height: auto;
  border-radius: 0;
  padding: 0 0.95rem;
  background: var(--gold);
  color: #111827;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--gold-light);
}

/* FORMS / ACCESSIBILITY */

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--deep-navy);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(214, 168, 63, 0.18);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* LEGAL PAGES */

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}

.legal-page ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

.legal-page h3 {
  margin-top: 2rem;
}

/* RESPONSIVE */

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 7.5rem;
    text-align: center;
    background:
      radial-gradient(circle at top, rgba(214, 168, 63, 0.18), transparent 30rem),
      linear-gradient(180deg, #071526 0%, #102844 58%, #fffaf0 58%, #f8f5ee 100%);
  }

  .hero::after {
    display: none;
  }

  .hero-app-copy {
    text-align: center;
  }

  .hero-center {
    transform: none;
  }

  .hero-center h1 {
    color: var(--white);
  }

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

  .benefits-strip {
    margin-top: 0;
    border-radius: 0;
  }

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

  .benefit-item {
    border-right: none;
  }

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

  .books-intro {
    max-width: 720px;
  }

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

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }

  .app-grid,
  .article-grid,
  .resource-grid,
  .book-grid,
  .why-faq-section {
    grid-template-columns: 1fr;
  }

  .book-card {
    grid-template-columns: 120px 1fr;
  }

  .final-cta-content,
  .footer-bottom,
  .horizontal-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 1rem;
  }

  .header-button {
    display: none;
  }

  .brand-name {
    font-size: 1.65rem;
  }

  .hero {
    padding: 6.5rem 1rem 2rem;
  }

  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .book-card {
    grid-template-columns: 1fr;
  }

  .book-cover {
    max-width: 170px;
  }

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

  .footer-legal {
    flex-direction: column;
    gap: 0.35rem;
  }
}

/* ABOUT PAGE */

.page-main {
  background: var(--cream);
  color: var(--deep-navy);
}

.about-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}

.about-hero h1 {
  max-width: 980px;
  margin: 0 auto 1.25rem;
  font-size: clamp(4rem, 7vw, 6.75rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
}

.about-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading h2,
.about-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-heading p,
.about-card p {
  color: var(--text);
}

.eyebrow {

  color: var(--gold);

  font-size: 0.78rem;

  font-weight: 900;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  margin-bottom: 0.8rem;

}

.about-card {
  padding: 2rem;
  border: 1px solid rgba(214, 168, 63, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.about-card p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.about-grid .about-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.about-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(214, 168, 63, 0.12);
  border: 1px solid rgba(214, 168, 63, 0.3);
  font-size: 1.35rem;
}

.about-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.about-contact {
  text-align: center;
}

.about-contact .button,
.about-contact a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  background: var(--gold);
  color: var(--deep-navy);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1000px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding-top: 6rem;
  }

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

  .about-card {
    padding: 1.5rem;
  }
}
/* INNER PAGES */

.inner-page header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.inner-page .page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 7.5rem 1.5rem 4rem;
}

.inner-page .about-hero {
  padding-top: 2rem;
  padding-bottom: 4rem;
  text-align: center;
}

.inner-page .about-hero h1 {
  max-width: 980px;
  margin: 0 auto 1.25rem;
  font-size: clamp(2.75rem, 5vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.inner-page .hero-copy {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

.inner-page .about-section {
  padding: 3rem 0;
}

.inner-page .section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.inner-page .about-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.inner-page .about-card {
  padding: 2rem;
  border: 1px solid rgba(214, 168, 63, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

@media (max-width: 1000px) {
  .inner-page .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .inner-page .page-main {
    padding-top: 6.5rem;
  }

  .inner-page .about-grid {
    grid-template-columns: 1fr;
  }
}
/* INNER PAGE HEADER CARD */

.inner-page header {
  position: absolute;
  top: 1rem;
  left: 50%;
  width: calc(100% - 3rem);
  max-width: 1180px;
  transform: translateX(-50%);
  z-index: 20;

  background: rgba(8, 29, 48, 0.94);
  border: 1px solid rgba(214, 168, 63, 0.24);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(8, 29, 48, 0.25);
  padding: 0.9rem 1.25rem;
}

/* CONTACT PAGE */

.contact-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 7.5rem 1.5rem 5rem;
}

.contact-hero {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.contact-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.5rem, 6vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.contact-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem;
  border: 1px solid rgba(214, 168, 63, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.contact-card form {
  display: grid;
  gap: 1.25rem;
}

.contact-card label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--deep-navy);
  font-weight: 800;
  text-align: left;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(31, 51, 70, 0.16);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.contact-card textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(214, 168, 63, 0.16);
}

.contact-card button,
.contact-card .button {
  justify-self: center;
  margin-top: 0.5rem;
  padding: 0.95rem 1.4rem;
  border: none;
  border-radius: 14px;
  background: var(--gold);
  color: var(--deep-navy);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(214, 168, 63, 0.24);
}

.contact-card button:hover,
.contact-card .button:hover {
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .contact-main {
    padding-top: 6.5rem;
  }

  .contact-card {
    padding: 1.5rem;
  }
}

/* LEGAL PAGES */

.legal-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 7.5rem 1.5rem 5rem;
}

.legal-hero {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.legal-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.5rem, 6vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.legal-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.75rem;
  border: 1px solid rgba(214, 168, 63, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 2rem 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.legal-card h2:first-of-type {
  margin-top: 1.25rem;
}

.legal-card p {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.75;
}

.legal-card a {
  color: var(--deep-navy);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.2em;
}

.legal-updated {
  color: var(--muted);
}

@media (max-width: 640px) {
  .legal-main {
    padding-top: 6.5rem;
  }

  .legal-card {
    padding: 1.5rem;
  }
}

/* GOLD INNER PAGE EYEBROWS */

.inner-page .legal-hero .eyebrow,
.inner-page .contact-hero .eyebrow,
.inner-page .disclaimer-hero .eyebrow,
.inner-page .terms-hero .eyebrow,
.inner-page .support-hero .eyebrow,
.inner-page .privacy-hero .eybrow,
.inner-page .about-hero .eyebrow {
  color: var(--gold) !important;
}


/* SUPPORT PAGE */

.support-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 7.5rem 1.5rem 5rem;
}

.support-hero {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.support-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.5rem, 6vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.support-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

.support-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.25rem 0;
}

.support-card {
  padding: 2.75rem;
  border: 1px solid rgba(214, 168, 63, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.support-card h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.faq-list {
  display: grid;
  gap: 1.25rem;
  margin: 0;
}

.faq-item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(31, 51, 70, 0.12);
}

.faq-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item dt {
  margin-bottom: 0.4rem;
  color: var(--deep-navy);
  font-weight: 800;
  font-size: 1.05rem;
}

.faq-item dd {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.support-contact-card {
  text-align: center;
}

.support-contact-card p {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  color: var(--text);
  line-height: 1.7;
}

.support-contact-card .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 14px;
  background: var(--gold);
  color: var(--deep-navy);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(214, 168, 63, 0.24);
}

.support-contact-card .button:hover {
  transform: translateY(-1px);
}

.support-note {
  margin-top: 1.25rem !important;
  font-size: 0.95rem;
  color: var(--muted) !important;
}

@media (max-width: 640px) {
  .support-main {
    padding-top: 6.5rem;
  }

  .support-card {
    padding: 1.5rem;
  }
}

/* STANDARD PAGE HEADERS */
.standard-header {
  position: sticky;
  top: 0;
  left: auto;
  width: 100%;
  z-index: 30;
  padding: 0.95rem 1.5rem;
  box-shadow: 0 12px 28px rgba(7, 21, 38, 0.16);
}
.standard-header .brand-name { font-size: 1.65rem; }
.standard-header .brand-subtitle { font-weight: 700; }
.standard-header.navy-header { background: var(--deep-navy); }
.standard-header.book-header { background: #050505; }
.standard-header.book-header .brand-name,
.standard-header.book-header .main-nav a { color: #f1c96a; }
.standard-header.app-header { background: var(--deep-navy); }
.standard-header.guard-header { background: #00167a; }
.standard-header.calm-header { background: #03424d; }
.standard-header.faith-header { background: #590438; }
.standard-header.stride-header { background: #17341d; }
.standard-header.legacy-header { background: #2d2338; }
.standard-header.guard-header .brand-name,
.standard-header.guard-header .main-nav a,
.standard-header.calm-header .brand-name,
.standard-header.calm-header .main-nav a,
.standard-header.faith-header .brand-name,
.standard-header.faith-header .main-nav a,
.standard-header.stride-header .brand-name,
.standard-header.stride-header .main-nav a,
.standard-header.legacy-header .brand-name,
.standard-header.legacy-header .main-nav a { color: var(--gold); }
.standard-header.guard-header .brand-subtitle,
.standard-header.calm-header .brand-subtitle,
.standard-header.faith-header .brand-subtitle,
.standard-header.stride-header .brand-subtitle,
.standard-header.legacy-header .brand-subtitle { color: rgba(255,255,255,.92); }
.standard-header .header-button { border: 1px solid rgba(255,255,255,.14); }
.main-page .content-hero,
.book-page .content-hero,
.app-page .content-hero { padding-top: 6rem; }
@media (max-width: 900px) {
  .standard-header .main-nav { display: none; }
}
@media (max-width: 620px) {
  .standard-header { padding: 0.8rem 1rem; }
  .standard-header .brand-name { font-size: 1.35rem; }
}