/* ============================================
   Moving Mountains Method - Main Stylesheet
   ============================================ */

/* ============================================
   Self-Hosted Fonts (Lora + Nunito Sans)
   Variable fonts — single file per style
   ============================================ */

/* Lora — Regular (variable weight 400-700) */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/lora-latin-regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Lora — Italic (variable weight 400-700) */
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/lora-latin-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Nunito Sans — Regular (variable weight 200-1000) */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url('../fonts/nunito-sans-latin-regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* CSS Variables */
:root {
  --color-cream: #F5F2EB;
  --color-dark-teal: #255059;
  --color-light-teal: #7abeb6;
  --color-gold: #C5A065;
  --color-rust: #935337;
  --color-rose: #ca708c;
  --color-olive: #8a8a4a;
  --color-dark-bg: #152e33;
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-dark-teal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, .serif {
  font-family: var(--font-serif);
}

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

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

/* Selection */
::selection {
  background-color: rgba(138, 138, 74, 0.3);
}

/* ============================================
   Layout Utilities
   ============================================ */

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

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

.section-border {
  border-top: 1px solid rgba(138, 138, 74, 0.2);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--color-dark-teal);
  color: var(--color-cream);
}

.btn-primary:hover {
  background-color: var(--color-rust);
  color: #fff;
}

.btn-secondary {
  background-color: var(--color-cream);
  color: var(--color-dark-teal);
}

.btn-secondary:hover {
  background-color: var(--color-rust);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-dark-teal);
  color: var(--color-dark-teal);
}

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

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-dark-teal);
}

.btn-gold:hover {
  background-color: var(--color-rust);
  color: #fff;
}

.btn-link {
  background: transparent;
  border: none;
  padding: 0;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.25rem;
}

.btn-link:hover {
  color: var(--color-rust);
  border-color: var(--color-rust);
}

/* ============================================
   Header / Navigation
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  padding: 1.5rem 0;
}

.header--scrolled {
  background-color: rgba(245, 242, 235, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-color: rgba(138, 138, 74, 0.2);
  padding: 1rem 0;
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .header__inner {
    padding: 0 3rem;
  }
}

.header__logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark-teal);
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .header__logo {
    font-size: 1.5rem;
  }
}

.header--transparent .header__logo {
  color: #fff;
}

.header--scrolled .header__logo,
.header--transparent.header--scrolled .header__logo {
  color: var(--color-dark-teal);
}

.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .header__nav {
    display: flex;
    gap: 3rem;
  }
}

.header__nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.header__nav-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-dark-teal);
  transition: color 0.3s ease;
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--color-rust);
}

.header--transparent .header__nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.header--transparent .header__nav-link:hover {
  color: rgba(255, 255, 255, 0.6);
}

.header--scrolled .header__nav-link,
.header--transparent.header--scrolled .header__nav-link {
  color: var(--color-dark-teal);
}

.header--scrolled .header__nav-link:hover,
.header--transparent.header--scrolled .header__nav-link:hover {
  color: var(--color-rust);
}

.header__cta {
  padding: 0.75rem 2rem;
  font-size: 0.625rem;
}

.header--transparent .header__cta {
  background-color: var(--color-cream);
  color: var(--color-dark-teal);
}

.header--transparent .header__cta:hover {
  background-color: #e0dcd5;
}

.header--scrolled .header__cta,
.header--transparent.header--scrolled .header__cta {
  background-color: var(--color-dark-teal);
  color: var(--color-cream);
}

.header--scrolled .header__cta:hover,
.header--transparent.header--scrolled .header__cta:hover {
  background-color: var(--color-rust);
}

/* Mobile Menu Toggle */
.header__toggle {
  display: flex;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 60;
}

@media (min-width: 768px) {
  .header__toggle {
    display: none;
  }
}

.header__toggle svg {
  stroke: var(--color-dark-teal);
  transition: stroke 0.3s ease;
}

.header--transparent .header__toggle svg {
  stroke: #fff;
}

.header--scrolled .header__toggle svg,
.header--transparent.header--scrolled .header__toggle svg {
  stroke: var(--color-dark-teal);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--color-cream);
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}

.mobile-menu--open {
  transform: translateX(0);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  list-style: none;
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--color-dark-teal);
  transition: color 0.3s ease;
}

.mobile-menu__link:hover {
  color: var(--color-rust);
}

.mobile-menu__cta {
  margin-top: 2rem;
}

/* ============================================
   Hero Sections
   ============================================ */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: 90vh;
    padding: 2rem 3rem;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__overlay--dark {
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent, rgba(0,0,0,0.5));
}

.hero__overlay--teal {
  background-color: rgba(21, 46, 51, 0.7);
  backdrop-filter: blur(2px);
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding-top: 8rem;
}

@media (min-width: 768px) {
  .hero__content {
    padding-top: 5rem;
  }
}

.hero__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__label-line {
  height: 1px;
  width: 2rem;
  background-color: var(--color-light-teal);
  opacity: 0.6;
}

.hero__label-text {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero__title {
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  color: #fff;
  text-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 4.5rem;
  }
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 300;
  color: #fff;
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.25rem;
  }
}

/* ============================================
   Content Sections
   ============================================ */

.section {
  padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 3rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 3rem;
  }
}

.section--white {
  background-color: #fff;
}

.section--cream {
  background-color: var(--color-cream);
}

.section--dark {
  background-color: var(--color-dark-teal);
  color: var(--color-cream);
}

.section--darker {
  background-color: var(--color-dark-bg);
  color: var(--color-cream);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section__header {
    margin-bottom: 4rem;
  }
}

.section__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section__label--left {
  justify-content: flex-start;
}

.section__label-line {
  height: 1px;
  width: 1.5rem;
  background-color: var(--color-light-teal);
}

.section__label-line--rose {
  background-color: var(--color-rose);
}

.section__label-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.section__title {
  font-size: 2rem;
  line-height: 1.2;
  color: var(--color-dark-teal);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section__title {
    font-size: 3rem;
  }
}

.section--dark .section__title,
.section--darker .section__title {
  color: #fff;
}

.section__divider {
  width: 6rem;
  height: 1px;
  background-color: var(--color-rose);
  margin: 2rem auto;
}

/* ============================================
   Grid Layouts
   ============================================ */

.grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   Cards
   ============================================ */

.card {
  padding: 2rem;
  background-color: #fff;
  border: 1px solid rgba(138, 138, 74, 0.2);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.5s ease;
}

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card--dark {
  background-color: var(--color-dark-teal);
  border-color: rgba(255, 255, 255, 0.1);
}

.card--dark:hover {
  background-color: var(--color-cream);
  border-color: transparent;
}

.card__number {
  font-family: var(--font-serif);
  font-size: 3.75rem;
  color: rgba(138, 138, 74, 0.4);
  margin-bottom: 2rem;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-dark-teal);
  margin-bottom: 1rem;
}

.card--dark .card__title {
  color: var(--color-light-teal);
}

.card--dark:hover .card__title {
  color: var(--color-dark-teal);
}

.card__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-dark-teal);
}

.card--dark .card__text {
  color: rgba(245, 242, 235, 0.6);
}

.card--dark:hover .card__text {
  color: var(--color-dark-teal);
}

/* ============================================
   Testimonial
   ============================================ */

.testimonial {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.testimonial__quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-style: italic;
  color: var(--color-rose);
  margin-bottom: 1rem;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--color-dark-teal);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .testimonial__text {
    font-size: 1.5rem;
  }
}

.testimonial__attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.testimonial__line {
  height: 1px;
  width: 1.5rem;
  background-color: var(--color-light-teal);
}

.testimonial__author {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-light-teal);
}

/* ============================================
   Two Column Layout
   ============================================ */

.two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.two-col__image {
  position: relative;
}

.two-col__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.two-col__img-border {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-rose);
  opacity: 0.4;
  z-index: -1;
  display: none;
}

@media (min-width: 768px) {
  .two-col__img-border {
    display: block;
  }
}

/* ============================================
   Forms
   ============================================ */

.form {
  max-width: 48rem;
  margin: 0 auto;
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__row {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form__row--2 {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-dark-teal);
  margin-bottom: 0.5rem;
}

.form__required {
  color: var(--color-rust);
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-dark-teal);
  background-color: var(--color-cream);
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  box-shadow: inset 0 0 0 1px var(--color-rust);
}

.form__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23255059' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__radio-group {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}

.form__radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.form__radio {
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-dark-teal);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background-color: var(--color-dark-teal);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.footer__accent {
  height: 4px;
  background: linear-gradient(to right, var(--color-dark-teal), var(--color-light-teal), var(--color-dark-teal));
  opacity: 0.2;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
  .footer__inner {
    padding: 4rem 3rem;
  }
}

@media (min-width: 1024px) {
  .footer__inner {
    padding: 6rem 3rem;
  }
}

.footer__grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
}

.footer__brand h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .footer__brand h2 {
    font-size: 1.875rem;
  }
}

.footer__tagline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-light-teal);
  margin-bottom: 2rem;
}

.footer__desc {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.8);
  max-width: 20rem;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  border-color: var(--color-light-teal);
  color: var(--color-light-teal);
}

.footer__nav h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-olive);
  margin-bottom: 2rem;
}

.footer__nav ul {
  list-style: none;
}

.footer__nav li {
  margin-bottom: 1rem;
}

.footer__nav a {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: rgba(245, 242, 235, 0.8);
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--color-light-teal);
}

.footer__cta-box {
  background-color: #1e4149;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

@media (min-width: 768px) {
  .footer__cta-box {
    padding: 2.5rem;
  }
}

.footer__cta-box h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer__cta-box p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.7);
  margin-bottom: 2rem;
}

.footer__disclaimer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__disclaimer p {
  font-size: 0.6875rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.5);
  max-width: 56rem;
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copyright {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.4);
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal a {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.4);
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--color-light-teal);
}

/* ============================================
   Parallax Backgrounds
   ============================================ */

.parallax-bg {
  background-attachment: fixed;
    position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* iOS disables background-attachment: fixed */
@media (hover: none) and (pointer: coarse) {
  .parallax-bg {
    background-attachment: scroll !important;
  }
}

/* ============================================
   Quote Box
   ============================================ */

.quote-box {
  background-color: rgba(245, 242, 235, 0.95);
  backdrop-filter: blur(8px);
  padding: 3rem;
  max-width: 56rem;
  margin: 0 auto;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

@media (min-width: 768px) {
  .quote-box {
    padding: 5rem;
  }
}

.quote-box__text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--color-dark-teal);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .quote-box__text {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .quote-box__text {
    font-size: 2rem;
  }
}

/* ============================================
   Phase Cards (Method Page)
   ============================================ */

.phase {
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .phase {
    padding: 2rem;
  }
}

.phase:hover {
  background-color: var(--color-cream);
  border-color: transparent;
}

.phase__number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-serif);
  font-size: 3.75rem;
  color: rgba(255, 255, 255, 0.05);
  transition: color 0.5s ease;
}

.phase:hover .phase__number {
  color: rgba(37, 80, 89, 0.05);
}

.phase__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-light-teal);
  margin-bottom: 1rem;
  transition: color 0.5s ease;
}

.phase:hover .phase__title {
  color: var(--color-dark-teal);
}

.phase__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.6);
  transition: color 0.5s ease;
}

@media (min-width: 768px) {
  .phase__desc {
    font-size: 1.125rem;
  }
}

.phase:hover .phase__desc {
  color: var(--color-dark-teal);
}

/* ============================================
   Process Steps
   ============================================ */

.process {
  position: relative;
  border-left: 1px solid rgba(37, 80, 89, 0.2);
  padding-left: 3rem;
  margin-left: 1rem;
}

.process__step {
  position: relative;
  margin-bottom: 3rem;
}

.process__step:last-child {
  margin-bottom: 0;
}

.process__dot {
  position: absolute;
  left: -3.6rem;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 4px solid var(--color-cream);
}

.process__dot--teal {
  background-color: var(--color-dark-teal);
}

.process__dot--light {
  background-color: var(--color-light-teal);
}

.process__dot--rose {
  background-color: var(--color-rose);
}

.process__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-dark-teal);
  margin-bottom: 0.75rem;
}

.process__text {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(37, 80, 89, 0.8);
}

/* ============================================
   Checklist
   ============================================ */

.checklist {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .checklist {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 4rem;
  }
}

.checklist__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.checklist__icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--color-light-teal);
  transition: transform 0.3s ease;
}

.checklist__item:hover .checklist__icon {
  transform: scale(1.1);
}

.checklist__text {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-dark-teal);
}

/* ============================================
   Privacy Box
   ============================================ */

.privacy-box {
  max-width: 48rem;
  margin: 0 auto;
  border: 1px solid rgba(245, 242, 235, 0.2);
  padding: 3rem;
  position: relative;
  text-align: center;
}

@media (min-width: 768px) {
  .privacy-box {
    padding: 4rem;
  }
}

.privacy-box__icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-dark-teal);
  padding: 0 1rem;
}

.privacy-box__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .privacy-box__title {
    font-size: 2rem;
  }
}

.privacy-box__text {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.9);
  margin-bottom: 1.5rem;
}

.privacy-box__highlight {
  font-weight: 600;
  color: #fff;
}

/* ============================================
   Newsletter Form
   ============================================ */

.newsletter {
  max-width: 32rem;
  margin: 0 auto;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .newsletter__form {
    flex-direction: row;
  }
}

.newsletter__input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter__input:focus {
  border-color: var(--color-light-teal);
}

/* ============================================
   Thank You Page
   ============================================ */

.thank-you {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.thank-you__icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(37, 80, 89, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.thank-you__title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--color-dark-teal);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .thank-you__title {
    font-size: 3rem;
  }
}

.thank-you__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-dark-teal);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.thank-you__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .thank-you__actions {
    flex-direction: row;
    gap: 1.5rem;
  }
}

/* ============================================
   Belief Cards
   ============================================ */

.belief {
  position: relative;
  padding: 2.5rem 3rem;
  border: 1px solid rgba(138, 138, 74, 0.2);
  background-color: #fff;
  overflow: hidden;
  transition: all 0.5s ease;
}

.belief:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.belief__number {
  position: absolute;
  top: 0;
  right: 1rem;
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: rgba(122, 190, 182, 0.1);
  transition: color 0.3s ease;
}

.belief:hover .belief__number {
  color: rgba(122, 190, 182, 0.2);
}

.belief__text {
  position: relative;
  z-index: 1;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-dark-teal);
  padding-right: 3rem;
}

/* ============================================
   Attribute Cards (About Page)
   ============================================ */

.attribute {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

.attribute:hover {
  border-color: rgba(122, 190, 182, 0.5);
}

.attribute__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-light-teal);
  margin-bottom: 1rem;
}

.attribute__divider {
  width: 3rem;
  height: 1px;
  background-color: rgba(202, 112, 140, 0.5);
  margin-bottom: 1.5rem;
}

.attribute__text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.9);
}

@media (min-width: 768px) {
  .attribute__text {
    font-size: 1.125rem;
  }
}

/* ============================================
   Foundation Cards
   ============================================ */

.foundation {
  background-color: rgba(245, 242, 235, 0.95);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
  display: flex;
  flex-direction: column;
}

.foundation:hover {
  transform: translateY(-0.5rem);
}

.foundation__icon {
  color: var(--color-rose);
  margin-bottom: 1.5rem;
}

.foundation__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-dark-teal);
  margin-bottom: 1rem;
}

.foundation__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark-teal);
  flex-grow: 1;
}

@media (min-width: 768px) {
  .foundation__text {
    font-size: 1.125rem;
  }
}

/* ============================================
   Legal Pages (Privacy, Terms)
   ============================================ */

.legal {
  max-width: 48rem;
  margin: 0 auto;
  padding-top: 8rem;
}

.legal__title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--color-dark-teal);
  margin-bottom: 2rem;
}

.legal__content {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-dark-teal);
}

.legal__content p {
  margin-bottom: 1.5rem;
}

.legal__content h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-dark-teal);
  margin: 2rem 0 1rem;
}

/* ============================================
   Animations
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Utility Classes
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: #fff; }
.text-teal { color: var(--color-dark-teal); }
.text-light-teal { color: var(--color-light-teal); }
.text-gold { color: var(--color-gold); }
.text-rust { color: var(--color-rust); }
.text-rose { color: var(--color-rose); }

.bg-white { background-color: #fff; }
.bg-cream { background-color: var(--color-cream); }
.bg-teal { background-color: var(--color-dark-teal); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 4rem; }

.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }

.pt-8 { padding-top: 4rem; }

.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.hidden { display: none; }

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
}

/* ============================================
   Apply Page Specific
   ============================================ */

.apply-form {
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid rgba(138, 138, 74, 0.3);
}

@media (min-width: 768px) {
  .apply-form {
    padding: 3rem;
  }
}

/* ============================================
   Contact Page Specific
   ============================================ */

.contact-form {
  border-top: 1px solid rgba(138, 138, 74, 0.2);
  padding-top: 3rem;
  margin-top: 2rem;
}

.contact-form__input {
  width: 100%;
  padding: 0.75rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-dark-teal);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-olive);
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form__input:focus {
  border-color: var(--color-dark-teal);
}

/* ============================================
   Video Container
   ============================================ */

.video-container {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  border: 1px solid rgba(138, 138, 74, 0.2);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-container__label {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-dark-teal);
}

/* ============================================
   Skip-to-Content (Accessibility)
   ============================================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--color-dark-teal);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 0.5rem 0.5rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* ============================================
   Key Takeaway — AI Citation Target
   ============================================ */

.key-takeaway {
  background: rgba(197, 160, 101, 0.08);
  border-left: 3px solid var(--color-gold);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
}

/* ============================================
   Focus-Visible (Accessibility)
   ============================================ */

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}
