@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Nunito+Sans:wght@400;600;700;800&display=swap');

* {
  box-sizing: border-box;
}

:root {
  --cream: #fbf7ef;
  --cream-2: #f4eadc;
  --sky: #a8d4f0;
  --soft-blue: #dcecf4;
  --mountain-blue: #1f5e8c;
  --deep-blue: #16364f;
  --orange: #e67e3d;
  --gold: #f2b950;
  --stone: #5f6870;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(22, 54, 79, .14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito Sans', Arial, sans-serif;
  color: var(--deep-blue);
  background: var(--cream);
  line-height: 1.78;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 5.5vw;
  background: rgba(251, 247, 239, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(22, 54, 79, 0.1);
}

.logo {
  color: var(--deep-blue);
  text-decoration: none;
  display: grid;
  gap: 7px;
  line-height: 1.05;
}

.logo span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.logo small {
  color: var(--orange);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  color: var(--deep-blue);
  text-decoration: none;
  font-size: .98rem;
  font-weight: 800;
}

.nav-button {
  border: 1px solid var(--orange);
  border-radius: 999px;
  padding: 8px 16px;
}

.hero,
.page-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 9vw 6vw;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero {
  min-height: 68vh;
}

.home-hero {
  background-image: url('images/home-hero-snow.jpg');
  background-position: center center;
}

.journey-hero {
  background-image: url('images/canyon-path-wide.jpg');
  background-position: center center;
}

.resources-hero {
  background-image: url('images/resources-hero.jpg');
  background-position: center center;
}

.connect-hero {
  background-image: url('images/connect-lake.jpg');
  background-position: center center;
}

.journal-hero {
  background-image: url('images/mountain-view.jpg');
  background-position: center center;
}

.vision-hero {
  background-image: url('images/canyon-path.jpg');
  background-position: center 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22,54,79,.83), rgba(22,54,79,.43), rgba(22,54,79,.10)),
    radial-gradient(circle at 20% 30%, rgba(230,126,61,.18), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: clamp(1.16rem, 1.45vw, 1.38rem);
  font-weight: 900;
  color: var(--orange);
}

.light {
  color: #ffd7b8;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.04;
  margin: 0 0 22px;
  font-weight: 700;
}

h1 {
  font-size: clamp(3.9rem, 8.3vw, 7.8rem);
  letter-spacing: -.03em;
}

h2 {
  font-size: clamp(2.35rem, 4.3vw, 4.15rem);
  letter-spacing: -.02em;
}

h3 {
  font-size: 1.9rem;
}

.hero-tagline {
  font-size: clamp(2.45rem, 4.8vw, 4.8rem);
  color: #ffd7b8;
  margin-top: -10px;
}

.hero-text {
  max-width: 760px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
}

.hero-subtext,
.lead {
  max-width: 900px;
  font-size: clamp(1.18rem, 1.55vw, 1.35rem);
  color: var(--stone);
}

.hero-content .hero-subtext,
.hero-content .lead {
  color: rgba(255,255,255,.92);
}

.section {
  padding: 104px 6vw;
}

.quiet-intro {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}

.quiet-intro h2 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-block;
  border-radius: 999px;
  padding: 14px 24px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  font-weight: 800;
}

.button:hover {
  transform: translateY(-3px);
}

.primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(230, 126, 61, .26);
}

.secondary {
  background: rgba(255,255,255,.86);
  color: var(--deep-blue);
}

.split,
.credentials {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.image-text {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
  background: var(--white);
}

.image-text.reverse {
  background: var(--soft-blue);
}

.image-text img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.text-link {
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.05rem;
}

.stillness-section {
  background: var(--white);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}

.stillness-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.stillness-text {
  padding: 20px 0;
}

.resources-preview,
.downloads {
  background: linear-gradient(180deg, var(--cream), var(--soft-blue));
}

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

.resource-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.resource-row.large {
  max-width: 1180px;
  margin: 0 auto;
}

.resource-tile {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 30px;
  color: var(--deep-blue);
  background: var(--white);
  border-radius: 32px;
  text-decoration: none;
  box-shadow: var(--shadow);
  border: 1px solid rgba(22,54,79,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.resource-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 74px rgba(22,54,79,.18);
}

.resource-tile span {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
}

.resource-tile strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
}

.resource-tile em {
  color: var(--mountain-blue);
  font-style: normal;
  font-weight: 800;
}

.resource-tile.muted {
  opacity: .78;
}

.book-feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  background: var(--white);
}

.book-image-wrap {
  background: linear-gradient(135deg, var(--soft-blue), var(--cream));
  border-radius: 38px;
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.book-image-wrap img {
  max-width: 100%;
  max-height: 620px;
  object-fit: contain;
}

.credential-card {
  background: var(--white);
  border-radius: 36px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.simple-lines {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.1rem;
  line-height: 1.18;
  color: var(--orange);
  margin-bottom: 0;
}

.remember-section,
.connect-intro,
.final-note {
  padding: 110px 6vw;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.remember-section p,
.connect-intro p,
.final-note p {
  font-size: 1.2rem;
}

.connect-section {
  padding-top: 20px;
  background: linear-gradient(180deg, var(--cream), var(--soft-blue));
}

.contact-button-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 30px;
  border-radius: 30px;
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 72px rgba(22,54,79,.20);
}

.contact-button strong {
  display: block;
  font-size: 1.35rem;
}

.contact-button small {
  display: block;
  opacity: .92;
  font-size: 1rem;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  font-size: 1.55rem;
  font-weight: 800;
  flex: 0 0 auto;
}

.instagram-icon::before {
  content: '';
  width: 28px;
  height: 28px;
  border: 3px solid #fff;
  border-radius: 9px;
  display: block;
}

.instagram-icon::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border: 3px solid #fff;
  border-radius: 999px;
}

.instagram-icon {
  position: relative;
}

.fb-icon {
  font-family: Arial, sans-serif;
  font-size: 2rem;
}

.email-button {
  background: linear-gradient(135deg, var(--mountain-blue), var(--deep-blue));
}

.instagram-button {
  background: linear-gradient(135deg, var(--orange), var(--gold));
}

.facebook-button {
  background: linear-gradient(135deg, #295C9E, var(--mountain-blue));
}

.quote-section {
  padding: 100px 6vw;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-blue), var(--mountain-blue));
  text-align: center;
}

blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(2.35rem, 4.6vw, 4.5rem);
  line-height: 1.12;
  font-style: italic;
  font-weight: 600;
}

footer {
  padding: 36px 6vw;
  text-align: center;
  color: var(--deep-blue);
  background: var(--cream);
  font-size: .95rem;
}

.footer-note {
  margin: 4px 0 0;
  color: var(--orange);
  font-weight: 800;
}

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

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

@media (max-width: 1080px) {
  .resource-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-text,
  .split,
  .credentials,
  .book-feature,
  .stillness-section {
    grid-template-columns: 1fr;
  }
  .image-text img,
  .stillness-image img {
    height: 520px;
  }
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
  nav {
    gap: 14px;
    justify-content: flex-start;
  }
  .hero,
  .page-hero {
    min-height: 76vh;
  }
  .section {
    padding: 68px 6vw;
  }
  .resource-row {
    grid-template-columns: 1fr;
  }
  .contact-button {
    align-items: flex-start;
    flex-direction: column;
  }
  h1 {
    font-size: 3.2rem;
  }
  h2 {
    font-size: 2.35rem;
  }
  .hero-tagline {
    font-size: 2.4rem;
  }
  .image-text img,
  .stillness-image img {
    height: 360px;
  }
}

@media (max-width: 520px) {
  nav a {
    font-size: .9rem;
  }
  .quiet-intro,
  .remember-section,
  .connect-intro,
  .final-note {
    text-align: left;
    place-content: start;
  }
}
