/* ═══════════════════════════════════════════════════
   ANNA LA TONA — FAITH-BASED COUNSELING
   CSS v1.2 — 2026-07-26 — Palette C: Seafoam + Gold (Anna's pick: "light seafoam green, reminds me of the beach")
   NOTE: variable names still say "navy" (legacy) — VALUES are now the seafoam family. Don't rename; everything references these.
   Fonts: Playfair Display (headings) + Inter (body)
   ═══════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --navy:          #2C6E63;   /* deep seafoam — primary */
  --navy-mid:      #3F8D7E;   /* mid seafoam */
  --navy-light:    #8FC7BB;   /* light seafoam */
  --navy-dark:     #1B4A42;   /* deepest green — footers, overlays */
  --cream:         #F7F5EF;
  --warm-bg:       #EBF4F1;   /* seafoam wash section bg */
  --gold:          #C9A24B;   /* warm sand-gold */
  --gold-light:    #E3C77E;
  --gold-dark:     #A07F2E;
  --text:          #1D3B35;
  --text-muted:    #5B7A72;
  --white:         #FFFFFF;

  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;

  --max-w:         1200px;
  --section-pad:   5rem 1.5rem;

  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --transition:    0.3s var(--ease-out);

  --shadow-sm:     0 2px 8px rgba(27, 74, 66, 0.08);
  --shadow-md:     0 8px 32px rgba(27, 74, 66, 0.12);
  --shadow-lg:     0 20px 60px rgba(27, 74, 66, 0.18);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── LAYOUT ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--section-pad); }
.section--alt { background: var(--warm-bg); }

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.eyebrow--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy-dark);
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .eyebrow { display: block; }
.section-header .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
}
.btn--light {
  background: var(--white);
  color: var(--navy-dark);
}
.btn--light:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(245, 243, 238, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.4s;
  line-height: 1.2;
}
.nav__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.4s;
}
.nav.scrolled .nav__logo-name { color: var(--navy-dark); }
.nav.scrolled .nav__logo-sub { color: var(--gold-dark); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--white); }
.nav.scrolled .nav__links a { color: var(--text-muted); }
.nav.scrolled .nav__links a:hover { color: var(--navy-dark); }

.nav__cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 3px;
  font-size: 0.8rem !important;
}
.nav__cta:hover { background: var(--navy-dark) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav__toggle span { background: var(--navy-dark); }

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

  /* Forest light rays — divine, spiritual, warm */
  background-image:
    url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero__video.is-showing { opacity: 1; }

/* type-on caret */
.type-on.is-typing::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 0.85em;
  margin-left: 3px;
  background: var(--gold);
  vertical-align: baseline;
  animation: caret-blink 0.8s step-end infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(27, 74, 66, 0.62) 0%,
    rgba(27, 74, 66, 0.48) 55%,
    rgba(27, 74, 66, 0.78) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 8rem 1.5rem 4rem;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero__br { display: none; }
.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(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ─── INTRO STRIP ─── */
.strip { background: var(--navy); padding: 1.75rem 1.5rem; }
.strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.strip__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
}

/* ─── ABOUT ─── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about__image-col { position: relative; }
.about__frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--warm-bg);
}
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about__photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
}
.about__frame--placeholder .about__photo { display: none; }

/* Decorative offset frame — gold accent */
.about__image-col::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  right: 1.5rem;
  bottom: -1.5rem;
  border: 2px solid var(--gold-light);
  border-radius: 2px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.about__frame { position: relative; z-index: 1; }

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: 2px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
  border-left: 3px solid var(--gold);
}
.about__badge p {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}

.about__content { padding-bottom: 1.5rem; }
.about__bio {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.about__creds {
  margin: 1.75rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}
.about__creds li {
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
}
.about__creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* ─── SERVICES ─── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 2px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: var(--transition);
}
.service-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--warm-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--navy);
}
.service-card__icon svg {
  width: 20px;
  height: 20px;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── FAITH PARALLAX BANNER ─── */
.faith-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  text-align: center;

  background-image:
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.faith-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 42, 37, 0.87), rgba(44, 110, 99, 0.78));
}
.faith-banner__content {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}
.faith-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.faith-banner__sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* ─── PROCESS ─── */
.process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 2rem;
}
.process__step {
  text-align: center;
  padding: 2rem 1.5rem;
}
.process__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.process__step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}
.process__step p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.process__connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold-light), var(--gold));
  opacity: 0.4;
  margin-top: 3.5rem;
}

/* ─── TESTIMONIALS ─── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border-radius: 2px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial__mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--gold-light);
  opacity: 0.5;
  margin-bottom: 1rem;
  user-select: none;
}
.testimonial__quote {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
}

/* ─── CONTACT ─── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
}
.contact__intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.contact__details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--warm-bg);
  border-radius: 2px;
  transition: var(--transition);
  text-decoration: none;
}
a.contact__detail:hover {
  background: var(--cream);
  transform: translateX(3px);
}
.contact__detail-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  color: var(--navy);
}
.contact__detail-icon svg { width: 18px; height: 18px; }
.contact__detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.2rem;
}
.contact__detail-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

/* ─── FORM ─── */
.contact__form {
  background: var(--white);
  border-radius: 2px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
  text-transform: uppercase;
}
.req { color: var(--gold-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #D8D8D0;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(63, 141, 126, 0.18);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #AAA; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6580' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* Form success state */
.contact__success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}
.contact__success-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
}
.contact__success-check svg { width: 28px; height: 28px; }
.contact__success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}
.contact__success p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── FOOTER ─── */
.footer { background: var(--navy-dark); padding: 3rem 1.5rem; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.footer__name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.footer__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
}
.footer__nav {
  display: flex;
  gap: 2rem;
}
.footer__nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  font-weight: 500;
}
.footer__nav a:hover { color: var(--white); }
.footer__copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
  line-height: 1.7;
}

/* ─── AOS OVERRIDES ─── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ─── MOBILE / RESPONSIVE ─── */

/* Disable parallax on iOS */
@media (hover: none) {
  .hero, .faith-banner {
    background-attachment: scroll;
  }
}

@media (max-width: 900px) {
  :root { --section-pad: 4rem 1.25rem; }
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-col { max-width: 420px; margin: 0 auto; }
  .about__image-col::before { display: none; }
  .about__badge { position: static; margin-top: 1.5rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .process__connector { display: none; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .footer__nav { justify-content: center; }
  .footer__copy { text-align: center; }
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    box-shadow: var(--shadow-md);
  }
  .nav__links.open { display: flex; }
  .nav__links a {
    color: var(--text) !important;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav__cta {
    margin-top: 0.5rem;
    text-align: center;
  }
  .nav__toggle { display: flex; }
  .hero__br { display: inline; }
  .hero__sub br { display: none; }
  .about__creds { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 1.5rem; }
}
