:root{
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --radius: 18px;
  --max: 1120px;
  --lh: 1.55;

  --brand: #4aa3ff;
  --t-fast: 120ms ease;

  --shadow: 0 18px 60px rgba(0,0,0,.24);
  --shadow-soft: 0 10px 40px rgba(0,0,0,.18);

  /* DEFAULT THEME = dark (real dark) */
  --bg: #1f1f1f;
  --panel: #2a2a2a;
  --panel2: #343434;

  --text: #ededed;
  --muted: rgba(237,237,237,.74);

  --border: rgba(237,237,237,.18);
  --border-strong: rgba(237,237,237,.26);

  --input-bg: rgba(255,255,255,.05);
  --chip-bg: rgba(255,255,255,.04);
  --header-bg: rgba(31,31,31,.72);
}

/* If you ever want “super-dark”, keep it as an option */
html[data-theme="deep"]{
  --bg: #0b0c10;
  --panel: #11131a;
  --panel2: #151824;

  --text: #e9ecf1;
  --muted: rgba(233,236,241,.74);

  --border: rgba(233,236,241,.16);
  --border-strong: rgba(233,236,241,.22);

  --input-bg: rgba(255,255,255,.04);
  --chip-bg: rgba(255,255,255,.03);
  --header-bg: rgba(11,12,16,.62);
}

html[data-theme="dark"]{
  /* keep as alias of default, but allow explicit setTheme("dark") */
  --bg: #1f1f1f;
  --panel: #2a2a2a;
  --panel2: #343434;
  --text: #ededed;
  --muted: rgba(237,237,237,.74);
  --border: rgba(237,237,237,.18);
  --border-strong: rgba(237,237,237,.26);
  --input-bg: rgba(255,255,255,.05);
  --chip-bg: rgba(255,255,255,.04);
  --header-bg: rgba(31,31,31,.72);
}

html[data-theme="light"]{
  --bg: #f3f3f3;
  --panel: #ffffff;
  --panel2: #f6f6f6;
  --text: #1a1a1a;
  --muted: rgba(26,26,26,.62);
  --border: rgba(26,26,26,.12);
  --border-strong: rgba(26,26,26,.18);
  --input-bg: rgba(0,0,0,.03);
  --chip-bg: rgba(0,0,0,.03);
  --header-bg: rgba(243,243,243,.78);
}

html.noScroll, html.noScroll body{
  overflow: hidden;
}

/* =========================
   Base
========================= */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  line-height:var(--lh);
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(74,163,255,.10), transparent 60%),
    radial-gradient(900px 600px at 80% 0%, rgba(255,255,255,.06), transparent 60%),
    var(--bg);
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2px solid rgba(74,163,255,.55);
  outline-offset: 2px;
  border-radius: 12px;
}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.srOnly{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

.mt12{margin-top:12px}
.tiny{margin: 12px 0 0; color:var(--muted); font-size:12px}
.muted{color:var(--muted)}
.prose{max-width: 100ch}

/* =========================
   Header + Nav
========================= */
.header{
  position:sticky; top:0; z-index:20;
  padding-top: env(safe-area-inset-top);
  backdrop-filter: blur(12px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}
.header__right{display:flex; align-items:center; gap:12px}

.brand{display:flex; gap:12px; align-items:center; min-width:240px}
.brand__logo{width:98px; height:46px; object-fit:contain; filter: drop-shadow(0 6px 18px rgba(0,0,0,.25))}
.brand__text{display:flex; flex-direction:column; line-height:1.05}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__tag{color:var(--muted); font-size:13px}

.controls{display:flex; align-items:center; gap:10px}
.select{
  appearance:none;
  font: inherit;
  color: var(--text);
  background: var(--chip-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 34px 10px 12px;
  line-height: 1;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat:no-repeat;
}

.iconBtn{
  display:inline-flex; align-items:center; gap:10px;
  border: 1px solid var(--border);
  background: var(--chip-bg);
  padding: 10px 12px;
  border-radius: 14px;
  cursor:pointer;
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.iconBtn:hover{transform: translateY(-1px)}
.iconBtn__dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(74,163,255,.55);
  box-shadow: 0 0 0 4px rgba(74,163,255,.12);
}
.iconBtn__text{font-size:13px; color:var(--muted)}

.nav{position:relative}
.nav__toggle{
  display:none;
  width:44px; height:44px;
  border:1px solid var(--border);
  background: var(--chip-bg);
  border-radius:14px;
  cursor:pointer;
}
.nav__toggleBars{
  display:block; width:18px; height:2px; background:var(--text);
  margin:0 auto; position:relative;
}
.nav__toggleBars::before,
.nav__toggleBars::after{
  content:""; position:absolute; left:0; width:18px; height:2px; background:var(--text);
}
.nav__toggleBars::before{top:-6px}
.nav__toggleBars::after{top:6px}

.nav__menu{
  display:flex; gap:10px; align-items:center;
  list-style:none; padding:0; margin:0;
}
.nav__menu a{
  color:var(--muted);
  font-size:14px;
  padding:10px 10px;
  border-radius: 12px;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__menu a:hover{color:var(--text); background: rgba(255,255,255,.06)}
html[data-theme="light"] .nav__menu a:hover{background: rgba(0,0,0,.05)}

/* =========================
   Buttons + Cards + Layout
========================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 650;
  cursor:pointer;
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.btn:hover{transform: translateY(-1px)}
.btn--primary{background: rgba(74,163,255,.18); border-color: rgba(74,163,255,.34)}
.btn--primary:hover{background: rgba(74,163,255,.24)}
.btn--ghost{background: rgba(255,255,255,.04)}
html[data-theme="light"] .btn--ghost{background: rgba(0,0,0,.02)}

.card{
  border:1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 10px}

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

.section{padding:70px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
html[data-theme="light"] .section--alt{
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,0));
}
.section__head{margin-bottom:18px}
.section__head h2{
  font-size: clamp(28px, 3.2vw, 40px);
  margin: 0 0 8px;
  letter-spacing: -0.4px;
}
.section__head p{margin:0; max-width:72ch; color:var(--muted)}
.section__actions{margin-top:16px; display:flex; gap:12px; flex-wrap:wrap}

.list{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.list li{margin:7px 0}

/* =========================
   Hero
========================= */
.hero{
  position:relative;
  min-height:78vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--border);
  color:#fff;
}

.hero__bg{position:absolute; inset:0; overflow:hidden; transform: scale(1.03); filter:saturate(1.05)}
.hero__bg picture, .hero__bg img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover}
.hero__bg::after{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 22% 42%, rgba(0,0,0,.62), transparent 62%),
    linear-gradient(120deg, rgba(0,0,0,.72), rgba(0,0,0,.26));
}
html[data-theme="dark"] .hero__bg::after{
  background:
    radial-gradient(900px 520px at 22% 42%, rgba(0,0,0,.68), transparent 62%),
    linear-gradient(120deg, rgba(0,0,0,.76), rgba(0,0,0,.30));
}

.hero__content{position:relative; padding:56px 0 44px}
.hero__content::before{
  content:""; position:absolute; inset: 34px -12px 22px -12px;
  border-radius: 28px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  z-index:-1;
}
html[data-theme="light"] .hero__content::before{
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(0,0,0,.08);
}

.pill{
  display:inline-flex; gap:10px; align-items:center;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.20);
  padding: 8px 12px;
  border-radius:999px;
  color: rgba(255,255,255,.78);
  font-size:13px;
}
.hero h1{
  font-size: clamp(36px, 5vw, 62px);
  margin: 14px 0 8px;
  letter-spacing:-0.8px;
  text-shadow: 0 12px 40px rgba(0,0,0,.60);
}
.hero__lead{
  max-width:62ch;
  color: rgba(255,255,255,.82);
  text-shadow: 0 10px 28px rgba(0,0,0,.45);
  font-size: 17px;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0}
.hero .btn{color:#fff; background: rgba(0,0,0,.22); border-color: rgba(255,255,255,.16)}
.hero .btn--ghost{background: rgba(0,0,0,.16)}
.hero .btn--primary{background: rgba(74,163,255,.28); border-color: rgba(74,163,255,.50)}
.hero .btn--primary:hover{background: rgba(74,163,255,.34)}

.hero__meta{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top: 14px;
  max-width: 780px;
}
.metaCard{
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.10);
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  min-height: 64px;
  box-shadow: none;
  padding: 14px 14px;
  border-radius: 16px;
  cursor: default;
  opacity: .92;
}
.metaCard__big{
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .2px;
}
.metaCard__small{
  font-size: 12px;
  color: rgba(255,255,255,.68);
}
.metaCard:hover{
  transform: none !important;
  border-color: rgba(255,255,255,.12);
}
html[data-theme="light"] .metaCard{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: none;
}
html[data-theme="light"] .metaCard__small{
  color: rgba(0,0,0,.60);
}

/* =========================
   Gallery
========================= */
.gallery{display:flex; gap:10px; flex-wrap:wrap; margin:12px 0 16px}
.chip{
  border:1px solid var(--border);
  background: var(--chip-bg);
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  cursor:pointer;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.chip:hover{transform: translateY(-1px); border-color: var(--border-strong); color: var(--text)}
.chip.isActive{
  color:var(--text);
  background: rgba(74,163,255,.14);
  border-color: rgba(74,163,255,.32);
}

.tile{
  border:1px solid var(--border);
  background: var(--panel2);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.tile:hover{transform: translateY(-2px); border-color: var(--border-strong)}
.tile img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(0,0,0,.10);
}
.tile figcaption{display:none;}
.galleryPreview{gap:14px}
.galleryPreview .tile img{height:200px}

/* =========================
   Drawer
========================= */
.drawer{
  position: fixed;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  background: rgba(0,0,0,.64);
  z-index: 60;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}
.drawer.isOpen{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 180ms ease, visibility 0s linear 0s;
}
.drawer__panel{
  width: min(1100px, 92vw);
  height: 100vh;
  background: var(--panel);
  border-left: 1px solid var(--border);
  box-shadow: 0 30px 120px rgba(0,0,0,.45);
  display:flex;
  flex-direction:column;

  opacity: 0;
  transform: translateX(28px);
  transition: transform 260ms ease, opacity 260ms ease;
}
.drawer.isOpen .drawer__panel{
  opacity: 1;
  transform: translateX(0);
  transition-delay: 60ms;
}

.drawer__head{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding:16px;
  border-bottom:1px solid var(--border);
  background: var(--panel2);
}
.drawer__title{font-weight:800}
.drawer__close{
  width:46px; height:46px;
  border-radius:14px;
  border:1px solid var(--border);
  background: var(--chip-bg);
  color: var(--text);
  font-size:26px;
  cursor:pointer;
}

.drawer__body{
  display:grid;
  grid-template-columns: 280px 1fr;
  min-height:0;
  flex:1;
}
.drawer__sidebar{
  border-right:1px solid var(--border);
  padding:14px;
  overflow:auto;
  background: var(--panel2);
}
.drawer__chips{display:grid; gap:10px}

.drawer__chips .chip{
  width:100%;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px;
  border-radius:14px;
  background: rgba(255,255,255,.03);
}
html[data-theme="light"] .drawer__chips .chip{background: rgba(0,0,0,.02)}

.drawer__count{margin-top:10px}

.drawer__main{padding:14px; overflow:auto}
.drawer__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.drawer__grid .tile img{height:160px}

@media (prefers-reduced-motion: reduce){
  .drawer, .drawer__panel{transition:none !important}
  .drawer__panel{transform:none !important}
}

/* =========================
   About split + stats
========================= */
.split{display:grid; grid-template-columns: 1.2fr .8fr; gap:16px; align-items:start}
.callout{
  padding:20px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
}
html[data-theme="light"] .callout{background: rgba(0,0,0,.02)}
.steps{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.steps li{margin:8px 0}

.stats{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px; margin-top:16px}
.stat{
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  background: rgba(255,255,255,.03);
}
html[data-theme="light"] .stat{background: rgba(0,0,0,.02)}
.stat__num{display:block; font-weight:800}
.stat__label{display:block; color:var(--muted); font-size:13px; margin-top:4px}

/* =========================
   Reviews + Awards
========================= */
.trust{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:16px;
  align-items:start;
}

.trust__award{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
}
html[data-theme="light"] .trust__award{
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,0));
}
.trust__awardTop{display:flex; gap:14px; align-items:center}
.trust__awardImg{
  width:72px; height:72px;
  object-fit:contain;
  border-radius:16px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--border);
  padding:10px;
}
html[data-theme="light"] .trust__awardImg{background: rgba(0,0,0,.02)}
.trust__awardTitle{font-weight:800; letter-spacing:.2px}
.trust__awardMeta{font-size:13px; margin-top:2px}
.trust__awardText{margin:14px 0 0}

.trust__sources{
  margin-top:14px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.trustPill{
  border:1px solid var(--border);
  background: var(--chip-bg);
  color: var(--muted);
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
}

.trust__reviews{display:flex; flex-direction:column; gap:16px}
.trust__summary{padding:18px}
.trust__summaryRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.trust__rating{display:flex; flex-direction:column; line-height:1}
.trust__ratingBig{font-size:34px; font-weight:900; letter-spacing:-0.4px}
.trust__stars{margin-top:6px; letter-spacing:2px; color: rgba(74,163,255,.75)}
.trust__metaTitle{font-weight:800}
.trust__metaSub{font-size:13px; margin-top:2px}

.trust__badges{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
.trustBadge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
html[data-theme="light"] .trustBadge{background: rgba(0,0,0,.02)}
.trustBadge:hover{transform: translateY(-1px); color: var(--text); border-color: var(--border-strong)}
.trustBadge__dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(74,163,255,.55);
  box-shadow: 0 0 0 4px rgba(74,163,255,.12);
}

.trust__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.review{padding:18px; box-shadow: var(--shadow-soft)}
.review__top{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px}
.review__stars{letter-spacing:2px; color: rgba(74,163,255,.75); font-size:14px}
.review__source{font-size:12px}
.review__text{margin:0; color:var(--text)}
.review__who{margin-top:12px; font-size:13px}

/* =========================
   Contact
========================= */
.contactList{display:grid; gap:10px; margin-top:10px}
.contactList strong{color: var(--text)}

.formRow{display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top:10px}
label{display:flex; flex-direction:column; gap:8px; color: var(--muted); font-size:14px}
input, textarea{
  font: inherit;
  color: var(--text);
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  outline: none;
}
textarea{resize: vertical; min-height:140px}
input:focus, textarea:focus{border-color: rgba(74,163,255,.55)}
.formActions{display:flex; flex-direction:column; gap:10px; margin-top:14px}
.formHint{margin:0; color:var(--muted); min-height:18px}

/* =========================
   Lightbox slideshow
========================= */
.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.76);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:80;
}
.lightbox.isOpen{display:flex}
.lightbox__content{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  max-width: min(1100px, 92vw);
  width: 100%;
}
.lightbox__img{
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 120px rgba(0,0,0,.45);
  background: rgba(0,0,0,.18);
}
.lightbox__close{
  position:fixed;
  top:14px; right:14px;
  width:46px; height:46px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size:26px;
  cursor:pointer;
  z-index: 90;
}
.lightbox__nav{
  position:fixed;
  top:50%;
  transform: translateY(-50%);
  width:48px;
  height:64px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size:44px;
  line-height: 1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 90;
  user-select:none;
  -webkit-user-select:none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox__prev{ left: 14px; }
.lightbox__next{ right: 14px; }

.lightbox__nav:hover{background: rgba(255,255,255,.16);}

.lightbox__ui{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.lightbox__hint,
.lightbox__count{
  font-size: 12px;
  color: rgba(255,255,255,.78);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/* =========================
   Reveal animation
========================= */
.reveal{opacity:1; transform:none}
html.js .reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
html.js .reveal.isVisible{opacity:1; transform: translateY(0)}
/* =========================
   Footer
========================= */
.footer{
  border-top: 1px solid var(--border);
  padding:18px 0;
  background: rgba(0,0,0,.08);
}
html[data-theme="light"] .footer{background: rgba(0,0,0,.03)}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:12px}
.toTop{
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--border);
  border-radius:14px;
  background: var(--chip-bg);
}

/* =========================
   Accordion + Pricing
========================= */
.mt16 { margin-top: 16px; }

.accordion { margin-top: 14px; }

.acc__btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--chip-bg);
  color: var(--text);
  cursor: pointer;

  transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.acc__btn:hover{
  transform: translateY(-1px);
  border-color: var(--border-strong);
}

.acc__icon{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-weight: 900;
  flex: 0 0 auto;
}
html[data-theme="light"] .acc__icon{background: rgba(0,0,0,.02)}

.acc__panel{
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
html[data-theme="light"] .acc__panel{background: rgba(0,0,0,.015)}

.pricing{ margin-top: 14px; display: grid; gap: 10px; }

.priceRow{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;

  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
html[data-theme="light"] .priceRow{background: rgba(0,0,0,.015)}

.price{
  font-weight: 800;
  white-space: nowrap;
  color: var(--text);
}
/* =========================
   Responsive
========================= */
@media (max-width: 1200px){
  .galleryPreview .tile img{height:180px;}
}

@supports (height: 100svh){
  .hero{min-height:78svh;}
}

@media (max-width: 980px){
  .grid--4{grid-template-columns:repeat(2,1fr)}
  .grid--3,
  .grid--2,
  .split,
  .stats,
  .hero__meta,
  .trust,
  .trust__grid{grid-template-columns:1fr}

  .trust__summaryRow{
    flex-direction:column;
    align-items:flex-start;
  }

  .drawer__body{grid-template-columns:1fr}
  .drawer__sidebar{
    border-right:none;
    border-bottom:1px solid var(--border);
  }
  .drawer__grid{grid-template-columns:repeat(2,1fr)}
}
/* =========================
   Mobile navigation
========================= */
@media (max-width: 760px){
  .lightbox__nav{
    width:44px;
    height:56px;
    font-size:40px;
    opacity: .9;
  }
  .lightbox__hint{
    flex: 1;
    text-align:center;
  }
  .hero__lead{
    -webkit-line-clamp: 3;
  }
  .nav__toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .nav__menu{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(340px, 86vw);

    padding: calc(20px + env(safe-area-inset-top)) 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;

    list-style: none;
    margin: 0;

    background: var(--panel);
    border-left: 1px solid var(--border);
    box-shadow: 0 30px 120px rgba(0,0,0,.45);

    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);

    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;

    transform: translateX(110%);
    transition: transform 240ms ease;
    z-index: 1000;
  }

  html[data-theme="light"] .nav__menu{
    background: rgba(255,255,255,.98);
    border-left: 1px solid rgba(0,0,0,.10);
    box-shadow: 0 20px 70px rgba(0,0,0,.14);
  }

  .nav__menu.isOpen{
    transform: translateX(0);
  }

  .nav__menu.isOpen::before{
    content:"";
    position: fixed;
    inset: 0;
    right: min(340px, 86vw);

    background: rgba(0,0,0,.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    z-index: -1;
  }
  html[data-theme="light"] .nav__menu.isOpen::before{
    background: rgba(0,0,0,.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .nav__menu a{
    font-size: 17px;
    padding: 14px 8px;

    line-height: 1.2;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: none;
  }
  .nav__menu a:last-child{border-bottom:none;}
  .nav__menu a:hover{
    background: none;
    color: var(--text);
  }

  .brand{min-width:0}
  .brand__logo{width:72px;height:34px}
  .header__inner{flex-wrap:wrap}
  .header__right{
    width:100%;
    justify-content:space-between;
    gap:10px;
  }
  .controls{gap:8px}
  .formRow{grid-template-columns:1fr}
}

@media (max-width: 560px){
  .grid--4{grid-template-columns:1fr}
  .galleryPreview .tile img{height:auto}
  .drawer__grid{grid-template-columns:1fr}

  .priceRow{grid-template-columns:1fr}
  .price{justify-self:start}

  .header .container{
    padding-left:22px;
    padding-right:18px;
  }
}

.nav__toggleBars,
.nav__toggleBars::before,
.nav__toggleBars::after{
  background: var(--text);
  opacity:.9;
}
html[data-theme="dark"] .nav__toggleBars,
html[data-theme="dark"] .nav__toggleBars::before,
html[data-theme="dark"] .nav__toggleBars::after{
  box-shadow: 0 1px 0 rgba(0,0,0,.25);
}
