/* Walking My Mom Home — Colette Lundin */

:root {
  --sky: #6ba3c4;
  --sky-deep: #3d7190;
  --sky-soft: #d7eaf3;
  --sand: #e8dcc8;
  --boardwalk: #c4a06a;
  --earth: #4a3828;
  --sage: #6d8454;
  --wildflower: #d4b13a;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --ink: #2a261f;
  --ink-soft: #5c564c;
  --line: rgba(74, 56, 40, 0.14);
  --shadow: 0 24px 60px rgba(42, 38, 31, 0.18);
  --radius: 14px;
  --max: 1120px;
  --header: 4.25rem;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--sky-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--earth);
}

p {
  margin: 0 0 1rem;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--earth);
  color: var(--paper);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip:focus {
  top: 1rem;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.2rem;
  min-width: 0;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(246, 241, 232, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 253, 248, 0.94);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--earth);
  line-height: 1.15;
}

.brand-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 560;
}

.brand-author {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.65rem;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--earth);
  margin: 5px 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--sky-deep);
}

.nav .btn {
  margin-left: 0.4rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  font-weight: 520;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

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

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

.btn-primary:hover {
  background: #34271c;
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(74, 56, 40, 0.28);
  color: var(--earth);
}

.btn-ghost:hover {
  background: rgba(255, 253, 248, 0.7);
  color: var(--earth);
}

.btn-light {
  background: var(--paper);
  color: var(--earth);
}

.btn[aria-disabled="true"],
.btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 3.2rem 0 4.2rem;
  background:
    radial-gradient(1200px 480px at 80% -10%, rgba(107, 163, 196, 0.35), transparent 60%),
    linear-gradient(180deg, #dcecf4 0%, var(--cream) 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-grid > *,
.split > *,
.about-teaser > *,
.two-threads > *,
.chapter-list li,
.footer-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-deep);
  font-weight: 560;
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.15rem, 8vw, 4.4rem);
  margin: 0 0 0.55rem;
  overflow-wrap: break-word;
}

.subtitle {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 450;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.lede {
  font-size: 1.12rem;
  max-width: 38rem;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 1.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.8rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.hero-meta strong {
  display: block;
  color: var(--earth);
  font-weight: 560;
}

.cover-frame {
  justify-self: center;
  width: min(100%, 400px);
  filter: drop-shadow(var(--shadow));
}

.cover-frame img {
  width: 100%;
  border-radius: 4px 10px 10px 4px;
}

/* Sections */

section {
  padding: 4.4rem 0;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 560;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin: 0 0 1rem;
  max-width: 18ch;
}

.section-intro {
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Quote */

.pullquote {
  padding: 4.6rem 0;
  background: var(--earth);
  color: #f3ead9;
}

.pullquote blockquote {
  margin: 0 auto;
  max-width: 46rem;
  text-align: center;
}

.pullquote p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3.2vw, 2.15rem);
  line-height: 1.35;
  font-weight: 450;
  margin-bottom: 1.1rem;
  overflow-wrap: break-word;
}

.pullquote cite {
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--boardwalk);
}

/* Cards */

.two-threads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.45rem 1.35rem;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
}

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

.audience {
  background: #efe6d4;
}

.audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.4rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  padding-left: 1.35rem;
  position: relative;
}

.audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--sage);
}

/* Chapters */

.chapters {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.chapter-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.chapter-list li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 0.85rem;
  padding: 1.15rem 1rem 1.15rem 0;
  border-top: 1px solid var(--line);
}

.chapter-num {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--sky-deep);
}

.chapter-list h3 {
  margin: 0 0 0.25rem;
  font-size: 1.12rem;
}

.chapter-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Excerpt */

.excerpt-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.excerpt-panel h3 {
  margin-top: 0;
}

.excerpt-panel p:first-of-type {
  font-size: 1.12rem;
}

/* About teaser */

.about-teaser {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 2rem;
  align-items: center;
}

.portrait {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  border: 1px solid var(--line);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.portrait-mark {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.portrait small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 10ch;
}

/* Coming soon */

.coming {
  background:
    linear-gradient(180deg, #e7f2f7, #f6f1e8);
}

.coming-card {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.coming-card h2 {
  max-width: none;
}

.consult-portrait {
  width: min(100%, 220px);
  height: auto;
  border-radius: 12px;
  margin: 0 0 1.1rem;
  box-shadow: 0 12px 28px rgba(42, 38, 31, 0.12);
}

.consult-hero-pic {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.price-chip {
  display: inline-block;
  margin: 0.8rem 0 0;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #efe6d4;
  color: var(--earth);
  font-size: 0.92rem;
  font-weight: 560;
}

.calendly-wrap {
  margin-top: 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.consult-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.consult-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.92rem;
  font-weight: 520;
  color: var(--earth);
}

.consult-form input,
.consult-form textarea {
  font: inherit;
  font-weight: 400;
  color: var(--ink);
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf8;
}

.consult-form input:focus,
.consult-form textarea:focus {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
}

.excerpt-panel .form-note {
  color: var(--ink-soft);
}

.coming-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.8rem;
  align-items: center;
}

.brand-art {
  margin: 0;
}

.brand-art img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.brand-art figcaption {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.about-art {
  margin-top: 2.4rem;
}

/* Buy / list */

.cta-band {
  background: var(--earth);
  color: #f3ead9;
  padding: 4.4rem 0;
}

.cta-band h2 {
  color: #f6f1e8;
  max-width: 16ch;
}

.cta-band p {
  color: #d9cbb3;
  max-width: 36rem;
}

.buy-split {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: center;
}

.buy-cover {
  width: 100%;
  border-radius: 4px 8px 8px 4px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 2rem;
}

.signup {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  max-width: 32rem;
}

.signup input {
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  font: inherit;
  background: #fffdf8;
  color: var(--ink);
}

.signup input:focus {
  outline: 2px solid var(--boardwalk);
  outline-offset: 2px;
}

.form-note,
.form-status {
  font-size: 0.88rem;
  margin-top: 0.7rem;
  color: #d9cbb3;
}

.form-status[hidden] {
  display: none;
}

.form-status.is-ok {
  color: #e8d27a;
}

/* Page heroes (inner) */

.page-hero {
  padding: 3.2rem 0 2rem;
  background:
    linear-gradient(180deg, #dcecf4 0%, var(--cream) 100%);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 0 0 0.7rem;
}

.breadcrumb {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
}

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

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-size: 1.7rem;
  margin: 2.2rem 0 0.7rem;
}

.prose ul {
  padding-left: 1.15rem;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.4rem 0 0;
}

.check-card h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

/* Footer */

.site-footer {
  padding: 2.4rem 0 2.6rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

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

.disclaimer {
  margin-top: 1.1rem;
  max-width: 46rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Responsive */

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.2rem 1.3rem;
    gap: 0.85rem;
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .hero-grid,
  .split,
  .two-threads,
  .chapter-list,
  .audience-list,
  .about-teaser,
  .check-grid,
  .coming-split,
  .buy-split {
    grid-template-columns: 1fr;
  }

  .buy-cover {
    width: min(42vw, 180px);
    justify-self: start;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1,
  .page-hero h1,
  .section-title,
  .subtitle,
  .lede,
  .section-intro,
  .prose p {
    overflow-wrap: anywhere;
  }

  .section-title {
    max-width: none;
  }

  .cover-frame {
    width: min(72vw, 280px);
    order: -1;
  }

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

  .chapter-list li {
    padding-right: 0;
  }

  .page-hero {
    padding-top: 2.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}
