/* WNYGLOSSBOSS — Luxury Detailing
   Color system inspired by provided logo:
   - Electric Blue: #1a7dff (accent)
   - Silver/Metal:  #c8cdd6 (text / gradients)
   - Deep Black:    #06070a (background)
*/

:root{
  --accent2: rgba(39,121,255,1);
  --accent: rgba(98,176,255,1);
  --bg:#06070a;
  --panel: rgba(8,14,24,.55);
  --panel2:#0f121a;
  --text:#e9edf6;
  --muted:#a8b0c0;
  --silver:#c8cdd6;
  --blue:#1a7dff;
  --blue2:#62b0ff;
  --line:rgba(255,255,255,.08);
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius:18px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(26,125,255,.20), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(200,205,214,.12), transparent 55%),
    radial-gradient(900px 700px at 50% 120%, rgba(98,176,255,.10), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(26,125,255,.18), rgba(200,205,214,.10));
  color:var(--text);
  font-weight:700;
  letter-spacing:.2px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(98,176,255,.55)}
.btn:active{transform: translateY(0)}
.btn.secondary{
  background: rgba(255,255,255,.03);
  box-shadow:none;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
  background: rgba(255,255,255,.03);
  font-weight:600;
  font-size:13px;
}

/* NAV */
header{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(10px);
  background: rgba(6,7,10,.75);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:0;
  gap:18px;
  min-height:94px;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width: 220px;
}
.brand img{width:78px; height:94px; object-fit:contain; display:block}
.brand .title{
  display:flex; flex-direction:column; line-height:1.05;
}
.brand .title strong{
  font-size:16px; letter-spacing:.6px;
}
.brand .title span{
  font-size:12px; color:var(--muted);
}

.navlinks{
  display:flex; align-items:center; gap:18px;
}
.navlinks a{
  padding:10px 10px;
  border-radius:12px;
  color:var(--silver);
  font-weight:700;
  font-size:14px;
  letter-spacing:.25px;
  border:1px solid transparent;
}
.navlinks a:hover{border-color: rgba(98,176,255,.35); background: rgba(26,125,255,.08)}

/* dropdown */
.dropdown{position:relative}
.dropbtn{
  display:flex; align-items:center; gap:8px;
  cursor:pointer;
}
.dropdown-menu{position:absolute; top:46px; left:0;
  width: 290px;
  border-radius:16px;
  background: rgba(11,13,18,.96);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:none;z-index:2000;}
.dropdown-menu a{
  display:block; padding:12px 14px;
  border-radius:0;
  border:0;
  font-weight:700;
  color:var(--text);
}
.dropdown-menu a span{
  display:block; font-size:12px; font-weight:600; color:var(--muted); margin-top:2px;
}
.dropdown-menu a:hover{background: rgba(26,125,255,.12)}
.dropdown.open .dropdown-menu{display:block}

/* mobile nav */
.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:var(--text);
  cursor:pointer;
}
.mobile-panel{
  display:none;
  padding:10px 0 18px;
}
.mobile-panel a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  margin-top:10px;
  font-weight:800;
}
.mobile-panel details{
  margin-top:10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  overflow:hidden;
}
.mobile-panel summary{
  cursor:pointer;
  padding:12px 12px;
  font-weight:900;
}
.mobile-panel .sub a{
  margin:0;
  border:0;
  border-top:1px solid rgba(255,255,255,.06);
  border-radius:0;
  background: transparent;
}

/* HERO */
.hero{
  padding:54px 0 28px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:stretch;
}
.heroCard{
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.heroCard::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 300px at 20% 10%, rgba(26,125,255,.28), transparent 55%),
              radial-gradient(600px 300px at 90% 35%, rgba(200,205,214,.16), transparent 55%);
  pointer-events:none;
}
.heroInner{position:relative; padding:28px}
.hero h1{
  margin:0;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.6px;
}
.grad{
  background: linear-gradient(90deg, var(--blue), var(--silver));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p{
  margin:14px 0 18px;
  color:var(--muted);
  font-weight:600;
  font-size:16px;
}
.hero .ctaRow{
  display:flex; flex-wrap:wrap; gap:12px;
  align-items:center;
}
.hero .trust{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:16px;
}
.heroAside{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.kpi{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
}
.kpi strong{display:block; font-size:18px}
.kpi span{color:var(--muted); font-weight:600}
.highlight{
  padding:18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(26,125,255,.14), rgba(255,255,255,.03));
  border:1px solid rgba(98,176,255,.22);
}
.highlight h3{margin:0 0 6px}
.highlight p{margin:0; color:var(--muted); font-weight:600}

/* SECTIONS */
.section{padding:34px 0}
.section h2{
  margin:0 0 10px;
  font-size:30px;
  letter-spacing:-.3px;
}
.section p.lead{
  margin:0 0 18px;
  color:var(--muted);
  max-width: 72ch;
  font-weight:600;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted); font-weight:600}
.card .meta{
  margin-top:14px;
  display:flex; justify-content:space-between; align-items:center; gap:10px;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.card .price{
  color:var(--silver);
  font-weight:900;
}

/* PRICING / table-ish */
.pricingGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.pricePanel{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  padding:18px;
}
.pricePanel h3{margin:0 0 8px}
.pricePanel ul{margin:0; padding-left:18px; color:var(--muted); font-weight:600}
.note{
  margin-top:14px;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
}

/* SERVICE PAGE layout */
.serviceHero{
  padding:28px 0 6px;
}
.breadcrumb{
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.serviceWrap{
  display:grid;
  grid-template-columns: 1fr .9fr;
  gap:14px;
  align-items:start;
  margin-top:14px;
}
.panel{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  padding:18px;
}
.panel h2{margin:0 0 8px}
.panel p{margin:0; color:var(--muted); font-weight:600}
.panel ul{color:var(--muted); font-weight:600}
.badge{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(26,125,255,.12);
  border:1px solid rgba(98,176,255,.28);
  color: var(--silver);
  font-weight:900;
  letter-spacing:.2px;
}

/* CONTACT */
.form{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{
  display:flex; flex-direction:column; gap:8px;
}
.field.full{grid-column: 1 / -1}
label{font-weight:800; color:var(--silver); font-size:13px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
textarea{min-height: 120px; resize: vertical}
input:focus, select:focus, textarea:focus{border-color: rgba(98,176,255,.55)}

/* FOOTER */
footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  color:var(--muted);
}
footer .footgrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
footer strong{color:var(--silver)}
.small{font-size:13px; font-weight:600}

/* responsive */
@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .pricingGrid{grid-template-columns:1fr}
  .serviceWrap{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .navlinks{display:none}
  .hamburger{display:inline-flex; align-items:center; justify-content:center}
  .mobile-panel{display:none}
  .mobile-panel.open{display:block}
  .brand{min-width: unset}
  .brand img{width:48px; height:48px}
  .hero h1{font-size:36px}
  .form{grid-template-columns:1fr}
}



/* --- Photo cards (v4) --- */
.card .imgwrap{
  border-radius: 14px;
  overflow: hidden;
  border:1px solid rgba(255,255,255,.10);
  margin-bottom: 12px;
  background: rgba(0,0,0,.22);
}
.card .imgwrap img{
  width:100%;
  height: 170px;
  object-fit: cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}
@media (max-width: 980px){
  .card .imgwrap img{height: 200px;}
}
/* service hero image */
.serviceImage{
  margin-top: 12px;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 45px rgba(0,0,0,.35);
}
.serviceImage img{
  width:100%;
  height: 320px;
  object-fit: cover;
  display:block;
}
@media (max-width: 980px){
  .serviceImage img{height: 240px;}
}


/* --- Readability polish (v5 pro) --- */
body{letter-spacing:.1px}
.section .lead{font-size:16px; line-height:1.65}
.card h3{font-size:18px; letter-spacing:-.2px}
.card p{font-size:14px; line-height:1.6}
.cards{gap:16px}
.card{padding:20px}
.card ul{margin:10px 0 0; padding-left:18px}
.card li{margin:6px 0}
.meta{margin-top:14px; padding-top:12px; border-top:1px solid rgba(255,255,255,.08)}
.price{letter-spacing:.2px}
.badge{font-size:13px}
.btn{font-size:14px}


/* --- Pro actions row + readability (v7) --- */
.actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.actions .btn{padding:10px 14px}
.actions .btn.secondary{opacity:.95}
.card{display:flex; flex-direction:column}
.card .meta{margin-top:auto}
/* --- Services card images (v8) --- */
.card .imgwrap{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  margin: 0 0 12px 0;
  background: rgba(0,0,0,.20);
}
.card .imgwrap img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
@media (max-width: 980px){
  .card .imgwrap img{height: 210px;}
}


/* --- Quote form --- */
.quoteForm{margin-top:4px}
.quoteForm .field{display:flex; flex-direction:column; gap:8px; margin-top:12px}
.quoteForm label{font-weight:700; letter-spacing:.2px}
.quoteForm input, .quoteForm select, .quoteForm textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline: none;
}
.quoteForm input::placeholder, .quoteForm textarea::placeholder{color: rgba(255,255,255,.45)}
.quoteForm input:focus, .quoteForm select:focus, .quoteForm textarea:focus{
  border-color: rgba(98,176,255,.45);
  box-shadow: 0 0 0 4px rgba(98,176,255,.12);
}
.formRow{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.formActions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
@media (max-width: 760px){ .formRow{grid-template-columns:1fr} }


/* --- Blue wash (v16) --- */
body{
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(39,121,255,.20), rgba(0,0,0,0) 60%),
    radial-gradient(900px 420px at 80% 22%, rgba(98,176,255,.14), rgba(0,0,0,0) 62%),
    #07080b;
}
.pricePanel{
  background: var(--panel);
}
.btn{
  background: linear-gradient(135deg, rgba(39,121,255,.95), rgba(98,176,255,.85));
  border: 1px solid rgba(98,176,255,.35);
}
.btn.secondary{
  background: rgba(98,176,255,.10);
  border: 1px solid rgba(98,176,255,.25);
}
.navCta{
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(98,176,255,.25);
  background: rgba(98,176,255,.10);
}
.navCta.secondary{
  background: rgba(39,121,255,.10);
}


.package-img{width:100%;max-width:380px;margin:14px auto;display:block;border-radius:14px;}

/* --- Service area polish (v29) --- */
#service-area .pricePanel h3{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
#service-area .pricePanel{
  border: 1px solid rgba(98,176,255,.18);
}


/* --- hero polish v32 --- */
.service-towns{
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: .5px;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
}

.hero::after{
  content:'';
  position:absolute;
  inset:auto 0 0 0;
  height:140px;
  background: linear-gradient(to top, rgba(98,176,255,.12), rgba(0,0,0,0));
  pointer-events:none;
}

.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(115deg, rgba(98,176,255,.08) 0%, rgba(0,0,0,0) 40%),
    linear-gradient(295deg, rgba(98,176,255,.06) 0%, rgba(0,0,0,0) 45%);
  pointer-events:none;
}


/* --- global blue gradient v33 --- */
html, body {
  min-height: 100%;
}

body {
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(98,176,255,0.18), rgba(0,0,0,0) 55%),
    radial-gradient(1200px 600px at 90% 20%, rgba(39,121,255,0.14), rgba(0,0,0,0) 55%),
    radial-gradient(900px 500px at 50% 90%, rgba(98,176,255,0.10), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #07080b 0%, #05060a 100%);
  background-attachment: fixed;
}

.section {
  position: relative;
  z-index: 1;
}

.service-towns {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: .45px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}


/* --- global blue glow v34 --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1400px 700px at 50% 40%, rgba(98,176,255,0.10), rgba(0,0,0,0) 60%),
    radial-gradient(1000px 500px at 20% 80%, rgba(39,121,255,0.08), rgba(0,0,0,0) 65%);
}

.section, header, footer {
  position: relative;
  z-index: 1;
}


/* --- hero glow balance v35 --- */
.hero::before,
.hero::after {
  opacity: 0.55;
}

body::after {
  opacity: 1;
}


/* --- hero bottom line removal v36 --- */
.hero::after {
  content: none !important;
  background: none !important;
}


/* --- service area styling v37 --- */
.service-area {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.service-area-list {
  margin-top: 10px;
  letter-spacing: .4px;
  color: rgba(255,255,255,.7);
}




/* --- service area simplified v39 --- */
#service-area {
  text-align: center;
}
#service-area .service-area-list {
  margin-top: 10px;
  letter-spacing: .4px;
  color: rgba(255,255,255,.7);
}


/* --- center services v40 --- */
.servicesGrid,
.pricingGrid {
  justify-content: center;
}
.servicesGrid {
  margin-left: auto;
  margin-right: auto;
}
.servicesGrid .card {
  text-align: center;
}


/* --- service area box v40 --- */
#service-area .container {
  border: 1px solid rgba(98,176,255,.22);
  border-radius: 20px;
  padding: 40px 28px;
  background: rgba(8,14,24,.55);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}


/* --- center main page text v41 --- */
.hero,
.section {
  text-align: center;
}

.hero p,
.hero h1,
.hero h2,
.section h2,
.section h3,
.section p {
  margin-left: auto;
  margin-right: auto;
}


/* --- center specific sections v42 --- */
#services,
#service-area,
#quote {
  text-align: center;
}

#services p,
#service-area p,
#quote p {
  margin-left: auto;
  margin-right: auto;
}


/* --- center contact section v43 --- */
#contact,
#contact * {
  text-align: center;
}

#contact form {
  margin-left: auto;
  margin-right: auto;
}


/* --- service page readability v44 --- */
.services-page .card,
.services-page p,
.services-page li {
  line-height: 1.7;
  font-size: 15px;
}

.services-page p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.services-page ul {
  max-width: 680px;
  margin: 12px auto;
  padding-left: 0;
  list-style-position: inside;
}

.services-page h3 {
  letter-spacing: .3px;
  margin-bottom: 6px;
}

.services-page .note {
  color: rgba(255,255,255,.75);
  font-style: italic;
}



/* Keep bullet lists readable (left-aligned) even when section is centered */
.services-page ul,
#quote ul,
#contact ul,
#service-area ul,
.pricePanel ul {
  display: inline-block;
  text-align: left;
  max-width: 720px;
  margin: 12px auto;
  padding-left: 20px;
  list-style-position: outside;
}

.services-page li,
#quote li,
#contact li,
#service-area li,
.pricePanel li {
  text-align: left;
  margin: 6px 0;
}

/* Ensure bullets sit right next to text (not centered in cards) */
.services-page ul li::marker,
#quote ul li::marker,
#contact ul li::marker,
#service-area ul li::marker,
.pricePanel ul li::marker {
  font-size: 1em;
}




/* --- check icons + pro polish v48 --- */

/* Replace bullets with check icons */
.services-page ul,
.pricePanel ul {
  list-style: none;
  padding-left: 0;
}

.services-page li,
.pricePanel li {
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
  line-height: 1.65;
}

.services-page li::before,
.pricePanel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #62b0ff;
  font-weight: 700;
}

/* Typography polish */
body {
  letter-spacing: 0.2px;
}

.section p {
  max-width: 760px;
}

.section h2 {
  letter-spacing: 0.6px;
}

.card,
.pricePanel {
  backdrop-filter: blur(2px);
}

/* Button polish */
button,
.btn {
  letter-spacing: 0.6px;
  font-weight: 600;
}



/* Keep buttons visually centered if needed */
.services-page .btn,
.services-page button {
  display: inline-block;
}



/* Cards/panels keep layout consistent */
.services-page .card,
.services-page .pricePanel{
  text-align: left !important;
}

/* Buttons can stay aligned naturally */
.services-page .btn,
.services-page button{
  text-align: center !important;
}


/* --- Service pages: LEFT + CHECK ICON LISTS (v52) --- */
body.services-page,
body.services-page *{
  text-align: left;
}

body.services-page .container{
  text-align: left;
}

body.services-page .card,
body.services-page .pricePanel{
  text-align: left;
}

/* Lists inside service packages */
body.services-page .card ul,
body.services-page .pricePanel ul,
body.services-page ul{
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
}

body.services-page .card li,
body.services-page .pricePanel li,
body.services-page li{
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
  line-height: 1.65;
}

body.services-page .card li::before,
body.services-page .pricePanel li::before,
body.services-page li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: rgba(98,176,255,0.95);
  font-weight: 800;
}

/* Keep buttons looking normal */
body.services-page .btn,
body.services-page button{
  text-align: center;
}


/* --- service desc box v58 --- */
body.services-page .service-desc{
  max-width: 860px;
  margin: 18px 0 26px 0;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(98,176,255,.20);
  background: rgba(10,18,32,.52);
  box-shadow: 0 14px 40px rgba(0,0,0,.32);
}
body.services-page .service-desc p{
  margin: 10px 0;
  line-height: 1.85;
}


/* dropdown menu layering fix v65 */
header, .nav { z-index: 2000; position: sticky; }
.dropdown{ z-index: 6000; }


.checks{list-style:none;padding-left:0;margin:10px 0;}
.checks li{position:relative;padding-left:26px;margin:10px 0;line-height:1.5;}
.checks li::before{content:'✓';position:absolute;left:0;top:0;color:var(--accent);} 


/* LOGO: bigger without increasing header height */
.nav{
  height: 72px;
  align-items: center;
}
.brand{
  align-items: center;
  gap: 12px;
}
.brand img{
  height: 88px !important;
  width: auto !important;
  max-height: none !important;
  margin-top: -8px;
  margin-bottom: -8px;
}
.brand .title strong{
  line-height: 1.05;
}
.brand .title span{
  line-height: 1.1;
}
@media (max-width: 820px){
  .nav{ height: 66px; }
  .brand img{ height: 74px !important; margin-top:-6px; margin-bottom:-6px; }
  .brand .title span{ display:none; }
}


/* ===== LOGO HEADER FIX ===== */
header { overflow: visible; }
.nav { align-items: center; min-height: 110px; }
.brand { display:flex; align-items:center; gap:14px; }
.brand img { height:auto; max-height:90px; width:auto; object-fit:contain; display:block; }
@media (max-width:768px){ .brand img{ max-height:65px; } }


/* --- Nav behavior hardening (desktop vs mobile) --- */
@media (min-width: 761px){
  .navlinks{display:flex !important;}
  .hamburger{display:none !important;}
  .mobile-panel{display:none !important;}
}

@media (max-width: 760px){
  header{
    background: var(--bg) !important;
    backdrop-filter: none !important;
  }
  .mobile-panel{
    background: var(--bg);
    border-top: 1px solid var(--line);
  }
  .mobile-panel a,
  .mobile-panel details{
    background: rgba(8,14,24,.85) !important;
  }
}

