/* ==========================================================================
   furqaankhazi.com, Global Stylesheet
   Palette: White #FFFFFF | Brown #825B0C | Ink #241E10 | Tint #FAF6EA | Gray #75694F
   Fonts: Anton (headings) + Inter (body)
   ========================================================================== */

:root {
  --accent: #825b0c;
  --accent-dark: #5c3f08;
  --ink: #241e10;
  --gray: #75694f;
  --tint: #faf6ea;
  --white: #ffffff;
  --border: #eadfc6;
  --radius: 0.75rem;
  --font-heading: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 72rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--white);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--accent-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.015em;
  color: var(--ink);
  text-wrap: balance;
  text-transform: uppercase;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }

p { text-wrap: pretty; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

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

/* ------------------------------ Buttons ------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 62.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(36, 30, 16, 0.15);
}

.btn:active { transform: translateY(0); }

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

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

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

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

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

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

/* ------------------------------ Header ------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
}

.brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}

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

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

.nav-menu a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--ink);
}

.nav-menu a:hover,
.nav-menu a[aria-current='page'] {
  color: var(--accent);
}

/* Animated underline on desktop nav links */
@media (min-width: 48.0625rem) {
  .nav-menu li:not(.nav-cta) a {
    position: relative;
    padding-bottom: 0.2rem;
  }

  .nav-menu li:not(.nav-cta) a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .nav-menu li:not(.nav-cta) a:hover::after,
  .nav-menu li:not(.nav-cta) a[aria-current='page']::after {
    transform: scaleX(1);
  }
}

.nav-cta { display: inline-flex; }

/* Ensure the CTA button text stays white despite .nav-menu a color rules */
.nav-menu .btn-primary,
.nav-menu .btn-primary:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  background: none;
  border: 0;
  cursor: pointer;
  align-items: center;
}

.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded='true'] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------ Hero ------------------------------ */

.hero {
  position: relative;
  background-color: #40362c; /* matches the dark center of the hero image */
  text-align: center;
}

/* The 1920x1080 banner is always shown in full, never cropped */
.hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

.hero-inner {
  /* Overlays the text on the dark center of the image on larger screens */
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem clamp(1.5rem, 6vw, 3rem);
}

.hero-inner > * { max-width: 40rem; }

/* Self-drawing reveal for the hero copy */
@keyframes heroDraw {
  from { opacity: 0; clip-path: inset(0 100% 0 0); }
  to { opacity: 1; clip-path: inset(0 0 0 0); }
}

.hero-inner > * {
  animation: heroDraw 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-inner > *:nth-child(1) { animation-delay: 0.2s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.55s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.9s; }
.hero-inner > *:nth-child(4) { animation-delay: 1.25s; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #dfc98f;
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

/* Each part of the single H1 sits on its own line (still one heading for SEO) */
.hero h1 .hero-line { display: block; }

.hero-quote {
  margin-top: 1.5rem;
  color: #f2e8cf;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-style: italic;
  line-height: 1.6;
}

.hero-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.85rem;
  color: #c9a24b;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

/* ------------------------------ Sections ------------------------------ */

.section { padding-block: clamp(3.5rem, 8vw, 5.5rem); }
.section-tint { background-color: var(--tint); }

.section-head {
  max-width: 44rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-head p {
  margin-top: 0.9rem;
  color: var(--gray);
  font-size: 1.05rem;
}

/* ------------------------------ Intro split ------------------------------ */

.split {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split > * { flex: 1 1 20rem; }

.split-body p + p { margin-top: 1rem; }
.split-body p { color: var(--gray); }
.split-body h2 { margin-bottom: 1.25rem; }
.split-body .btn { margin-top: 1.75rem; }

/* Image placeholder, replace the div with an <img> when ready */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--tint);
  border: 1px dashed #d3c295;
  border-radius: var(--radius);
  color: var(--gray);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  min-height: 20rem;
  padding: 1rem;
}

.img-placeholder.tall { min-height: 26rem; }

.content-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
}

.content-image.tall { aspect-ratio: 7 / 8; }
.img-placeholder.short { min-height: 14rem; }

/* Tilt + grow on hover/tap (used on the intro portrait) */
.tilt-hover {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
  will-change: transform;
  cursor: pointer;
}

.tilt-hover:hover,
.tilt-hover:focus-visible,
.tilt-hover:active {
  transform: rotate(2.5deg) scale(1.05);
  box-shadow: 0 20px 45px rgba(36, 30, 16, 0.18);
}

/* Highlighted note (used for the "You Are God" clarification) */
.callout {
  margin-top: 1.5rem;
  background-color: var(--tint);
  border: 1px solid #d3c295;
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}

.callout .callout-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.callout p {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.65;
}

.callout strong { color: var(--accent-dark); }

/* ------------------------------ Cards ------------------------------ */

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card-grid > * { flex: 1 1 18rem; }

.card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  border-color: #d3c295;
  box-shadow: 0 14px 36px rgba(130, 91, 12, 0.1);
  transform: translateY(-5px);
}

.card-link {
  display: inline-block;
  transition: transform 0.25s ease, color 0.2s ease;
}

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

.card h3 a { color: var(--ink); }
.card h3 a:hover { color: var(--accent); }
.card p { color: var(--gray); font-size: 0.95rem; flex-grow: 1; }

.card-link {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Stacked platform cards in the split layout (Platforms section) */
.platform-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

/* Image slot in the platforms split */
.platform-figure {
  margin: 0;
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
}

.platform-figure .img-placeholder {
  flex: 1;
  min-height: 18rem;
}

.platform-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.card-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background-color: var(--tint);
  padding: 0.3rem 0.75rem;
  border-radius: 62.5rem;
}

/* ------------------------------ Steps ------------------------------ */

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.pillars > * { flex: 1 1 15rem; }

.pillar {
  padding: 1.75rem;
  border-radius: var(--radius);
  background-color: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.pillar:hover {
  border-color: #d3c295;
  box-shadow: 0 12px 30px rgba(130, 91, 12, 0.09);
  transform: translateY(-4px);
}

.pillar-icon { transition: transform 0.3s ease, background-color 0.3s ease; }

.pillar:hover .pillar-icon {
  transform: scale(1.1) rotate(-4deg);
  background-color: #f0e5c8;
}

.pillar h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.pillar p { color: var(--gray); font-size: 0.92rem; }

.pillar-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.6rem;
  background-color: var(--tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

/* ------------------------------ Coaching CTA band ------------------------------ */

.cta-band {
  background-color: var(--accent);
  color: var(--white);
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 5rem);
}

.cta-band h2 { color: var(--white); }

.cta-band p {
  color: #f2e8cf;
  max-width: 38rem;
  margin: 1rem auto 0;
}

.cta-band .btn { margin-top: 2rem; }

.cta-note {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #dfc98f;
}

/* ------------------------------ Testimonials ------------------------------ */

.testimonial {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial:hover {
  border-color: #d3c295;
  box-shadow: 0 12px 30px rgba(130, 91, 12, 0.08);
  transform: translateY(-4px);
}

.testimonial blockquote p {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.7;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.testimonial .t-name { font-weight: 600; font-size: 0.95rem; }
.testimonial .t-meta { color: var(--gray); font-size: 0.85rem; }

.stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 0.15em; }

/* ------------------------------ FAQ ------------------------------ */

.faq-list {
  max-width: 46rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--white);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: '\2013'; }

.faq-item .faq-answer {
  padding: 0 1.4rem 1.25rem;
  color: var(--gray);
  font-size: 0.95rem;
}

/* ------------------------------ Newsletter ------------------------------ */

.newsletter {
  text-align: center;
}

.newsletter .btn { margin-top: 1.75rem; }

/* ------------------------------ Page hero (inner pages) ------------------------------ */

.page-hero {
  background-color: var(--tint);
  padding-block: clamp(3rem, 7vw, 4.5rem);
  text-align: center;
}

.page-hero p {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: var(--gray);
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  list-style: none;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb li + li::before { content: '/'; margin-right: 0.4rem; color: #d3c295; }

/* ------------------------------ Prose (articles & legal) ------------------------------ */

.prose {
  max-width: 44rem;
  margin-inline: auto;
}

.prose h2 { margin: 2.25rem 0 0.9rem; }
.prose h3 { margin: 1.75rem 0 0.7rem; }
.prose p { margin-bottom: 1rem; color: #3f3826; }
.prose ul, .prose ol { margin: 0 0 1rem 1.4rem; color: #3f3826; }
.prose li { margin-bottom: 0.45rem; }

.prose blockquote {
  border-left: 3px solid var(--accent);
  background-color: var(--tint);
  padding: 1.1rem 1.4rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--ink);
}

.prose blockquote cite { display: block; margin-top: 0.5rem; font-style: normal; font-size: 0.85rem; color: var(--gray); }

.post-meta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  color: var(--gray);
  font-size: 0.88rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* ------------------------------ Forms ------------------------------ */

.form-card {
  max-width: 38rem;
  margin-inline: auto;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background-color: var(--white);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid transparent;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(130, 91, 12, 0.12);
}

.form-note { font-size: 0.82rem; color: var(--gray); margin-top: 1rem; }

/* Honeypot field, hidden from humans */
.hp-field { position: absolute; left: -624.9375rem; opacity: 0; pointer-events: none; }

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  display: none;
}

.form-status.success { display: block; background-color: #f0faf2; color: #1c6b31; border: 1px solid #bfe5c8; }
.form-status.error { display: block; background-color: #fdf2f2; color: #a12626; border: 1px solid #efc7c7; }

/* ------------------------------ Contact info ------------------------------ */

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-grid > * { flex: 1 1 20rem; }

.info-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.info-list strong { display: block; font-size: 0.9rem; }
.info-list span, .info-list a { font-size: 0.95rem; color: var(--gray); }
.info-list a { color: var(--accent); }

/* ------------------------------ Footer ------------------------------ */

.site-footer {
  background-color: #211909;
  color: #c4b797;
  padding: clamp(3rem, 6vw, 4rem) 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #3a2f14;
}

.footer-grid > * { flex: 1 1 12rem; }
.footer-brand { flex: 2 1 18rem; }

.footer-brand .brand { color: var(--white); font-size: 1.3rem; }
.footer-brand p { margin-top: 0.9rem; max-width: 24rem; line-height: 1.7; }

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: #c4b797; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.75rem;
  font-size: 0.82rem;
  color: #9c8b62;
}

/* ------------------------------ Reveal animation ------------------------------ */

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

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .pillar, .pillar-icon, .testimonial, .tilt-hover, .card-link { transition: none; }
  .btn:hover, .card:hover, .pillar:hover, .testimonial:hover,
  .tilt-hover:hover, .card-link:hover { transform: none; }
}

/* ------------------------------ Hero on small screens ------------------------------ */

@media (max-width: 56rem) {
  /* The full 16:9 banner is shown uncropped (its height is always 56.25vw).
     All overlay text is sized in vw so it scales down with the image and
     stays inside it, mirroring the desktop proportions. */
  .hero-banner {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: fill;
  }

  .hero-inner {
    padding: 2vw 4vw;
  }

  .hero-eyebrow {
    font-size: 2vw;
    letter-spacing: 0.14em;
    margin-bottom: 1vw;
  }

  .hero h1 { font-size: 6vw; line-height: 1.05; }

  .hero-quote {
    margin-top: 1.5vw;
    font-size: 2.6vw;
    line-height: 1.5;
  }

  .hero-quote cite { margin-top: 0.6vw; font-size: 2.1vw; }

  .hero-actions { margin-top: 2vw; gap: 2vw; }

  .hero-actions .btn {
    padding: 1.5vw 3.5vw;
    font-size: 2.5vw;
  }
}

/* ------------------------------ Responsive ------------------------------ */

@media (max-width: 48rem) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    text-align: center;
  }

  .nav-menu.open { max-height: 30rem; }

  .nav-menu li { width: 100%; text-align: center; }

  .nav-menu a {
    display: block;
    padding: 0.9rem 1.25rem;
  }

  /* Center the CTA button in the mobile menu like the other items */
  .nav-cta {
    margin: 0.75rem auto 1.25rem;
    width: auto;
    display: flex;
    justify-content: center;
  }

  .nav-cta .btn { display: inline-flex; }

  /* ---------- Center-align all content on mobile ---------- */

  .split-body,
  .card,
  .pillar,
  .testimonial,
  .callout,
  .prose,
  .contact-grid > *,
  .newsletter .container,
  .platform-stack {
    text-align: center;
  }

  .split-body .btn { margin-inline: auto; }

  .card-tag { align-self: center; }

  .card-link { align-self: center; }

  .card,
  .pillar,
  .testimonial {
    align-items: center;
  }

  .pillar { display: flex; flex-direction: column; }
  .pillar-icon { margin-inline: auto; }

  .testimonial footer { align-items: center; }

  .prose ul,
  .prose ol {
    list-style-position: inside;
    margin-left: 0;
  }

  .prose blockquote {
    border-left: 0;
    border-top: 3px solid var(--accent);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .info-list { align-items: center; }
  .info-list strong { text-align: center; }

  .footer-grid > * { text-align: center; }
  .footer-brand .brand { display: inline-block; }
  .footer-brand p { margin-inline: auto; }
  .footer-links { align-items: center; }

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

/* ------------------------------ Skip link (accessibility) ------------------------------ */

.skip-link {
  position: absolute;
  left: -624.9375rem;
  top: 0;
  z-index: 100;
  background-color: var(--accent);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  text-decoration: none;
}

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

/* ------------------------------ Footer brand accent ------------------------------ */

.footer-brand .brand span { color: #c9a24b; }

/* ------------------------------ Narrow container (articles & legal) ------------------------------ */

.container-narrow { max-width: 46rem; }

/* ------------------------------ Page hero subtitle ------------------------------ */

.page-hero-sub {
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 0.75rem;
}

/* ------------------------------ Articles (blog posts) ------------------------------ */

.article { padding-block: clamp(2.5rem, 6vw, 4rem); }

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

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

.article-header { margin-bottom: 2rem; }

.article-meta {
  color: var(--gray);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}

.article-header h1 { font-size: clamp(2rem, 5vw, 3rem); }

.article-intro {
  margin-top: 1.1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #3f3826;
}

.article-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 16rem;
  background-color: var(--tint);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--gray);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
  margin-bottom: 2.25rem;
}

.article-body h2 { margin: 2.25rem 0 0.9rem; }
.article-body h3 { margin: 1.75rem 0 0.7rem; }
.article-body p { margin-bottom: 1rem; color: #3f3826; }
.article-body ul, .article-body ol { margin: 0 0 1rem 1.4rem; color: #3f3826; }
.article-body li { margin-bottom: 0.45rem; }
.article-body a { color: var(--accent); }
.article-body a:hover { color: var(--accent-dark); }

.article-body blockquote {
  border-left: 3px solid var(--accent);
  background-color: var(--tint);
  padding: 1.1rem 1.4rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--ink);
}

.article-body blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gray);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.article-body th,
.article-body td {
  border: 1px solid var(--border);
  padding: 0.7rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

.article-body th { background-color: var(--tint); font-weight: 600; }

.article-cta {
  margin: 2.5rem 0;
  padding: 1.75rem;
  background-color: var(--tint);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.article-cta h2, .article-cta h3 { margin: 0 0 0.75rem; }
.article-cta p { margin-bottom: 1.25rem; }

.article-related { margin-top: 3rem; }
.article-related h2 { margin-bottom: 1rem; }

.article-related ul {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.article-related a { color: var(--accent); text-decoration: none; font-weight: 500; }
.article-related a:hover { color: var(--accent-dark); text-decoration: underline; }

/* ------------------------------ Legal pages ------------------------------ */

.legal-content { padding-block: clamp(2.5rem, 6vw, 4rem); }

/* ------------------------------ Article & legal centering on mobile ------------------------------ */

@media (max-width: 48rem) {
  .article-header,
  .article-body,
  .article-cta,
  .article-related,
  .legal-content .article-body {
    text-align: center;
  }

  .breadcrumbs { justify-content: center; }

  .article-body ul,
  .article-body ol {
    list-style-position: inside;
    margin-left: 0;
  }

  .article-body blockquote {
    border-left: 0;
    border-top: 3px solid var(--accent);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .article-body th,
  .article-body td { text-align: center; }
}
