* {
  box-sizing: border-box;
}

:root {
  --forest-green: rgb(48, 72, 81);
  --forest-green-soft: rgb(55, 83, 93);
  --forest-green-practice: rgb(48, 72, 81);
  --forest-green-intention: rgb(51, 77, 87);
  --forest-green-more: rgb(49, 74, 83);
  --forest-green-dark: rgb(40, 60, 67);
  --cream-text: #fffaf3;
  --soft-cream-text: rgba(255, 250, 243, 0.82);
  --gold-accent: #c79a4b;
}

body {
  margin: 0;
  font-family: "Quicksand", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  background: var(--forest-green);
  color: var(--cream-text);
}

.section-nav {
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.section-dot,
.section-arrow {
  border: none;
  cursor: pointer;
  color: var(--cream-text);
  background: rgba(255, 250, 243, 0.16);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.section-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 999px;
}

.section-dot.active {
  background: var(--gold-accent);
  transform: scale(1.35);
}

.section-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 1rem;
}

.section-dot:hover,
.section-arrow:hover {
  transform: scale(1.15);
  background: rgba(255, 250, 243, 0.28);
}

.section-dot.active:hover {
  transform: scale(1.35);
  background: var(--gold-accent);
}

.brand-name {
  font-weight: 700;
}

.brand-as {
  color: var(--cream-text);
}

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

.site-header {
  position: relative;
  width: 100%;
  padding: 24px 7vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: var(--forest-green-dark);
  color: var(--cream-text);
}

.header-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  font-family: "Belgium", "Quicksand", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}

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

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav-links a {
  opacity: 0.75;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  padding: 80px 7vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--forest-green);
  color: var(--cream-text);
}

.hero-title { 
  font-size: clamp(3rem, 8vw, 7rem);
  font-family: "Belgium", "Quicksand", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.hero-content {
  max-width: 820px;
}

.hero-eyebrow {
  margin: 0 0 16px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-accent);
  padding-top: 10px;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-text {
  font-family: "Quicksand", Arial, Helvetica, sans-serif;
  max-width: 620px;
  margin: 28px auto 0;
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.8;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

.primary-button {
  background: #241f1b;
  color: #fffaf3;
}

.secondary-button {
  border: 1px solid rgba(36, 31, 27, 0.25);
}

.app-idea {
  padding: 80px 7vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-green-soft);
  color: var(--cream-text);
}

.app-idea-content {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.app-idea-image-wrapper {
  display: flex;
  justify-content: center;
}

.app-idea-image-wrapper img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  border-radius: 24px;
}

.app-idea-text-wrapper {
  text-align: left;
}

.app-idea-title {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5rem);
  font-family: "Belgium", "Quicksand", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.app-idea-eyebrow {
  margin: 28px 0 16px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft-cream-text);
}

.app-idea-the-saying {
  margin: 0;
  color: #a1712e;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.app-idea-bodyText {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.8;
}

.the-practice {
  padding: 80px 7vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--forest-green-practice);
  color: var(--cream-text);
}

.the-practice-heading {
  width: min(1100px, 100%);
  margin: 0 auto 36px;
  text-align: center;  
}

.the-practice-eyebrow {
  margin: 0 0 16px;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-top: 46px;
  color: #a1712e;
}

.the-practice-title {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5rem);
  font-family: "Belgium", "Quicksand", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.the-practice-bodyText {
  max-width: 620px;
  margin: 8px auto 0;
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.7;
  color: var(--soft-cream-text);
}

.practice-grid {
  width: min(1100px, 100%);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.practice-card {
  text-align: center;
}

.practice-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-family: "Belgium", "Quicksand", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: var(--gold-accent);
}

.practice-card p {
  margin: 14px 0 22px;
  font-family:  "Quicksand", Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--soft-cream-text);
}

.practice-card img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 32px;
  border-radius: 20px;
}

.intention {
  padding: 80px 7vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-green-intention);
  color: var(--cream-text);
}

.intention-heading {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.intention-title {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5rem);
  font-family: "Belgium", "Quicksand", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
  text-align: center;
}

.intention-bodyText {
  max-width: clamp(300px, 45vw, 560px);
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.8;
  color: var(--soft-cream-text);
  text-align: left;
}

.more-than-a-meditation {
  padding: 80px 7vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-green-more);
  color: var(--cream-text);
}

.more-than-a-meditation-content {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.more-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.more-card {
  text-align: center;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  align-items: start;
}

.more-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-family: "Belgium", "Quicksand", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: var(--gold-accent);
}

.more-card p {
  margin: 18px 0 24px;
  max-width: clamp(120px, 18vw, 260px);
  font-family: "Quicksand", Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: var(--soft-cream-text);
}

.more-card img {
  width: 80%;
  max-width: clamp(150, 45vw, 160);
  height: auto;
  display: block;
  margin: 0 auto 32px;
  border-radius: 20px;
}

.more-cta {
  margin: 90px auto 0;
  max-width: 820px;
  text-align: center;
}

.more-cta h1 {
  margin: 0;
  font-size: clamp(3rem, 4vw, 4rem);
  font-family: "Belgium", "Quicksand", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.more-cta-button {
  margin-top: 36px;
  background: #241f1b;
  color: #fffaf3;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.site-footer {
  padding: 32px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(36, 31, 27, 0.1);
  font-size: 0.9rem;
  background: var(--forest-green-dark);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.legal-page {
  min-height: 100vh;
  padding: 90px 7vw;
  display: flex;
  justify-content: center;
  background: var(--forest-green);
  color: var(--cream-text);
}

.legal-content {
  width: min(850px, 100%);
  margin: 0 auto;
}

.legal-eyebrow {
  margin: 0 0 18px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.legal-title {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-family: "Belgium", "Quicksand", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.legal-updated {
  margin: 24px 0 56px;
  font-size: 0.95rem;
  color: var(--soft-cream-text);
}

.legal-section {
  margin-top: 46px;
}

.legal-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-family: "Belgium", "Quicksand", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--gold-accent);
}

.legal-section p {
  margin: 0 0 18px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: var(--soft-cream-text);
}

.legal-button {
  margin-top: 12px;
  background: #241f1b;
  color: #fffaf3;
}

.support-page {
  min-height: 100vh;
  padding: 90px 7vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--forest-green);
  color: var(--cream-text);
}

.support-content {
  width: min(850px, 100%);
  margin: 0 auto;
  text-align: center;
}

.support-eyebrow {
  margin: 0 0 18px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.support-title {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-family: "Belgium", "Quicksand", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.support-bodyText {
  max-width: clamp(300px, 55vw, 620px);
  margin: 32px auto 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.75;
  color: var(--soft-cream-text);
}

.support-card {
  max-width: 620px;
  margin: 56px auto 0;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.07);
  border: 1px solid rgba(255, 250, 243, 0.12);
}

.support-card h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Belgium", "Quicksand", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--gold-accent);
}

.support-card p {
  margin: 0 auto;
  max-width: 500px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: var(--soft-cream-text);
}

.support-button {
  margin-top: 28px;
  background: #241f1b;
  color: #fffaf3;
}

.secondary-support-card {
  margin-top: 24px;
}

.support-email-text {
  margin-top: 22px;
  font-size: 0.95rem;
  color: var(--soft-cream-text);
}

.support-email-text a {
  color: var(--gold-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero,
.app-idea,
.the-practice,
.intention,
.more-than-a-meditation {
  min-height: 100vh;
  min-height: 100dvh;
}

@media (max-width: 760px) {
  .section-nav {
    right: 14px;
    gap: 12px;
  }

  .section-arrow {
    width: 30px;
    height: 30px;
  }

  .section-dot {
    width: 10px;
    height: 10px;
  }

  .site-header {
    align-items: flex-start;
    gap: 20px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero {
    padding-top: 60px;
  }

  .app-idea-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .app-idea-text-wrapper {
    text-align: center;
  }

  .app-idea-bodyText {
    margin-left: auto;
    margin-right: auto;
  }

  .app-idea-image-wrapper img {
    max-width: 240px;
  }

    .the-practice {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .the-practice-heading {
    max-width: 100%;
  }

  .the-practice-eyebrow {
    font-size: clamp(0.8rem, 3vw, 1rem);
    padding-top: 24px;
    margin-bottom: 12px;
  }

  .the-practice-title {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .the-practice-bodyText {
    font-size: clamp(0.85rem, 3vw, 1rem);
    line-height: 1.5;
  }

  .practice-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8px, 2.5vw, 18px);
    margin-top: 42px;
  }

  .practice-card h3 {
    font-size: clamp(0.85rem, 4vw, 1.1rem);
  }

  .practice-card p {
    margin: 10px 0 16px;
    font-size: clamp(0.72rem, 2.8vw, 0.95rem);
    line-height: 1.35;
  }

  .practice-card img {
    max-width: 100%;
    border-radius: 14px;
    margin-bottom: 20px;
  }

  .more-than-a-meditation {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .more-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8px, 2.5vw, 18px);
  }

  .more-card h3 {
    font-size: clamp(0.85rem, 4vw, 1.1rem);
  }

  .more-card p {
    margin: 18px 0 24px;
    max-width: clamp(95px, 20vw, 260px);
    font-family: "Quicksand", Arial, Helvetica, sans-serif;
    font-size: clamp(0.6rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: var(--soft-cream-text);
  }

  .more-card img {
    max-width: 100%;
    border-radius: 14px;
    margin-bottom: 20px;
  }

  .more-cta {
    margin-top: 20px;
  }

  .more-cta h1 {
    font-size: clamp(2.5rem, 3vw, 4rem);
  }

  .intention-heading {
    grid-template-columns: 1fr;
    gap: 68px;
    text-align: center;
  }

  .intention-title {
    text-align: center;
  }

  .intention-bodyText {
    max-width: min(100%, 320px);
    margin: 0 auto;
    font-size: clamp(1rem, 4vw, 1.2rem);
    line-height: 1.65;
    text-align: center;
  }

  .legal-page {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .legal-updated {
    margin-bottom: 42px;
  }

  .legal-section {
    margin-top: 38px;
  }

  .legal-section p {
    line-height: 1.65;
  }

  .support-page {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .support-bodyText {
    max-width: min(100%, 420px);
    font-size: clamp(1rem, 4vw, 1.2rem);
    line-height: 1.65;
  }

  .support-card {
    margin-top: 42px;
    border-radius: 22px;
  }

  .support-card p {
    line-height: 1.6;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@font-face {
  font-family: "Quicksand";
  src: url("fonts/Quicksand-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
}

@font-face {
  font-family: "Belgium";
  src: url("fonts/Belgium-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}