/* ClickUpLocal main stylesheet
 *
 * Design tokens live in :root as CSS custom properties. Override these on a
 * per-project basis by editing the values below. Everything else cascades.
 *
 * Font is loaded from Google Fonts in functions.php — swap there.
 */

:root {
    --color-primary:   #002868;  /* Old Glory Blue */
    --color-accent:    #bf0a30;  /* Old Glory Red */
    --color-accent-dk: #8c0721;  /* deeper red for hover/links */
    --color-text:      #2c3540;
    --color-muted:     #6b7280;
    --color-border:    #e6e8eb;
    --color-surface:   #f4f6fb;  /* faint cool white */
    --color-dark:      #002868;  /* Old Glory Blue */
    --color-white:     #ffffff;
    --color-hover-dark:   #001b46;  /* darkest navy for hover */
    --color-input-border: #c3ccda;

    /* Space Grotesk headings + Inter body is the default look. Per-client, set
       a Google Fonts URL in Brand Settings to override both. */
    --font-heading: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --container: 1200px;
    --radius:    12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 14px 40px rgba(20,24,31,0.12);

    --sp-1: 0.5rem;
    --sp-2: 1rem;
    --sp-3: 1.5rem;
    --sp-4: 2rem;
    --sp-5: 3rem;
    --sp-6: 4.5rem;
    --sp-7: 6rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    font-size: 17px;
    line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--sp-2);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.65rem); }
h1, h2, h3 { letter-spacing: -0.01em; }
p  { margin: 0 0 var(--sp-2); }

/* Signature motif: a red accent bar under centered section headings. */
.section-head h2 { position: relative; padding-bottom: 0.55rem; }
.section-head h2::after {
    content: ""; position: absolute; left: 50%; bottom: 0;
    transform: translateX(-50%);
    width: 56px; height: 4px; border-radius: 4px;
    background: var(--color-accent);
}

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-3); }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent-dk);
    margin: 0 0 var(--sp-1);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.95rem 1.6rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.18s ease;
    text-decoration: none;
    line-height: 1;
}
.button-primary   { background: var(--color-accent); color: #fff; }
.button-primary:hover { background: var(--color-accent-dk); color: #fff; text-decoration: none; transform: translateY(-1px); }
.button-secondary { background: var(--color-primary); color: #fff; }
.button-secondary:hover { background: var(--color-accent); color: #fff; text-decoration: none; }
.button-ghost     { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.button-ghost:hover { background: var(--color-primary); color: #fff; text-decoration: none; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    color: var(--color-accent-dk);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.85rem;
}
.link-arrow::after { content: "\2192"; transition: transform 0.18s ease; }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover::after { transform: translateX(4px); }

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding shorthand would wipe the .container horizontal gutter, breaking
       left-edge alignment with the hero/body/footer. Set only vertical. */
    padding-top: 10px;
    padding-bottom: 10px;
    gap: var(--sp-3);
}
.site-logo { display: flex; align-items: center; }
.site-logo img { max-height: 96px; width: auto; display: block; }
.site-logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-primary);
}
.primary-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-3);
    margin: 0; padding: 0;
}
/* "More" overflow dropdown (priority nav fills it with items that don't fit) */
.primary-nav .nav-more { position: relative; }
.nav-more-btn {
    background: none; border: 0; font: inherit; font-weight: 600; font-size: 0.95rem;
    color: var(--color-primary); cursor: pointer; padding: 0;
    display: inline-flex; align-items: center; gap: 4px;
}
.nav-more-btn:hover { color: var(--color-accent); }
.nav-more-menu {
    position: absolute; top: 100%; right: 0; margin-top: 12px;
    background: #fff; border: 1px solid var(--color-border); border-radius: 8px;
    box-shadow: var(--shadow-md); padding: 8px; list-style: none;
    min-width: 180px; display: none; flex-direction: column; gap: 2px; z-index: 200;
}
.primary-nav .nav-more.is-open .nav-more-menu { display: flex; }
.nav-more-menu li { margin: 0; }
.nav-more-menu a { display: block; padding: 8px 12px; border-radius: 6px; color: var(--color-primary); font-weight: 600; }
.nav-more-menu a:hover { background: var(--color-surface); text-decoration: none; }
.primary-nav a {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
}
.primary-nav a:hover { color: var(--color-accent); text-decoration: none; }
.primary-nav li.cta .button { color: #fff; }

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
}

/* Sections */
.section { padding: var(--sp-6) 0; }
.section-alt { background: var(--color-surface); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto var(--sp-5); }
.section-lede { color: var(--color-muted); font-size: 1.1rem; margin: 0; }

/* Hero */
/* Homepage hero — full-bleed image (the Home page's Featured Image) with a
   navy overlay for legibility, falling back to a branded navy gradient when no
   image is set. Set a hero image: Home page → Featured image. */
.hero {
    position: relative;
    background: var(--cul-hero-gradient);
    background-size: cover;
    background-position: center;
    border-bottom: 6px solid var(--cul-blaze);
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,26,46,0.5) 0%, rgba(11,26,46,0.8) 100%);
    pointer-events: none;
}
.hero .hero-inner {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    gap: 18px;
    min-height: min(72vh, 620px);
    padding-top: 72px; padding-bottom: 72px;
}
.hero .eyebrow { color: var(--cul-blaze); }
.hero h1 { color: #fff; max-width: 900px; margin: 0; font-size: clamp(34px, 6vw, 60px); line-height: 1.05; }
.hero-subtext { color: rgba(255,255,255,0.88); font-size: clamp(17px, 2.2vw, 21px); max-width: 680px; margin: 0; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.button-ghost-light { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.9); color: #fff; backdrop-filter: blur(2px); }
.button-ghost-light:hover { background: #fff; color: var(--cul-navy); border-color: #fff; text-decoration: none; }

/* Page hero (used by feature pages + posts + archives) */
.page-hero {
    background: linear-gradient(180deg, var(--color-surface) 0%, #fff 100%);
    padding: var(--sp-6) 0 var(--sp-5);
    text-align: center;
}
.page-hero h1 { margin-bottom: var(--sp-2); }
.page-hero-lede {
    max-width: 720px;
    margin: 0 auto var(--sp-3);
    color: var(--color-text);
    font-size: 1.1rem;
}
/* No max-width override — .page-content inherits the .container width so
 * header, hero, body, and footer all line up edge-to-edge. Add a per-page
 * max-width on a specific element if a particular page wants narrower prose. */
.page-content { margin: 0 auto; }
.page-content h2,
.feature-section h2 {
    margin-top: var(--sp-5);
    margin-bottom: var(--sp-2);
}
.feature-section { margin-bottom: var(--sp-4); }
.feature-section:first-child { margin-top: 0; }
/* About page: text on the left, photo on the right (from Business Info). */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.about-split.no-photo { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
@media (max-width: 820px) { .about-split { grid-template-columns: 1fr; } }
.about-split-text { font-size: 18px; line-height: 1.7; }
.about-split-text p { margin: 0 0 var(--sp-2); }
.about-split-photo { margin: 0; }
.about-split-photo img { width: 100%; height: auto; display: block; border-radius: var(--cul-radius-lg); box-shadow: var(--shadow-md); }
.feature-section ul, .feature-section ol,
.page-content ul, .page-content ol { padding-left: 1.25rem; }
.feature-section li, .page-content li { margin-bottom: 0.4rem; }

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
}
.service-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--sp-4);
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.service-card h3 { margin-top: 0; }
.service-card p { color: var(--color-muted); margin-bottom: var(--sp-3); }

/* Bio */
.bio-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
    align-items: center;
}
.bio-photo img,
.bio-photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius);
    object-fit: cover;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

/* Single post / blog */
.single-post .post-byline { color: var(--color-muted); margin: 0; }
.post-featured { margin-bottom: var(--sp-4); }
.post-featured img { border-radius: var(--radius); }
.post-content { max-width: 760px; margin: 0 auto; }
.post-content img { border-radius: var(--radius); margin: var(--sp-2) 0; }
.post-content blockquote {
    border-left: 4px solid var(--color-accent);
    margin: var(--sp-3) 0;
    padding: var(--sp-1) var(--sp-3);
    color: var(--color-primary);
    font-style: italic;
}
.post-date { color: var(--color-muted); font-size: 0.85rem; margin: 0 0 0.4rem; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
}
/* Adapt to how many cards there are: 1 = full width, 2 = two across,
   3 or more = the normal three across. Applies to Classes + Blog (both use
   .blog-grid). */
.blog-grid:has(> :only-child) { grid-template-columns: 1fr; }
.blog-grid:has(> :nth-child(2):last-child) { grid-template-columns: repeat(2, 1fr); }
.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
}
.blog-card-image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card-body { padding: var(--sp-3); }
.blog-card h3 { font-size: 1.1rem; margin: 0 0 var(--sp-1); }
.blog-card h3 a { color: var(--color-primary); }
.blog-card h3 a:hover { color: var(--color-accent-dk); text-decoration: none; }
.blog-card p { color: var(--color-muted); font-size: 0.95rem; }
.blog-cta-row { text-align: center; margin-top: var(--sp-4); }

/* Pagination */
.pagination-wrap { margin-top: var(--sp-4); text-align: center; }
.pagination-wrap .page-numbers {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    margin: 0 0.15rem;
    border-radius: 5px;
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
}
.pagination-wrap .page-numbers.current { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.pagination-wrap .page-numbers:hover { border-color: var(--color-accent); text-decoration: none; }

/* CTA Band */
.section-cta-band {
    background: var(--color-accent);
    color: #fff;
    text-align: center;
    padding: var(--sp-5) 0;
}
.section-cta-band h2 { color: #fff; margin: 20px 0; }
.section-cta-band .button { margin-top: 4px; }
.section-cta-band .eyebrow { color: #fff; background: rgba(255,255,255,0.18); }
.section-cta-band .button-primary { background: var(--color-primary); color: #fff; }
.section-cta-band .button-primary:hover { background: var(--color-hover-dark); }
/* Offer CTA band: copy + image side by side; centered when there's no image. */
.cta-band-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(24px, 4vw, 52px); align-items: center; text-align: left; }
.cta-band-grid.no-image { grid-template-columns: 1fr; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-band-copy { display: flex; flex-direction: column; align-items: flex-start; }
.cta-band-grid.no-image .cta-band-copy { align-items: center; }
.cta-band-desc { font-size: 18px; line-height: 1.6; margin: 0 0 22px; color: #fff; opacity: 0.95; max-width: 560px; }
.cta-band-photo { margin: 0; }
.cta-band-photo img { width: 100%; height: auto; display: block; border-radius: 0; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35)); }
@media (max-width: 820px) { .cta-band-grid { grid-template-columns: 1fr; text-align: center; } .cta-band-copy { align-items: center; } }

/* Footer */
.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.85);
    padding: var(--sp-6) 0 var(--sp-3);
    font-size: 0.95rem;
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--color-accent); }
.footer-logo-img { max-height: 72px; width: auto; display: block; margin: 0 0 var(--sp-2); }
.footer-brand-name { font-weight: 800; font-size: 1.15rem; color: #fff; margin: 0 0 var(--sp-2); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: var(--sp-4);
    margin-bottom: var(--sp-4);
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    align-items: start;
}
.footer-col h4 { color: #fff; font-size: 1rem; margin: 0 0 var(--sp-2); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.4rem; }
/* Contact column (NAP + socials) */
.footer-contact address { line-height: 1.55; margin: 0 0 var(--sp-2); color: rgba(255,255,255,0.92); }
.footer-contact-lines { margin: 0 0 var(--sp-2); line-height: 1.7; }
.footer-phone { display: inline-block; font-weight: 700; font-size: 1.1rem; color: #fff; }
.footer-phone:hover { color: var(--color-accent); }
.footer-email { color: rgba(255,255,255,0.85); }
.footer-social { list-style: none; padding: 0; margin: 12px 0 0; display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a.footer-social-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.10); color: #fff;
    transition: background .15s, transform .15s;
}
.footer-social a.footer-social-icon:hover {
    background: var(--cul-social-color, var(--color-accent));
    transform: translateY(-1px);
}
.footer-social a.footer-social-icon svg { width: 20px; height: 20px; display: block; }
.footer-social .screen-reader-text {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
/* Hours column */
.footer-hours { list-style: none; padding: 0; margin: 0; }
.footer-hours li {
    display: flex; justify-content: space-between; gap: var(--sp-2);
    padding: 4px 0; color: rgba(255,255,255,0.85);
}
.footer-hours li > span:first-child { font-weight: 600; color: #fff; }
.footer-disclosures {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 14px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}
.footer-disclosures p { margin: 0; }
.footer-copyright { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-built-by { margin-left: 8px; color: rgba(255,255,255,0.7); }
.footer-built-by a { color: #fff; text-decoration: none; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.35); }
.footer-built-by a:hover { border-bottom-color: var(--color-accent); }

/* Responsive */
@media (max-width: 960px) {
    .bio-inner { grid-template-columns: 1fr; gap: var(--sp-4); }
    .service-grid { grid-template-columns: 1fr; }
    .blog-grid    { grid-template-columns: 1fr; }
    .footer-grid  { grid-template-columns: 1fr 1fr; }
    .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .primary-nav ul {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: #fff;
        padding: var(--sp-3);
        border-bottom: 1px solid var(--color-border);
        align-items: stretch;
        gap: var(--sp-2);
    }
    .primary-nav.is-open ul { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: var(--sp-5) 0; }
}


/* =============================================================================
   ClickUpLocal plugin components (events, menu, offers, FAQs, gallery, inquiry).
   Add-on layer used by page-templates/{menu,events,private-events,contact}.php
   and single-event.php / archive-event.php. Tokens below alias the theme's
   --color-* palette so the components inherit per-project branding.
   Per-project: override --cul-blaze and --cul-display-font for a bolder look.
   ========================================================================== */

:root {
    --cul-navy:        var(--color-primary);
    --cul-navy-deep:   var(--color-dark);
    --cul-blaze:       var(--color-accent);
    --cul-blaze-dark:  var(--color-accent-dk);
    --cul-ink:         var(--color-text);
    --cul-ink-soft:    var(--color-muted);
    --cul-line:        var(--color-border);
    --cul-paper:       var(--color-white);
    --cul-cream:       var(--color-surface);
    --cul-gold:        #f5b400;
    --cul-hero-gradient: linear-gradient(135deg, var(--cul-navy) 0%, var(--cul-blaze) 100%);
    --cul-radius:      14px;
    --cul-radius-lg:   22px;
    --cul-shadow:      var(--shadow-md);
    --cul-shadow-lg:   0 18px 48px rgba(12,31,61,0.18);
    --cul-display:     var(--font-heading);
}

/* ----- Dedicated offer landing page (template: offer.php) ----------- */
.offer-landing-hero {
    background: var(--cul-hero-gradient);
    color: #fff;
    padding: clamp(56px, 8vw, 120px) 0;
    border-bottom: 6px solid var(--cul-blaze);
}
.offer-landing-grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(24px, 4vw, 56px); align-items: center;
}
/* No offer image: collapse to a single, centered column. */
.offer-landing-grid.no-photo { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.offer-landing-grid.no-photo .offer-landing-copy { max-width: 760px; margin: 0 auto; }
.offer-landing-grid.no-photo .offer-flag { margin-left: auto; margin-right: auto; }
.offer-landing-grid.no-photo .offer-desc { margin-left: auto; margin-right: auto; }
.offer-landing-grid.no-photo .cul-claim-card { margin-left: auto; margin-right: auto; }
@media (max-width: 880px) { .offer-landing-grid { grid-template-columns: 1fr; } }
.offer-flag {
    display: inline-block;
    text-transform: uppercase; letter-spacing: 0.18em;
    font-size: 14px; font-weight: 700;
    background: var(--color-accent); color: #fff;
    padding: 6px 14px; border-radius: 5px;
    margin-bottom: 18px;
}
.offer-title {
    color: #fff;
    font-size: clamp(40px, 6.4vw, 84px);
    line-height: 1.02; margin: 0 0 14px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.offer-when {
    text-transform: uppercase; letter-spacing: 0.10em;
    font-size: 16px; opacity: 0.85; margin: 0 0 18px;
}
.offer-desc { font-size: 19px; line-height: 1.55; opacity: 0.94; margin: 0 0 28px; max-width: 560px; }
.offer-desc p { margin: 0 0 12px; }
.offer-fine { font-size: 13px; line-height: 1.5; opacity: 0.7; margin: 0 0 24px; max-width: 560px; }

/* Claim card on the dark offer hero — force solid text colors instead of
   inheriting white-on-white from the hero, so the heading + sub + fineprint
   read at full contrast. */
.offer-landing-hero .cul-claim-card {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.28);
    color: #fff;
}
.offer-landing-hero .cul-claim-heading { color: #fff; font-weight: 800; opacity: 1; }
.offer-landing-hero .cul-claim-sub { color: rgba(255,255,255,0.92); opacity: 1; }
.offer-landing-hero .cul-claim-fineprint { color: rgba(255,255,255,0.78); opacity: 1; }
.offer-landing-hero .cul-claim-success-title { color: #fff; }
.offer-landing-hero .cul-claim-success-body { color: rgba(255,255,255,0.92); opacity: 1; }
.offer-landing-photo img {
    width: 100%; height: auto; display: block;
    border-radius: var(--cul-radius-lg);
    box-shadow: none;
}
.offer-landing-where { background: var(--color-surface); padding: clamp(36px, 5vw, 64px) 0; }
.offer-landing-where-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 48px); text-align: center;
}
@media (max-width: 720px) { .offer-landing-where-grid { grid-template-columns: 1fr; gap: 24px; } }
.offer-landing-where h3 {
    text-transform: uppercase; letter-spacing: 0.10em;
    font-size: 16px; color: var(--color-muted); margin: 0 0 8px;
}
.offer-landing-where p { font-size: 18px; margin: 0; color: var(--color-text); line-height: 1.5; }
.offer-landing-where a { color: var(--color-text); }
.offer-landing-where a:hover { color: var(--color-accent); }

/* ----- Page hero (used by Menu, Events, Private Events, Contact, single-event) */
.page-hero {
    background: var(--cul-hero-gradient);
    color: #fff; padding: clamp(48px, 6vw, 80px) 0;
    border-bottom: 6px solid var(--cul-blaze);
}
.page-hero { text-align: center; }
/* Optional per-page hero background image (set in Page content > [page]). */
.page-hero--image { background-size: cover; background-position: center; }
.page-hero--image .page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,40,104,0.55) 0%, rgba(12,31,61,0.80) 100%); }
.page-hero--image > .container { position: relative; z-index: 1; }
.page-hero > .container { display: flex; flex-direction: column; align-items: center; }
.page-hero h1 { color: #fff; max-width: 920px; margin-left: auto; margin-right: auto; }
.page-hero .lede,
.page-hero .page-hero-lede { color: rgba(255,255,255,0.86); max-width: 720px; margin-left: auto; margin-right: auto; }
.page-hero .eyebrow { margin-left: auto; margin-right: auto; }
.page-body { padding: clamp(40px, 6vw, 72px) 0; }
.page-body p { font-size: 18px; }

/* Legal documents (Privacy Policy, Terms of Use) */
.legal-doc { max-width: 820px; margin: 0 auto; color: var(--color-text); font-size: 17px; line-height: 1.7; }
.legal-doc h2 { font-size: 24px; margin: 40px 0 12px; color: var(--cul-navy); }
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc h3 { font-size: 19px; margin: 28px 0 10px; color: var(--cul-navy); }
.legal-doc p { font-size: 17px; margin: 0 0 14px; }
.legal-doc ul { margin: 0 0 18px; padding-left: 22px; }
.legal-doc li { font-size: 17px; margin: 0 0 8px; line-height: 1.6; }
.legal-doc a { color: var(--color-accent); text-decoration: underline; }
.legal-doc strong { color: var(--cul-navy); }
.legal-doc .legal-contact { margin-top: 36px; padding: 18px 22px; background: var(--color-surface); border-radius: 12px; font-size: 16px; }
.eyebrow {
    display: inline-block;
    font-family: var(--cul-display);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cul-blaze);
    margin: 0 0 14px;
    padding: 6px 10px;
    background: rgba(0,0,0,0.06);
    border-radius: 5px;
}
.lede { font-size: 19px; color: var(--cul-ink-soft); }

/* ----- Menu (public) -------------------------------------------------- */
.menu-toolbar {
    display: flex; gap: 18px; align-items: center; justify-content: space-between;
    flex-wrap: wrap; margin-bottom: 36px;
    background: var(--cul-navy); color: #fff; padding: 22px 26px;
    border-radius: var(--cul-radius-lg);
}
.menu-toolbar p { margin: 0; font-size: 18px; }
.menu-sections { display: grid; gap: 56px; }
.menu-section-subtitle { margin: 6px 0 0; font-size: 17px; color: var(--cul-ink-soft, #5a6675); font-style: italic; }
.menu-section h2 {
    border-bottom: 4px solid var(--cul-blaze); padding-bottom: 6px;
    display: inline-block;
}
.menu-items { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 22px; }
@media (min-width: 720px) { .menu-items { grid-template-columns: 1fr 1fr; gap: 24px 48px; } }
.menu-item {
    display: grid; grid-template-columns: 1fr auto; gap: 6px 18px;
    align-items: baseline; padding-bottom: 16px;
    border-bottom: 1px dashed var(--cul-line);
}
.menu-item-name {
    font-family: var(--cul-display); font-size: 22px;
    color: var(--cul-navy);
}
.menu-item-price {
    font-family: var(--cul-display); font-size: 22px; color: var(--cul-blaze);
    white-space: nowrap;
}
.menu-item-desc { grid-column: 1 / -1; margin: 0; color: var(--cul-ink-soft); }
.menu-item-tags { grid-column: 1 / -1; display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.menu-item-tag {
    font-family: var(--cul-display); font-size: 12px;
    letter-spacing: 0.16em; text-transform: uppercase;
    background: var(--cul-line); color: var(--cul-ink-soft);
    padding: 3px 8px; border-radius: 4px;
}

/* ----- Events (public) ------------------------------------------------ */
.events-list { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 880px) {
    /* Default three across; adapt down to the number of events. */
    .events-list { grid-template-columns: repeat(3, 1fr); }
    .events-list:has(> :nth-child(2):last-child) { grid-template-columns: 1fr 1fr; }
    .events-list:has(> :only-child) { grid-template-columns: 1fr; }
}
.event-card {
    background: var(--cul-paper); border-radius: var(--cul-radius-lg);
    border: 1px solid var(--cul-line); box-shadow: var(--cul-shadow);
    overflow: hidden; display: flex; flex-direction: column;
}
.event-card .event-image {
    aspect-ratio: 16 / 9; background-color: var(--cul-navy);
    background-size: contain; background-position: center; background-repeat: no-repeat;
}
.event-card .event-image.no-img { background: var(--cul-hero-gradient); }
.event-card .event-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.event-card h3 { margin: 0; }
.event-card .event-date { color: var(--cul-blaze); font-family: var(--cul-display); font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase; margin: 0; }
.event-card .event-time { color: var(--cul-ink-soft); font-size: 16px; font-weight: 600; margin: 0; }
.event-card .where { color: var(--cul-navy, #002868); font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 7px; margin: 0; }
.event-card .where-pin { color: var(--cul-blaze); font-size: 11px; line-height: 1; }
.event-card .recurring {
    display: inline-block; align-self: flex-start;
    font-family: var(--cul-display); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    background: var(--cul-gold); color: var(--cul-navy);
    padding: 3px 8px; border-radius: 4px;
}
.event-card .cta { margin-top: auto; }

/* List view (toggled via the .cul-viewwrap Grid/List control) */
.cul-viewwrap[data-cul-view="list"] .events-list { grid-template-columns: 1fr; gap: 14px; }
.cul-viewwrap[data-cul-view="list"] .event-card { flex-direction: row; align-items: stretch; }
.cul-viewwrap[data-cul-view="list"] .event-card .event-image { aspect-ratio: auto; width: 220px; flex: 0 0 220px; }
.cul-viewwrap[data-cul-view="list"] .event-card .event-body { padding: 18px 22px; }
.cul-viewwrap[data-cul-view="list"] .event-card .cta { margin-top: 8px; }
@media (max-width: 640px) {
    .cul-viewwrap[data-cul-view="list"] .event-card { flex-direction: column; }
    .cul-viewwrap[data-cul-view="list"] .event-card .event-image { width: auto; flex: none; aspect-ratio: 16 / 9; }
}

/* ----- Offers strip --------------------------------------------------- */
.offers-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .offers-row { grid-template-columns: 1fr; } }
.offer-card {
    background: linear-gradient(180deg, var(--cul-blaze) 0%, var(--cul-blaze-dark) 100%);
    color: #fff; border-radius: var(--cul-radius-lg);
    padding: 22px; display: flex; flex-direction: column; gap: 8px;
    box-shadow: var(--cul-shadow-lg);
}
.offer-card h3 { color: #fff; margin: 0; font-size: 26px; }
.offer-card .when { font-family: var(--cul-display); letter-spacing: 0.1em; text-transform: uppercase; font-size: 14px; opacity: 0.92; }
.offer-card .button { margin-top: 6px; align-self: flex-start; }
.offer-card .offer-fine { font-size: 13px; line-height: 1.5; opacity: 0.7; margin: 0; }

/* ----- FAQs accordion ------------------------------------------------- */
.faqs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; margin: 0 auto; align-items: start; }
.faqs:has(> :only-child) { grid-template-columns: 1fr; }
@media (max-width: 720px) { .faqs { grid-template-columns: 1fr; } }
/* FAQ section sits on a soft branded band so it reads as its own section. */
.section-faqs { background: #e8eef8; }
.section-faqs-white { background: #fff; }

/* Owner tool screens: hide the marketing chrome (footer, closing CTA band, FAQ
   section) so the management UI stays focused and undistracting. */
body.cul-screen-page .site-footer,
body.cul-screen-page .section-cta-band,
body.cul-screen-page .section-faqs { display: none !important; }
.faq-item {
    background: #fff;
    border: 1px solid var(--cul-line);
    border-left: 5px solid var(--color-accent);
    border-radius: var(--cul-radius);
    padding: 0;
    box-shadow: var(--shadow-md);
    transition: box-shadow .18s ease, transform .18s ease;
}
.faq-item:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(12,31,61,0.18); }
.faq-q {
    font-family: var(--cul-display); font-size: 21px;
    color: var(--cul-navy);
    cursor: pointer; padding: 22px 24px;
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
    content: "+";
    flex: 0 0 auto;
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--color-accent); color: #fff;
    border-radius: 50%; font-size: 22px; line-height: 1;
}
details[open] .faq-q::after { content: "−"; }
.faq-a { padding: 0 24px 22px; color: var(--cul-ink); font-size: 17px; line-height: 1.6; }
.faqs-group { margin: 0 0 40px; }
.faqs-group:last-child { margin-bottom: 0; }
.faqs-group-head { text-align: center; font-size: 24px; color: var(--cul-navy); margin: 0 0 18px; }

/* ----- Gallery + lightbox -------------------------------------------- */
.gallery-grid {
    display: grid; gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
    grid-auto-flow: dense;
}
.gallery-item { display: block; border-radius: var(--cul-radius); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .25s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.tall img { aspect-ratio: 3/5; }
.gallery-item.tall { grid-row: span 2; }
.ls-lightbox {
    position: fixed; inset: 0; background: rgba(12,31,61,0.96);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999; padding: 24px; cursor: zoom-out;
}
.ls-lightbox img { max-width: 90vw; max-height: 88vh; border-radius: var(--cul-radius); object-fit: contain; cursor: default; display: block; }
.ls-lightbox-close { position: absolute; top: 16px; right: 20px; color: #fff; background: none; border: 0; font-size: 36px; cursor: pointer; line-height: 1; padding: 4px 10px; }
.ls-lightbox-close:hover { color: var(--color-accent); }
.ls-lightbox-prev, .ls-lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.12); border: 0; color: #fff;
    font-size: 28px; padding: 14px 18px; cursor: pointer; border-radius: 8px;
    line-height: 1; transition: background .15s;
}
.ls-lightbox-prev:hover, .ls-lightbox-next:hover { background: var(--color-accent); }
.ls-lightbox-prev { left: 16px; }
.ls-lightbox-next { right: 16px; }
.ls-lightbox-counter { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.55); font-size: 16px; }

/* ----- Scroll-in fade-up animations --------------------------------- */
.cul-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, transform;
}
.cul-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .cul-reveal { opacity: 1; transform: none; transition: none; }
}

/* ----- Light hover micro-interactions (site-wide) ------------------------- */
.service-card, .blog-card, .class-card, .happening-card, .event-card,
.evt-more-card, .offer-card, .gallery-item img, .footer-social-icon {
    transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover, .blog-card:hover, .class-card:hover,
.happening-card:hover, .offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.button { transition: transform .15s ease, background .18s ease, color .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-1px); }
.link-arrow:hover::after { transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) {
    .service-card, .blog-card, .class-card, .happening-card, .event-card,
    .evt-more-card, .offer-card, .button, .gallery-item img {
        transition: none;
    }
    .service-card:hover, .blog-card:hover, .class-card:hover,
    .happening-card:hover, .offer-card:hover, .button:hover { transform: none; }
}

/* ----- Inquiry form (private events) --------------------------------- */
.cul-inquiry {
    background: var(--cul-paper); border: 1px solid var(--cul-line);
    border-radius: var(--cul-radius-lg); padding: 28px; box-shadow: var(--cul-shadow);
}
.cul-inquiry-form { display: grid; gap: 18px; }
.cul-inquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .cul-inquiry-grid { grid-template-columns: 1fr; } }
.cul-inquiry-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: 16px; }
.cul-inquiry-form input,
.cul-inquiry-form select,
.cul-inquiry-form textarea {
    font-family: inherit; font-size: 16px;
    padding: 11px 13px; border: 1px solid var(--color-input-border); border-radius: 10px; background: #fff;
}
.cul-inquiry-submit {
    justify-self: start;
    background: var(--cul-blaze); color: #fff; border: 0;
    font-family: var(--cul-display); font-size: 17px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 13px 26px; border-radius: 5px; cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.cul-inquiry-thanks { background: #e8f7ee; color: #1d6b3a; padding: 14px 18px; border-radius: 10px; font-weight: 600; margin-bottom: 14px; }
.cul-inquiry-error  { background: #fdecec; color: #a12626; padding: 14px 18px; border-radius: 10px; font-weight: 600; margin-bottom: 14px; }

/* ----- Contact map + meta split -------------------------------------- */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 880px) { .contact-split { grid-template-columns: 1fr; } }
.contact-split iframe { width: 100%; height: 100%; min-height: 360px; border: 0; border-radius: var(--cul-radius-lg); }
.contact-meta dt { font-family: var(--cul-display); text-transform: uppercase; letter-spacing: 0.16em; font-size: 14px; color: var(--cul-blaze); margin-top: 18px; }
.contact-meta dd { margin: 4px 0 0; font-size: 18px; }

/* ----- Generic happenings cards used on the homepage ---------------- */
.happenings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.happenings-n1 { grid-template-columns: 1fr; }
.happenings-n2 { grid-template-columns: repeat(2, 1fr); }
.happenings-n3, .happenings-n4 { grid-template-columns: repeat(3, 1fr); }
.happenings-n1 .happening-card { display: grid; grid-template-columns: 1fr auto; column-gap: 28px; align-items: center; }
.happenings-n1 .happening-card .tag { grid-column: 1; grid-row: 1; justify-self: start; }
.happenings-n1 .happening-card h3 { grid-column: 1; grid-row: 2; }
.happenings-n1 .happening-card .when { grid-column: 1; grid-row: 3; }
.happenings-n1 .happening-card .cta { grid-column: 2; grid-row: 1 / 4; margin: 0; align-self: center; }
@media (max-width: 880px) {
    .happenings, .happenings-n1, .happenings-n2, .happenings-n3, .happenings-n4 { grid-template-columns: 1fr; }
    .happenings-n1 .happening-card { grid-template-columns: 1fr; }
    .happenings-n1 .happening-card .cta { grid-column: 1; grid-row: auto; margin-top: 6px; }
}
.happening-card {
    background: var(--cul-paper);
    border: 1px solid var(--cul-line); border-radius: var(--cul-radius-lg);
    padding: 22px; box-shadow: var(--cul-shadow);
    display: flex; flex-direction: column; gap: 10px;
}
.happening-card .tag {
    display: inline-block; align-self: flex-start;
    font-family: var(--cul-display); text-transform: uppercase;
    font-size: 13px; letter-spacing: 0.18em; padding: 4px 10px; border-radius: 5px;
    background: var(--cul-navy); color: #fff;
}
.happening-card .tag.tag-offer { background: var(--cul-blaze); }
.happening-card .when { color: var(--cul-ink-soft); font-size: 16px; }
.happening-card h3 { margin: 0; font-size: 24px; }
.happening-card .cta { margin-top: auto; }
