/* ============================================================
     Living Coastal — Footer (Option D) — COMPLETE
     Paste into a new WPCodeBox 2 CSS Snippet:
       Name:  CSS — Footer (Option D)
       Type:  CSS
       Load:  Frontend
       Then activate.

     This is component-level CSS (per feedback_css_placement.md,
     revised 2026-04-29) — WPCodeBox CSS Snippets is the canonical
     home for component CSS. Do NOT paste into Bricks → Theme Styles
     (reserved for design tokens only) or Bricks → Custom Code → CSS
     (deprecated; was accidentally wiped 2026-04-28).

     Includes both visual styling AND layout properties (display,
     flex, grid, gap, padding, margin) so the imported Option D
     template renders without any per-element Bricks UI edits.
     ============================================================ */

  /* Section background + scope (also set inline via the template's
     _background hex; this is fallback + ensures color/font cascade) */
  .lc-footer-section {
    color: #ffffff;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    padding-top: 30px;
    padding-bottom: 40px;
  }

  /* Container constraint — Bricks Containers are full-width by
     default; this forces the 1300px max-width per build instructions */
  .lc-footer-section > .brxe-container,
  .lc-footer-container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
  }

  /* ----- TOP ROW (3-column grid: logo | MS broker | LA broker) -----
  */
  .lc-footer-top {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    gap: 50px;
    width: 100%;
  }

  /* Logo column — flex column, top-aligned */
  .lc-footer-logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 22px;
  }

  /* Logo column — wordmark */
  .lc-wordmark {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
    background: linear-gradient(135deg, #d0a667 0%, #f4d4a3 50%, #f4d4a3
   100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  .lc-wordmark span {
    display: block;
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    margin-top: -2px;
    color: #26a9e1;
    -webkit-text-fill-color: #26a9e1;
    background: none;
  }

  /* Logo column — social icons row */
  .lc-socials {
    display: flex;
    flex-direction: row;
    column-gap: 14px;
  }
  .lc-social-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
  }
  .lc-social-icon:hover {
    background: #26a9e1;
    border-color: #26a9e1;
    color: #ffffff;
  }

  /* Brokerage block — equal-or-greater prominence than agent contact */
  .lc-broker-block {
    display: flex;
    flex-direction: column;
  }
  .lc-broker-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d0a667;
    margin: 0 0 6px;
  }
  .lc-broker-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.25;
    min-height: 2.5em;          /* reserve 2 lines so MS + LA columns
  align when one name wraps */
    color: #ffffff;
    margin: 0 0 6px;
  }
  .lc-broker-address {
    font-style: italic;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
  }
  .lc-broker-agent-line {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
  }

  /* ----- DIVIDERS ----- */
  .lc-divider {
    height: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 30px;
    margin-bottom: 30px;
  }

  /* ----- WEBSITE INQUIRIES ROW (matches top row column structure)
  ----- */
  .lc-website-row {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    gap: 50px;
    width: 100%;
  }
  .lc-website-content {
    grid-column: span 2;
  }
  .lc-website-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #d0a667;
    margin: 0 0 12px;
  }
  .lc-website-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 0;
  }
  .lc-website-addr {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
  }
  .lc-website-addr strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2px;
  }
  .lc-website-addr em {
    font-style: italic;
    display: block;
  }

  /* ----- DISCLAIMER ----- */
  .lc-disclaimer {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 980px;
    margin: 0 auto 22px;
    text-align: center;
    line-height: 1.65;
  }

  /* ----- TRUST BADGES (EHO + REALTOR) ----- */
  .lc-trust-badges {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 18px;
    margin-bottom: 24px;
  }
  .lc-trust-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px;
    border-radius: 4px;
    height: 56px;
    width: auto;
  }

  /* ----- BOTTOM BAR (links left, copyright right) ----- */
  .lc-footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;     /* links take remaining width;
  copyright takes only what it needs */
    align-items: center;
    column-gap: 24px;
    row-gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
  }
  .lc-footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 18px;
    row-gap: 8px;
  }
  .lc-footer-link {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
  }
  .lc-footer-link:hover {
    color: #26a9e1;
  }
  .lc-footer-copy {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
  }

  /* ----- RESPONSIVE: stack columns on tablet/mobile ----- */
  @media (max-width: 991px) {
    .lc-footer-top,
    .lc-website-row {
      grid-template-columns: 1fr !important;
      gap: 30px;
    }
    .lc-website-content {
      grid-column: span 1;
    }
    .lc-website-cols {
      grid-template-columns: 1fr !important;
      row-gap: 16px;
    }
    .lc-footer-bottom {
      grid-template-columns: 1fr;        /* stack links + copyright on
  mobile */
      justify-items: start;
    }
  }