/* Self-hosted Old English Five logo font.
   Place the licensed webfont files in /assets/fonts using the filenames below. */
@font-face {
  font-family: "Old English Five Web";
  src:
    local("Old English Five"),
    url("../fonts/OldEnglishFive.woff2") format("woff2"),
    url("../fonts/OldEnglishFive.woff") format("woff"),
    url("../fonts/OldEnglishFive.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --black: #111111;
  --near-black: #191919;
  --gold: #c9a24d;
  --gold-light: #e5ca8a;
  --cream: #f7f3ea;
  --warm-white: #fcfbf8;
  --white: #ffffff;
  --gray-100: #f1efe9;
  --gray-300: #d7d2c8;
  --gray-500: #79756d;
  --gray-700: #3e3c38;
  --shadow: 0 24px 70px rgba(17, 17, 17, .12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--warm-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 9999;
  transform: translateY(-160%); padding: 10px 16px; border-radius: 8px;
  background: var(--gold); color: var(--black); font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(17, 17, 17, .96); color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark {
  display: grid; place-items: center; width: 48px; height: 48px;
  border: 2px solid var(--gold); border-radius: 50%;
  font-family: "Old English Five Web", "Old English Five", "Old English Text MT", "Engravers Old English", "Lucida Blackletter", fantasy; font-size: 32px; font-weight: 800; line-height: 1;
  color: var(--gold);
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 17px; text-transform: uppercase; letter-spacing: .08em; }
.brand-copy small { margin-top: 5px; color: #b9b5ad; font-size: 11px; text-transform: uppercase; letter-spacing: .18em; }
.primary-nav { display: flex; align-items: center; gap: 29px; font-size: 14px; font-weight: 750; }
.primary-nav > a:not(.nav-cta) { color: #dedbd5; }
.primary-nav > a:not(.nav-cta):hover, .primary-nav > a:not(.nav-cta):focus-visible { color: var(--gold-light); }
.nav-cta {
  padding: 11px 18px; border: 1px solid var(--gold); border-radius: 999px;
  color: var(--gold-light);
}
.nav-cta:hover, .nav-cta:focus-visible { color: var(--black); background: var(--gold); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--white); transition: .25s ease; }

.hero {
  position: relative; overflow: hidden; min-height: 690px;
  color: var(--white); background:
    radial-gradient(circle at 74% 43%, rgba(201,162,77,.18), transparent 26%),
    linear-gradient(135deg, #111 0%, #171717 56%, #0c0c0c 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .13; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 62px 62px; mask-image: linear-gradient(to right, transparent, #000 52%, #000);
}
.hero-grid { min-height: 650px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 52px; padding-block: 72px 90px; }
.hero-copy { position: relative; z-index: 2; max-width: 690px; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 10px; color: var(--gold-light); font-size: 12px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 2px; background: var(--gold); }
.eyebrow.dark { color: #8a6c2f; }
.hero h1, .section h2, .community-cta h2 {
  margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 600; line-height: .99; letter-spacing: -.035em;
}
.hero h1 { max-width: 740px; font-size: clamp(54px, 7vw, 92px); }
.hero h1 em { color: var(--gold-light); font-weight: 400; }
.hero-lead { max-width: 650px; margin: 28px 0 0; color: #d5d2cb; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.75; }
.hero-actions, .stacked-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
  padding: 12px 22px; border: 1px solid transparent; border-radius: 999px;
  font-size: 14px; font-weight: 850; letter-spacing: .02em; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-gold { color: var(--black); background: var(--gold); }
.button-gold:hover, .button-gold:focus-visible { background: var(--gold-light); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.35); }
.button-outline:hover, .button-outline:focus-visible { border-color: var(--gold); color: var(--gold-light); }
.button-light-outline { color: var(--white); border-color: rgba(255,255,255,.33); }
.button-light-outline:hover, .button-light-outline:focus-visible { border-color: var(--white); background: var(--white); color: var(--black); }
.button-dark { color: var(--white); background: var(--black); }
.button-dark:hover, .button-dark:focus-visible { background: #2a2a2a; }
.hero-meta { display: flex; gap: 0; margin-top: 46px; color: #a9a69f; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.hero-meta span { padding: 0 22px; border-right: 1px solid rgba(255,255,255,.18); }
.hero-meta span:first-child { padding-left: 0; }
.hero-meta span:last-child { border-right: 0; }
.hero-meta b { display: block; margin-bottom: 2px; color: var(--white); font-size: 16px; letter-spacing: .02em; text-transform: none; }

.hero-art { position: relative; z-index: 1; width: min(500px, 100%); aspect-ratio: 1; justify-self: end; display: grid; place-items: center; }
.hero-ring { position: absolute; border: 1px solid rgba(201,162,77,.35); border-radius: 50%; }
.ring-one { inset: 5%; }
.ring-two { inset: 16%; border-style: dashed; animation: spin 35s linear infinite; }
.hero-l { position: relative; z-index: 2; margin-top: -10px; font-family: "Old English Five Web", "Old English Five", "Old English Text MT", "Engravers Old English", "Lucida Blackletter", fantasy; color: var(--gold); font-size: clamp(165px, 22vw, 260px); font-weight: 800; line-height: .8; text-shadow: 0 20px 60px rgba(0,0,0,.5); }
.hero-place { position: absolute; z-index: 3; bottom: 27%; font-size: clamp(22px, 3vw, 36px); font-weight: 900; letter-spacing: .32em; text-indent: .32em; }
.hero-state { position: absolute; z-index: 3; bottom: 21%; color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .48em; text-indent: .48em; }
.hero-tag { position: absolute; z-index: 3; padding: 7px 12px; color: var(--gold-light); background: #191919; border: 1px solid rgba(201,162,77,.45); border-radius: 999px; font-size: 9px; font-weight: 900; letter-spacing: .14em; box-shadow: 0 10px 25px rgba(0,0,0,.25); }
.tag-one { left: 2%; top: 29%; transform: rotate(-7deg); }
.tag-two { right: -2%; bottom: 31%; transform: rotate(8deg); }
.hero-stripe { height: 10px; background: linear-gradient(90deg, var(--gold), #6f5422, var(--gold)); }
@keyframes spin { to { transform: rotate(360deg); } }

.intro-strip { padding: 38px 0; background: var(--gold); }
.intro-grid { display: grid; grid-template-columns: .85fr 1.35fr; gap: 80px; align-items: center; }
.intro-grid p { margin: 0; }
.intro-kicker { font-family: Georgia, "Times New Roman", serif; font-size: 28px; line-height: 1.2; }
.intro-grid > p:last-child { font-size: 17px; line-height: 1.75; }

.section { padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; margin-bottom: 50px; }
.section h2 { font-size: clamp(43px, 5.2vw, 68px); }
.section-heading > p { margin: 0 0 4px; color: var(--gray-500); font-size: 17px; line-height: 1.75; }
.directory-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-card { position: relative; min-height: 410px; display: flex; flex-direction: column; justify-content: space-between; padding: 38px; border-radius: var(--radius-lg); overflow: hidden; }
.feature-card::after { content: ""; position: absolute; width: 260px; height: 260px; right: -100px; bottom: -110px; border: 1px solid currentColor; border-radius: 50%; opacity: .14; }
.feature-business { color: var(--white); background: var(--black); }
.feature-church { color: var(--black); background: var(--cream); border: 1px solid #e6e0d3; }
.feature-icon { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; color: var(--gold); }
.feature-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.card-label { margin: 0 0 12px; color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.feature-card h3 { max-width: 480px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(31px, 3.2vw, 43px); line-height: 1.08; font-weight: 600; }
.feature-card p:not(.card-label) { max-width: 500px; margin: 18px 0 0; opacity: .72; }
.text-link { position: relative; z-index: 1; display: inline-flex; gap: 12px; align-items: center; width: fit-content; font-size: 14px; font-weight: 850; }
.text-link span { color: var(--gold); font-size: 20px; transition: transform .2s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(5px); }

.business-preview-wrap { margin-top: 26px; padding: 36px; border: 1px solid #e3dfd6; border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 15px 50px rgba(17,17,17,.05); }
.preview-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.preview-heading h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 32px; font-weight: 600; }
.preview-heading > a { font-size: 13px; font-weight: 850; border-bottom: 1px solid var(--gold); }
.business-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.business-mini-card { min-width: 0; padding: 20px; background: var(--gray-100); border-radius: 16px; border: 1px solid transparent; transition: border-color .2s, transform .2s; }
.business-mini-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.business-mini-card .mini-category { margin: 0 0 8px; color: #8a6c2f; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.business-mini-card h4 { margin: 0; font-size: 17px; line-height: 1.25; }
.business-mini-card .mini-meta { margin: 9px 0 0; color: var(--gray-500); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.loading-card { min-height: 122px; padding: 20px; border-radius: 16px; background: var(--gray-100); }
.loading-card span, .loading-event span { display: block; height: 10px; margin-bottom: 12px; border-radius: 10px; background: linear-gradient(90deg, #e8e5de, #f7f5f0, #e8e5de); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
.loading-card span:nth-child(1) { width: 40%; }
.loading-card span:nth-child(2) { width: 78%; height: 17px; }
.loading-card span:nth-child(3) { width: 60%; }
@keyframes shimmer { to { background-position: -200% 0; } }

.events-section { color: var(--white); background: var(--black); }
.events-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 84px; align-items: start; }
.events-intro { position: sticky; top: 128px; }
.events-intro > p:not(.eyebrow) { max-width: 440px; margin: 25px 0 0; color: #bdb9b1; font-size: 17px; line-height: 1.75; }
.stacked-actions { max-width: 340px; flex-direction: column; align-items: stretch; }
.event-list { display: grid; gap: 14px; }
.event-card { display: grid; grid-template-columns: 92px 1fr auto; gap: 22px; align-items: center; min-height: 150px; padding: 24px; color: var(--black); background: var(--white); border-radius: 20px; }
.event-date { display: grid; place-items: center; min-height: 98px; padding: 10px; background: var(--cream); border-radius: 14px; text-align: center; }
.event-date span { color: #8a6c2f; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.event-date strong { font-family: Georgia, "Times New Roman", serif; font-size: 40px; line-height: 1; }
.event-content { min-width: 0; }
.event-content h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 24px; line-height: 1.15; font-weight: 600; }
.event-content p { margin: 9px 0 0; color: var(--gray-500); font-size: 13px; }
.event-arrow { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--gray-300); border-radius: 50%; font-size: 20px; }
.event-card:hover .event-arrow { color: var(--black); border-color: var(--gold); background: var(--gold); }
.loading-event { display: block; padding: 35px; }
.loading-event span:nth-child(1) { width: 24%; }
.loading-event span:nth-child(2) { width: 68%; height: 20px; }
.loading-event span:nth-child(3) { width: 42%; }
.empty-state { padding: 34px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; color: #ccc7be; }
.empty-state strong { display: block; margin-bottom: 6px; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 25px; }

.facebook-section { background: var(--cream); }
.facebook-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 84px; align-items: start; }
.facebook-copy { position: sticky; top: 128px; }
.facebook-copy > p:not(.eyebrow):not(.facebook-note) { max-width: 480px; margin: 25px 0 0; color: var(--gray-500); font-size: 17px; line-height: 1.75; }
.facebook-note { max-width: 420px; margin: 20px 0 0; color: var(--gray-500); font-size: 12px; }
.facebook-frame { width: min(100%, 540px); min-height: 790px; margin-left: auto; padding: 20px; border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.facebook-frame iframe { display: block; width: 100%; max-width: 500px; margin: 0 auto; border-radius: 12px; }

.community-cta { padding: 90px 0; color: var(--white); background: linear-gradient(120deg, #181818, #0b0b0b); border-top: 8px solid var(--gold); }
.cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: center; }
.community-cta h2 { max-width: 780px; font-size: clamp(38px, 4.8vw, 62px); }
.cta-actions { margin: 0; flex-direction: column; align-items: stretch; }

.site-footer { padding: 70px 0 22px; color: #c9c5bd; background: #090909; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .85fr; gap: 70px; padding-bottom: 50px; }
.footer-brand p { max-width: 390px; margin: 22px 0 0; color: #96928b; }
.footer-grid h3 { margin: 0 0 16px; color: var(--gold-light); font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) a { display: block; width: fit-content; margin: 9px 0; color: #aaa69e; font-size: 14px; }
.footer-grid > div:not(.footer-brand) a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid #262626; color: #77736c; font-size: 12px; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 760px; }
  .hero-art { width: min(520px, 86vw); justify-self: center; margin-top: 10px; }
  .section-heading, .events-layout, .facebook-layout, .cta-inner { grid-template-columns: 1fr; gap: 45px; }
  .events-intro, .facebook-copy { position: static; }
  .events-intro > p:not(.eyebrow), .facebook-copy > p:not(.eyebrow):not(.facebook-note) { max-width: 650px; }
  .stacked-actions { max-width: none; flex-direction: row; }
  .facebook-frame { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; gap: 35px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1180px); --radius-lg: 24px; }
  .header-inner { min-height: 70px; }
  .brand-mark { width: 42px; height: 42px; font-size: 27px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 9px; }
  .menu-button { display: block; position: relative; z-index: 102; }
  .menu-button[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: fixed; inset: 70px 0 auto; display: grid; gap: 0; padding: 24px 20px 30px;
    background: #111; border-top: 1px solid #2b2b2b; box-shadow: 0 30px 50px rgba(0,0,0,.3);
    transform: translateY(-130%); transition: transform .25s ease;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav a { padding: 13px 4px; border-bottom: 1px solid #282828; }
  .primary-nav .nav-cta { margin-top: 16px; padding: 12px 18px; text-align: center; border-bottom: 1px solid var(--gold); }
  .hero { min-height: 0; }
  .hero-grid { padding-block: 60px 72px; gap: 30px; }
  .hero h1 { font-size: clamp(48px, 15vw, 72px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-meta span { padding: 0 10px; text-align: center; }
  .hero-meta b { font-size: 14px; }
  .hero-art { width: min(430px, 94vw); }
  .hero-l { font-size: clamp(160px, 55vw, 230px); }
  .tag-two { right: 2%; }
  .intro-grid { grid-template-columns: 1fr; gap: 18px; }
  .intro-kicker { font-size: 25px; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 34px; }
  .directory-feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 390px; padding: 30px; }
  .business-preview-wrap { padding: 24px; }
  .business-preview-grid { grid-template-columns: 1fr; }
  .preview-heading { align-items: start; flex-direction: column; }
  .event-card { grid-template-columns: 76px 1fr; gap: 16px; padding: 16px; }
  .event-date { min-height: 82px; }
  .event-date strong { font-size: 34px; }
  .event-arrow { display: none; }
  .stacked-actions { flex-direction: column; }
  .facebook-frame { min-height: 0; padding: 10px; border-radius: 18px; overflow: hidden; }
  .facebook-frame iframe { height: 720px; }
  .cta-actions { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 430px) {
  .hero-meta { gap: 12px; }
  .hero-meta span { padding: 0; border: 0; }
  .hero-meta b { font-size: 12px; }
  .hero-meta { font-size: 9px; }
  .feature-card h3 { font-size: 31px; }
  .event-content h3 { font-size: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}


/* Compact homepage layout — hero removed to keep key content above the fold. */
.header-inner { min-height: 70px; }
.brand-mark { width: 42px; height: 42px; font-size: 28px; }
.brand-copy strong { font-size: 15px; }
.brand-copy small { margin-top: 3px; font-size: 9px; }
.primary-nav { gap: 23px; font-size: 13px; }
.nav-cta { padding: 9px 16px; }

.intro-strip { padding: 24px 0; }
.intro-grid { gap: 54px; }
.intro-kicker { font-size: 24px; }
.intro-grid > p:last-child { font-size: 15px; line-height: 1.55; }

.section { padding: 72px 0; }
.section-heading { gap: 52px; margin-bottom: 32px; }
.section h2 { font-size: clamp(36px, 4.2vw, 54px); line-height: 1.02; }
.section-heading > p { font-size: 15px; line-height: 1.6; }
.eyebrow { margin-bottom: 13px; font-size: 10px; }
.eyebrow span { width: 27px; }

.directory-feature-grid { gap: 18px; }
.feature-card { min-height: 290px; padding: 28px; }
.feature-icon { width: 48px; height: 48px; }
.feature-icon svg { width: 23px; }
.feature-card h3 { font-size: clamp(28px, 2.7vw, 36px); }
.feature-card p:not(.card-label) { margin-top: 12px; font-size: 14px; line-height: 1.55; }
.card-label { margin-bottom: 8px; font-size: 10px; }
.text-link { font-size: 13px; }

.business-preview-wrap { margin-top: 18px; padding: 24px; }
.preview-heading { margin-bottom: 16px; }
.preview-heading h3 { font-size: 27px; }
.business-preview-grid { gap: 12px; }
.business-mini-card { padding: 16px; }
.loading-card { min-height: 104px; padding: 16px; }

.events-layout { grid-template-columns: .72fr 1.28fr; gap: 52px; }
.events-intro { top: 100px; }
.events-intro > p:not(.eyebrow) { margin-top: 18px; font-size: 15px; line-height: 1.6; }
.hero-actions, .stacked-actions, .cta-actions { margin-top: 24px; }
.button { min-height: 44px; padding: 10px 18px; font-size: 13px; }
.event-list { gap: 11px; }
.event-card { grid-template-columns: 76px 1fr auto; gap: 17px; min-height: 118px; padding: 17px; border-radius: 16px; }
.event-date { min-height: 78px; }
.event-date strong { font-size: 33px; }
.event-content h3 { font-size: 21px; }
.event-content p { margin-top: 6px; }
.event-arrow { width: 36px; height: 36px; }
.loading-event { padding: 27px; }

.facebook-layout { grid-template-columns: .78fr 1.22fr; gap: 52px; }
.facebook-copy { top: 100px; }
.facebook-copy > p:not(.eyebrow):not(.facebook-note) { margin-top: 18px; font-size: 15px; line-height: 1.6; }
.facebook-note { margin-top: 14px; }
.facebook-frame { min-height: 730px; padding: 14px; border-radius: 22px; }
.facebook-frame iframe { height: 700px; }

.community-cta { padding: 54px 0; border-top-width: 6px; }
.community-cta h2 { font-size: clamp(34px, 4vw, 50px); }
.cta-inner { gap: 36px; }
.site-footer { padding: 44px 0 18px; }
.footer-grid { gap: 44px; padding-bottom: 32px; }
.footer-brand p { margin-top: 15px; }

@media (max-width: 980px) {
  .section-heading, .events-layout, .facebook-layout, .cta-inner { gap: 30px; }
  .stacked-actions { margin-top: 20px; }
}

@media (max-width: 760px) {
  .header-inner { min-height: 64px; }
  .primary-nav { inset: 64px 0 auto; }
  .intro-strip { padding: 20px 0; }
  .intro-grid { gap: 10px; }
  .intro-kicker { font-size: 22px; }
  .intro-grid > p:last-child { font-size: 14px; }
  .section { padding: 54px 0; }
  .section-heading { margin-bottom: 24px; }
  .feature-card { min-height: 275px; padding: 24px; }
  .business-preview-wrap { padding: 20px; }
  .event-card { grid-template-columns: 68px 1fr; min-height: 102px; padding: 14px; }
  .event-date { min-height: 72px; }
  .facebook-frame iframe { height: 650px; }
  .community-cta { padding: 44px 0; }
  .site-footer { padding-top: 38px; }
}

/* Homepage content-first layout v5 */
.home-facebook { padding: 42px 0 54px; background: var(--cream); }
.home-section-heading { display:flex; justify-content:space-between; align-items:end; gap:30px; margin-bottom:22px; }
.home-section-heading h1 { margin:0; font-family:Georgia,"Times New Roman",serif; font-size:clamp(38px,5vw,66px); line-height:1; }
.facebook-wide { padding:18px; border:1px solid #ddd6c8; border-radius:24px; background:#fff; box-shadow:var(--shadow); }
.facebook-wide iframe { display:block; width:100%; max-width:100%; height:820px; margin:0 auto; border-radius:12px; }
.facebook-wide .facebook-note { margin:12px 4px 0; text-align:center; }

.quick-directories { padding:48px 0; color:#fff; background:#111; }
.compact-heading { display:flex; align-items:end; justify-content:space-between; gap:20px; margin-bottom:20px; }
.compact-heading h2,.events-bar h2,.around-town-section h2 { margin:0; font-family:Georgia,"Times New Roman",serif; font-size:clamp(32px,4vw,48px); line-height:1.05; }
.directory-link-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.directory-link-card { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:20px; min-height:150px; padding:24px 26px; border:1px solid #353535; border-radius:20px; background:#181818; transition:transform .2s ease,border-color .2s ease,background .2s ease; }
.directory-link-card:hover { transform:translateY(-3px); border-color:var(--gold); background:#202020; }
.directory-card-icon { display:grid; place-items:center; width:58px; height:58px; color:#111; background:var(--gold); border-radius:50%; }
.directory-card-icon svg { width:28px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.directory-link-card small { display:block; margin-bottom:4px; color:var(--gold-light); font-size:10px; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.directory-link-card strong { display:block; color:#fff; font-family:Georgia,"Times New Roman",serif; font-size:29px; line-height:1.1; }
.directory-link-card em { display:block; margin-top:7px; color:#aaa69e; font-size:13px; font-style:normal; }
.directory-link-card b { color:var(--gold); font-size:28px; }

.upcoming-events { padding:50px 0 54px; color:#fff; background:linear-gradient(120deg,#1b1b1b,#0b0b0b); border-top:5px solid var(--gold); }
.events-bar { display:flex; justify-content:space-between; align-items:end; gap:30px; margin-bottom:22px; }
.events-bar-actions { display:flex; align-items:center; gap:18px; }
.events-bar-actions > a:first-child { color:#fff; font-size:13px; font-weight:800; border-bottom:1px solid var(--gold); }
.event-list-wide { grid-template-columns:repeat(3,1fr); }
.event-list-wide .event-card { grid-template-columns:70px 1fr; min-height:132px; padding:18px; }
.event-list-wide .event-arrow { display:none; }
.event-list-wide .event-date { min-height:86px; }
.event-list-wide .event-content h3 { font-size:20px; }

.around-town-section { padding:50px 0 58px; background:#f4efe4; }
.around-town-section .preview-heading { margin-bottom:20px; }
.around-town-section .preview-heading h2 { font-size:clamp(32px,4vw,46px); }
.around-town-grid { grid-template-columns:repeat(3,1fr); }
.around-town-grid .business-mini-card { min-height:138px; padding:22px; background:#fff; border:1px solid #ded7ca; border-radius:18px; }

.compact-footer { padding:28px 0 16px; }
.footer-compact-row { display:flex; justify-content:space-between; align-items:center; gap:30px; padding-bottom:24px; }
.footer-compact-row nav { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:18px; }
.footer-compact-row nav a { color:#aaa69e; font-size:13px; }
.footer-compact-row nav a:hover { color:#fff; }

@media (max-width:980px) {
  .event-list-wide { grid-template-columns:1fr; }
  .directory-link-grid { grid-template-columns:1fr; }
  .around-town-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width:760px) {
  .home-facebook { padding:26px 0 36px; }
  .home-section-heading,.events-bar,.preview-heading,.footer-compact-row { align-items:flex-start; flex-direction:column; }
  .home-section-heading .button { width:100%; }
  .facebook-wide { padding:8px; border-radius:16px; }
  .facebook-wide iframe { height:680px; }
  .quick-directories,.upcoming-events,.around-town-section { padding:38px 0; }
  .directory-link-card { min-height:126px; padding:20px; gap:15px; }
  .directory-card-icon { width:50px; height:50px; }
  .directory-link-card strong { font-size:24px; }
  .events-bar-actions { width:100%; justify-content:space-between; }
  .event-list-wide .event-card { grid-template-columns:68px 1fr; }
  .around-town-grid { grid-template-columns:1fr; }
  .footer-compact-row nav { justify-content:flex-start; }
}

@media (max-width:430px) {
  .facebook-wide iframe { height:620px; }
  .directory-link-card { grid-template-columns:auto 1fr; }
  .directory-link-card b { display:none; }
  .events-bar-actions { align-items:stretch; flex-direction:column; }
  .events-bar-actions .button { width:100%; }
}
@media (min-width:981px) { .around-town-grid { grid-template-columns:repeat(4,1fr); } }


/* Homepage layout v6: weather banner and centered Facebook section */
.weather-banner { color:#fff; background:linear-gradient(90deg,#242424,#151515); border-bottom:1px solid #353535; }
.weather-banner-inner { min-height:58px; display:flex; align-items:center; justify-content:space-between; gap:24px; padding-block:8px; }
.weather-location,.weather-details { display:flex; align-items:center; gap:12px; }
.weather-icon { width:36px; height:36px; display:grid; place-items:center; font-size:23px; background:rgba(255,255,255,.08); border-radius:50%; }
.weather-location strong { display:block; font-size:13px; line-height:1.2; }
.weather-location small { display:block; margin-top:2px; color:#bdb8ae; font-size:11px; }
.weather-details { justify-content:flex-end; }
.weather-details > strong { color:var(--gold-light); font-family:Georgia,"Times New Roman",serif; font-size:28px; line-height:1; }
.weather-details > span { color:#d0cbc1; font-size:12px; }
.weather-details a { padding-left:12px; border-left:1px solid #4a4a4a; color:var(--gold-light); font-size:11px; font-weight:800; }
.weather-details a.is-alert { color:#fff; background:#8f241e; border:0; border-radius:999px; padding:7px 11px; }

/* Facebook now appears last and is deliberately narrower than the main content column. */
.home-facebook { padding:52px 0 62px; background:var(--cream); }
.facebook-shell { max-width:820px; }
.facebook-heading { align-items:center; text-align:left; }
.facebook-heading h2 { margin:0; font-family:Georgia,"Times New Roman",serif; font-size:clamp(34px,4vw,50px); line-height:1.05; }
.facebook-heading p:not(.eyebrow) { max-width:560px; margin:10px 0 0; color:var(--gray-500); font-size:14px; }
.facebook-centered { width:min(100%,760px); margin-inline:auto; }
.facebook-centered iframe { width:500px; max-width:100%; }

@media (max-width:760px) {
  .weather-banner-inner { min-height:64px; align-items:flex-start; flex-direction:column; gap:6px; padding-block:9px; }
  .weather-details { width:100%; justify-content:flex-start; flex-wrap:wrap; padding-left:48px; gap:9px; }
  .weather-details > strong { font-size:23px; }
  .weather-details a { margin-left:auto; }
  .facebook-heading { align-items:flex-start; }
  .facebook-centered { padding:8px; }
}

@media (max-width:430px) {
  .weather-details { padding-left:0; }
  .weather-details a { width:100%; margin-left:0; padding-left:0; border-left:0; }
}
