/* === FAITH HARBOR MINISTRIES — OFFICIANT SITE === */

:root {
  --cream: #FAF6EF;
  --cream-dark: #F1ECE2;
  --ink: #1A2438;
  --ink-soft: #3F4A5E;
  --ink-light: #6B7280;
  --navy: #1E3A5F;
  --navy-deep: #142949;
  --gold: #B45309;
  --gold-soft: #D97706;
  --border: #E5DFD2;
  --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

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

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow.centered { text-align: center; }
.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.section-title.centered { text-align: center; }
.centered { text-align: center; }

/* === NAV === */
.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-dot { color: var(--gold); }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--navy); }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--navy-deep); color: var(--white); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--ink); color: var(--white); }
.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.btn-ghost-sm:hover { background: var(--navy-deep); color: var(--white) !important; }
.btn-full { width: 100%; justify-content: center; padding: 1.1rem; font-size: 1.05rem; }

/* === HERO === */
.hero { padding: 4rem 0 5rem; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text h1 { font-size: 3.5rem; font-weight: 700; margin: 0.5rem 0 1.5rem; }
.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--ink-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.photo-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(30, 58, 95, 0.15);
  aspect-ratio: 4/5;
  background: var(--cream-dark);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === INTRO === */
.intro {
  padding: 3rem 0 5rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.intro p {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1.5;
  text-align: center;
}
.intro p + p { margin-top: 1.5rem; }

/* === SERVICES === */
.services { padding: 5rem 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.2s;
}
.service-card:hover { border-color: var(--navy); box-shadow: 0 8px 24px rgba(30, 58, 95, 0.08); }
.service-card h3 { font-size: 1.6rem; margin-bottom: 0.25rem; }
.price {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.service-card ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}
.card-note {
  font-style: italic;
  color: var(--ink-light);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.services-note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-light);
  font-style: italic;
}

/* === ABOUT === */
.about {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.credentials-box {
  margin-top: 2.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.credentials-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.credentials-box ul { list-style: none; padding: 0; }
.credentials-box ul li {
  padding: 0.5rem 0;
  color: var(--ink-soft);
  border-bottom: 1px dotted var(--border);
  font-size: 0.95rem;
}
.credentials-box ul li:last-child { border-bottom: none; }
.credentials-box strong { color: var(--ink); }

/* === FAQ === */
.faq { padding: 5rem 0; }
.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.faq details:hover { border-color: var(--navy); }
.faq details[open] { background: var(--white); border-color: var(--navy); }
.faq summary {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1rem;
}

/* === CONTACT FORM === */
.contact {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.inquiry-form {
  margin-top: 3rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.req { color: var(--gold); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}
.form-disclaimer {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-light);
  font-style: italic;
}

/* === FOOTER === */
.footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 3rem 0 2rem;
  text-align: center;
}
.brand-small {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.footer-cred {
  font-size: 0.9rem;
  color: rgba(250, 246, 239, 0.7);
  margin-bottom: 1.5rem;
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(250, 246, 239, 0.5);
  border-top: 1px solid rgba(250, 246, 239, 0.15);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-text h1 { font-size: 2.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
  .nav-links a:not(.btn-ghost-sm) { display: none; }
  .photo-frame { max-width: 320px; margin: 0 auto; }
  .intro p { font-size: 1.15rem; }
}

@media (max-width: 540px) {
  .hero-text h1 { font-size: 2rem; }
  .inquiry-form { padding: 1.5rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
}
