:root{
  --bg:#ffffff;
  --surface:#f7f7f8;
  --surface-2:#f0f1f3;
  --line:#e3e4e8;
  --ink:#15161a;
  --steel:#5c5f68;
  --rust:#c8102e;
  --rust-dark:#9c0c22;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,.display{
  font-family:'Inter', sans-serif;
  letter-spacing:-0.015em;
  font-weight:700;
  line-height:1.18;
}
.mono{font-family:'IBM Plex Mono', monospace;}
a{color:inherit;text-decoration:none;}
img,svg{display:block;max-width:100%;}
.wrap{max-width:1180px;margin:0 auto;padding:0 24px;}
.eyebrow{
  font-family:'Inter', sans-serif;
  text-transform:uppercase;
  letter-spacing:0.12em;
  font-size:12px;
  font-weight:700;
  color:var(--rust);
}

.divider{height:1px; background:var(--line); border:0;}

/* utility topbar */
.topbar{
  background:#15161a; color:#fff;
  font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.01em;
  padding:7px 24px; text-align:center;
}
.topbar a{color:#fff;}
.topbar a:hover{color:var(--rust);}
.topbar .sep{margin:0 10px; opacity:0.4;}

/* header */
.site-header-sticky{position:sticky; top:0; z-index:50;}
header{
  background:#1c1d21;
  border-top:3px solid var(--rust);
  border-bottom:1px solid #2c2d32;
}
.nav{
  display:flex; align-items:center;
  padding:14px 24px;
  max-width:1180px; margin:0 auto;
  gap:36px;
}
.logo{display:flex; align-items:center; gap:10px; flex-shrink:0;}
.logo img{height:44px; width:auto; background:#fff; padding:8px 16px; border-radius:4px; flex-shrink:0; object-fit:contain;}
.logo small{
  font-family:'IBM Plex Mono',monospace;
  color:var(--steel); font-size:10.5px; letter-spacing:0.04em;
}
nav.links{display:flex; gap:4px; font-size:13px; font-weight:700; flex-wrap:wrap;}
nav.links a{
  color:#d8d9db; transition:color .15s, background .15s; white-space:nowrap;
  text-transform:uppercase; letter-spacing:0.04em; padding:10px 14px; border-radius:3px;
}
nav.links a:hover, nav.links a:focus-visible{color:#fff; background:rgba(255,255,255,0.06);}
nav.links a.active{color:#fff; background:var(--rust);}
.nav-actions{display:flex; align-items:center; gap:10px; margin-left:auto;}
.nav-phone{
  font-family:'Inter',sans-serif; font-size:14px; font-weight:600;
  background:var(--rust); color:#fff; padding:10px 18px; border-radius:4px;
  white-space:nowrap; transition:background .15s;
}
.nav-phone:hover{background:var(--rust-dark);}
.fb-icon-btn{
  width:34px; height:34px; border:1px solid var(--line); border-radius:4px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; background:#fff;
  overflow:hidden;
}
.fb-icon-btn:hover{border-color:var(--rust);}
.fb-icon-btn img{width:18px; height:18px; object-fit:contain;}
.nettimoto-badge{
  display:flex; align-items:center; height:36px; padding:0 12px;
  border:1px solid var(--line); border-radius:4px; background:#fff; flex-shrink:0;
}
.nettimoto-badge:hover{border-color:var(--rust);}
.nettimoto-badge img{height:16px; width:auto; display:block;}
.op-icon-btn{
  width:36px; height:36px; border:1px solid var(--line); border-radius:999px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; background:#fff;
  overflow:hidden;
}
.op-icon-btn:hover{border-color:var(--rust);}
.op-icon-btn img{width:24px; height:24px; object-fit:contain;}
.mobile-nav{display:none; position:relative;}
.mobile-nav summary{
  cursor:pointer; list-style:none; font-family:'Inter',sans-serif; font-size:13px; font-weight:600;
  border:1px solid var(--line); padding:9px 14px; border-radius:4px; color:var(--ink); background:#fff;
}
.mobile-nav summary::-webkit-details-marker{display:none;}
.mobile-nav[open] summary{border-color:var(--rust); color:var(--rust);}
.mobile-nav .menu{
  position:absolute; right:0; top:calc(100% + 8px); background:#fff;
  border:1px solid var(--line); border-radius:6px; padding:6px; display:flex; flex-direction:column;
  gap:1px; z-index:60; min-width:200px; box-shadow:0 12px 28px rgba(20,20,25,0.14);
}
.mobile-nav .menu a{padding:10px 12px; font-size:14px; font-weight:500; border-radius:4px; color:var(--ink);}
.mobile-nav .menu a:hover, .mobile-nav .menu a.active{background:var(--surface); color:var(--rust);}
@media(max-width:980px){
  nav.links{display:none;}
  .mobile-nav{display:block;}
}

/* breadcrumb (inside page banners, on photo) */
.breadcrumb{
  font-family:'Inter',monospace; font-size:12.5px; font-weight:500;
  color:rgba(255,255,255,0.75); letter-spacing:0.02em;
}
.breadcrumb a:hover{color:#fff;}
.breadcrumb .sep{margin:0 8px; color:rgba(255,255,255,0.45);}

/* ---- page banner: photo header used on every page ---- */
.page-banner{
  position:relative; background-size:cover; background-position:center;
  color:#fff; display:flex; align-items:center;
}
.page-banner::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(10,10,14,0.82) 0%, rgba(10,10,14,0.55) 55%, rgba(10,10,14,0.35) 100%);
}
.page-banner-inner{position:relative; z-index:1; padding:56px 0;}
.page-banner.home .page-banner-inner{padding:110px 0;}
.page-banner h1{font-size:clamp(28px,3.6vw,44px); margin:12px 0 14px; color:#fff;}

/* compact plain header (no photo) — used on subpages without a dedicated photo */
.page-header-plain{
  background:var(--surface); border-bottom:1px solid var(--line);
  padding:28px 0 34px;
}
.page-header-plain .breadcrumb{color:var(--steel);}
.page-header-plain .breadcrumb a:hover{color:var(--rust);}
.page-header-plain .breadcrumb .sep{color:var(--line);}
.page-header-plain h1{font-size:clamp(26px,3.2vw,38px); margin:10px 0 12px; color:var(--ink);}
.page-header-plain p{color:var(--steel); font-size:16px; max-width:56ch; margin-bottom:18px;}

/* split hero: full photo + text side-by-side (used where a real product photo exists) */
.split-hero{padding:32px 0 40px; border-bottom:1px solid var(--line);}
.split-hero .grid2{display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center;}
.split-hero .breadcrumb{color:var(--steel); margin-bottom:10px; display:block;}
.split-hero .breadcrumb a:hover{color:var(--rust);}
.split-hero .breadcrumb .sep{color:var(--line);}
.split-hero h1{font-size:clamp(26px,3.2vw,38px); margin:8px 0 12px; color:var(--ink);}
.split-hero p{color:var(--steel); font-size:16px; max-width:56ch; margin-bottom:18px;}
.split-hero img{width:100%; height:auto; border-radius:6px; border:1px solid var(--line); display:block;}
@media(max-width:860px){
  .split-hero .grid2{grid-template-columns:1fr;}
  .split-hero .grid2 img{order:-1;}
}
.page-banner.home h1{font-size:clamp(34px,5vw,56px);}
.page-banner p{color:rgba(255,255,255,0.88); font-size:16.5px; max-width:52ch; margin-bottom:22px;}
.page-banner .eyebrow{color:#ffd7dc;}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:4px;}
.btn{
  font-family:'Inter',sans-serif; font-size:14.5px; font-weight:600;
  padding:13px 22px; border-radius:4px; display:inline-flex; align-items:center; gap:9px;
  transition:background .15s, color .15s, border-color .15s;
}
.btn-primary{background:var(--rust); color:#fff;}
.btn-primary:hover{background:var(--rust-dark);}
.btn-ghost{border:1px solid rgba(255,255,255,0.55); color:#fff; background:transparent;}
.btn-ghost:hover{border-color:#fff; background:rgba(255,255,255,0.08);}
/* ghost button on white background (used outside banners) */
.btn-ghost.on-light{border:1px solid var(--line); color:var(--ink); background:#fff;}
.btn-ghost.on-light:hover{border-color:var(--rust); color:var(--rust);}

.odometer{display:flex; align-items:center; gap:12px; margin-top:6px;}
.odometer .label{font-family:'Inter',sans-serif; font-size:12px; font-weight:500; color:rgba(255,255,255,0.75); text-transform:uppercase; letter-spacing:0.08em;}
.digits{display:flex; gap:3px;}
.digit{
  width:24px; height:32px; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.35);
  display:flex; align-items:center; justify-content:center;
  font-family:'IBM Plex Mono',monospace; font-weight:600; font-size:16px; color:#fff;
  border-radius:3px;
}

/* static brand logo strip */
.marquee-outer{
  border-bottom:1px solid var(--line);
  background:var(--surface); padding:48px 0 52px;
}
.marquee-heading{
  text-align:center; margin-bottom:32px;
}
.marquee-heading h2{font-size:clamp(20px,2.4vw,28px);}
.marquee-track{
  display:flex; flex-wrap:wrap; gap:64px; align-items:center; justify-content:center;
}
.marquee-track a{display:flex; align-items:center; transition:transform .15s, opacity .15s;}
.marquee-track a:hover{transform:translateY(-3px); opacity:0.85;}
.marquee-track img{height:64px; width:auto; max-width:230px; object-fit:contain;}
.marquee-track .text-brand{font-family:'Inter',sans-serif; font-weight:600; font-size:15px; color:var(--steel);}
@media(max-width:700px){
  .marquee-track{gap:36px;}
  .marquee-track img{height:44px; max-width:160px;}
}

/* brand badges (clickable, linking to manufacturer sites) */
.brand-row{display:flex; flex-wrap:wrap; gap:14px; margin:20px 0 4px; align-items:center;}
.brand-badge{
  border:1px solid var(--line); background:#fff;
  padding:12px 20px; border-radius:4px;
  font-family:'Inter',sans-serif; font-weight:600; letter-spacing:0.01em;
  font-size:13.5px; display:inline-flex; align-items:center; gap:8px;
  color:var(--ink); transition:border-color .15s, transform .15s, box-shadow .15s;
}
a.brand-badge:hover{border-color:var(--rust); transform:translateY(-2px); box-shadow:0 4px 12px rgba(20,20,25,0.08);}
.brand-badge .sq{width:6px; height:6px; border-radius:50%; background:var(--rust); flex-shrink:0;}
.brand-badge.logo-badge{padding:10px 22px;}
.brand-badge.logo-badge img{height:32px; width:auto; max-width:150px; object-fit:contain; display:block;}

/* large brand showcase (product pages) */
.brand-showcase{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:20px; margin:24px 0 4px;
}
.brand-showcase.compact{grid-template-columns:repeat(auto-fit, minmax(180px,1fr)); gap:14px;}
.brand-tile{
  border:1px solid var(--line); border-radius:8px; background:#fff;
  padding:48px 30px; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:18px; text-align:center; transition:box-shadow .15s, border-color .15s, transform .15s;
}
.brand-tile:hover{border-color:var(--rust); box-shadow:0 10px 26px rgba(16,17,20,0.08); transform:translateY(-2px);}
.brand-tile img{height:96px; width:auto; max-width:300px; object-fit:contain;}
.brand-showcase.compact .brand-tile{padding:28px 20px; gap:12px;}
.brand-showcase.compact .brand-tile img{height:56px; max-width:200px;}
.brand-tile .cap{
  font-family:'IBM Plex Mono',monospace; font-size:12.5px; font-weight:600;
  color:var(--steel); letter-spacing:0.02em;
}
.brand-tile:hover .cap{color:var(--rust);}

/* sections */
section{padding:68px 0;}
.section-head{max-width:640px; margin-bottom:38px;}
.section-head h2{font-size:clamp(24px,2.8vw,34px); margin-top:8px;}
.section-head p{color:var(--steel); margin-top:12px; font-size:15.5px;}

/* services grid */
.grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line);}
.card{
  background:#fff; padding:28px 26px; display:flex; flex-direction:column; gap:10px;
  transition:background .15s; border-left:3px solid transparent;
}
.card:hover{background:var(--surface); border-left-color:var(--rust);}
.card h3{font-size:17px; letter-spacing:-0.005em;}
.card p{color:var(--steel); font-size:14px;}
.mini-gauge{display:none;}
@media(max-width:860px){ .grid{grid-template-columns:1fr 1fr;} }
@media(max-width:560px){ .grid{grid-template-columns:1fr;} }

/* info list (checkmarks) */
.info-list{list-style:none; display:flex; flex-direction:column; gap:10px; margin:18px 0 24px;}
.info-list li{display:flex; gap:11px; font-size:15px; color:var(--ink);}
.info-list li::before{content:"—"; color:var(--rust); font-weight:700; flex-shrink:0;}

/* finance disclosure box */
.fin-box{
  background:var(--surface); border:1px solid var(--line); border-radius:6px;
  padding:22px; font-family:'Inter',sans-serif; font-size:13px; color:var(--steel);
  line-height:1.75; margin-top:30px;
}
.fin-box strong{color:var(--ink);}

/* about / stats */
.about{display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:start;}
.about p{color:var(--steel); font-size:15.5px; margin-bottom:15px; max-width:52ch;}
.stat-ticket{
  background:#fff; border:1px solid var(--line); border-radius:6px;
  padding:8px 24px;
}
.stat-ticket .row{
  display:flex; justify-content:space-between; padding:14px 0; border-bottom:1px solid var(--line);
  font-size:14.5px;
}
.stat-ticket .row:last-child{border-bottom:none;}
.stat-ticket .row span:first-child{color:var(--steel);}
.stat-ticket .row span:last-child{color:var(--ink); font-weight:600;}

/* contact */
.contact-wrap{
  background:#fff; border:1px solid var(--line); border-radius:6px;
  display:grid; grid-template-columns:1fr 1fr;
  overflow:hidden;
}
.ticket{padding:38px;}
.ticket h3{font-size:12px; letter-spacing:0.1em; color:var(--rust); font-weight:700; text-transform:uppercase; margin-bottom:20px;}
.ticket-line{display:flex; justify-content:space-between; padding:12px 0; border-bottom:1px solid var(--line); font-size:15px; gap:16px;}
.ticket-line:last-of-type{border-bottom:none;}
.ticket-line span:first-child{color:var(--steel); font-size:13px; white-space:nowrap;}
.ticket-line span:last-child{text-align:right; font-weight:500;}
.map-side{padding:0; display:flex; flex-direction:column;}
.map-side img{width:100%; height:100%; min-height:280px; object-fit:cover; display:block;}
.map-side iframe{width:100%; height:100%; min-height:280px; border:0;}
@media(max-width:860px){
  .contact-wrap, .about{grid-template-columns:1fr;}
}

footer{border-top:1px solid var(--line); padding-top:40px;}
.footer-contact{
  width:100%; padding-bottom:28px; margin-bottom:28px; border-bottom:1px solid var(--line);
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:24px; align-items:flex-start;
}
.footer-contact-name{font-family:'Inter',sans-serif; font-weight:700; font-size:16px; color:var(--ink); margin-bottom:8px;}
.footer-contact-details{font-family:'Inter',sans-serif; font-size:13.5px; color:var(--steel); line-height:1.9;}
.footer-contact-details a:hover{color:var(--rust);}
.footer-contact-details .sep{margin:0 8px; color:var(--line);}
.footer-social{display:flex; align-items:center; gap:20px; font-size:13.5px; font-weight:600;}
.footer-social a:hover{color:var(--rust);}
.footer-social img{height:22px; width:auto; display:block; opacity:0.9; transition:opacity .15s;}
.footer-social a:hover img{opacity:1;}
footer .links{display:flex; flex-wrap:wrap; gap:8px 22px; font-size:13.5px; color:var(--steel);}
footer .links a:hover{color:var(--rust);}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  padding:24px 0 32px; color:var(--steel); font-size:12.5px;
}

/* video section */
.video-frame{
  position:relative; border-radius:6px; overflow:hidden; border:1px solid var(--line);
  background:#000; aspect-ratio:16/9;
}
.video-frame video, .video-frame iframe{
  width:100%; height:100%; display:block; object-fit:cover; border:0;
}
.video-fallback{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:10px; text-align:center; color:#fff;
  background-size:cover; background-position:center;
}
.video-fallback::before{
  content:""; position:absolute; inset:0; background:rgba(10,10,12,0.55);
}
.video-fallback p{position:relative; z-index:1; font-size:14px; max-width:32ch;}
.video-fallback .play-ico{
  position:relative; z-index:1; width:56px; height:56px; border-radius:50%;
  background:rgba(255,255,255,0.15); border:1.5px solid rgba(255,255,255,0.6);
  display:flex; align-items:center; justify-content:center;
}

/* ---------- dark mode ---------- */
[data-theme="dark"]{
  --bg:#111214;
  --surface:#1a1c1f;
  --surface-2:#232529;
  --line:#33363c;
  --ink:#f2f3f5;
  --steel:#9aa0a6;
  --rust:#ff3b52;
  --rust-dark:#ff5c70;
}
[data-theme="dark"] .mobile-nav summary{background:var(--surface);}
[data-theme="dark"] .mobile-nav .menu{background:var(--surface);}
[data-theme="dark"] .btn-ghost.on-light{background:var(--surface);}
[data-theme="dark"] .card{background:var(--surface);}
[data-theme="dark"] .stat-ticket{background:var(--surface);}
[data-theme="dark"] .contact-wrap{background:var(--surface);}
[data-theme="dark"] .marquee-track img{background:#fff; padding:12px 20px; border-radius:6px;}
[data-theme="dark"] .theme-toggle{background:var(--surface);}
[data-theme="dark"] .theme-toggle .icon-sun{display:block;}
[data-theme="dark"] .theme-toggle .icon-moon{display:none;}

/* theme toggle button */
.theme-toggle{
  width:36px; height:36px; border:1px solid var(--line); border-radius:4px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; background:#fff;
  cursor:pointer;
}
.theme-toggle:hover{border-color:var(--rust);}
.theme-toggle svg{width:17px; height:17px; stroke:var(--ink); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;}
.theme-toggle .icon-sun{display:none;}
.theme-toggle .icon-moon{display:block;}
