/* Turners Cross Christian Church — static site
   Faithful rebuild of the Wix page with a light, responsive refresh.
   Palette + fonts taken from the original; layout tidied into aligned sections. */

:root {
  --olive: #7d8a63;        /* sage/olive bands (CTA + footer) */
  --olive-dark: #6c7a54;
  --sage: #cfd9c0;         /* pale decorative green */
  --sage-soft: #e7eede;
  --forest: #2f6a2e;       /* deep green headings */
  --ink: #222121;
  --muted: #5f6360;
  --line: #e2e2e2;
  --paper: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --maxw: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Header ---------- */
.site-header { padding: 22px 0; border-bottom: 2px solid var(--olive); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 18px; }
.brand-logo { width: 84px; height: 84px; border-radius: 6px; object-fit: cover; flex: none; }
.brand-name {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(24px, 3.5vw, 34px); letter-spacing: .01em;
}
.venue-card {
  font-style: normal; border: 1px solid var(--sage); border-radius: 4px;
  padding: 14px 20px; font-size: 15px; line-height: 1.5; color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--serif); font-size: 19px; font-weight: 600; letter-spacing: .1em;
  color: var(--ink); background: #fff; border: 1px solid #c9ccc0; border-radius: 2px;
  padding: 13px 26px; text-decoration: none; white-space: nowrap;
  transition: background .15s, border-color .15s, transform .05s;
}
.btn::after { content: "\203A"; font-weight: 700; }
.btn:hover { background: var(--sage-soft); border-color: var(--olive); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid var(--forest); outline-offset: 2px; }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--olive); color: #fff; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; padding-top: 26px; padding-bottom: 26px;
}
.cta-text { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 26px); margin: 0; max-width: 32ch; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero { padding: 56px 0; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; }
.hero-figure { margin: 0; }
.hero-figure img { border-radius: 4px; box-shadow: 0 14px 36px rgba(0, 0, 0, .18); }
.hero-card {
  background: linear-gradient(135deg, #ffffff 0%, #eef2e8 60%, #dde6d2 100%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .12); border-radius: 4px;
  padding: 40px 38px; margin-left: -60px;
}
.hero-title {
  font-family: var(--serif); color: var(--forest); font-weight: 700;
  font-size: clamp(40px, 5.2vw, 64px); line-height: 1.02; margin: 0 0 22px;
}
.hero-card p { margin: 0 0 14px; color: #33332f; font-size: 18px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Map ---------- */
.map-section { padding: 0 0 56px; }
.map-embed { width: 100%; height: 420px; border: 0; border-radius: 4px; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--olive); color: #fff; padding: 48px 0 26px; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 28px; align-items: start; }
.footer-title { font-family: var(--serif); font-weight: 600; font-size: 32px; margin: 0; }
.footer-contact { margin: 0; }
.footer-row { display: flex; gap: 10px; margin-bottom: 14px; }
.footer-row dt { font-weight: 600; min-width: 62px; }
.footer-row dd { margin: 0; }
.footer-row a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-row a:hover { text-decoration: none; }
.copyright { text-align: center; color: rgba(255, 255, 255, .85); font-size: 14px; margin: 34px 0 0; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { margin-left: 0; margin-top: -30px; width: 92%; margin-right: auto; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .venue-card { width: 100%; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .hero { padding: 36px 0; }
  .hero-card { width: 100%; margin-top: -20px; padding: 30px 24px; }
  .cta-actions .btn, .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .map-embed { height: 320px; }
}

/* ---------- Footer privacy link ---------- */
.copyright a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.copyright a:hover { text-decoration: none; }

/* ---------- Content pages (privacy, etc.) ---------- */
.page { padding: 48px 0 64px; }
.page h1 { font-family: var(--serif); color: var(--forest); font-weight: 700; font-size: clamp(34px, 5vw, 52px); margin: 0 0 6px; }
.page .updated { color: var(--muted); font-size: 15px; margin: 0 0 28px; }
.prose { max-width: 70ch; }
.prose h2 { font-family: var(--serif); color: var(--forest); font-weight: 600; font-size: 26px; margin: 32px 0 10px; }
.prose p, .prose li { font-size: 17px; }
.prose ul { padding-left: 1.2em; }
.prose a { color: var(--forest); text-underline-offset: 2px; }
