:root {
  --forest: #1F3327;
  --ink: #10201A;
  --cream: #F7F3EA;
  --gold: #B8925A;
  --gold-dim: #8C6F45;
  --sage: #93A18A;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}

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

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--cream);
  border-bottom: 1px solid rgba(140, 111, 69, 0.2);
  padding: 1.1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav .mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav a.nav-link {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav a.nav-link:hover,
.nav a.nav-link[aria-current="page"] {
  color: var(--gold-dim);
  border-color: var(--gold);
}

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

.hero {
  min-height: 92svh;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  position: relative;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  animation: fadeUp 1s ease 0.1s both;
}

.rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.75rem;
  animation: fadeUp 1s ease 0.25s both;
}

.headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: 0.01em;
  animation: fadeUp 1s ease 0.4s both;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: var(--sage);
  max-width: 46ch;
  margin: 1.5rem auto 0;
  line-height: 1.5;
  animation: fadeUp 1s ease 0.55s both;
}

.scroll-cue {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: fadeUp 1s ease 0.9s both;
}

.scroll-cue span {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
  opacity: 0.9;
}

.scroll-cue .line {
  width: 1px;
  height: 26px;
  background: var(--gold);
  opacity: 0.6;
  animation: pulse 2.2s ease-in-out infinite;
}

.credentials {
  background: var(--forest);
  border-top: 1px solid rgba(184, 146, 90, 0.25);
  padding: 1.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.credentials .item {
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
}

.credentials .divider {
  width: 1px;
  height: 12px;
  background: var(--gold);
  opacity: 0.5;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.75; }
}

/* ---------- Shared section styles ---------- */

section.panel {
  padding: 7rem 1.75rem;
}

.panel-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.25rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.75rem;
}

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

.page-hero {
  background: var(--forest);
  text-align: center;
  padding: 4.5rem 1.75rem 4rem;
}

.page-hero .section-eyebrow {
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.page-hero .section-heading {
  color: var(--cream);
  margin-bottom: 0;
}

.page-hero .entry-date {
  color: var(--sage);
  opacity: 1;
  margin-top: 0.75rem;
}

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

.split.reverse .media { order: 2; }
.split.reverse .copy { order: 1; }

.media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(140, 111, 69, 0.35);
  padding: 10px;
}

.copy p {
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 1.35rem;
  max-width: 52ch;
}

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

#work { background: #EFE9DA; }

.centered-block {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.centered-block .section-eyebrow,
.centered-block .section-heading { text-align: center; }

.centered-block p {
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--ink);
  margin: 0 auto 1.35rem;
  max-width: 50ch;
}

.centered-block p:last-of-type { margin-bottom: 0; }

.btn-outline {
  display: inline-block;
  margin-top: 2.25rem;
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--cream);
}

@media (max-width: 860px) {
  .split, .split.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split .media, .split.reverse .media { order: 1; }
  .split .copy, .split.reverse .copy { order: 2; }
  section.panel { padding: 5rem 1.5rem; }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.1rem 1.25rem;
  }

  .nav ul {
    justify-content: center;
    gap: 0.85rem 1.15rem;
  }

  .credentials {
    gap: 0.85rem;
  }

  .credentials .divider {
    display: none;
  }

  .page-hero, .hero {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .offer-card {
    padding: 2rem 1.5rem;
  }
}

/* ---------- Styling: offer tiers ---------- */

#offer { background: var(--forest); }
#offer .section-eyebrow { color: var(--gold); }
#offer .section-heading { color: var(--cream); }

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.offer-card {
  border: 1px solid rgba(140, 111, 69, 0.35);
  padding: 2.5rem 2rem;
  background: var(--cream);
}

.offer-card .offer-tier {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.9rem;
}

.offer-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.offer-card p {
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.92;
}

.offer-card .offer-price {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

@media (max-width: 860px) {
  .offer-grid { grid-template-columns: 1fr; }
}

/* ---------- Styling: intake form ---------- */

.intake-form {
  max-width: 640px;
  margin: 2.5rem auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.6rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(140, 111, 69, 0.4);
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
}

.field textarea { resize: vertical; min-height: 100px; }

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-confirmation {
  display: none;
  max-width: 640px;
  margin: 2.5rem auto 0;
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(140, 111, 69, 0.35);
}

.form-confirmation.visible { display: block; }

.form-error {
  max-width: 640px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.85;
}

.form-error a { color: var(--gold-dim); }

.form-confirmation h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

.form-confirmation p {
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.75;
  opacity: 0.9;
}

.calendly-embed {
  max-width: 640px;
  margin: 3rem auto 0;
}

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

.contact {
  background: var(--forest);
  text-align: center;
  padding: 7rem 1.75rem 4rem;
}

.contact .section-heading {
  color: var(--cream);
  margin-bottom: 2rem;
}

.contact .section-eyebrow { color: var(--gold); }

.contact a.email {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 146, 90, 0.4);
  padding-bottom: 0.3rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.contact a.email:hover {
  color: var(--cream);
  border-color: var(--cream);
}

/* ---------- Site footer (every page) ---------- */

.site-footer {
  background: var(--forest);
  border-top: 1px solid rgba(184, 146, 90, 0.25);
  padding: 2.25rem 1.75rem;
  text-align: center;
}

.site-footer p {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: 0.85;
}

/* ---------- Notebook index ---------- */

.notebook-intro {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.tag-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.tag-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: transparent;
  border: 1px solid rgba(140, 111, 69, 0.4);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.tag-btn:hover { border-color: var(--gold); }

.tag-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
}

.notebook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem 2.5rem;
}

.notebook-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
}

.notebook-card .card-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(140, 111, 69, 0.35);
  padding: 8px;
  margin-bottom: 1.1rem;
}

.notebook-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.notebook-card:hover .card-media img {
  transform: scale(1.03);
}

.notebook-card .card-meta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.6rem;
}

.notebook-card .card-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.25;
  margin-bottom: 0.6rem;
  transition: color 0.25s ease;
}

.notebook-card:hover .card-title { color: var(--gold-dim); }

.notebook-card .card-excerpt {
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.85;
}

.notebook-empty {
  text-align: center;
  font-weight: 300;
  opacity: 0.7;
  grid-column: 1 / -1;
}

/* ---------- Notebook entry ---------- */

.entry-header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.entry-date {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: 0.9;
  margin-top: -0.5rem;
}

.entry-hero {
  max-width: 720px;
  margin: 0 auto 3rem;
  border: 1px solid rgba(140, 111, 69, 0.35);
  padding: 10px;
}

.entry-hero img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}

.entry-body {
  max-width: 62ch;
  margin: 0 auto;
}

.entry-body p {
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

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

.entry-verse {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.entry-verse cite {
  display: block;
  margin-top: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.back-link {
  display: inline-block;
  margin-top: 3rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.back-link:hover { border-color: var(--gold-dim); }

.entry-footer-link {
  max-width: 62ch;
  margin: 0 auto;
}

/* ---------- Faith page ---------- */

#beliefs { background: var(--cream); }
#testimonies { background: #EFE9DA; }
#books { background: var(--cream); }

.belief-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-top: 0.5rem;
}

.belief-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.5;
  color: var(--ink);
  text-align: left;
}

.belief-list li .dash {
  flex-shrink: 0;
  width: 24px;
  height: 1px;
  margin-top: 0.7em;
  background: var(--gold);
}

.belief-list li .text { flex: 1; }

.faith-list {
  max-width: 640px;
  margin: 2.5rem auto 0;
}

.faith-entry {
  padding-bottom: 2.75rem;
  margin-bottom: 2.75rem;
  border-bottom: 1px solid rgba(140, 111, 69, 0.25);
}

.faith-entry:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faith-entry .entry-meta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.faith-entry .book-author {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.faith-entry h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.faith-entry p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

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

.faith-loading {
  text-align: center;
  font-weight: 300;
  opacity: 0.7;
}

.faith-excerpt {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.faith-full[hidden] { display: none; }

.read-more-btn {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  margin-top: 0.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.read-more-btn:hover { border-color: var(--gold-dim); }

@media (prefers-reduced-motion: reduce) {
  .eyebrow, .rule, .headline, .tagline, .scroll-cue, .scroll-cue .line {
    animation: none;
  }
}
