:root{
  --navy:#0B0F1A; /* black */
  --teal:#0B5FFF; /* blue */
  --teal-2:#2A7BFF; /* blue alt */
  --bg:#FFFFFF; /* white */
  --surface:#FFFFFF;
  --text:#0B0F1A;
  --muted:#465264;
  --border:#E6EAF2;
  --shadow: 0 18px 44px rgba(11,15,26,.12);
  --shadow-soft: 0 12px 28px rgba(11,15,26,.10);
  --radius: 20px;
  --radius-sm: 14px;
  --ring: rgba(11,95,255,.20);
}

body[data-theme="dark"]{
  --bg:#080A10;
  --surface:#0F1320;
  --text:#EAF2FF;
  --muted:#A8B6C9;
  --border:#1E263B;
  --shadow: 0 22px 56px rgba(0,0,0,.45);
  --shadow-soft: 0 18px 38px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
:target{ scroll-margin-top: 96px; }

body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(720px 420px at 14% 0%, rgba(11,95,255,.10), transparent 62%),
    radial-gradient(680px 420px at 92% 18%, rgba(11,15,26,.06), transparent 62%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x:hidden;
}

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

.container{
  width:min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar{
  background: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(228,236,246,.8);
  backdrop-filter: blur(10px);
}
body[data-theme="dark"] .topbar{
  background: rgba(6,23,40,.7);
  border-bottom: 1px solid rgba(31,62,99,.75);
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--muted);
}
.topbar .mini{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.65);
}
body[data-theme="dark"] .chip{ background: rgba(14,34,59,.65); }
.chip b{ color: var(--text); }

header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228,236,246,.85);
}
body[data-theme="dark"] header{
  background: rgba(6,23,40,.82);
  border-bottom: 1px solid rgba(31,62,99,.85);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand img{ height:44px; width:auto; }

.menu{
  display:flex;
  gap: 14px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:center;
}
.menu a{
  font-weight:650;
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
}
.menu a:hover{
  color: var(--text);
  background: rgba(11,95,255,.10);
}

.actions{
  display:flex;
  align-items:center;
  gap: 10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight:800;
  font-size: 14px;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  color: #fff;
  box-shadow: 0 14px 26px rgba(11,95,255,.22);
}
.btn-primary:hover{ filter: brightness(0.98); }
.btn-ghost{
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover{
  border-color: rgba(14,165,165,.35);
  box-shadow: 0 0 0 4px var(--ring);
}

.hero{
  padding: 34px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items:stretch;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(14,165,165,.25);
  background: rgba(14,165,165,.10);
  color: var(--teal);
  font-weight:800;
  font-size: 13px;
  width: fit-content;
}
.hero h1{
  margin-top: 12px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.4px;
}
.lead{
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}
.hero-actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}
.pill-row{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.pill{
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.65);
  color: var(--muted);
  font-weight:700;
  font-size: 13px;
}
body[data-theme="dark"] .pill{ background: rgba(14,34,59,.65); }

.card{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(228,236,246,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
body[data-theme="dark"] .card{
  background: rgba(14,34,59,.75);
  border-color: rgba(31,62,99,.9);
}
.card-pad{ padding: 18px; }
.split{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  color: var(--navy);
}
body[data-theme="dark"] .badge{ color: var(--text); }
.status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight:900;
  font-size: 13px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.65);
}
body[data-theme="dark"] .status{ background: rgba(6,23,40,.55); }
.dot-live{
  width:10px;
  height:10px;
  border-radius:999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(14,165,165,.18);
}
.info{
  margin-top: 12px;
  display:grid;
  gap: 10px;
  color: var(--muted);
  font-weight:650;
  font-size: 14px;
}
.info b{ color: var(--text); }
.info a{ text-decoration: underline; text-underline-offset: 3px; }

.hero-visual{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  min-height: 240px;
  background:
    radial-gradient(600px 260px at 20% 20%, rgba(14,165,165,.25), transparent 55%),
    radial-gradient(600px 260px at 90% 45%, rgba(11,36,71,.18), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,.65), rgba(255,255,255,.10));
  border: 1px solid rgba(228,236,246,.9);
  box-shadow: var(--shadow);
}
body[data-theme="dark"] .hero-visual{
  border-color: rgba(31,62,99,.9);
  background:
    radial-gradient(600px 260px at 20% 20%, rgba(14,165,165,.18), transparent 55%),
    radial-gradient(600px 260px at 90% 45%, rgba(75,151,255,.12), transparent 58%),
    linear-gradient(135deg, rgba(14,34,59,.85), rgba(6,23,40,.55));
}
.hero-visual .art{
  position:absolute;
  inset: 0;
  padding: 16px;
  display:grid;
  place-items:center;
}

.section{
  padding: 34px 0;
}
.section.soft{
  background: rgba(255,255,255,.35);
  border-top: 1px solid rgba(228,236,246,.7);
  border-bottom: 1px solid rgba(228,236,246,.7);
}
body[data-theme="dark"] .section.soft{
  background: rgba(6,23,40,.28);
  border-color: rgba(31,62,99,.55);
}
.title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.title h2{
  font-size: 28px;
  line-height:1.2;
  letter-spacing: -0.3px;
}
.title p{ color: var(--muted); max-width: 62ch; }

.grid{
  display:grid;
  gap: 14px;
}
.grid.cols-4{ grid-template-columns: repeat(4, 1fr); }
.grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
.grid.cols-2{ grid-template-columns: repeat(2, 1fr); }

.service{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(228,236,246,.9);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow-soft);
  display:grid;
  gap: 10px;
  min-height: 160px;
}
body[data-theme="dark"] .service{
  border-color: rgba(31,62,99,.9);
  background: rgba(14,34,59,.70);
}
.service h3{ font-size: 18px; line-height:1.25; }
.service p{ color: var(--muted); font-size: 14px; }
.icon{
  width:42px; height:42px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(14,165,165,.14);
  border:1px solid rgba(14,165,165,.22);
}
.icon svg{ width:24px; height:24px; }

.hours{
  display:grid;
  gap: 10px;
}
.hours li{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(228,236,246,.9);
  background: rgba(255,255,255,.65);
  font-weight:750;
}
body[data-theme="dark"] .hours li{
  border-color: rgba(31,62,99,.9);
  background: rgba(6,23,40,.35);
}
.hours span{ color: var(--muted); font-weight:750; }

.review-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
  margin-bottom: 10px;
}
.rating{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
}
.stars{
  letter-spacing: 2px;
  color: #F59E0B;
  font-size: 15px;
}
.sub{
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}
.quote{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(228,236,246,.9);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow-soft);
}
body[data-theme="dark"] .quote{
  border-color: rgba(31,62,99,.9);
  background: rgba(14,34,59,.70);
}
.quote p{ color: var(--muted); }
.quote b{ display:block; margin-top: 8px; }

form{
  display:grid;
  gap: 10px;
}
label{ font-weight:800; font-size: 13px; color: var(--muted); }
input,select,textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(228,236,246,.95);
  background: rgba(255,255,255,.75);
  color: var(--text);
  outline:none;
  box-shadow: none;
}
body[data-theme="dark"] input,
body[data-theme="dark"] select,
body[data-theme="dark"] textarea{
  border-color: rgba(31,62,99,.95);
  background: rgba(6,23,40,.30);
}
input:focus,select:focus,textarea:focus{
  box-shadow: 0 0 0 4px var(--ring);
  border-color: rgba(11,95,255,.45);
}
textarea{ min-height: 110px; resize: vertical; }

footer{
  padding: 26px 0 36px;
  color: var(--muted);
  font-weight:650;
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  border-top: 1px solid rgba(228,236,246,.8);
  padding-top: 16px;
}
body[data-theme="dark"] .footer-row{ border-color: rgba(31,62,99,.65); }
.footer-row a{ text-decoration: underline; text-underline-offset: 3px; }

.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in{
  opacity:1;
  transform: translateY(0);
}

.mobile-toggle{
  display:none;
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }
  .menu{ display:none; }
  .mobile-toggle{ display:inline-flex; }
}
@media (max-width: 820px){
  .grid.cols-4{ grid-template-columns: 1fr 1fr; }
  .grid.cols-3{ grid-template-columns: 1fr; }
  .grid.cols-2{ grid-template-columns: 1fr; }
}

/* simple mobile drawer */
.drawer{
  display:none;
  position:fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,.35);
}
.drawer[aria-hidden="false"]{ display:block; }
.drawer-panel{
  position:absolute;
  right: 14px;
  top: 74px;
  width: min(360px, calc(100% - 28px));
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
body[data-theme="dark"] .drawer-panel{
  border-color: rgba(31,62,99,.9);
  background: rgba(6,23,40,.92);
}
.drawer-panel a{
  display:block;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(228,236,246,.75);
  color: var(--text);
  font-weight: 800;
}
body[data-theme="dark"] .drawer-panel a{
  border-bottom-color: rgba(31,62,99,.7);
}
.drawer-panel a:hover{
  background: rgba(11,95,255,.10);
}

.brandstack{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brandstack img{
  width: 42px;
  height: 42px;
}
.brandtext{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brandtext .name{
  font-weight: 900;
  letter-spacing: -0.2px;
  color: var(--navy);
}
.brandtext .tag{
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
}

