body.vagotour-v3-contact .breadcrumbs {
    background: var(--bg-alt, #f9f9f9);
    border-bottom: 1px solid var(--border-lt, #f0f0f0);
    padding: 14px 5%;
}

body.vagotour-v3-contact .breadcrumbs-inner {
    max-width: var(--container, 1260px);
    margin: 0 auto;
}

body.vagotour-v3-contact .breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: .76rem;
    color: var(--text-soft, #777777);
}

body.vagotour-v3-contact .breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.vagotour-v3-contact .breadcrumbs li + li::before {
    content: "/";
    color: var(--border, #ececec);
}

body.vagotour-v3-contact .breadcrumbs a {
    color: var(--text-muted, #555555);
    transition: color var(--t-fast, .25s ease);
}

body.vagotour-v3-contact .breadcrumbs a:hover {
    color: var(--accent-dk, #a6844d);
}

body.vagotour-v3-contact .breadcrumbs [aria-current="page"] {
    color: var(--primary, #003162);
    font-weight: 600;
}

.contact-hero {
    padding: 72px 5% 30px;
}

.contact-inner {
    max-width: 980px;
    margin: 0 auto;
}

.contact-eyebrow {
    display: inline-block;
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent, #c59d5f);
    border: 1px solid rgba(var(--accent-rgb, 197, 157, 95), .35);
    border-radius: 40px;
    padding: 6px 14px;
    margin-bottom: 14px;
}

.contact-hero h1 {
    font-family: var(--serif, 'Playfair Display', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary, #003162);
    line-height: 1.12;
    margin-bottom: 14px;
}

.contact-hero h1 em {
    color: var(--accent, #c59d5f);
    font-weight: 400;
}

.contact-hero p {
    max-width: 760px;
    font-size: .98rem;
    color: var(--text-muted, #555555);
    line-height: 1.75;
}

.contact-channels {
    padding: 16px 5% 24px;
}

.contact-channels h2 {
    font-family: var(--serif, 'Playfair Display', serif);
    font-size: 1.5rem;
    color: var(--primary, #003162);
    margin-bottom: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.contact-card {
    border: 1px solid var(--border, #ececec);
    background: #ffffff;
    border-radius: var(--radius-lg, 8px);
    padding: 22px;
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 49, 98, 0.06));
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-rgb, 197, 157, 95), .4);
    background: var(--accent-bg, #fdfaf2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent, #c59d5f);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.contact-card h3 {
    font-size: 1.02rem;
    color: var(--primary, #003162);
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 700;
    color: #16253b;
    margin-bottom: 6px;
}

.contact-helper {
    font-size: .9rem;
    color: var(--text-muted, #555555);
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 58px;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 4px;
    border: 1px solid var(--primary, #003162);
    color: var(--primary, #003162);
    font-size: .8rem;
    letter-spacing: .8px;
    text-transform: uppercase;
    font-weight: 700;
    transition: background var(--t-fast, .25s ease), color var(--t-fast, .25s ease);
}

.contact-cta:hover {
    background: var(--primary, #003162);
    color: #ffffff;
}

.contact-hours {
    padding: 12px 5% 68px;
}

.hours-box {
    border: 1px solid var(--border, #ececec);
    background: #ffffff;
    border-radius: var(--radius-lg, 8px);
    padding: 24px;
}

.hours-box h2 {
    font-size: 1.2rem;
    color: var(--primary, #003162);
    margin-bottom: 12px;
}

.hours-box ul {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.hours-box li {
    color: var(--text, #1a1a1a);
    font-size: .94rem;
}

.hours-box p {
    color: var(--text-muted, #555555);
    font-size: .9rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-helper {
        min-height: 0;
    }
}
