@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500;1,600&family=Montserrat:wght@400;500;600&display=swap');

:root {
  --bg: #fbf2ee;
  --paper: #fffdfc;
  --ink: #3b211d;
  --muted: #806b65;
  --red: #ad1719;
  --line: #ead8d1;
  --shadow: 0 24px 55px rgba(112, 38, 28, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(255,255,255,.9), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.topbar {
  position: absolute;
  inset: 0 0 auto;
  height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.brand { opacity: .96; }
.brand img { width: 108px; height: auto; display: block; }

main { overflow: hidden; }

.hero {
  min-height: 690px;
  padding: 110px 24px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo-card {
  width: min(300px, 76vw);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,253,252,.9);
  box-shadow: var(--shadow);
  margin-bottom: 35px;
}
.logo-card img { width: 100%; display: block; border-radius: 9px; }

.eyebrow, .section-kicker {
  color: var(--red);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .42em;
  margin: 0 0 18px;
}
.eyebrow { display: none; }

h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  margin: 0;
}
h1 {
  font-size: clamp(35px, 4.5vw, 58px);
  line-height: 1.08;
  font-style: italic;
  max-width: 900px;
}
.intro {
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
  margin: 25px 0 0;
}

.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 85px 24px;
  text-align: center;
}
.section h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}
.services h2 { max-width: 720px; margin: 0 auto 48px; }

.schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.card {
  background: rgba(255,253,252,.82);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 32px 25px 28px;
  box-shadow: 0 20px 45px rgba(112, 38, 28, .08);
}
.day {
  display: block;
  color: #927d76;
  font-size: 9px;
  letter-spacing: .38em;
  font-weight: 500;
  margin-bottom: 19px;
}
.card strong {
  display: block;
  color: var(--red);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 39px;
  line-height: 1;
  font-weight: 500;
}
.card p {
  color: var(--muted);
  font-size: 12px;
  margin: 18px 0 0;
}
.card small {
  display: block;
  color: #aa9891;
  font-size: 7px;
  letter-spacing: .18em;
  line-height: 1.6;
  margin-top: 13px;
}

.faith { padding-top: 60px; padding-bottom: 90px; }
.cross {
  position: relative;
  width: 52px;
  height: 78px;
  margin: 0 auto 25px;
}
.cross::before, .cross::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, #ff8b00, var(--red));
  border-radius: 1px;
}
.cross::before { width: 7px; height: 78px; left: 23px; top: 0; }
.cross::after { width: 48px; height: 7px; left: 2px; top: 29px; }
.faith h2 { font-style: italic; font-size: 31px; margin-bottom: 34px; }
.faith blockquote {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
  font-style: normal;
}

.location { padding-top: 35px; }
.address {
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
  margin: 18px 0 35px;
}
.map {
  margin: 0 auto;
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #eee;
}
.map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
.address-box {
  max-width: 500px;
  margin: -1px auto 0;
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  background: var(--paper);
  text-align: left;
}
.address-box strong { display: block; font-size: 13px; margin-bottom: 5px; }
.address-box span { color: var(--muted); font-size: 11px; line-height: 1.6; }
.maps-button {
  display: inline-block;
  margin-top: 15px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  transition: transform .2s ease, opacity .2s ease;
}
.maps-button:hover { transform: translateY(-2px); opacity: .9; }

footer {
  padding: 55px 24px 65px;
  text-align: center;
  border-top: 1px solid rgba(175, 112, 96, .16);
}
.footer-cross { color: var(--red); font-size: 28px; margin-bottom: 15px; }
footer p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  margin: 0 0 4px;
}
footer span { color: var(--muted); font-size: 9px; letter-spacing: .25em; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 700px) {
  .topbar { height: 58px; }
  .brand img { width: 82px; }
  .hero { min-height: 620px; padding-top: 82px; }
  .logo-card { width: min(245px, 70vw); margin-bottom: 28px; }
  h1 { font-size: clamp(31px, 9vw, 42px); }
  .intro { font-size: 11px; line-height: 1.9; }
  .desktop { display: none; }
  .section { padding: 65px 18px; }
  .schedule { grid-template-columns: 1fr; }
  .card { padding: 29px 20px; }
  .faith h2 { font-size: 27px; }
  .map { border-radius: 12px; }
  .map iframe { height: 330px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
