:root { --tww-navy:   #1F2A58;
--tww-blue:   #1863DC;
--tww-amber:  #F5A623;
--tww-amber-dark: #e0940c;
--tww-ink:    #212121;
--tww-muted:  #4e4b66;
--tww-line:   #ebebeb;
--tww-grey:   #f4f4f4;
--tww-white:  #ffffff; --tww-bg:       #ffffff;
--tww-card-bg:  #ffffff; --tww-content-max: 1140px;
--tww-header-height: 90px; --tww-font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
margin: 0;
font-family: var(--tww-font);
color: var(--tww-ink);
background: var(--tww-bg);
line-height: 1.6;
font-size: 16px;
overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--tww-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
font-family: var(--tww-font);
color: var(--tww-navy);
line-height: 1.2;
margin: 0 0 .5em;
font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; } .tww-container { max-width: var(--tww-content-max); margin: 0 auto; padding: 0 20px; }
.tww-section { padding: 64px 0; }
.tww-section--grey { background: var(--tww-grey); }
.tww-section--tight { padding: 40px 0; }
.tww-center { text-align: center; } .tww-btn {
display: inline-block;
background: var(--tww-amber);
color: var(--tww-navy);
font-weight: 700;
padding: 12px 26px;
border-radius: 4px;
border: none;
cursor: pointer;
font-size: 1rem;
line-height: 1.2;
transition: background .2s ease, transform .2s ease;
text-decoration: none;
}
.tww-btn:hover { background: var(--tww-amber-dark); text-decoration: none; transform: translateY(-1px); }
.tww-btn--navy { background: var(--tww-navy); color: #fff; }
.tww-btn--navy:hover { background: #16204a; }
.tww-btn--lg { padding: 15px 34px; font-size: 1.05rem; } .tww-ui-icon { flex: 0 0 auto; vertical-align: -0.15em; } .tww-skip-link {
position: absolute; left: -9999px; top: 0;
background: var(--tww-navy); color: #fff; padding: 10px 16px; z-index: 1000;
}
.tww-skip-link:focus { left: 8px; top: 8px; }
@media (prefers-reduced-motion: reduce) {
* { animation: none !important; transition: none !important; }
}.tww-topbar {
background: var(--tww-navy);
color: #fff;
font-size: .82rem;
}
.tww-topbar__inner {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 8px 28px;
padding: 8px 20px;
}
.tww-topbar a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.tww-topbar a:hover { color: var(--tww-amber); text-decoration: none; }
.tww-topbar__ico { opacity: .85; font-size: .9em; } .tww-header {
background: #fff;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.tww-header__inner {
display: flex;
align-items: center;
justify-content: space-between;
min-height: var(--tww-header-height);
gap: 20px;
}
.tww-header__logo img,
.tww-header__logo .custom-logo {
max-height: 66px;
width: auto;
} .tww-nav { margin-left: auto; }
.tww-nav__list {
list-style: none;
display: flex;
align-items: center;
gap: 30px;
margin: 0;
padding: 0;
}
.tww-nav__list a {
color: var(--tww-ink);
font-weight: 600;
text-decoration: none;
padding: 6px 0;
border-bottom: 2px solid transparent;
transition: color .2s, border-color .2s;
}
.tww-nav__list a:hover,
.tww-nav__list .current-menu-item > a,
.tww-nav__list .current_page_item > a {
color: var(--tww-navy);
border-color: var(--tww-navy);
text-decoration: none;
} .tww-burger {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 44px;
height: 44px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
}
.tww-burger span {
display: block;
height: 3px;
width: 100%;
background: var(--tww-navy);
border-radius: 2px;
transition: transform .25s, opacity .25s;
}
.tww-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.tww-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.tww-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } .tww-drawer {
border-top: 1px solid var(--tww-line);
background: #fff;
}
.tww-drawer[hidden] { display: none; }
.tww-drawer__list {
list-style: none;
margin: 0;
padding: 8px 20px 16px;
}
.tww-drawer__list li { border-bottom: 1px solid var(--tww-line); }
.tww-drawer__list a {
display: block;
padding: 14px 4px;
color: var(--tww-ink);
font-weight: 600;
text-decoration: none;
}
@media (max-width: 900px) {
.tww-nav { display: none; }
.tww-burger { display: flex; margin-left: auto; }
.tww-header__logo img,
.tww-header__logo .custom-logo { max-height: 56px; }
}.tww-footer {
background: var(--tww-navy);
color: #dfe3f0;
margin-top: 0;
}
.tww-footer__cols {
display: grid;
grid-template-columns: 1fr 1fr 1.2fr;
gap: 40px;
padding: 48px 20px 40px;
align-items: start;
}
.tww-footer h3 {
color: #fff;
font-size: 1.15rem;
margin: 0 0 18px;
}
.tww-footer__brand img,
.tww-footer__brand .custom-logo {
max-height: 90px;
width: auto;
}
.tww-footer__menu,
.tww-footer__contact-list {
list-style: none;
margin: 0;
padding: 0;
}
.tww-footer__menu li { margin-bottom: 10px; }
.tww-footer__menu a { color: #dfe3f0; text-decoration: none; }
.tww-footer__menu a:hover { color: var(--tww-amber); text-decoration: none; }
.tww-footer__contact-list li { margin-bottom: 12px; }
.tww-footer__contact-list a { color: #dfe3f0; text-decoration: none; display: inline-flex; align-items: center; gap: 9px; }
.tww-footer__contact-list a:hover { color: var(--tww-amber); text-decoration: none; }
.tww-footer__bottom {
border-top: 1px solid rgba(255,255,255,.12);
font-size: .82rem;
}
.tww-footer__bottom-inner {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
gap: 12px;
padding: 18px 20px;
}
.tww-footer__legal {
list-style: none;
display: flex;
flex-wrap: wrap;
gap: 6px 14px;
margin: 0;
padding: 0;
}
.tww-footer__legal a { color: #cfd4e6; text-decoration: none; }
.tww-footer__legal a:hover { color: var(--tww-amber); text-decoration: none; }
.tww-footer__copy { margin: 0; color: #aab1cc; }
@media (max-width: 800px) {
.tww-footer__cols { grid-template-columns: 1fr; gap: 28px; text-align: left; }
.tww-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}.tww-prose-page { padding: 56px 0 64px; }
.tww-prose-page__head h1 { margin-bottom: 24px; }
.tww-prose {
max-width: 820px;
color: var(--tww-ink);
}
.tww-prose h2 { margin-top: 1.6em; }
.tww-prose h3 { margin-top: 1.4em; }
.tww-prose ul, .tww-prose ol { padding-left: 1.3em; margin: 0 0 1rem; }
.tww-prose li { margin-bottom: .4em; }
.tww-prose a { color: var(--tww-blue); text-decoration: underline; }
.tww-prose img { border-radius: 6px; margin: 1rem 0; }.tww-map { line-height: 0; }
.tww-map iframe { display: block; width: 100%; height: 450px; border: 0; }
@media (max-width: 640px) { .tww-map iframe { height: 340px; } }.tww-quickinfo { background: #fff; }
.tww-quickinfo__heading { margin-bottom: 36px; }
.tww-quickinfo__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
max-width: 960px;
margin: 0 auto;
}
.tww-quickinfo__card {
background: var(--tww-grey);
border-radius: 8px;
padding: 30px 30px 34px;
}
.tww-quickinfo__card h3 { margin-bottom: 16px; } .tww-status {
display: inline-flex;
align-items: center;
gap: 8px;
font-weight: 700;
margin: 0 0 14px;
}
.tww-status__dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.tww-status--open { color: #1a8a3a; }
.tww-status--open .tww-status__dot { background: #1fa348; box-shadow: 0 0 0 3px rgba(31,163,72,.2); }
.tww-status--closed { color: #b02a2a; }
.tww-status--closed .tww-status__dot { background: #d13d3d; box-shadow: 0 0 0 3px rgba(209,61,61,.2); }
.tww-hours { list-style: none; margin: 0 0 14px; padding: 0; }
.tww-hours__row {
display: flex;
justify-content: space-between;
gap: 16px;
padding: 7px 0;
border-bottom: 1px solid var(--tww-line);
}
.tww-hours__row:last-child { border-bottom: none; }
.tww-hours__day { color: var(--tww-ink); }
.tww-hours__time { color: var(--tww-muted); font-variant-numeric: tabular-nums; }
.tww-hours__row--today { font-weight: 700; }
.tww-hours__row--today .tww-hours__time { color: var(--tww-navy); }
.tww-quickinfo__note { font-size: .85rem; color: var(--tww-muted); margin: 0; }
.tww-quickinfo__btns { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0; }
.tww-quickinfo__closing { font-weight: 700; color: var(--tww-navy); margin: 6px 0 0; }
@media (max-width: 760px) { .tww-quickinfo__grid { grid-template-columns: 1fr; } }