
:root {
  --bg: #f7f5ef;
  --card: #ffffff;
  --card-alt: #fcfbf7;
  --text: #0f172a;
  --muted: #5f6b7a;
  --line: #e6dcc2;
  --dark: #0f172a;
  --accent: #d99d2b;
  --accent-soft: #f3e3bd;
  --shadow: 0 12px 32px rgba(15,23,42,.08);
  --radius: 1.5rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
}
.header-inner, .footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0;
}
.brand { display: flex; align-items: center; gap: .9rem; }
.brand-badge, .footer-brand img {
  width: 56px; height: 56px; border-radius: 999px; overflow: hidden; border: 1px solid var(--line); background: #eef3d9; flex: none;
}
.brand-name { font-weight: 800; letter-spacing: -.02em; }
.brand-sub { color: var(--muted); font-size: .95rem; }
.nav, .footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.nav a, .footer-links a { color: #334155; font-weight: 600; }
.nav a:hover, .footer-links a:hover { color: #111827; }
.nav a.active, .nav a[aria-current="page"] {
  color: #a16207;
  border-bottom: 2px solid var(--accent);
  padding-bottom: .15rem;
}
.hero {
  padding: 4.5rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(251,191,36,.18), transparent 30%),
    radial-gradient(circle at left, rgba(21,128,61,.10), transparent 35%);
}
.hero-grid, .two-col, .contact-grid, .whatson-grid {
  display: grid; gap: 2rem; grid-template-columns: 1.05fr .95fr; align-items: center;
}
.eyebrow {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .82rem;
}
.eyebrow { color: #a16207; }
.eyebrow.light { color: #fcd34d; }
h1, h2, h3 { margin: 0; letter-spacing: -.03em; }
h1 { margin-top: .9rem; font-size: clamp(2.4rem, 5vw, 4.35rem); line-height: 1.02; }
h2 { font-size: clamp(1.85rem, 3vw, 3rem); line-height: 1.06; }
h3 { font-size: 1.25rem; }
.lead, .section-text { margin-top: 1rem; color: var(--muted); font-size: 1.08rem; }
.button-row { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.5rem; }
.button-row.small { margin-top: 1rem; }
.button-row.center { justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 1rem; padding: .9rem 1.2rem; font-weight: 700; transition: .2s ease;
}
.btn-primary { background: var(--dark); color: #fff; box-shadow: 0 16px 28px rgba(15,23,42,.12); }
.btn-primary:hover { background: #1e293b; }
.btn-secondary { background: #fff; color: #334155; border: 1px solid #cbd5e1; }
.btn-secondary:hover { border-color: #94a3b8; }
.btn-accent { background: var(--accent); color: #111827; }
.btn-accent:hover { filter: brightness(1.04); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.32); color: #fff; }
.btn-outline-light:hover { border-color: rgba(255,255,255,.5); }
.btn-plain-light { background: #fff; color: #111827; }
.stats-grid, .facilities-grid, .times-grid, .mini-grid {
  display: grid; gap: 1rem;
}
.stats-grid { margin-top: 1.75rem; grid-template-columns: repeat(3,1fr); }
.stat-card, .facility-card, .time-card, .mini-card {
  border: 1px solid var(--line); background: rgba(255,255,255,.92); border-radius: var(--radius); box-shadow: var(--shadow);
}
.stat-card { padding: 1rem 1.1rem; display: grid; gap: .35rem; }
.stat-card span { color: var(--muted); font-size: .95rem; }
.hero-card, .image-card {
  position: relative; overflow: hidden; border-radius: calc(var(--radius) + .2rem); border: 1px solid var(--line); background: var(--card); box-shadow: var(--shadow);
}
.hero-card { min-height: 520px; }
.hero-card img { height: 100%; object-fit: cover; }
.hero-card-overlay {
  position: absolute; inset: 0; padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
  background: linear-gradient(to top, rgba(15,23,42,.82), rgba(15,23,42,.18), rgba(15,23,42,.1));
}
.hero-card-overlay p { color: rgba(255,255,255,.9); }
.hero-stack { display: grid; gap: 2.75rem; }
.hero-intro { max-width: 900px; margin: 0 auto; text-align: center; }
.hero-intro .button-row { justify-content: center; }
.poster-grid { display: grid; gap: 2rem; grid-template-columns: minmax(0, 660px) 1fr; align-items: start; }
.poster-figure { margin: 0; }
.poster-card {
  display: block; overflow: hidden;
  border-radius: calc(var(--radius) + .2rem); border: 1px solid var(--line);
  background: var(--card); box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.poster-card:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(15,23,42,.14); }
.poster-card img { width: 100%; height: auto; }
.poster-hint { margin: .8rem 0 0; text-align: center; color: var(--muted); font-size: .94rem; }
.poster-aside { display: grid; gap: 1rem; align-content: start; position: sticky; top: 6.5rem; }
.poster-aside .stats-grid { margin-top: 0; grid-template-columns: 1fr; }
.visit-card {
  padding: 1.75rem 1.6rem; border-radius: var(--radius);
  background: var(--dark); color: #fff; box-shadow: var(--shadow);
}
.visit-card h2 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-top: .35rem; }
.visit-card p { margin: .55rem 0 0; color: rgba(255,255,255,.88); }
.section { padding: 5rem 0; }
.section-alt { background: #fffdf8; border-block: 1px solid var(--line); }
.section-dark { background: #020617; color: #fff; }
.section-heading.center { max-width: 760px; margin: 0 auto 2.25rem; text-align: center; }
.image-card img { min-height: 340px; object-fit: cover; }
.image-card.tall img { min-height: 640px; }
.mini-grid { margin-top: 1.25rem; grid-template-columns: repeat(2, 1fr); }
.mini-card { padding: 1.25rem; }
.mini-card p { margin: .55rem 0 0; color: var(--muted); }
.facilities-grid { grid-template-columns: repeat(3,1fr); }
.facility-card { padding: 1.45rem; background: var(--card-alt); }
.facility-card p { color: var(--muted); margin: .65rem 0 0; }
.icon {
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 1rem; background: var(--accent-soft); font-size: 1.55rem;
}
.gallery-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2,1fr); }
.gallery-card {
  overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--card); box-shadow: var(--shadow);
}
.gallery-card.wide { grid-column: span 2; }
.gallery-subheading { grid-column: 1 / -1; margin: 1rem 0 .25rem; }
.gallery-subheading h3 { font-size: 1.4rem; margin: 0; }
.gallery-card img { height: 320px; object-fit: cover; }
.gallery-card-placeholder { height: 320px; background: var(--line); }
.gallery-card.wide img { height: 420px; }
.gallery-card figcaption { padding: 1rem 1.1rem; display: grid; gap: .3rem; }
.gallery-card figcaption span { color: var(--muted); font-size: .95rem; }
.stack-cards { display: grid; gap: 1rem; }
.announcements-grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
.announcement-card {
  position: relative; padding: 1.6rem 1.45rem 1.5rem;
  border: 1px solid var(--line); background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}
.announcement-tag {
  display: inline-block; margin-bottom: .85rem;
  padding: .35rem .8rem; border-radius: 999px;
  background: var(--accent-soft); color: #a16207;
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.announcement-card p { margin: .65rem 0 0; color: var(--muted); }
.updates-grid { display: grid; gap: 1.5rem; grid-template-columns: minmax(0, 500px) 1fr; align-items: start; }
.fb-embed {
  overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--card); box-shadow: var(--shadow);
}
.fb-timeline { display: block; width: 100%; max-width: 500px; height: 640px; border: 0; }
.fb-autoscroll {
  --fb-window: 640px;
  --fb-feed: 1800px;
  position: relative; height: var(--fb-window); overflow: hidden;
}
.fb-autoscroll .fb-timeline {
  height: var(--fb-feed);
  animation: fb-autoscroll 100s linear infinite alternate;
  will-change: transform;
}
@keyframes fb-autoscroll {
  from { transform: translateY(0); }
  to { transform: translateY(calc(var(--fb-window) - var(--fb-feed))); }
}
.fb-autoscroll:hover .fb-timeline,
.fb-autoscroll:focus-within .fb-timeline,
.fb-autoscroll.is-paused .fb-timeline { animation-play-state: paused; }
.fb-scroll-toggle {
  position: absolute; right: .75rem; bottom: .75rem; z-index: 2;
  padding: .5rem .85rem; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,255,255,.94); color: #334155;
  font: inherit; font-size: .85rem; font-weight: 700; cursor: pointer;
  box-shadow: var(--shadow); transition: .2s ease;
}
.fb-scroll-toggle:hover { color: #111827; border-color: #94a3b8; }
.fb-note { margin: 0; padding: .8rem 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; text-align: center; }
@media (prefers-reduced-motion: reduce) {
  .fb-autoscroll { overflow-y: auto; }
  .fb-autoscroll .fb-timeline { animation: none; }
  .fb-scroll-toggle { display: none; }
}
.updates-aside { display: grid; gap: 1rem; align-content: start; }
.updates-aside .aside-title { margin: .25rem 0 0; font-size: 1.5rem; }
.announcement-list { margin: .75rem 0 0; padding-left: 1.15rem; color: var(--muted); display: grid; gap: .45rem; }
.times-grid { grid-template-columns: repeat(4,1fr); }
.time-card { padding: 1.35rem; text-align: center; }
.time-card span { display: block; color: var(--muted); text-transform: uppercase; font-size: .82rem; font-weight: 700; letter-spacing: .08em; }
.time-card strong { display: block; margin-top: .55rem; font-size: 1.18rem; }
.contact-grid { align-items: stretch; }
.contact-card { border-radius: calc(var(--radius) + .15rem); padding: 1.7rem; box-shadow: var(--shadow); }
.contact-card.dark { background: var(--dark); color: #fff; }
.contact-card.dark a { color: #fff; }
.contact-card.dark .btn-plain-light { color: #111827; }
.contact-card.light { border: 1px solid var(--line); background: var(--card); }
.contact-list { display: grid; gap: 1rem; margin-top: 1.35rem; }
.contact-list span { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: #94a3b8; font-weight: 700; }
.contact-list p { margin: .35rem 0 0; }
.contact-form { display: grid; gap: 1rem; margin-top: 1.25rem; }
.form-row.two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.contact-form label { display: grid; gap: .45rem; font-weight: 600; color: #334155; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border-radius: 1rem; border: 1px solid #cbd5e1; padding: .9rem 1rem; font: inherit; background: #fff; color: #0f172a;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(217,157,43,.14);
}
.honeypot { display: none; }
.submit-btn { justify-self: start; }
.form-note { color: var(--muted); font-size: .94rem; }
.site-footer { border-top: 1px solid var(--line); background: #fff; }
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.thankyou-wrap { min-height: 100vh; display: grid; place-items: center; padding: 2rem; }
.thankyou-card {
  width: min(760px, 100%); background: #fff; border: 1px solid var(--line); border-radius: calc(var(--radius) + .15rem); padding: 3rem 2rem; text-align: center; box-shadow: var(--shadow);
}
@media (max-width: 980px) {
  .hero-grid, .two-col, .contact-grid, .whatson-grid { grid-template-columns: 1fr; }
  .poster-grid { grid-template-columns: 1fr; justify-items: center; }
  .poster-figure, .poster-aside { width: 100%; max-width: 660px; }
  .poster-aside { position: static; }
  .poster-aside .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .updates-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .announcements-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .times-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .nav {
    width: 100%;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .35rem;
  }
  .nav a { white-space: nowrap; }
  .stats-grid, .facilities-grid, .gallery-grid, .times-grid, .form-row.two, .mini-grid { grid-template-columns: 1fr; }
  .poster-aside .stats-grid { grid-template-columns: 1fr; }
  .announcements-grid { grid-template-columns: 1fr; }
  .gallery-card.wide { grid-column: auto; }
  .gallery-card.wide img, .gallery-card img { height: 280px; }
  .hero { padding-top: 3rem; }
  .fb-autoscroll { --fb-window: 520px; }
  .header-inner, .footer-inner { flex-direction: column; align-items: flex-start; }
}
