:root{
--primary:#0d6efd;
--primary-2:#2563eb;
--accent:#f59e0b;
--bg:#f6f9ff;
--surface:rgba(255,255,255,.96);
--ink:#0f172a;
--muted:#64748b;
--line:rgba(37,99,235,.14);
--shadow:0 18px 40px rgba(15,23,42,.08);
}

*{
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
margin:0;
font-family:"Roboto",sans-serif;
color:var(--ink);
background:
radial-gradient(circle at top left, rgba(13,110,253,.10), transparent 24%),
radial-gradient(circle at top right, rgba(245,158,11,.10), transparent 24%),
linear-gradient(180deg, #f8fbff 0%, #edf3ff 100%);
}

a{
color:inherit;
}

.page-shell{
padding:24px 0 56px;
}

.topbar,
.hero-panel,
.page-card,
.office-card,
.gallery-card,
.placeholder-card{
background:var(--surface);
border:1px solid rgba(226,232,240,.92);
box-shadow:var(--shadow);
}

.topbar{
border-radius:24px;
padding:14px 18px;
margin-bottom:24px;
}

.topbar-row{
display:flex;
justify-content:space-between;
align-items:center;
gap:18px;
}

.brand-link{
display:inline-flex;
align-items:center;
text-decoration:none;
}

.brand-logo{
display:block;
width:min(100%, 280px);
height:auto;
}

.page-nav{
display:flex;
align-items:center;
gap:10px;
flex-wrap:wrap;
}

.page-nav a{
display:inline-flex;
align-items:center;
justify-content:center;
padding:10px 14px;
border-radius:999px;
text-decoration:none;
font-size:.92rem;
font-weight:500;
background:rgba(13,110,253,.05);
border:1px solid rgba(13,110,253,.12);
transition:transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.page-nav a:hover,
.page-nav a.active{
transform:translateY(-1px);
border-color:rgba(13,110,253,.28);
background:rgba(13,110,253,.12);
color:var(--primary);
}

.hero-panel{
position:relative;
overflow:hidden;
border-radius:32px;
padding:clamp(34px, 6vw, 72px);
margin-bottom:26px;
background:linear-gradient(135deg, rgba(13,110,253,.95), rgba(37,99,235,.88) 48%, rgba(15,23,42,.92));
color:#fff;
}

.hero-panel::before,
.hero-panel::after{
content:"";
position:absolute;
border-radius:50%;
filter:blur(10px);
opacity:.7;
}

.hero-panel::before{
width:240px;
height:240px;
right:-80px;
top:-70px;
background:rgba(255,255,255,.14);
}

.hero-panel::after{
width:220px;
height:220px;
left:-80px;
bottom:-80px;
background:rgba(245,158,11,.18);
}

.hero-inner{
position:relative;
z-index:1;
max-width:760px;
}

.eyebrow{
display:inline-flex;
align-items:center;
padding:8px 14px;
border-radius:999px;
border:1px solid rgba(255,255,255,.18);
background:rgba(255,255,255,.10);
font-size:.8rem;
letter-spacing:.04em;
text-transform:uppercase;
margin-bottom:18px;
}

.hero-title{
font-size:clamp(2.2rem, 5vw, 4.4rem);
line-height:1.08;
margin:0 0 14px;
}

.hero-copy{
max-width:620px;
line-height:1.7;
color:rgba(255,255,255,.90);
margin:0;
}

.section-block{
padding-top:26px;
}

.page-card{
border-radius:28px;
padding:clamp(22px, 4vw, 34px);
}

.section-head{
display:flex;
justify-content:space-between;
align-items:end;
gap:16px;
margin-bottom:24px;
}

.section-head h2,
.section-head h3{
margin:0 0 6px;
}

.section-head p{
margin:0;
color:var(--muted);
line-height:1.7;
}

.pill{
display:inline-flex;
align-items:center;
padding:8px 14px;
border-radius:999px;
background:rgba(13,110,253,.08);
border:1px solid rgba(13,110,253,.10);
color:var(--primary);
font-size:.84rem;
font-weight:600;
}

.content-card,
.office-card,
.gallery-card,
.placeholder-card{
position:relative;
overflow:hidden;
height:100%;
border-radius:22px;
border:1px solid var(--line);
background:#fff;
box-shadow:0 10px 24px rgba(15,23,42,.06);
}

.content-card,
.office-card,
.placeholder-card{
padding:22px;
}

.content-card::before,
.office-card::before,
.gallery-card::before,
.placeholder-card::before{
content:"";
position:absolute;
left:18px;
right:18px;
top:0;
height:3px;
border-radius:0 0 999px 999px;
background:linear-gradient(90deg, rgba(96,165,250,.92), rgba(37,99,235,.92));
transform:scaleX(.35);
transform-origin:left center;
opacity:.7;
transition:transform .25s ease, opacity .25s ease;
}

.content-card:hover,
.office-card:hover,
.gallery-card:hover,
.placeholder-card:hover{
transform:translateY(-4px);
box-shadow:0 18px 34px rgba(15,23,42,.11);
border-color:rgba(37,99,235,.22);
}

.content-card:hover::before,
.office-card:hover::before,
.gallery-card:hover::before,
.placeholder-card:hover::before{
transform:scaleX(1);
opacity:1;
}

.text-muted{
color:var(--muted) !important;
}

.feature-list,
.terms-list,
.contact-list{
padding-left:18px;
margin:0;
color:var(--muted);
}

.feature-list li,
.terms-list li,
.contact-list li{
margin-bottom:10px;
line-height:1.65;
}

.address-block{
white-space:pre-line;
line-height:1.8;
margin:0;
}

.office-toolbar{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-bottom:18px;
}

.office-toolbar .form-select,
.contact-form .form-control,
.contact-form .form-select{
border-radius:16px;
padding:.9rem 1rem;
border-color:rgba(148,163,184,.35);
}

.office-toolbar .form-select:focus,
.contact-form .form-control:focus,
.contact-form .form-select:focus{
border-color:rgba(13,110,253,.34);
box-shadow:0 0 0 .25rem rgba(13,110,253,.10);
}

.map-frame{
width:100%;
height:360px;
border:0;
border-radius:20px;
background:#e2e8f0;
}

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

.contact-line{
display:flex;
align-items:flex-start;
gap:12px;
line-height:1.6;
}

.contact-line i{
color:var(--primary);
font-size:1.1rem;
margin-top:4px;
}

.contact-form textarea{
min-height:150px;
resize:vertical;
}

.button-row{
display:flex;
flex-wrap:wrap;
gap:12px;
}

.btn-soft{
display:inline-flex;
align-items:center;
justify-content:center;
padding:.78rem 1.25rem;
border-radius:14px;
text-decoration:none;
font-weight:600;
border:1px solid rgba(13,110,253,.18);
background:#fff;
color:var(--primary);
transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn-soft:hover{
transform:translateY(-1px);
box-shadow:0 10px 22px rgba(13,110,253,.12);
border-color:rgba(13,110,253,.28);
}

.filter-bar{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-bottom:22px;
}

.filter-btn{
border:1px solid rgba(13,110,253,.14);
background:#fff;
color:var(--ink);
border-radius:999px;
padding:10px 14px;
font-weight:500;
}

.filter-btn.active,
.filter-btn:hover{
background:rgba(13,110,253,.12);
color:var(--primary);
border-color:rgba(13,110,253,.26);
}

.gallery-card img{
display:block;
width:100%;
height:240px;
object-fit:cover;
border-radius:22px 22px 0 0;
}

.gallery-body{
padding:18px 18px 20px;
}

.gallery-meta{
display:flex;
justify-content:space-between;
gap:12px;
margin-bottom:10px;
align-items:center;
}

.gallery-tag{
display:inline-flex;
align-items:center;
padding:6px 10px;
border-radius:999px;
font-size:.76rem;
font-weight:700;
text-transform:uppercase;
letter-spacing:.04em;
background:rgba(13,110,253,.08);
color:var(--primary);
}

.placeholder-art{
height:240px;
display:grid;
place-items:center;
padding:24px;
border-radius:22px 22px 0 0;
background:
linear-gradient(135deg, rgba(13,110,253,.12), rgba(37,99,235,.05)),
repeating-linear-gradient(135deg, rgba(255,255,255,.65), rgba(255,255,255,.65) 12px, rgba(226,232,240,.9) 12px, rgba(226,232,240,.9) 24px);
color:var(--primary);
font-weight:700;
text-align:center;
}

.gallery-tip{
margin-top:20px;
padding:16px 18px;
border-radius:18px;
background:rgba(13,110,253,.06);
border:1px dashed rgba(13,110,253,.18);
color:var(--muted);
}

.page-footer{
margin-top:28px;
border-radius:24px;
padding:24px;
background:linear-gradient(135deg, #00133F, #032A7F 60%, #172554);
color:#dbe7ff;
}

.page-footer a{
color:#fff;
text-decoration:none;
}

.page-footer-links{
display:flex;
flex-wrap:wrap;
gap:14px;
margin-top:12px;
}

.page-footer-links a{
opacity:.92;
}

.page-footer-links a:hover{
opacity:1;
}

@media (max-width:991.98px){
.topbar-row,
.section-head{
flex-direction:column;
align-items:flex-start;
}
}

@media (max-width:767.98px){
.page-shell{
padding:18px 0 42px;
}

.topbar,
.page-card,
.page-footer{
border-radius:22px;
}

.page-nav,
.button-row,
.page-footer-links{
width:100%;
}

.page-nav a,
.button-row a,
.button-row button{
width:100%;
}

.contact-grid{
grid-template-columns:1fr;
}

.map-frame{
height:300px;
}
}
