
:root {
    --navy:    #0F1B3C;
    --navy-2:  #1A2F6F;
    --red:     #C8281A;
    --gold:    #C9A84C;
    --gold-lt: #E2C76A;
    --white:   #F5F3EE;
    --off:     #EAE7E0;
    --text:    #2d3748;
    --dim:     #6a7280;
    --border:  #e2dfd8;
    --green:   #22c55e;
    --ease:    cubic-bezier(.16,1,.3,1);
    --fd:      'Cormorant Garamond', serif;
    --fb:      'Barlow', sans-serif;
    --fc:      'Barlow Condensed', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--text); background: var(--off); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.ct-hero {
    background-color: #0F1B3C;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 80px 0 64px;
    position: relative; overflow: hidden;
    text-align: center;
    margin-top: calc(-1 * (38px + 100px));
    padding-top: calc(38px + 100px + 80px);
}

.ct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.65);
    pointer-events: none;
    z-index: 1;
}
.ct-hero__line {
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold) 55%, transparent);
    z-index: 2;
}
.ct-hero__inner {
    max-width: 720px; margin: 0 auto; padding: 0 40px;
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.ct-label {
    font-family: var(--fc); font-size: 11px; font-weight: 700;
    letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
}
.ct-hero__title {
    font-family: var(--fd);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 600; color: var(--white);
    line-height: 1.1; letter-spacing: -.01em;
}
.ct-hero__sub {
    font-family: var(--fb); font-size: 15px; font-weight: 300;
    color: rgba(245,243,238,.5); line-height: 1.8; max-width: 580px;
}

.ct-cards-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(15,27,60,.05);
}
.ct-cards-strip__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: repeat(4,1fr);
}

.ct-info-card {
    display: flex; align-items: center; gap: 16px;
    padding: 22px 20px;
    border-right: 1px solid var(--border);
    transition: background .25s;
    cursor: pointer;
}
.ct-info-card:last-child { border-right: none; }
.ct-info-card:hover { background: var(--off); }
.ct-info-card--static { cursor: default; }
.ct-info-card--static:hover { background: transparent; }

.ct-info-card__icon {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.ct-info-card__icon--red   { background: rgba(200,40,26,.1);  color: var(--red); }
.ct-info-card__icon--gold  { background: rgba(201,168,76,.12); color: var(--gold); }
.ct-info-card__icon--navy  { background: rgba(15,27,60,.07);  color: var(--navy); }

.ct-info-card__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ct-info-card__label {
    font-family: var(--fc); font-size: 9.5px; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase; color: var(--dim);
}
.ct-info-card__val {
    font-family: var(--fb); font-size: 14px; font-weight: 600; color: var(--navy);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ct-info-card__note {
    font-family: var(--fb); font-size: 11.5px; font-weight: 300; color: var(--dim);
}

.ct-main { padding: 56px 0 72px; }
.ct-main__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: 1fr 420px;
    gap: 28px; align-items: start;
}

.ct-form-header {
    margin-bottom: 24px;
}
.ct-form-header h2 {
    font-family: var(--fd); font-size: clamp(22px,3vw,32px);
    font-weight: 600; color: var(--navy); margin-bottom: 6px;
}
.ct-form-header p {
    font-family: var(--fb); font-size: 14px; font-weight: 300; color: var(--dim);
}

.ct-alert {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 18px; margin-bottom: 20px;
    background: #fff5f5; border-left: 3px solid var(--red);
    font-size: 13.5px; color: #7f1d1d; line-height: 1.65;
    animation: slideIn .4s var(--ease);
}
@keyframes slideIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:none} }
.ct-alert svg { flex-shrink: 0; margin-top: 2px; }
.ct-alert p + p { margin-top: 4px; }

.ct-success {
    background: #fff; padding: 48px 32px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 16px;
    border-top: 4px solid var(--green);
    animation: popUp .5s var(--ease);
}
@keyframes popUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }
.ct-success__icon {
    width: 68px; height: 68px; border-radius: 50%;
    background: rgba(34,197,94,.1); color: var(--green);
    border: 3px solid rgba(34,197,94,.2);
    display: flex; align-items: center; justify-content: center;
}
.ct-success h3 {
    font-family: var(--fd); font-size: 28px; font-weight: 600; color: var(--navy);
}
.ct-success p {
    font-family: var(--fb); font-size: 14.5px; font-weight: 300;
    color: var(--dim); line-height: 1.8; max-width: 380px;
}

.ct-form { display: flex; flex-direction: column; gap: 16px; }
.ct-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-field { display: flex; flex-direction: column; gap: 8px; }

.ct-label {
    font-family: var(--fc); font-size: 10.5px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--dim);
    transition: color .2s;
}
.ct-req { color: var(--red); margin-left: 2px; }

.ct-input, .ct-select, .ct-textarea {
    width: 100%; background: var(--off);
    border: 1.5px solid var(--border);
    padding: 12px 14px;
    font-family: var(--fb); font-size: 14px; font-weight: 300; color: var(--navy);
    outline: none; border-radius: 0;
    -webkit-appearance: none; appearance: none;
    transition: border-color .25s, background .25s, box-shadow .25s;
    line-height: 1.6;
}
.ct-input::placeholder, .ct-textarea::placeholder { color: #b0a9a0; }
.ct-input:focus, .ct-select:focus, .ct-textarea:focus {
    border-color: var(--navy); background: #fff;
    box-shadow: 0 0 0 3px rgba(15,27,60,.07);
}
.ct-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230F1B3C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    padding-right: 40px; cursor: pointer;
}
.ct-textarea { resize: vertical; min-height: 140px; }

.ct-submit-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 15px 24px;
    font-family: var(--fc); font-size: 13px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    background: var(--navy); color: var(--white); border: none; cursor: pointer;
    position: relative; overflow: hidden; isolation: isolate;
    transition: color .35s;
}
.ct-submit-btn::before {
    content: ''; position: absolute; inset: 0;
    background: var(--red); transform: translateX(-101%);
    transition: transform .4s var(--ease); z-index: -1;
}
.ct-submit-btn:hover::before { transform: translateX(0); }
.ct-submit-btn:hover { color: var(--white); }

.ct-form-note {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    font-family: var(--fc); font-size: 10.5px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; color: var(--dim);
}
.ct-form-note svg { color: var(--green); }

.ct-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 24px;
    font-family: var(--fc); font-size: 12px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    border: 1.5px solid transparent;
    position: relative; overflow: hidden; isolation: isolate;
    transition: color .35s;
}
.ct-btn::before { content:''; position:absolute; inset:0; transform:translateX(-101%); transition:transform .35s var(--ease); z-index:-1; }
.ct-btn:hover::before { transform:translateX(0); }
.ct-btn--outline { color:var(--navy); border-color:var(--navy); }
.ct-btn--outline::before { background:var(--off); }
.ct-btn--outline:hover { color:var(--navy); }

.ct-branch-col { display: flex; flex-direction: column; gap: 3px; }

.ct-branch-card {
    background: var(--navy);
    display: flex; flex-direction: column;
}
.ct-branch-card__head {
    padding: 26px 28px 20px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    display: flex; flex-direction: column; gap: 6px;
}
.ct-branch-card__badge {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--fc); font-size: 10px; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold); align-self: flex-start;
}
.ct-branch-card__badge svg { color: var(--gold); }
.ct-branch-card__name {
    font-family: var(--fd); font-size: 26px; font-weight: 600; color: var(--white);
    line-height: 1.1;
}
.ct-branch-card__city {
    font-family: var(--fc); font-size: 11px; font-weight: 600;
    letter-spacing: .14em; text-transform: uppercase;
    color: rgba(245,243,238,.35);
}

.ct-branch-card__details {
    padding: 20px 28px;
    display: flex; flex-direction: column; gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.ct-branch-detail {
    display: flex; align-items: flex-start; gap: 12px;
}
.ct-branch-detail svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.ct-branch-detail__label {
    display: block;
    font-family: var(--fc); font-size: 9.5px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: rgba(245,243,238,.3); margin-bottom: 4px;
}
.ct-branch-detail__val {
    display: block;
    font-family: var(--fb); font-size: 13.5px; font-weight: 300;
    color: rgba(245,243,238,.7); line-height: 1.65;
}
.ct-branch-detail__val a {
    color: var(--gold); border-bottom: 1px solid rgba(201,168,76,.25);
    transition: border-color .2s;
}
.ct-branch-detail__val a:hover { border-color: var(--gold); }

.ct-branch-card__social {
    padding: 16px 28px;
    display: flex; align-items: center; gap: 16px;
}
.ct-branch-card__social-label {
    font-family: var(--fc); font-size: 10px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: rgba(245,243,238,.3); flex-shrink: 0;
}
.ct-social-links { display: flex; gap: 8px; }
.ct-social-link {
    width: 34px; height: 34px;
    background: rgba(255,255,255,.05); color: rgba(245,243,238,.5);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.08);
    transition: background .25s, color .25s, border-color .25s;
}
.ct-social-link:hover { background: rgba(201,168,76,.15); color: var(--gold); border-color: rgba(201,168,76,.25); }

.ct-map-wrap { display: flex; flex-direction: column; }
.ct-map-header {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 18px;
    background: rgba(15,27,60,.05);
    border: 1px solid var(--border); border-bottom: none;
    font-family: var(--fc); font-size: 11px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--dim);
}
.ct-map-header svg { color: var(--red); flex-shrink: 0; }
.ct-map-frame {
    position: relative; height: 320px;
    border: 1px solid var(--border);
    overflow: hidden;
}
.ct-map-frame iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: none; display: block;
    filter: saturate(.9) contrast(1.02);
}
.ct-map-directions {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px;
    background: var(--navy); color: var(--gold);
    font-family: var(--fc); font-size: 11px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    border: 1px solid rgba(201,168,76,.2); border-top: none;
    transition: background .25s;
}
.ct-map-directions:hover { background: var(--navy-2); }
.ct-map-directions svg { flex-shrink: 0; }

.ct-faq {
    background: #fff; padding: 72px 0;
    border-top: 1px solid var(--border);
}
.ct-faq__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.ct-faq__head {
    margin-bottom: 40px; text-align: center;
}
.ct-faq__label {
    font-family: var(--fc); font-size: 11px; font-weight: 700;
    letter-spacing: .28em; text-transform: uppercase; color: var(--red);
    display: block; margin-bottom: 10px;
}
.ct-faq__head h2 {
    font-family: var(--fd); font-size: clamp(24px,3.5vw,38px);
    font-weight: 600; color: var(--navy);
}
.ct-faq-grid {
    display: grid; grid-template-columns: repeat(2,1fr); gap: 0 3px;
}
.ct-faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    transition: background .2s;
}
.ct-faq-item:hover { background: rgba(15,27,60,.015); }
.ct-faq-item--open { background: rgba(15,27,60,.02); }
.ct-faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 18px 20px;
    background: none; border: none; cursor: pointer; text-align: left;
    font-family: var(--fd); font-size: 17px; font-weight: 600; color: var(--navy);
    line-height: 1.3;
}
.ct-faq-q:hover { color: var(--red); }
.ct-faq-item--open .ct-faq-q { color: var(--red); }
.ct-faq-chevron {
    flex-shrink: 0; color: var(--dim);
    transition: transform .3s var(--ease);
}
.ct-faq-item--open .ct-faq-chevron { transform: rotate(180deg); color: var(--red); }
.ct-faq-a {
    max-height: 0; overflow: hidden; padding: 0 20px;
    transition: max-height .4s var(--ease), padding .35s;
}
.ct-faq-a p {
    font-family: var(--fb); font-size: 14px; font-weight: 300;
    color: var(--dim); line-height: 1.8;
}


@media (max-width: 1100px) {
    .ct-main__inner { grid-template-columns: 1fr; gap: 24px; }
    .ct-branch-col { order: -1; }
    .ct-branch-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
    .ct-faq-grid { grid-template-columns: 1fr; }
    .ct-cards-strip__inner { grid-template-columns: repeat(2,1fr); }
    .ct-info-card:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
    .ct-hero {
        margin-top: calc(-1 * (34px + 85px));
        padding-top: calc(34px + 85px + 60px);
        padding-bottom: 48px;
    }
    .ct-hero__inner { padding: 0 20px; }
    .ct-faq__inner,.ct-main__inner { padding: 0 20px; }
    .ct-cards-strip__inner { padding: 0; grid-template-columns: 1fr 1fr; }
    .ct-info-card { padding: 16px 14px; }
    .ct-info-card:nth-child(2) { border-right: 1px solid var(--border); }
    .ct-info-card:nth-child(3) { border-right: none; }
    .ct-branch-col { grid-template-columns: 1fr; }
    .ct-row { grid-template-columns: 1fr; gap: 14px; }
    .ct-map-frame { height: 260px; }
    .ct-faq { padding: 52px 0; }
}

@media (max-width: 520px) {
    .ct-hero {
        margin-top: calc(-1 * (30px + 76px));
        padding-top: calc(30px + 76px + 50px);
    }
    .ct-hero__title { font-size: 26px; }
    .ct-hero__sub   { font-size: 14px; }
    .ct-cards-strip__inner { grid-template-columns: 1fr; }
    .ct-info-card { border-right: none !important; border-bottom: 1px solid var(--border); }
    .ct-info-card:last-child { border-bottom: none; }
    .ct-submit-btn { padding: 14px; font-size: 12.5px; }
    .ct-branch-card__head { padding: 20px; }
    .ct-branch-card__details { padding: 16px 20px; }
    .ct-branch-card__social  { padding: 14px 20px; }
    .ct-map-frame { height: 220px; }
    .ct-faq-q { font-size: 15px; padding: 16px; }
    .ct-faq-a { padding: 0 16px; }
}

@media (max-width: 360px) {
    .ct-hero__inner,.ct-main__inner,.ct-faq__inner { padding: 0 14px; }
    .ct-hero__title { font-size: 22px; }
    .ct-form-header h2 { font-size: 20px; }
}