:root {
  /* Brand palette: #007A8E peacock, #00B2A9 turquoise, #A7D3D2 aqua, #F2E6D5 cream */
  --ink: #123a41;        /* dark teal-slate — headings */
  --deep: #06414b;       /* deep teal — footer / verse / hero overlay */
  --teal: #007A8E;       /* primary brand */
  --teal-dark: #00626f;  /* hover */
  --bright: #00B2A9;     /* turquoise accent */
  --aqua: #A7D3D2;       /* light aqua */
  --cream: #F2E6D5;      /* warm neutral — alt sections */
  --bg: #faf5ec;         /* page background (soft cream) */
  --line: #d8e5e2;       /* border (aqua-gray) */
  --muted: #50686d;      /* muted body text */
  --radius: 14px;
  --shadow: 0 10px 34px rgba(6, 49, 57, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
a { color: var(--teal-dark); text-decoration: none; }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--ink); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 700; margin: 0 0 14px; letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; margin: 0 0 8px; }
p { color: var(--muted); }

.script-accent {
  font-family: 'Caveat', cursive;
  font-size: 1.7rem;
  color: var(--bright);
  margin: 0 0 4px;
  font-weight: 700;
}
.script-accent.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-small { padding: 9px 18px; font-size: 0.92rem; }
.btn-large { padding: 16px 34px; font-size: 1.05rem; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.8); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.15); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--ink); font-size: 1.05rem; font-family: 'Playfair Display', serif; }
.brand-logo { width: 44px; height: 44px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--ink); font-weight: 600; }
.nav-links a:hover { color: var(--teal); }

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: url('images/hero-stella.jpg') center center / cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 49, 57, 0.46) 0%, rgba(6, 49, 57, 0.70) 100%);
}
.hero-inner { position: relative; max-width: 760px; padding: 90px 24px; margin: 0 auto; }
.hero .script-accent { color: #8fe0d8; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; margin: 0 0 8px; line-height: 1.05; }
.tagline { font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2.4vw, 1.5rem); font-style: italic; color: #eaf5f3; margin: 0 0 18px; letter-spacing: 0.02em; }
.hero .lead { color: rgba(255, 255, 255, 0.92); font-size: 1.15rem; max-width: 560px; margin: 0 auto 28px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Sections */
.section { padding: 86px 0; }
.section-alt { background: var(--cream); }

/* About */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.about-photo img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-text h2 { margin-top: 4px; }

/* Goal banner */
.goal { background: var(--teal); padding: 54px 0; }
.goal-text { color: #fff; text-align: center; font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 2.6vw, 1.7rem); line-height: 1.5; margin: 0 auto; max-width: 880px; }
.goal-text strong { color: #fff; letter-spacing: 0.04em; }

/* Services */
.services { margin-top: 36px; }
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.service-img { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.service-card:hover .service-img img { transform: scale(1.04); }
.service-body { padding: 22px 22px 26px; }
.soon {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

/* Gallery */
.gallery { columns: 3; column-gap: 18px; margin-top: 30px; }
.gallery img { width: 100%; margin: 0 0 18px; border-radius: var(--radius); box-shadow: var(--shadow); break-inside: avoid; }

/* Scripture */
.verse { background: var(--deep); padding: 64px 0; }
.verse .container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.verse blockquote {
  margin: 0;
  color: #eaf5f3;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}
.verse cite { display: block; margin-top: 12px; font-size: 0.95rem; font-style: normal; color: #9cc8c5; font-family: 'Nunito Sans', sans-serif; }

/* Contact */
.contact { max-width: 660px; }
.contact h2 { text-align: center; }
.lead.center { text-align: center; }
.lead { font-size: 1.12rem; }
.contact-form {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  display: grid;
  gap: 18px;
  margin-top: 26px;
}
.form-row { display: grid; gap: 7px; }
.form-row label { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 122, 142, 0.18);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { justify-self: start; }
.contact-form .btn:disabled { opacity: 0.6; cursor: default; transform: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.cf-status { margin: 0; font-size: 0.95rem; }
.cf-status.success { color: #0a7d6f; font-weight: 700; }
.cf-status.error { color: #b23b2e; font-weight: 700; }
.contact-details { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 24px; font-weight: 700; }
.contact-details a { color: var(--teal-dark); }

/* Footer */
.site-footer { background: var(--deep); color: #c9ddd9; padding: 44px 0; }
.footer-inner { display: grid; gap: 18px; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand strong { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.15rem; }
.footer-brand span { font-size: 0.92rem; color: #8fb6b3; }
.disclaimer { font-size: 0.86rem; color: #8fb6b3; line-height: 1.6; max-width: 760px; margin: 0; }
.copyright { font-size: 0.86rem; color: #78a09d; }

/* Responsive */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; gap: 30px; }
  .about-photo img { aspect-ratio: 16 / 11; }
  .verse .container { grid-template-columns: 1fr; gap: 28px; }
  .gallery { columns: 2; }
}
@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .nav-links a:not(.btn) { display: none; }
}
