/*
Theme Name:  ClickUpLocal Child
Theme URI:   https://clickuplocal.com
Author:      ClickUpLocal
Author URI:  https://clickuplocal.com
Description: Per-client starter child theme for the ClickUpLocal parent. Copy this folder, rename it for the client, and customize HERE only. It inherits every parent template, so parent + plugin updates flow through without breaking the site. Most branding (logo, colors, fonts) is better set in the Brand tool (Site Tools > Brand) — use this file for custom CSS the Brand tool can't express.
Version:     1.1.1
Template:    clickuplocal
License:     GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clickuplocal-child
*/

/* =============================================================================
   Legacy Sports Bar and Grill — design system
   Bold sports-bar identity: deep navy, blaze orange, scoreboard typography.
   Mobile-first. 16px minimum font size. No em dashes in copy.
   ========================================================================== */

:root {
    /* Brand — matched to logo: deep navy + patriotic red + gold */
    --ls-navy:        #0d2755;
    --ls-navy-deep:   #071429;
    --ls-blaze:       #c8102e;
    --ls-blaze-dark:  #a00e24;
    --ls-gold:        #d4a017;
    --ls-cream:       #fef8eb;
    --ls-paper:       #ffffff;
    --ls-ink:         #11171f;
    --ls-ink-soft:    #475569;
    --ls-line:        #e2e8f0;
    --ls-green:       #22a06b;
    --ls-red:         #c8102e;

    /* Layout */
    --ls-max:         1280px;
    --ls-gutter:      clamp(20px, 4vw, 48px);
    --ls-radius:      14px;
    --ls-radius-lg:   22px;

    /* Parent token overrides — everything in the parent CSS that reads
       --color-* or --font-* will now use Legacy Sports values. */
    --color-primary:    var(--ls-navy);
    --color-accent:     var(--ls-blaze);
    --color-accent-dk:  var(--ls-blaze-dark);
    --color-text:       var(--ls-ink);
    --color-muted:      var(--ls-ink-soft);
    --color-border:     var(--ls-line);
    --color-surface:    var(--ls-cream);
    --color-dark:       var(--ls-navy-deep);
    --color-white:      var(--ls-paper);
    --color-hover-dark: #040e1d;
    --container:        var(--ls-max);
    --radius:           var(--ls-radius);

    --font-heading: "Oswald", "Bebas Neue", "Impact", sans-serif;
    --font-body:    "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

    /* ClickUpLocal plugin component aliases */
    --cul-navy:        var(--ls-navy);
    --cul-navy-deep:   var(--ls-navy-deep);
    --cul-blaze:       var(--ls-blaze);
    --cul-blaze-dark:  var(--ls-blaze-dark);
    --cul-ink:         var(--ls-ink);
    --cul-ink-soft:    var(--ls-ink-soft);
    --cul-line:        var(--ls-line);
    --cul-paper:       var(--ls-paper);
    --cul-cream:       var(--ls-cream);
    --cul-gold:        var(--ls-gold);
    --cul-radius:      var(--ls-radius);
    --cul-radius-lg:   var(--ls-radius-lg);
    --cul-shadow:      0 6px 24px rgba(6,18,39,0.10);
    --cul-shadow-lg:   0 18px 48px rgba(6,18,39,0.18);
    --cul-display:     var(--font-heading);
    --cul-hero-gradient: linear-gradient(135deg, var(--ls-navy) 0%, #0d2755 100%);

    /* Generic aliases the plugin reads for owner-tool screens */
    --container-gutter: var(--ls-gutter);

    /* Shadow */
    --ls-shadow:    0 6px 24px rgba(6,18,39,0.10);
    --ls-shadow-lg: 0 18px 48px rgba(6,18,39,0.18);

    /* Display font shorthand */
    --ls-display: var(--font-heading);
}

/* ----- Base overrides --------------------------------------------------- */
body {
    background: var(--ls-cream);
    line-height: 1.55;
}
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.05;
}
h1 { font-size: clamp(40px, 7vw, 88px); letter-spacing: 0.01em; }
h2 { font-size: clamp(32px, 4.4vw, 52px); }
h3 { font-size: clamp(22px, 2.6vw, 30px); }
h4 { font-size: 20px; }

/* Override the parent's centered h2 underline motif — not our brand */
.section-head h2::after { display: none; }

.eyebrow {
    display: inline-block;
    font-family: var(--ls-display);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ls-blaze);
    margin: 0 0 14px;
    padding: 6px 10px;
    background: rgba(255,90,31,0.10);
    border-radius: 999px;
}
.lede { font-size: 19px; color: var(--ls-ink-soft); }

/* ----- Buttons ---------------------------------------------------------- */
.button, .ls-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--ls-display);
    font-size: 18px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 14px 26px; border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
    text-decoration: none; line-height: 1;
}
.button-primary, .ls-btn-primary {
    background: var(--ls-blaze); color: #fff; box-shadow: 0 8px 20px rgba(255,90,31,0.35);
}
.button-primary:hover, .ls-btn-primary:hover {
    background: var(--ls-blaze-dark); color: #fff; transform: translateY(-1px); text-decoration: none;
}
.button-secondary, .ls-btn-secondary {
    background: var(--ls-navy); color: #fff;
}
.button-secondary:hover, .ls-btn-secondary:hover { background: var(--ls-navy-deep); color: #fff; text-decoration: none; }
.button-ghost, .ls-btn-ghost {
    background: transparent; color: var(--ls-navy); border-color: var(--ls-navy);
}
.button-ghost:hover, .ls-btn-ghost:hover { background: var(--ls-navy); color: #fff; text-decoration: none; }
.button-ghost-light { background: transparent; border: 2px solid rgba(255,255,255,0.6); color: #fff; border-radius: 999px; }
.button-ghost-light:hover { background: #fff; color: var(--ls-navy); text-decoration: none; }
.button-on-dark { background: #fff; color: var(--ls-navy); }
.button-on-dark:hover { background: var(--ls-gold); color: var(--ls-navy); text-decoration: none; }

/* ----- Header ----------------------------------------------------------- */
.site-header {
    background: var(--ls-navy);
    color: #fff;
    box-shadow: 0 2px 0 rgba(255,90,31,0.5);
    border-bottom: none;
    overflow: visible;
    position: static; /* remove sticky so logo can overlap hero */
}
.site-header a { color: #fff; }
.site-header-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding-top: 14px; padding-bottom: 14px;
    overflow: visible;
}
.site-logo {
    position: relative; z-index: 10;
    display: inline-flex; align-items: center;
    margin: 0;
    font-family: var(--ls-display); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    font-size: 26px; line-height: 1;
}
/* Interior pages: compact logo fits the fixed header */
.site-logo img { max-height: none; } /* override parent's 96px cap */
.site-logo .legacy-logo-img {
    height: 52px; width: auto; display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}
.site-logo .legacy-dot {
    display: inline-block; width: 10px; height: 10px; border-radius: 50%;
    background: var(--ls-blaze); margin: 0 4px 1px;
}
.site-logo .legacy-mark { color: var(--ls-blaze); }
/* Home logo overflow effect removed: the logo now sits in the header bar on
   every page (including home), matching the rest of the site. Sizing comes from
   the Brand tool via the parent header. */
.footer-business-name .legacy-logo-img { height: 110px; width: auto; margin-bottom: 12px; display: block; }

.primary-nav ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 6px; align-items: center;
    flex-wrap: nowrap;
}
.primary-nav a {
    display: inline-block; padding: 10px 14px; border-radius: 8px;
    font-family: var(--ls-display); font-size: 17px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #fff;
}
.primary-nav a:hover { background: rgba(255,255,255,0.10); color: #fff; text-decoration: none; }
.primary-nav .cta a { background: var(--ls-blaze); padding: 11px 18px; border-radius: 999px; }
.primary-nav .cta a:hover { background: var(--ls-blaze-dark); }
.nav-toggle span { background: #fff; }
@media (max-width: 880px) {
    .nav-toggle { display: flex; }
    .primary-nav ul {
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--ls-navy);
        flex-direction: column; align-items: stretch; gap: 0;
        padding: 8px var(--ls-gutter) 18px;
        display: none;
        border-bottom: 3px solid var(--ls-blaze);
    }
    .primary-nav.is-open ul { display: flex; }
    .primary-nav a { padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; }
    .primary-nav .cta a { margin-top: 10px; text-align: center; border-radius: 999px; }
}

/* ----- Hero ------------------------------------------------------------- */
.hero {
    background: var(--ls-navy-deep);
    color: #fff;
    border-bottom: 6px solid var(--ls-blaze);
    position: relative; overflow: hidden;
    border-top: none;
}
.hero-full {
    min-height: clamp(360px, 56vh, 580px);
    background-color: var(--ls-navy-deep);
    display: flex; align-items: flex-end;
    padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 7vw, 96px);
    position: relative;
}
.hero-full .hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    z-index: 0;
    animation: ls-kenburns 28s ease-in-out infinite alternate;
    transform-origin: 60% 40%;
    will-change: transform;
}
.hero-kenburns { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
/* Each gallery photo is a stacked layer; only the active one is visible. The
   ls-kenburns zoom is inherited from .hero-bg; JS cross-fades between them. */
.hero-full .hero-kb { opacity: 0; transition: opacity 1.1s ease-in-out; }
.hero-full .hero-kb.is-active { opacity: 1; }
.hero-full .hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(6,18,39,0.45) 0%, rgba(6,18,39,0.55) 55%, rgba(6,18,39,0.85) 100%);
    pointer-events: none;
}
.hero-full .hero-inner { display: block; position: relative; z-index: 2; text-align: center; }
.hero-full .hero-copy { max-width: 900px; margin-left: auto; margin-right: auto; }
.hero-full h1 { font-size: clamp(52px, 9vw, 120px); }
.hero-full .hero-ctas { justify-content: center; }
@keyframes ls-kenburns {
    0%   { transform: scale(1.04) translate3d(0, 0, 0); transform-origin: 60% 40%; }
    100% { transform: scale(1.16) translate3d(-2%, -1.5%, 0); transform-origin: 40% 60%; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-full .hero-bg { animation: none; transform: none; }
}
.hero h1, .hero-full h1 { color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,0.45); }
.hero h1 .hl { color: var(--ls-blaze); display: inline-block; }
.hero-subtext { font-size: 19px; opacity: 0.95; text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
/* Interior page heroes: left-aligned */
.page-hero .hero-inner, .page-hero > .container { align-items: flex-start; text-align: left; }
@media (max-width: 720px) {
    .hero-full { min-height: clamp(360px, 60vh, 520px); }
    .hero-subtext { font-size: 17px; }
}

/* ----- Sections --------------------------------------------------------- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: var(--ls-paper); border-top: 1px solid var(--ls-line); border-bottom: 1px solid var(--ls-line); }
.section-dark { background: var(--ls-navy-deep); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.section-home-video { padding-top: clamp(28px, 4vw, 44px); padding-bottom: clamp(28px, 4vw, 44px); }
.home-video-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.home-video-grid.has-2 { grid-template-columns: 1fr 1fr; }
.home-video-grid.has-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .home-video-grid.has-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .home-video-grid.has-2, .home-video-grid.has-3 { grid-template-columns: 1fr; } }
.home-video-item { display: flex; flex-direction: column; gap: 8px; }
.home-video-wrap { position: relative; aspect-ratio: 16/9; border-radius: var(--ls-radius-lg); overflow: hidden; background: #000; box-shadow: var(--ls-shadow); }
.home-video-wrap iframe, .home-video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; background: #000; }
.home-video-fallback { text-align: center; font-size: 13px; color: var(--ls-ink-soft, #5a6675); text-decoration: underline; }
.section-dark .lede { color: rgba(255,255,255,0.78); }
.section-head { text-align: center; max-width: 960px; margin: 0 auto 40px; }
.section-head .eyebrow { background: rgba(255,90,31,0.12); }
.section-lede { color: var(--ls-ink-soft); font-size: 1.1rem; margin: 0; }

/* ----- Quick info strip (homepage) ------------------------------------- */
.quick-strip {
    background: var(--ls-navy); color: #fff;
    padding: 28px 0;
}
.quick-strip .container {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    align-items: center;
}
.quick-strip-item {
    display: flex; flex-direction: column; gap: 4px;
    border-left: 3px solid var(--ls-blaze); padding-left: 18px;
    text-align: left;
}
.quick-strip-item:first-child { border-left: 0; padding-left: 0; }
.quick-strip-label {
    font-family: var(--ls-display); text-transform: uppercase;
    letter-spacing: 0.18em; font-size: 16px; color: var(--ls-gold);
}
.quick-strip-value {
    font-family: var(--ls-display); text-transform: uppercase;
    font-size: 22px; letter-spacing: 0.04em; color: #fff;
}
.quick-strip a { color: #fff; }
.quick-strip a:hover { color: var(--ls-gold); text-decoration: none; }
@media (max-width: 720px) {
    .quick-strip .container { grid-template-columns: 1fr; }
    .quick-strip-item { border-left: 0; padding-left: 0; border-top: 2px solid rgba(255,90,31,0.55); padding-top: 14px; }
    .quick-strip-item:first-child { border-top: 0; padding-top: 0; }
}

/* ----- What's Happening cards (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); }
/* One event → a full-width horizontal "list" card (mirrors the offer feature) */
.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(--ls-paper);
    border: 1px solid var(--ls-line); border-radius: var(--ls-radius-lg);
    padding: 22px; box-shadow: var(--ls-shadow);
    display: flex; flex-direction: column; gap: 10px;
}
.happening-card .tag {
    display: inline-block; align-self: flex-start;
    font-family: var(--ls-display); text-transform: uppercase;
    font-size: 16px; letter-spacing: 0.18em; padding: 4px 10px; border-radius: 999px;
    background: var(--ls-navy); color: #fff;
}
.happening-card .tag.tag-offer { background: var(--ls-blaze); }
.happening-card .tag.tag-event { background: var(--ls-navy); }
.happening-card .when { color: var(--ls-ink-soft); font-size: 16px; }
.happening-card h3 { margin: 0; font-size: 24px; }
.happening-card .cta { margin-top: auto; }

/* ----- Menu (public) ---------------------------------------------------- */
.menu-toolbar {
    display: flex; gap: 18px; align-items: center; justify-content: space-between;
    flex-wrap: wrap; margin-bottom: 36px;
    background: var(--ls-navy); color: #fff; padding: 22px 26px;
    border-radius: var(--ls-radius-lg);
}
.menu-toolbar p { margin: 0; font-size: 18px; }
.menu-toolbar .button { white-space: nowrap; }
.menu-sections { display: grid; gap: 56px; }
.menu-section h2 {
    border-bottom: 4px solid var(--ls-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(--ls-line);
}
.menu-item-name {
    font-family: var(--ls-display); font-size: 22px; text-transform: uppercase;
    letter-spacing: 0.03em; color: var(--ls-navy);
}
.menu-item-price {
    font-family: var(--ls-display); font-size: 22px; color: var(--ls-blaze);
    white-space: nowrap;
}
.menu-item-desc { grid-column: 1 / -1; margin: 0; color: var(--ls-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(--ls-display); font-size: 16px;
    letter-spacing: 0.16em; text-transform: uppercase;
    background: var(--ls-line); color: var(--ls-ink-soft);
    padding: 3px 8px; border-radius: 4px;
}

/* ----- Events (public) -------------------------------------------------- */
.events-list { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 880px) { .events-list { grid-template-columns: 1fr 1fr; } }
.event-card {
    background: var(--ls-paper); border-radius: var(--ls-radius-lg);
    border: 1px solid var(--ls-line); box-shadow: var(--ls-shadow);
    overflow: hidden; display: flex; flex-direction: column;
}
.event-card .event-image {
    aspect-ratio: 16 / 9; background: var(--ls-navy);
    background-size: cover; background-position: center;
    display: block;
}
.event-card .event-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.event-card h3 { margin: 0; }
.event-card .when { color: var(--ls-blaze); font-family: var(--ls-display); font-size: 17px; letter-spacing: 0.06em; text-transform: uppercase; }
.event-card .where { color: var(--ls-ink-soft); font-size: 16px; }
.event-card .recurring {
    display: inline-block; align-self: flex-start;
    font-family: var(--ls-display); font-size: 16px; letter-spacing: 0.16em; text-transform: uppercase;
    background: var(--ls-gold); color: var(--ls-navy);
    padding: 3px 8px; border-radius: 4px;
}
.event-card .cta { margin-top: auto; }

/* ----- Offers strip (public) ------------------------------------------- */
.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(--ls-blaze) 0%, var(--ls-blaze-dark) 100%);
    color: #fff; border-radius: var(--ls-radius-lg);
    padding: 22px; display: flex; flex-direction: column; gap: 8px;
    box-shadow: var(--ls-shadow-lg);
}
.offer-card h3 { color: #fff; margin: 0; font-size: 26px; }
.offer-card .when { font-family: var(--ls-display); letter-spacing: 0.1em; text-transform: uppercase; font-size: 16px; opacity: 0.92; }
.offer-card .button { margin-top: 6px; align-self: flex-start; }

/* ----- FAQs accordion --------------------------------------------------- */
.faqs { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item {
    background: var(--ls-paper); border: 1px solid var(--ls-line);
    border-radius: var(--ls-radius); padding: 0;
}
.faq-q {
    font-family: var(--ls-display); font-size: 20px; text-transform: uppercase;
    letter-spacing: 0.04em; color: var(--ls-navy);
    cursor: pointer; padding: 18px 20px;
    display: flex; justify-content: space-between; gap: 14px;
    list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "+"; color: var(--ls-blaze); font-size: 28px; line-height: 1; }
details[open] .faq-q::after { content: "−"; }
.faq-a { padding: 0 20px 20px; color: var(--ls-ink); }

/* ----- Gallery (public) ------------------------------------------------- */
.gallery-grid {
    display: grid; gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    grid-auto-flow: dense;
}
.gallery-item { display: block; border-radius: var(--ls-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; }

/* lightbox */
.ls-lightbox {
    position: fixed; inset: 0; background: rgba(6,18,39,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(--ls-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(--ls-blaze); }
.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(--ls-blaze); }
.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; }

/* ----- Inquiry form (private events) ---------------------------------- */
.cul-inquiry {
    background: var(--ls-paper); border: 1px solid var(--ls-line);
    border-radius: var(--ls-radius-lg); padding: 28px; box-shadow: var(--ls-shadow);
}
.cul-inquiry-heading { margin: 0 0 18px; font-size: 28px; line-height: 1.1; color: var(--ls-navy); }
.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 #cbd4e0; border-radius: 10px;
    background: #fff;
}
.cul-inquiry-submit {
    justify-self: start;
    background: var(--ls-blaze); color: #fff; border: 0;
    font-family: var(--ls-display); font-size: 17px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 13px 26px; border-radius: 999px; cursor: pointer;
    box-shadow: 0 8px 20px rgba(255,90,31,0.35);
}
.cul-inquiry-submit:hover { background: var(--ls-blaze-dark); }
.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; }

/* ----- Map + contact 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(--ls-radius-lg); }
.contact-meta dt {
    font-family: var(--ls-display); text-transform: uppercase;
    letter-spacing: 0.16em; font-size: 16px; color: var(--ls-blaze);
    margin-top: 18px;
}
.contact-meta dd { margin: 4px 0 0; font-size: 18px; }

/* ----- CTA band ------------------------------------------------------- */
.section-cta-band {
    background: var(--ls-navy-deep); color: #fff; text-align: center;
    border-top: 6px solid var(--ls-blaze);
}
.section-cta-band h2 { color: #fff; }
.section-cta-band .eyebrow { background: rgba(255,255,255,0.10); color: #fff; }
.section-cta-band .button-primary { background: var(--ls-blaze); }
.section-cta-band .button-primary:hover { background: var(--ls-blaze-dark); }


/* ----- Footer --------------------------------------------------------- */
.site-footer {
    background: var(--ls-navy-deep); color: rgba(255,255,255,0.86);
    padding: 56px 0 28px; margin-top: 0;
    border-top: 6px solid var(--ls-blaze);
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--ls-gold); text-decoration: none; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 36px;
    align-items: start;
    border-bottom: none;
    padding-bottom: 0;
}
@media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-nap { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-nap { grid-column: auto; }
}
.footer-business-name { color: #fff; font-size: 24px; margin-bottom: 6px; line-height: 1; }
.footer-business-name .legacy-mark { color: var(--ls-blaze); }
.footer-tagline { color: rgba(255,255,255,0.75); margin: 0 0 16px; max-width: 360px; }
.footer-col h4 {
    color: var(--ls-gold);
    font-size: 16px; letter-spacing: 0.16em;
    text-transform: uppercase; margin: 0 0 14px;
}
.footer-nap address { font-style: normal; line-height: 1.6; margin: 0 0 16px; color: rgba(255,255,255,0.85); }
.footer-address { color: rgba(255,255,255,0.85); }
.footer-address:hover { color: var(--ls-gold); }
.footer-icon { color: #fff; flex-shrink: 0; }
.footer-phone {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 18px; color: #fff;
    margin: 0 0 18px;
}
.footer-phone:hover { color: var(--ls-gold); text-decoration: none; }
.footer-phone:hover .footer-icon { color: var(--ls-gold); }
.footer-social { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-social a { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-weight: 600; }
.footer-social a:hover { color: var(--ls-gold); text-decoration: none; }
.footer-social a:hover .footer-icon { color: var(--ls-gold); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.85); }
.footer-links a:hover { color: var(--ls-gold); }
.footer-hours { list-style: none; margin: 0 0 18px; padding: 0; }
.footer-hours li {
    display: flex; justify-content: space-between; gap: 12px;
    padding: 4px 0; color: rgba(255,255,255,0.85); font-size: 16px;
}
.footer-hours li > span:first-child, .footer-hours-day { font-weight: 600; color: #fff; }
.footer-hours-time { color: rgba(255,255,255,0.78); }
.footer-disclosures {
    border-top: 1px solid rgba(255,255,255,0.10); padding-top: 18px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    color: rgba(255,255,255,0.6); font-size: 16px;
}
.footer-disclosures p { margin: 0; }
.footer-disclosures a { color: rgba(255,255,255,0.7); }
.footer-disclosures a:hover { color: var(--ls-gold); }

/* ----- Site-wide promo bar (pre-footer) ------------------------------ */
.legacy-promo-bar {
    background: var(--ls-navy-deep); color: #fff;
    padding: clamp(48px, 7vw, 80px) 0; text-align: center;
    border-top: 6px solid var(--ls-blaze);
}
.legacy-promo-bar a { color: #fff; }
.legacy-promo-bar-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.legacy-promo-flag {
    font-family: var(--ls-display); text-transform: uppercase; letter-spacing: 0.18em;
    font-size: 16px; font-weight: 700;
    background: var(--ls-blaze); color: #fff;
    padding: 5px 14px; border-radius: 999px;
}
.legacy-promo-text {
    font-family: var(--ls-display);
    font-size: clamp(32px, 5vw, 48px); line-height: 1.1;
    text-transform: uppercase; letter-spacing: 0.02em; max-width: 880px;
}
.legacy-promo-when { display: block; font-size: 16px; letter-spacing: 0.12em; opacity: 0.7; margin-top: 8px; font-weight: 500; text-transform: uppercase; }
.legacy-promo-cta {
    display: inline-block;
    background: var(--ls-blaze); color: #fff;
    padding: 16px 34px; border-radius: 999px;
    font-weight: 700; text-decoration: none;
    font-size: 17px; letter-spacing: 0.04em; text-transform: uppercase;
    transition: transform .15s, box-shadow .15s, background .15s;
    box-shadow: 0 6px 20px rgba(255,90,31,0.35);
}
.legacy-promo-cta:hover { transform: translateY(-2px); background: var(--ls-blaze-dark); color: #fff; box-shadow: 0 10px 26px rgba(255,90,31,0.45); text-decoration: none; }

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

/* ----- Page hero (interior pages) ------------------------------------ */
.page-hero {
    background-color: var(--ls-navy);
    background-image:
        linear-gradient(110deg, rgba(10,29,58,0.92) 0%, rgba(10,29,58,0.72) 55%, rgba(6,18,39,0.82) 100%),
        var(--page-hero-bg, none);
    background-size: cover; background-position: center;
    color: #fff; padding: clamp(56px, 8vw, 100px) 0;
    border-bottom: 6px solid var(--ls-blaze);
    text-align: center !important;
}
.page-hero > .container { align-items: center; text-align: center; }
.page-hero h1 { color: #fff; margin-left: auto; margin-right: auto; text-align: center; max-width: none; }
.page-hero .lede, .page-hero .page-hero-lede { color: rgba(255,255,255,0.86); text-align: center; }
.page-hero .eyebrow { text-align: center; }
.page-body { padding: clamp(40px, 6vw, 72px) 0; }
.page-body p { font-size: 18px; }
.section-lede-band { background: #fff; padding: clamp(36px, 5vw, 64px) 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.section-lede-band .lede { font-size: clamp(18px, 2vw, 22px); color: var(--ls-navy); max-width: 760px; }

/* ----- About split section ------------------------------------------------- */
.about-split { gap: clamp(32px, 5vw, 72px); }
.about-split-photo img { border-radius: 12px; box-shadow: 0 8px 32px rgba(10,29,58,0.18); }
.about-split-text { font-size: 18px; line-height: 1.75; color: var(--ls-navy); }

/* ----- Feature-page sections (About, etc.) --------------------------------- */
.feature-section { margin-bottom: clamp(36px, 5vw, 64px); }
.feature-section:last-child { margin-bottom: 0; }
.feature-section.has-image {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px);
    align-items: center;
}
.feature-section.has-image.image-left .feature-section-image { order: -1; }
.feature-section-image {
    margin: 0; border-radius: var(--ls-radius-lg);
    overflow: hidden; box-shadow: var(--ls-shadow-lg);
    background: rgba(10,29,58,0.05);
    display: flex; align-items: center; justify-content: center;
}
.feature-section-image img { max-width: 100%; height: auto; max-height: 520px; object-fit: contain; display: block; }
@media (max-width: 720px) {
    .feature-section.has-image { grid-template-columns: 1fr; }
    .feature-section.has-image.image-left .feature-section-image { order: 0; }
}

/* ----- Legal pages ------------------------------------------- */
.legal-doc { max-width: 820px; }
.legal-doc h2 { font-size: 24px; margin: 40px 0 12px; color: var(--ls-navy); }
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc h3 { font-size: 19px; margin: 28px 0 10px; color: var(--ls-navy); }
.legal-doc ul, .legal-doc ol { padding-left: 24px; margin: 0 0 1em; }
.legal-doc li { margin-bottom: 6px; }
.legal-doc strong { color: var(--ls-navy); }
.legal-contact {
    margin-top: 40px; padding-top: 28px;
    border-top: 1px solid var(--ls-line);
    font-family: var(--ls-display); font-size: 18px; color: var(--ls-blaze);
}

/* ----- Offer landing page ---------------------------------- */
.offer-landing-hero {
    background:
        linear-gradient(110deg, rgba(10,29,58,0.95) 0%, rgba(10,29,58,0.80) 60%, rgba(10,29,58,0.92) 100%),
        var(--page-hero-bg, var(--ls-navy));
    background-size: cover; background-position: center;
    color: #fff; padding: clamp(56px, 8vw, 120px) 0;
    border-bottom: 6px solid var(--ls-blaze);
}
.offer-flag {
    display: inline-block; font-family: var(--ls-display);
    text-transform: uppercase; letter-spacing: 0.18em;
    font-size: 16px; font-weight: 700;
    background: var(--ls-blaze); color: #fff;
    padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}


/* Home hero: force everything centered (headline, subtext, CTAs). */
.hero-full .hero-inner, .hero-full .hero-copy { text-align: center; }
.hero-full .hero-copy { margin-left: auto; margin-right: auto; }
.hero-full h1, .hero-full .hero-subtext, .hero-full .eyebrow { margin-left: auto; margin-right: auto; text-align: center; }
.hero-full .hero-ctas { justify-content: center; }

/* About logo: no card/box — clean transparent logo on the section background. */
.about-split-photo img { box-shadow: none; border-radius: 0; background: transparent; }

/* -------------------------------------------------------------------------
   Accessibility: visible keyboard focus indicator (WCAG 2.4.7).
   The parent + child stylesheets ship no :focus styles, so keyboard users
   get no visible "you are here" ring. This restores one site-wide.
   ------------------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--ls-gold, #d4a017);
    outline-offset: 2px;
    border-radius: 2px;
}

/* On dark navy sections the gold ring can read low-contrast — use cream there. */
.section-dark a:focus-visible,
.site-header a:focus-visible,
.site-header button:focus-visible {
    outline-color: var(--ls-cream, #fef8eb);
}

/* -------------------------------------------------------------------------
   Offer landing page (/offer/): lighten the content area. The shared parent
   ships this section as navy-on-white; here we flip it to a bright cream
   background with a navy headline + dark body copy, keeping the claim card a
   solid navy so the CTA still pops. Scoped to .offer-landing-hero so nothing
   else changes.
   ------------------------------------------------------------------------- */
.offer-landing-hero {
    background: #fef8eb;            /* cream */
    color: #11171f;                /* ink   */
    border-bottom-color: #c8102e;  /* blaze accent stays */
}
.offer-landing-hero .offer-title {
    color: #0d2755;                /* navy headline on cream */
    text-shadow: none;
}
.offer-landing-hero .offer-when,
.offer-landing-hero .offer-desc,
.offer-landing-hero .offer-fine {
    color: #11171f;
    opacity: 0.82;                 /* soften slightly; was tuned for white text */
}
/* Keep the claim card a solid navy block so the form + red CTA pop against the
   lighter background (its heading/sub/fineprint are already white). */
.offer-landing-hero .cul-claim-card {
    background: #0d2755;
    border-color: rgba(255, 255, 255, 0.14);
}

/* -------------------------------------------------------------------------
   Hero color matches the header navy (#0d2755) on every page (CR nttc95hh4).
   The parent ships image-hero overlays in Old Glory Blue (#002868), which read
   as a different blue than the navy header. Re-tint them to the header navy.
   ------------------------------------------------------------------------- */
.page-hero--image .page-hero-overlay {
    background: linear-gradient(180deg, rgba(13, 39, 85, 0.62) 0%, rgba(13, 39, 85, 0.88) 100%);
}

/* Dashboard: center the settings/utility chip row (Contacts, Inquiries, Brand,
   Business Info, Smart Content, My promotions, Support) under the content grid. */
.cul-dash-chips { justify-content: center; }
