/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #f8f4ee;
  --warm:     #f2ebe0;
  --gold:     #b8924a;
  --gold-lt:  #d4aa6a;
  --brown:    #5c3d1e;
  --dark:     #1a1208;
  --charcoal: #2e2416;
  --text:     #3a2e1e;
  --muted:    #7a6b55;
  --white:    #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --section-pad: 6rem 0;
  --radius: 4px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

/* ─── UTILITIES ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-pad); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section__header--light h2,
.section__header--light p { color: var(--cream); }
.section__header--light .section__label { color: var(--gold-lt); }

.section__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.section__header p {
  font-size: 1.05rem;
  color: var(--muted);
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--brown);
  border-color: var(--brown);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248,244,238,0.5);
}
.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(248,244,238,0.1);
}

/* ─── NAV ────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(26, 18, 8, 0.97);
  backdrop-filter: blur(8px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.nav__links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.8);
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--gold-lt); }

.nav__cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
}
.nav__cta:hover { background: var(--brown) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

/* ─── HERO ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,18,8,0.65) 0%, rgba(26,18,8,0.75) 100%),
    url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1600&q=80') center/cover no-repeat;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 1.5rem;
  margin-top: 4rem;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(248,244,238,0.8);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(248,244,238,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(184,146,74,0.8), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ─── VERSE BANNER ───────────────────────────────────────────────────────────── */
.verse-banner {
  background: var(--brown);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.verse-banner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}

.verse-banner cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.15em;
  color: var(--gold-lt);
}

/* ─── BELIEFS ────────────────────────────────────────────────────────────────── */
.beliefs { background: var(--cream); }

.beliefs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.belief-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.belief-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(92,61,30,0.1);
}

.belief-card__icon {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.belief-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ─── PRINCIPLES ─────────────────────────────────────────────────────────────── */
.principles { background: var(--charcoal); }

.principles .section__header h2 { color: var(--cream); }
.principles .section__header p  { color: rgba(248,244,238,0.6); }

.principles__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: principle;
  max-width: 800px;
  margin: 0 auto;
}

.principle {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(248,244,238,0.08);
  align-items: flex-start;
  transition: background var(--transition);
}

.principle:last-child { border-bottom: none; }

.principle__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  min-width: 3rem;
  line-height: 1;
  padding-top: 0.2rem;
}

.principle__body h3 { color: var(--cream); }

.principle__body p {
  color: rgba(248,244,238,0.6);
  font-size: 0.95rem;
}

/* ─── ABOUT ──────────────────────────────────────────────────────────────────── */
.about { background: var(--warm); }

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

.about__image-inner {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(184,146,74,0.15) 0%, transparent 60%),
    url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?w=800&q=80') center/cover no-repeat;
  box-shadow: 20px 20px 0 var(--gold-lt);
}

.about__text .section__label { margin-bottom: 0.5rem; }

.about__text h2 { margin-bottom: 1.5rem; }

.about__text p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about__text em { color: var(--brown); font-style: italic; }

.about__text .btn { margin-top: 1rem; }

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────────── */
.testimonials { background: var(--cream); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0;
  color: var(--gold-lt);
  opacity: 0.3;
  position: absolute;
  top: 2.5rem;
  left: 1.5rem;
}

.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ─── COMMUNITY ──────────────────────────────────────────────────────────────── */
.community {
  background: linear-gradient(135deg, var(--brown) 0%, var(--dark) 100%);
  text-align: center;
}

.community__container { max-width: 600px; margin: 0 auto; }

.community h2 { color: var(--cream); margin-bottom: 1rem; }

.community p {
  color: rgba(248,244,238,0.75);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

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

.community__form input {
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(248,244,238,0.2);
  border-radius: var(--radius);
  background: rgba(248,244,238,0.08);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.community__form input::placeholder { color: rgba(248,244,238,0.4); }
.community__form input:focus { border-color: var(--gold-lt); }

.community__note {
  font-size: 0.8rem;
  color: rgba(248,244,238,0.4);
  margin-top: 0.75rem;
  margin-bottom: 0 !important;
}

/* ─── CONTACT ────────────────────────────────────────────────────────────────── */
.contact { background: var(--warm); }

.contact__container { max-width: 700px; margin: 0 auto; }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact__form input,
.contact__form textarea {
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(92,61,30,0.2);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.contact__form input:focus,
.contact__form textarea:focus { border-color: var(--gold); }

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
}

.footer__nav a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.5);
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--gold-lt); }

.footer__copy {
  font-size: 0.75rem;
  color: rgba(248,244,238,0.25);
}

/* ─── SUCCESS MESSAGE ────────────────────────────────────────────────────────── */
.form-success {
  text-align: center;
  padding: 2rem;
  color: var(--gold-lt);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(26,18,8,0.98);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .nav__links.open { display: flex; }

  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    padding: 0.85rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav__toggle { display: flex; }

  .about__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image { order: -1; }

  .about__image-inner {
    aspect-ratio: 16/9;
    box-shadow: 10px 10px 0 var(--gold-lt);
  }

  .form-row { grid-template-columns: 1fr; }

  .hero__actions { flex-direction: column; align-items: center; }

  .principle { gap: 1rem; }
  .principle__num { font-size: 1.8rem; min-width: 2.5rem; }
}
