/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-body);
  background-color: var(--bg-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Color System */
:root {
  --navy: #102A43;
  --navy-dark: #0B1F33;
  --bg-main: #F4F6F8;
  --bg-alt: #FBFCFD;
  --card-bg: #FFFFFF;
  --divider: #E3E8EE;
  --text-body: #243B53;
  --text-muted: #5C6F82;
}

/* Layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: clamp(5rem, 12vw, 6.5rem) 0;
  border-bottom: 1px solid var(--divider);
}

section:last-of-type {
  border-bottom: none;
}

.section-alt {
  background: var(--bg-alt);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.25;
  font-weight: 600;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-body);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 140px;
  background-image: url('sanfrancisco.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-bottom: 1px solid var(--divider);
  box-shadow: 0 1px 2px rgba(16, 42, 67, 0.06);
  transition: box-shadow 300ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 252, 253, 0.92);
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
  z-index: 0;
}

.site-header.is-shrunk::before {
  opacity: 1;
}

.site-header .container {
  position: relative;
  z-index: 1;
  min-height: 140px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  width: 100%;
}

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

.brand-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.brand-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Scrolled state: overlay fades in (::before), shadow deepens */
.site-header.is-shrunk {
  box-shadow: 0 4px 20px rgba(16, 42, 67, 0.08);
}

/* Navigation */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.nav-toggle-line {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

.nav-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--divider);
}

.nav-menu.open {
  display: block;
}

.nav-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-body);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav-menu a:hover {
  color: var(--navy);
  padding-left: 0.5rem;
}

/* Hero */
.hero {
  padding: 0;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  min-height: 70vh;
  background-image: url('https://images.unsplash.com/photo-1521292270410-a8c53642e9d0?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 42, 67, 0.75);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 1.5rem;
  color: #ffffff;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-emphasis {
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.hero-cta:hover {
  opacity: 0.92;
}

/* About Section — mobile-first editorial */
.about-section.section-alt {
  background: #FBFCFD;
}

.about-editorial {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* Portrait: tall card, soft shadow, never touch edges */
.about-photo-card {
  margin-bottom: 2rem;
}

.about-photo-inner {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid rgba(16, 42, 67, 0.10);
  box-shadow: 0 30px 60px rgba(16, 42, 67, 0.08);
}

.profile-image {
  width: 100%;
  height: auto;
  min-height: 200px;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  background-color: var(--card-bg);
}

.profile-placeholder {
  display: none;
  width: 100%;
  min-height: 200px;
  border-radius: 18px;
  background: rgba(16, 42, 67, 0.06);
  color: var(--navy);
  font-size: 3rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", Georgia, serif;
  align-items: center;
  justify-content: center;
}

.profile-placeholder.profile-placeholder-visible {
  display: flex;
}

.about-image-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.about-dre {
  margin-top: 0.25rem;
  font-size: 0.8rem;
}

/* Typography: headline + intro */
.about-headline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 600;
  color: #102A43;
  margin-bottom: 1rem;
}

.about-intro {
  font-size: 1.0625rem; /* 17px */
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 2rem;
}

/* Bio card: white on #FBFCFD, 18px radius, light border */
.about-bio-card {
  background: var(--card-bg);
  border-radius: 18px;
  border: 1px solid #E3E8EE;
  padding: 2rem;
}

.about-bio-card p {
  font-size: 1.0625rem; /* 17px */
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.about-bio-card p:last-of-type {
  margin-bottom: 1.5rem;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.about-chip {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  background: rgba(16, 42, 67, 0.06);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(16, 42, 67, 0.12);
}

.about-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-ctas .btn {
  flex: 1 1 auto;
  min-width: 0;
}

/* About: 2-column layout on desktop (lg) — left: label + image, right: headline + bio */
@media (min-width: 1024px) {
  .about-editorial {
    display: grid;
    grid-template-columns: 420px minmax(280px, 580px);
    grid-template-rows: auto auto;
    gap: 2rem 70px;
    align-items: start;
    justify-content: start;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Row 1: ABOUT label (left), H2 headline (right) */
  .about-label {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 1.25rem;
  }

  .about-headline {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 1.25rem;
  }

  /* Row 2: Image (left), bio card (right) — both top-aligned */
  .about-photo-card {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
    max-width: 420px;
  }

  .about-bio-card {
    grid-column: 2;
    grid-row: 2;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: 2px solid transparent;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--navy-dark);
  opacity: 0.96;
}

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

.btn-outline:hover {
  opacity: 0.85;
}

/* Section Header */
.section-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: left;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 1rem;
}

/* Editorial Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.article-card {
  background: var(--card-bg);
  border-radius: 6px;
  padding: 2rem;
  border: 1px solid var(--divider);
  box-shadow: 0 1px 3px rgba(16, 42, 67, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: 0 2px 8px rgba(16, 42, 67, 0.06);
  border-color: var(--text-muted);
}

.article-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding: 0.2rem 0.6rem;
  background: rgba(62, 92, 118, 0.08);
  border-radius: 2px;
}

.article-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.35rem;
  line-height: 1.35;
}

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

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

/* Process Steps */
.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--divider);
}

.process-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.process-step p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.checklist {
  list-style: none;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0 0;
  background: var(--card-bg);
  border-radius: 6px;
  border: 1px solid var(--divider);
  box-shadow: 0 1px 3px rgba(16, 42, 67, 0.04);
}

.checklist li {
  padding: 0.75rem 0 0.75rem 2.25rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  border-bottom: 1px solid var(--divider);
}

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

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0.5rem;
  top: 0.75rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
}

/* Cards */
.card {
  background: var(--card-bg);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(16, 42, 67, 0.04);
  border: 1px solid var(--divider);
}

.card p {
  margin-bottom: 1.25rem;
}

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

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 6px;
  padding: 1.75rem;
  border: 1px solid var(--divider);
  box-shadow: 0 1px 3px rgba(16, 42, 67, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 6px rgba(16, 42, 67, 0.06);
  border-color: var(--text-muted);
}

.faq-item h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.faq-item p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* Contact */
.contact-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: 6px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(16, 42, 67, 0.04);
  border: 1px solid var(--divider);
}

.contact-card .btn {
  width: 100%;
  margin-bottom: 1.5rem;
}

.contact-info {
  padding-top: 1.5rem;
  border-top: 1px solid var(--divider);
}

.contact-info p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-body);
}

.contact-info a {
  color: var(--navy);
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.contact-info a:hover {
  opacity: 0.8;
}

.contact-or {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.calendly-embed-wrap {
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.calendly-iframe {
  display: block;
  min-height: 700px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--divider);
  box-shadow: 0 1px 3px rgba(16, 42, 67, 0.04);
  margin: 0;
}

.review-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--divider);
}

.review-author {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: 0.25rem;
}

.review-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Choose your path (homepage) */
.choose-path-section .section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.choose-path-section .section-header h2 {
  margin-left: auto;
  margin-right: auto;
}

.path-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.path-card {
  background: var(--card-bg);
  border-radius: 18px;
  border: 1px solid var(--divider);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(16, 42, 67, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.path-card:hover {
  box-shadow: 0 2px 8px rgba(16, 42, 67, 0.06);
  border-color: var(--text-muted);
}

.path-card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.path-card-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.path-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.path-card-actions .btn {
  width: 100%;
  min-height: 48px;
  text-align: center;
}

@media (min-width: 1024px) {
  .path-grid {
    flex-direction: row;
    gap: 2.5rem;
    align-items: start;
  }

  .path-card {
    flex: 1;
    min-width: 0;
    padding: 2.25rem;
  }

  .path-card-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .path-card-actions .btn {
    width: auto;
    min-width: 0;
  }
}

/* Selling placeholder */
.selling-placeholder {
  max-width: 600px;
  margin: 0 auto;
}

.selling-placeholder-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

/* Guides (guides.html) */
.guides-section.section-alt {
  background: var(--bg-main);
}

.guides-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.guide-card {
  background: var(--card-bg);
  border-radius: 18px;
  border: 1px solid var(--divider);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(16, 42, 67, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.guide-card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.guide-card-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.guide-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.guide-card-actions .btn {
  width: 100%;
  min-height: 48px;
}

.guide-form-wrap {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--divider);
}

.guide-form-wrap[hidden] {
  display: none !important;
}

.guide-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.guide-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
}

.guide-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--divider);
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--text-body);
  transition: border-color 0.2s ease;
}

.guide-input:focus {
  outline: none;
  border-color: var(--navy);
}

.guide-submit {
  margin-top: 0.5rem;
  min-height: 48px;
}

.guide-whats-inside {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.guide-whats-inside-title {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.guide-whats-inside-list {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.7;
}

.guide-success {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--divider);
}

.guide-success[hidden] {
  display: none !important;
}

.guide-success-title {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.guide-success-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
}

.guide-download-link {
  color: var(--navy);
  font-weight: 500;
}

.guide-download-link:hover {
  opacity: 0.85;
}

@media (min-width: 1024px) {
  .guides-grid {
    flex-direction: row;
    gap: 2.5rem;
    align-items: start;
  }

  .guide-card {
    flex: 1;
    min-width: 0;
    padding: 2.25rem;
  }

  .guide-card-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .guide-card-actions .btn {
    width: auto;
    min-width: 0;
  }
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--divider);
  background: var(--bg-main);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0;
}

.footer-inner {
  text-align: center;
}

/* Responsive */
@media (max-width: 968px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-image-wrapper {
    background-attachment: scroll;
    min-height: 60vh;
  }

  .hero-inner {
    padding: 7.5rem 1.5rem 5rem; /* 120px top before headline */
  }

  section {
    padding: 5rem 0; /* 80px vertical */
  }

  .container {
    padding: 0 1.5rem; /* 24px horizontal */
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem; /* min 20px */
  }

  .process-step {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
  }

  .process-step:not(:last-child) {
    margin-bottom: 2rem; /* min 20px between steps */
  }

  .checklist {
    padding: 1.75rem; /* 28px */
    border-radius: 18px;
  }

  .checklist li {
    padding-left: 2rem;
    font-size: 1rem;
  }

  .article-card {
    padding: 1.75rem; /* 28px */
    border-radius: 18px;
  }

  .articles-grid {
    gap: 1.5rem; /* 24px between cards */
  }

  .section-header {
    margin-bottom: 2rem; /* space before content */
  }
}

/* Mobile (390px): luxury whitespace, no crowding */
@media (max-width: 480px) {
  .hero-image-wrapper {
    min-height: 55vh;
  }

  .hero-inner {
    padding: 7.5rem 1.5rem 5rem; /* 120px top before headline, 24px sides */
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-emphasis {
    margin-top: 1.25rem;
    margin-bottom: 2rem;
  }

  .hero-cta {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-top: 1.25rem;
  }

  section {
    padding: 5rem 0; /* 80px vertical */
  }

  .container {
    padding: 0 1.5rem; /* 24px horizontal */
  }

  /* Card padding 28px, radius 18px */
  .card,
  .contact-card,
  .article-card,
  .faq-item {
    padding: 1.75rem; /* 28px */
    border-radius: 18px;
  }

  .checklist {
    padding: 1.75rem;
    border-radius: 18px;
  }

  .profile-image,
  .profile-placeholder {
    border-radius: 18px;
  }

  /* Min 20px between elements */
  .articles-grid {
    gap: 1.25rem;
  }

  .faq-grid {
    gap: 1.25rem;
  }

  .about-bio-card {
    padding: 1.75rem; /* 28px on mobile */
  }

  .about-ctas {
    flex-direction: column;
  }

  .about-ctas .btn {
    width: 100%;
  }

  .card p,
  .article-card h3,
  .faq-item h3 {
    margin-bottom: 1.25rem;
  }

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

  .btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
  }

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

  .process-step {
    margin-bottom: 2rem;
  }

  .process-step p {
    font-size: 1rem;
  }
}
