.dc-footer {
    --g: #d4a24e; --g2: #e7c98b; --ink: #08131f; --ink2: #0a1b2a;
    --tx: rgba(255,255,255,.72); --hd: #ffffff; --brd: rgba(255,255,255,.12);
    position: relative; width: 100%; overflow: hidden; isolation: isolate;
    color: var(--tx);
    background:
        radial-gradient(70% 70% at 88% 0%, rgba(212,162,78,.14) 0%, transparent 55%),
        linear-gradient(180deg, var(--ink2) 0%, var(--ink) 100%);
    font-family: 'Karla', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}
.dc-footer__inner {
    position: relative; z-index: 1;
    max-width: 1280px; margin: 0 auto;
    padding: clamp(56px, 7vw, 96px) clamp(22px, 5vw, 64px) 0;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
    gap: clamp(30px, 4vw, 64px);
}
.dc-footer__col-title {
    font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    color: var(--g); margin: 0 0 20px;
}

/* brand column */
.dc-footer__logo img { height: 56px; width: auto; display: block; }
.dc-footer__about-eyebrow {
    display: inline-block; margin: 22px 0 8px;
    font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--g);
}
.dc-footer__about-title {
    margin: 0 0 12px; font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.2rem, 1.7vw, 1.45rem); font-weight: 600; color: var(--hd); line-height: 1.2;
}
.dc-footer__about p { margin: 0 0 12px; font-size: .92rem; line-height: 1.7; }
.dc-footer__about p:last-child { margin-bottom: 0; }
.dc-footer__social { display: flex; gap: 10px; margin-top: 22px; }
.dc-footer__social a {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
    color: var(--hd); background: rgba(255,255,255,.06); border: 1px solid var(--brd);
    transition: background-color .3s ease, color .3s ease, transform .3s ease;
}
.dc-footer__social a:hover { background: var(--g); color: #1c1206; transform: translateY(-3px); }
.dc-footer__social svg { width: 20px; height: 20px; }

/* link lists */
.dc-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.dc-footer__links a {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .92rem; color: var(--tx); text-decoration: none;
    transition: color .25s ease, transform .25s ease;
}
.dc-footer__links a::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--g); opacity: 0; transform: scale(.4); transition: all .25s ease; flex: none;
}
.dc-footer__links a:hover { color: var(--g2); transform: translateX(4px); }
.dc-footer__links a:hover::before { opacity: 1; transform: scale(1); }

/* contact + hours */
.dc-footer__contact { display: grid; gap: 16px; }
.dc-footer__ci { display: flex; align-items: flex-start; gap: 12px; }
.dc-footer__ci svg { width: 19px; height: 19px; color: var(--g); flex: none; margin-top: 2px; }
.dc-footer__ci a, .dc-footer__ci span { color: var(--tx); text-decoration: none; font-size: .92rem; line-height: 1.5; transition: color .25s ease; }
.dc-footer__ci a:hover { color: var(--g2); }
.dc-footer__hours { display: grid; gap: 12px; }
.dc-footer__hours-row { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 11px; border-bottom: 1px dashed var(--brd); }
.dc-footer__hours-row:last-of-type { border-bottom: none; }
.dc-footer__hours-d { font-size: .9rem; color: var(--tx); }
.dc-footer__hours-t { font-size: .9rem; font-weight: 700; color: var(--hd); white-space: nowrap; }
.dc-footer__hours-note { margin-top: 4px; font-size: .82rem; font-style: italic; color: rgba(255,255,255,.5); line-height: 1.5; }

.dc-footer__cta {
    display: inline-flex; align-items: center; gap: 9px; margin-top: 22px;
    padding: 13px 24px; border-radius: 999px;
    background: linear-gradient(135deg, var(--g2), var(--g)); color: #1c1206;
    font-weight: 700; font-size: .95rem; text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}
.dc-footer__cta:hover { transform: translateY(-3px); box-shadow: 0 22px 42px -16px rgba(212,162,78,.85); }
.dc-footer__cta svg { width: 17px; height: 17px; }

/* Google Maps */
.dc-footer__map {
    position: relative; z-index: 1; max-width: 1280px;
    margin: clamp(40px, 5vw, 64px) auto 0; padding: 0 clamp(22px, 5vw, 64px);
}
.dc-footer__map-frame {
    position: relative; border-radius: 18px; overflow: hidden;
    border: 1px solid var(--brd); box-shadow: 0 30px 70px -38px rgba(0,0,0,.6);
    height: clamp(220px, 30vw, 340px);
}
.dc-footer__map-frame iframe {
    width: 100%; height: 100%; border: 0; display: block;
    filter: grayscale(.35) contrast(1.05); transition: filter .4s ease;
}
.dc-footer__map-frame:hover iframe { filter: none; }
.dc-footer__map-pill {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    display: inline-flex; align-items: center; gap: 9px;
    padding: 9px 16px; border-radius: 999px;
    background: rgba(8,19,31,.78); border: 1px solid var(--brd);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    color: #fff; font-size: .82rem; font-weight: 700; text-decoration: none;
    transition: background-color .3s ease;
}
.dc-footer__map-pill:hover { background: var(--g); color: #1c1206; }
.dc-footer__map-pill svg { width: 16px; height: 16px; color: var(--g2); flex: none; }
.dc-footer__map-pill:hover svg { color: #1c1206; }

/* bottom bar */
.dc-footer__bottom {
    position: relative; z-index: 1; max-width: 1280px; margin: clamp(40px,5vw,64px) auto 0;
    padding: 22px clamp(22px, 5vw, 64px); border-top: 1px solid var(--brd);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
    font-size: .82rem; color: rgba(255,255,255,.5);
}
.dc-footer__bottom a { color: rgba(255,255,255,.6); text-decoration: none; }
.dc-footer__bottom a:hover { color: var(--g2); }
.dc-footer__bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 980px) {
    .dc-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .dc-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .dc-footer__inner { grid-template-columns: 1fr; }
    .dc-footer__bottom { flex-direction: column; align-items: flex-start; }
}
