/* St. Anne's Park — site styles */

:root {
  --green-deep: #1f3d2b;
  --green: #2f5d3f;
  --green-light: #5c8a5f;
  --rose: #b3475a;
  --rose-dark: #8f3547;
  --cream: #faf7f0;
  --cream-dark: #f0ead9;
  --ink: #20261f;
  --ink-soft: #4a5449;
  --max-width: 1180px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(20, 40, 25, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--green-deep);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; }

a { color: var(--rose-dark); }

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: bold;
  font-size: 1.15rem;
  color: var(--green-deep);
  text-decoration: none;
}

.brand .leaf {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover { color: var(--rose-dark); }

.topbar .cta-btn { display: inline-block; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(180deg, rgba(15, 30, 18, 0.55) 0%, rgba(15, 30, 18, 0.35) 45%, rgba(15, 30, 18, 0.75) 100%),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center 65%;
  color: #fff;
}

.hero-content {
  max-width: 760px;
  padding: 120px 24px 80px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f2d9df;
  margin-bottom: 18px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
  margin-bottom: 20px;
}

.hero p.lead {
  font-size: 1.2rem;
  max-width: 560px;
  color: #f4f1e8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-facts {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-facts div strong {
  display: block;
  font-size: 1.5rem;
  font-family: "Playfair Display", Georgia, serif;
}

.hero-facts div span {
  font-size: 0.82rem;
  color: #e7e2d2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 8px 20px rgba(143, 53, 71, 0.35);
}

.btn-primary:hover { background: var(--rose-dark); }

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.18); }

.btn-dark {
  background: var(--green-deep);
  color: #fff;
}

.btn-dark:hover { background: var(--green); }

/* ---------- Sections ---------- */

section { padding: 88px 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head .kicker {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.section-alt { background: var(--cream-dark); }

/* Feature grid */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.card h3 { font-size: 1.1rem; }
.card p { color: var(--ink-soft); margin-bottom: 0; font-size: 0.95rem; }

/* Split / feature-with-image */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.split.reverse .img-col { order: 2; }
.split.reverse .text-col { order: 1; }

.text-col .kicker {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 10px;
}

.text-col ul {
  padding-left: 20px;
  color: var(--ink-soft);
  margin: 18px 0;
}

.text-col li { margin-bottom: 8px; }

/* Info strip: hours / address / contact */

.info-strip {
  background: var(--green-deep);
  color: #f4f1e8;
}

.info-strip .grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.info-strip .info-card h3 {
  color: #fff;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-strip .info-card p, .info-strip .info-card a {
  color: #d9d5c3;
  font-size: 0.95rem;
}

.info-strip .info-card a { color: #f2d9df; text-decoration: none; font-weight: 600; }

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Testimonial / quote band */

.quote-band {
  background: var(--rose);
  color: #fff;
  text-align: center;
}

.quote-band blockquote {
  max-width: 720px;
  margin: 0 auto;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.5;
}

.quote-band cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f7e3e8;
}

/* Map + CTA */

.visit-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visit-cta .cta-text {
  padding: 48px;
}

.visit-cta iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* Footer */

footer {
  background: var(--ink);
  color: #c9cbc4;
  padding: 56px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 { color: #fff; font-size: 1rem; }

footer a { color: #c9cbc4; text-decoration: none; font-size: 0.92rem; }
footer a:hover { color: #fff; }

.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 0.82rem;
  color: #8b8d85;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a { color: #8b8d85; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .nav-links { display: none; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split .img-col, .split.reverse .img-col { order: 1; }
  .split .text-col, .split.reverse .text-col { order: 2; }
  .visit-cta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 100px 20px 60px; }
}
