.ac-footer {
      --text: #1f2f33;
      --muted: rgba(31,47,51,.75);
      --accent: #1f585b;
      --accent2: #144248;

      background: linear-gradient(180deg,#ffffff 0%,#f9fbfb 50%,#d9e8e5 100%);
      border-top: 1px solid #1f585b;
      font-family: Inter, sans-serif;
      font-size: 15px;
      color: var(--text);
    }

    .ac-wrap {
      max-width: 1260px;
      margin: 0 auto;
      padding: 50px 24px 30px;
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    /* Top row */
    .ac-top {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }
    .ac-brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .ac-logo { height: 50px; }
    .ac-tagline {
      font-family: "Cormorant Garamond", serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--accent);
    }

    /* Reviews card */
    .ac-reviews {
      position: relative;
      display: flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(180deg,#ffffff 0%,#f9fbfb 50%,#d9e8e5 100%);
      border: 1px solid #1f585b;
      border-radius: 14px;
      padding: 10px 16px;
      box-shadow: 0 10px 24px rgba(19,60,62,.12),0 4px 10px rgba(0,0,0,.06);
      transition: box-shadow .3s ease, transform .3s ease;
    }
    .ac-reviews::before {
      content: "";
      position: absolute;
      inset: -1px;
      border: 1px solid rgba(19,60,62,.35);
      border-radius: inherit;
      pointer-events: none;
    }
    .ac-reviews:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(19,60,62,.18),0 6px 14px rgba(0,0,0,.08);
    }
    .ac-stars { color: var(--accent); font-size: 18px; }
    .ac-review-text { font-size: 14px; line-height: 1.3; }
    .ac-review-avatars { display: flex; }
    .ac-review-avatars img {
      width: 32px; height: 32px;
      border-radius: 50%; border: 2px solid #fff;
      margin-left: -8px;
    }

    /* Grid (3 link cols + Find Us box) */
    .ac-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr) 280px;
      gap: 32px;
    }
    .ac-col h4 {
      font-family: "Cormorant Garamond", serif;
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--accent);
    }
    .ac-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
    .ac-col a {
      text-decoration: none;
      font-size: 14px;
      color: var(--text);
      padding: 2px 0;
    }
    .ac-col a:hover { color: var(--accent2); text-decoration: underline; }

    /* Registrations logos */
    .ac-logos { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
    .ac-logos img { height: 60px; width: auto; border-radius: 4px; }
    /* Only enlarge logos inside link grid column (not top or mapbox) */
    .ac-col .ac-logos img { height: 72px; }

    /* Find Us box (unchanged) */
    .ac-mapbox {
      background: linear-gradient(180deg,#ffffff 0%,#f9fbfb 50%,#d9e8e5 100%);
      border: 1px solid #1f585b;
      border-radius: 14px;
      padding: 16px;
      box-shadow: 0 6px 14px rgba(19,60,62,.12);
      display: flex;
      flex-direction: column;
      gap: 12px;
      font-size: 14px;
      position: relative;
    }
    .ac-mapbox::before {
      content: "";
      position: absolute;
      inset: -1px;
      border: 1px solid rgba(19,60,62,.35);
      border-radius: inherit;
      pointer-events: none;
    }
    .ac-mapbox h4 { font-size: 15px; margin: 0; color: var(--accent); }
    .ac-mapbox .addr { color: var(--muted); line-height: 1.5; }
    .ac-mapbox a.btn {
      background: var(--accent);
      color: #fff;
      padding: 8px 12px;
      text-align: center;
      border-radius: 6px;
      font-size: 14px;
      text-decoration: none;
      font-weight: 600;
    }
    .ac-mapbox a.btn:hover { background: var(--accent2); }

    /* Bottom strip */
    .ac-bottom {
      border-top: 1px solid rgba(0,0,0,0.12);
      padding-top: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .ac-cta { display: flex; gap: 12px; }
    .ac-cta a {
      font-size: 14px; font-weight: 300; text-decoration: none;
      padding: 9px 16px; border-radius: 6px;
    }
    .ac-cta a.primary { background: var(--accent); color: #fff; }
    .ac-cta a.primary:hover { background: var(--accent2); }
    .ac-cta a.secondary {
      border: 1px solid var(--accent); color: var(--accent); background: #fff;
    }
    .ac-cta a.secondary:hover { background: var(--accent); color: #fff; }

    .ac-legal {
      font-size: 13px; color: var(--muted);
      display: flex; gap: 14px; flex-wrap: wrap;
    }
    .ac-legal a { text-decoration: none; color: var(--muted); }
    .ac-legal a:hover { color: var(--accent2); text-decoration: underline; }

    /* Responsive */
    @media(max-width:900px) {
      .ac-grid { grid-template-columns: 1fr 1fr; }
      .ac-mapbox { grid-column: span 2; }
    }
    @media(max-width:600px) {
      .ac-top { flex-direction: column; align-items: flex-start; gap: 16px; }
      .ac-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
    }