  :root{
    --bg:#0a0a0a;
    --bg-panel:#141414;
    --bg-panel-2:#1a1a1a;
    --bg-panel-3:#1f1f1f;
    --border:#2a2a2a;
    --text:#e8e8e8;
    --text-dim:#9a9a9a;
    --white:#ffffff;
    --steel:#d8d8d8;
    --orange:#ff8000;
    --orange-dark:#c96400;
    --orange-light:#ffb347;
    --blue:#3aa0ff;
    --blue-dark:#1f5f9e;
    --blue-light:#7ec4ff;
    --radius:10px;
    --maxw:1180px;
  }

  *{box-sizing:border-box;}

  /* dark themed scrollbar, so scrolling inside modals (FAQ, Terms, Gallery) matches the site instead of a default light scrollbar */
  html{scrollbar-color:var(--border) var(--bg); scrollbar-width:thin;}
  ::-webkit-scrollbar{width:10px; height:10px;}
  ::-webkit-scrollbar-track{background:var(--bg-panel);}
  ::-webkit-scrollbar-thumb{background:var(--border); border-radius:6px;}
  ::-webkit-scrollbar-thumb:hover{background:var(--blue-dark);}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
  }

  body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:'Oswald', sans-serif;
    font-weight:400;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }

  h1,h2,h3{
    font-family:'Anton', sans-serif;
    font-weight:400;
    text-transform:uppercase;
    letter-spacing:0.5px;
    margin:0;
    color:var(--white);
  }

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

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible{
    outline:2px solid var(--blue-light);
    outline-offset:2px;
  }

  .skip-link{
    position:absolute; top:-60px; left:12px;
    background:var(--blue); color:#08131f;
    padding:10px 18px; border-radius:6px;
    font-weight:600; font-size:14px;
    z-index:1000; transition:top .15s ease;
  }
  .skip-link:focus{top:12px;}

  .wrap{
    max-width:var(--maxw);
    margin:0 auto;
    padding:0 24px;
  }

  .eyebrow{
    font-family:'Oswald', sans-serif;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:13px;
    color:var(--orange);
    margin:0 0 10px;
  }
  .eyebrow.is-blue{color:var(--blue-light);}

  .section-head{
    max-width:640px;
    margin:0 0 44px;
  }
  .section-head h2{
    font-size:clamp(28px,4vw,42px);
    line-height:1.05;
  }
  .section-head p{
    color:var(--text-dim);
    margin-top:14px;
    font-size:16px;
  }

  section{padding:88px 0;}
  section + section{border-top:1px solid var(--border);}

  /* buttons */
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 26px;
    border-radius:6px;
    font-family:'Oswald', sans-serif;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    font-size:14px;
    border:2px solid transparent;
    cursor:pointer;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space:nowrap;
  }
  .btn:hover{transform:translateY(-2px);}
  .btn:active{transform:translateY(0);}

  .btn.orange{
    background:linear-gradient(135deg, var(--orange-light), var(--orange) 60%, var(--orange-dark));
    color:#161005;
    box-shadow:0 8px 24px -8px rgba(255,128,0,.55);
  }
  .btn.blue{
    background:linear-gradient(135deg, var(--blue-light), var(--blue) 60%, var(--blue-dark));
    color:#04101c;
    box-shadow:0 8px 24px -8px rgba(58,160,255,.55);
  }
  .btn svg{width:16px; height:16px; flex-shrink:0;}

  /* header */
  header{
    position:sticky;
    top:0;
    z-index:60;
    background:rgba(10,10,10,.88);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--border);
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:14px 24px;
    max-width:var(--maxw);
    margin:0 auto;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .brand img{height:44px; width:44px; object-fit:contain;}
  .brand-name{
    font-family:'Anton', sans-serif;
    font-size:17px;
    letter-spacing:1px;
    color:var(--white);
    line-height:1.1;
  }
  .brand-name span{
    display:block;
    font-family:'Oswald', sans-serif;
    font-size:10px;
    font-weight:500;
    letter-spacing:2px;
    color:var(--orange);
    margin-top:2px;
  }

  .nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
  }
  .nav-links a{
    font-size:14px;
    font-weight:500;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--text-dim);
    transition:color .15s ease;
  }
  .nav-links a:hover{color:var(--white);}

  .nav-actions{
    display:flex;
    align-items:center;
    gap:14px;
  }
  .nav-phone{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    font-weight:600;
    color:var(--white);
  }
  .nav-phone svg{width:16px; height:16px; color:var(--orange);}

  .nav-toggle{
    display:none;
    background:none;
    border:1px solid var(--border);
    border-radius:6px;
    width:42px;
    height:42px;
    align-items:center;
    justify-content:center;
    color:var(--white);
    cursor:pointer;
  }
  .nav-toggle svg{width:20px; height:20px;}

  .mobile-menu{
    display:none;
    flex-direction:column;
    gap:2px;
    padding:8px 24px 20px;
    border-top:1px solid var(--border);
  }
  .mobile-menu.is-open{display:flex;}

  @media (max-width:860px){
    .nav-links, .nav-phone-desktop{display:none;}
    .nav-toggle{display:flex;}
    .mobile-menu a{
      padding:14px 4px;
      font-size:15px;
      font-weight:500;
      letter-spacing:1px;
      text-transform:uppercase;
      color:var(--text);
      border-bottom:1px solid var(--border);
    }
    .mobile-menu .btn{margin-top:14px; justify-content:center;}
  }

  /* hero */
  .hero{
    padding:76px 0 90px;
    position:relative;
    overflow:hidden;
  }
  .hero::before{
    content:"";
    position:absolute;
    top:-20%; right:-10%;
    width:60%; height:140%;
    background:radial-gradient(circle, rgba(255,128,0,.10), transparent 65%);
    pointer-events:none;
  }
  .hero::after{
    content:"";
    position:absolute;
    bottom:-30%; left:-10%;
    width:50%; height:120%;
    background:radial-gradient(circle, rgba(58,160,255,.08), transparent 65%);
    pointer-events:none;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:56px;
    align-items:center;
    position:relative;
    z-index:1;
  }
  .hero h1{
    font-size:clamp(34px, 5.4vw, 60px);
    line-height:1.04;
    margin-top:16px;
  }
  .hero h1 .accent{color:var(--orange);}
  .hero p.lede{
    color:var(--text-dim);
    font-size:17px;
    max-width:520px;
    margin:22px 0 32px;
  }
  .hero-ctas{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
  }
  .hero-badge{
    display:flex;
    justify-content:center;
  }
  .hero-badge img{
    width:min(380px, 100%);
    filter:drop-shadow(0 30px 50px rgba(0,0,0,.55));
  }
  @media (max-width:860px){
    .hero-grid{grid-template-columns:1fr; text-align:center;}
    .hero p.lede{margin-left:auto; margin-right:auto;}
    .hero-ctas{justify-content:center;}
    .hero-badge{order:-1; margin-bottom:8px;}
    .hero-badge img{width:220px;}
  }

  /* trust strip */
  .trust{padding:0 0 88px;}
  .trust-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:var(--border);
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
  }
  .trust-item{background:var(--bg-panel); padding:28px 26px;}
  .trust-item h3{font-size:16px; letter-spacing:1px; margin-bottom:8px;}
  .trust-item p{color:var(--text-dim); font-size:14px; margin:0;}
  @media (max-width:720px){.trust-grid{grid-template-columns:1fr;}}

  /* services */
  .services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
  }
  .service-card{
    background:var(--bg-panel);
    border:1px solid var(--border);
    border-top:3px solid var(--blue);
    border-radius:var(--radius);
    padding:26px 24px;
    transition:transform .18s ease, border-color .18s ease;
    text-align:left;
    width:100%;
    color:var(--text);
    cursor:pointer;
  }
  .service-card:hover{transform:translateY(-4px); border-color:var(--blue-light);}
  .service-card.is-urgent{border-top-color:var(--orange);}
  .service-card.is-urgent:hover{border-color:var(--orange-light);}
  .service-icon{
    width:42px; height:42px;
    border-radius:8px;
    display:flex; align-items:center; justify-content:center;
    background:var(--bg-panel-3);
    color:var(--blue-light);
    margin-bottom:16px;
  }
  .service-card.is-urgent .service-icon{color:var(--orange-light);}
  .service-icon svg{width:22px; height:22px;}
  .service-card h3{
    font-family:'Oswald', sans-serif;
    font-weight:700;
    font-size:17px;
    text-transform:none;
    letter-spacing:0;
    margin-bottom:8px;
  }
  .service-card p{color:var(--text-dim); font-size:14.5px; margin:0;}
  .service-card p + p{margin-top:10px;}
  .service-card p a{color:var(--blue-light); font-weight:600; text-decoration:none;}
  .service-card p a:hover{text-decoration:underline;}
  .service-tag{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:14px;
    font-size:11px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--blue-light);
  }
  .service-card.is-urgent .service-tag{color:var(--orange-light);}
  .service-tag svg{width:12px; height:12px;}
  @media (max-width:900px){.services-grid{grid-template-columns:repeat(2,1fr);}}
  @media (max-width:600px){.services-grid{grid-template-columns:1fr;}}

  /* about */
  .about-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:56px;
    align-items:start;
  }
  .about-copy p{color:var(--text-dim); font-size:16px; margin:0 0 18px;}
  .values{display:flex; gap:14px; margin:28px 0 0; flex-wrap:wrap;}
  .value-pill{
    flex:1;
    min-width:140px;
    background:var(--bg-panel);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:18px 16px;
    text-align:center;
  }
  .value-pill .word{font-family:'Anton', sans-serif; font-size:15px; letter-spacing:1px; color:var(--white);}
  .value-pill:nth-child(1) .word{color:var(--orange-light);}
  .value-pill:nth-child(2) .word{color:var(--steel);}
  .value-pill:nth-child(3) .word{color:var(--blue-light);}
  .value-pill p{color:var(--text-dim); font-size:12.5px; margin:8px 0 0;}

  .quote-block{
    position:relative;
    background:linear-gradient(160deg, var(--bg-panel-2), var(--bg-panel));
    border:1px solid var(--border);
    border-left:4px solid var(--orange);
    border-radius:var(--radius);
    padding:34px 30px;
  }
  .quote-block p{
    font-family:'Anton', sans-serif;
    font-size:clamp(20px,2.6vw,28px);
    line-height:1.25;
    color:var(--white);
    margin:0 0 14px;
  }
  .quote-block cite{
    font-family:'Oswald', sans-serif;
    font-size:13px;
    font-weight:500;
    letter-spacing:1px;
    color:var(--text-dim);
    font-style:normal;
  }
  @media (max-width:860px){.about-grid{grid-template-columns:1fr;}}

  /* schedule */
  .booking-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    max-width:940px;
  }
  .booking-cta{
    background:linear-gradient(135deg, var(--bg-panel-2), var(--bg-panel));
    border:1px solid var(--border);
    border-left:4px solid var(--blue);
    border-radius:var(--radius);
    padding:28px 26px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:20px;
  }
  .booking-grid .booking-cta:last-child{border-left-color:var(--orange);}
  .booking-cta-text h3{font-size:19px; margin-bottom:8px;}
  .booking-cta-text p{color:var(--text-dim); font-size:14px; margin:0; line-height:1.55;}
  .booking-cta .btn{align-self:flex-start;}
  @media (max-width:760px){
    .booking-grid{grid-template-columns:1fr;}
  }
  .modal-email{max-width:640px;}
  .email-form .form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:18px;
  }
  @media (max-width:600px){
    .email-form .form-row{grid-template-columns:1fr;}
  }
  .form-card{
    background:var(--bg-panel);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:34px;
  }
  .form-row{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px;}
  .field{display:flex; flex-direction:column; gap:8px;}
  .field.full{grid-column:1 / -1;}
  label{
    font-size:12.5px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--text-dim);
  }
  input, select, textarea{
    background:var(--bg-panel-3);
    border:1px solid var(--border);
    border-radius:6px;
    padding:12px 14px;
    color:var(--white);
    font-family:'Oswald', sans-serif;
    font-size:14.5px;
  }
  input::placeholder, textarea::placeholder{color:#6a6a6a;}
  textarea{resize:vertical; min-height:96px;}
  select{appearance:none; background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%239a9a9a"><path d="M5 8l5 5 5-5z"/></svg>'); background-repeat:no-repeat; background-position:right 12px center; padding-right:36px;}

  .form-note{font-size:12.5px; color:var(--text-dim); margin-top:14px; line-height:1.5;}
  .form-note strong{color:var(--steel);}
  .form-footer{display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin-top:22px;}
  .form-status{font-size:13.5px; color:var(--blue-light); display:none;}
  .form-status.is-visible{display:inline;}
  .form-status.is-success{color:#3ad66b;}
  .form-status.is-error{color:var(--orange-light);}

  @media (max-width:640px){
    .form-row{grid-template-columns:1fr;}
    .form-card{padding:24px;}
  }

  /* contact */
  .contact-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
  .contact-card{
    background:var(--bg-panel);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:26px 24px;
  }
  .contact-card .service-icon{color:var(--orange-light); cursor:default;}
  .contact-card h3{
    font-family:'Oswald', sans-serif;
    font-weight:700;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
  }
  .contact-card a.value, .contact-card p.value{color:var(--white); font-size:16px; font-weight:500;}
  .contact-card a.value:hover{color:var(--orange-light);}
  .contact-card p.sub{color:var(--text-dim); font-size:13.5px; margin-top:6px;}
  .map-link{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:12px;
    font-size:13px;
    font-weight:600;
    color:var(--blue-light);
    letter-spacing:.5px;
  }
  .map-link svg{width:14px; height:14px;}
  @media (max-width:900px){.contact-grid{grid-template-columns:repeat(2,1fr);}}
  @media (max-width:560px){.contact-grid{grid-template-columns:1fr;}}

  /* footer */
  footer{background:var(--bg-panel); border-top:1px solid var(--border); padding:48px 0 28px;}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px; margin-bottom:36px;}
  .footer-brand{display:flex; align-items:center; gap:12px; margin-bottom:14px;}
  .footer-brand img{height:38px; width:38px; object-fit:contain;}
  .footer-tagline{color:var(--text-dim); font-size:13.5px; letter-spacing:1px; text-transform:uppercase;}
  .social-links{display:flex; gap:10px; margin-top:16px;}
  .social-links a{
    width:34px; height:34px;
    border-radius:8px;
    border:1px solid var(--border);
    background:var(--bg-panel-3);
    color:var(--text-dim);
    display:flex; align-items:center; justify-content:center;
    transition:color .15s ease, border-color .15s ease;
  }
  .social-links a:hover{color:var(--orange-light); border-color:var(--orange-light);}
  .social-links svg{width:17px; height:17px;}
  .footer-col h4{
    font-family:'Oswald', sans-serif;
    font-weight:700;
    font-size:13px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--steel);
    margin:0 0 14px;
  }
  .footer-col ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px;}
  .footer-col a{color:var(--text-dim); font-size:14px;}
  .footer-col a:hover{color:var(--white);}
  .footer-bottom{
    border-top:1px solid var(--border);
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    font-size:12.5px;
    color:#6a6a6a;
  }
  @media (max-width:760px){.footer-grid{grid-template-columns:1fr; gap:28px;}}

  /* service detail modal */
  .modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(4,4,4,.72);
    backdrop-filter:blur(3px);
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
    z-index:100;
  }
  .modal-overlay.is-open{display:flex;}
  .modal{
    background:var(--bg-panel);
    border:1px solid var(--border);
    border-radius:14px;
    max-width:520px;
    width:100%;
    max-height:88vh;
    overflow-y:auto;
    padding:32px;
    position:relative;
    box-shadow:0 30px 60px -20px rgba(0,0,0,.6);
  }
  .modal-close{
    position:absolute;
    top:16px; right:16px;
    width:34px; height:34px;
    border-radius:8px;
    border:1px solid var(--border);
    background:var(--bg-panel-3);
    color:var(--text-dim);
    font-size:18px;
    line-height:1;
    cursor:pointer;
    display:flex; align-items:center; justify-content:center;
  }
  .modal-close:hover{color:var(--white);}
  .modal .service-icon{margin-bottom:18px;}
  .modal h3{font-size:24px; margin-bottom:12px; padding-right:30px;}
  .modal .modal-intro{color:var(--text-dim); font-size:15px; margin:0 0 18px;}
  .modal ul{list-style:none; margin:0 0 26px; padding:0; display:flex; flex-direction:column; gap:10px;}
  .modal ul li{
    display:flex;
    gap:10px;
    align-items:flex-start;
    font-size:14.5px;
    color:var(--text);
  }
  .modal ul li svg{width:16px; height:16px; margin-top:2px; color:var(--blue-light); flex-shrink:0;}
  .modal.is-urgent ul li svg{color:var(--orange-light);}
  .modal-actions{display:flex; gap:12px; flex-wrap:wrap;}
  .modal-gallery{max-width:900px;}
  .modal-gallery .gallery-grid{margin-top:22px;}
  @media (max-width:760px){.modal-gallery{max-width:94vw;}}

  .terms-body{margin-top:18px;}
  .terms-body h4{
    font-family:'Oswald', sans-serif;
    font-weight:700;
    font-size:15px;
    color:var(--steel);
    margin:22px 0 8px;
  }
  .terms-body h4:first-child{margin-top:0;}
  .terms-body p{color:var(--text-dim); font-size:14px; line-height:1.6; margin:0 0 4px;}
  .terms-disclaimer{
    background:var(--bg-panel-3);
    border:1px solid var(--border);
    border-left:3px solid var(--orange);
    border-radius:6px;
    padding:14px 16px;
    font-size:13px !important;
    margin-bottom:10px !important;
  }

  /* FAQ */
  .faq-list{max-width:760px;}
  .faq-item{
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:var(--bg-panel);
    margin-bottom:12px;
    overflow:hidden;
  }
  .faq-question{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:20px 22px;
    background:none;
    border:none;
    color:var(--white);
    font-family:'Oswald', sans-serif;
    font-weight:600;
    font-size:15.5px;
    text-align:left;
    cursor:pointer;
  }
  .faq-question svg{
    width:18px; height:18px;
    flex-shrink:0;
    color:var(--blue-light);
    transition:transform .2s ease;
  }
  .faq-item.is-open .faq-question svg{transform:rotate(180deg);}
  .faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .25s ease;
  }
  .faq-answer p{
    padding:0 22px 20px;
    margin:0;
    color:var(--text-dim);
    font-size:14.5px;
    line-height:1.6;
  }
  .faq-answer p em{color:var(--orange-light); font-style:normal;}

  /* sticky mobile call button */
  .sticky-call{
    display:none;
    position:fixed;
    bottom:0; left:0; right:0;
    z-index:70;
    padding:12px 16px;
    background:rgba(10,10,10,.95);
    backdrop-filter:blur(8px);
    border-top:1px solid var(--border);
  }
  .sticky-call a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
  }
  @media (max-width:760px){
    .sticky-call{display:block;}
    body{padding-bottom:70px;}
  }

  /* gallery */
  .gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
  }
  .gallery-tile{
    aspect-ratio:4/3;
    border-radius:var(--radius);
    border:1px dashed var(--border);
    background:
      repeating-linear-gradient(135deg, var(--bg-panel-2) 0 12px, var(--bg-panel) 12px 24px);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:var(--text-dim);
    text-align:center;
    padding:20px;
  }
  .gallery-tile svg{width:30px; height:30px; opacity:.6;}
  .gallery-tile span{font-size:12.5px; letter-spacing:.5px;}
  .gallery-tile.has-photo{
    padding:0;
    border-style:solid;
    position:relative;
    overflow:hidden;
  }
  .gallery-tile.has-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  .gallery-category{
    font-size:13px; letter-spacing:.08em; text-transform:uppercase;
    color:var(--blue-light,#7fb3e8); margin:26px 0 10px; font-weight:600;
  }
  .gallery-category:first-of-type{margin-top:6px;}
  .gallery-row{display:contents;}
  .gallery-tile{cursor:pointer; transition:transform .18s ease, box-shadow .18s ease;}
  .gallery-tile:hover{transform:translateY(-3px); box-shadow:0 8px 20px rgba(0,0,0,.35);}
  .gallery-tile.has-photo img{transition:filter .18s ease;}
  .gallery-tile.has-photo:hover img{filter:brightness(1.05);}
  .lightbox-overlay{
    display:none; position:fixed; inset:0; background:rgba(0,0,0,.88);
    z-index:9999; align-items:center; justify-content:center; flex-direction:column;
  }
  .lightbox-overlay.is-visible{display:flex;}
  .lightbox-img-wrap{max-width:90vw; max-height:78vh; display:flex; align-items:center; justify-content:center;}
  .lightbox-overlay img{max-width:90vw; max-height:78vh; object-fit:contain; border-radius:6px;}
  .lightbox-caption{color:#eee; margin-top:14px; font-size:14px; text-align:center; max-width:80vw;}
  .lightbox-close{
    position:absolute; top:18px; right:24px; background:none; border:none;
    color:#fff; font-size:32px; cursor:pointer; line-height:1;
  }
  .lightbox-nav{
    position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.1);
    border:none; color:#fff; font-size:28px; cursor:pointer; padding:10px 16px; border-radius:4px;
  }
  .lightbox-nav:hover{background:rgba(255,255,255,.2);}
  .lightbox-prev{left:16px;}
  .lightbox-next{right:16px;}
  @media (max-width:700px){
    .lightbox-nav{font-size:22px; padding:8px 12px;}
    .lightbox-close{top:10px; right:14px;}
  }
  .email-row{display:flex; align-items:center; gap:10px; flex-wrap:wrap;}
  .copy-email-btn{
    display:inline-flex; align-items:center; gap:6px; padding:4px 10px;
    background:var(--bg-panel-3); border:1px solid var(--border); border-radius:6px;
    color:var(--text-dim); font-size:12.5px; cursor:pointer; transition:border-color .15s ease, color .15s ease;
  }
  .copy-email-btn:hover{border-color:var(--blue-light); color:var(--blue-light);}
  .copy-email-btn svg{width:14px; height:14px;}
  .copy-email-btn.is-copied{border-color:var(--blue-light); color:var(--blue-light);}

  /* back to top */
  .back-to-top{
    position:fixed;
    bottom:24px; right:24px;
    z-index:79;
    width:48px; height:48px;
    border-radius:50%;
    background:var(--bg-panel-2);
    border:1px solid var(--border);
    color:var(--text-dim);
    display:flex; align-items:center; justify-content:center;
    cursor:pointer;
    opacity:0; visibility:hidden; transform:translateY(10px);
    transition:opacity .2s ease, transform .2s ease, border-color .15s ease, color .15s ease;
  }
  .back-to-top.is-visible{opacity:1; visibility:visible; transform:translateY(0);}
  .back-to-top:hover{border-color:var(--blue-light); color:var(--blue-light);}
  .back-to-top svg{width:22px; height:22px;}
  @media (max-width:760px){
    .back-to-top{bottom:90px; right:16px; width:44px; height:44px;}
  }

  /* text-us chat bubble */
  @media (pointer: fine){
    .chat-bubble-btn, .chat-panel{display:none !important;}
  }
  .chat-bubble-btn{
    position:fixed;
    bottom:24px; left:24px;
    z-index:80;
    width:60px; height:60px;
    border-radius:50%;
    background:linear-gradient(135deg, var(--blue-light), var(--blue) 60%, var(--blue-dark));
    border:none;
    box-shadow:0 6px 20px rgba(0,0,0,.45);
    display:flex; align-items:center; justify-content:center;
    cursor:pointer;
    color:#0a0a0a;
    transition:transform .18s ease;
  }
  .chat-bubble-btn:hover{transform:scale(1.06);}
  .chat-bubble-btn svg{width:28px; height:28px;}
  .chat-bubble-btn .chat-dot{
    position:absolute; top:2px; right:2px;
    width:14px; height:14px; border-radius:50%;
    background:var(--orange);
    border:2px solid var(--bg);
  }
  @media (max-width:760px){
    .chat-bubble-btn{bottom:90px; left:16px; width:54px; height:54px;}
  }

  .chat-panel{
    position:fixed;
    bottom:96px; left:24px;
    z-index:81;
    width:300px;
    max-width:calc(100vw - 48px);
    background:var(--bg-panel);
    border:1px solid var(--border);
    border-radius:14px;
    box-shadow:0 12px 40px rgba(0,0,0,.55);
    display:none;
    flex-direction:column;
    overflow:hidden;
  }
  .chat-panel.is-open{display:flex;}
  @media (max-width:760px){
    .chat-panel{bottom:156px; left:16px;}
  }
  .chat-panel-header{
    background:linear-gradient(135deg, var(--blue-dark), var(--bg-panel-2));
    padding:14px 16px;
    display:flex; align-items:center; justify-content:space-between;
  }
  .chat-panel-header-title{display:flex; align-items:center; gap:10px;}
  .chat-panel-header-title .dot{width:9px; height:9px; border-radius:50%; background:#3ad66b; flex-shrink:0;}
  .chat-panel-header h4{margin:0; font-size:14.5px; color:var(--text);}
  .chat-panel-header p{margin:0; font-size:11.5px; color:var(--text-dim);}
  .chat-panel-close{background:none; border:none; color:var(--text-dim); font-size:20px; cursor:pointer; line-height:1; padding:0 4px;}
  .chat-panel-close:hover{color:var(--text);}
  .chat-panel-body{padding:16px; display:flex; flex-direction:column; gap:12px;}
  .chat-bubble-msg{
    background:var(--bg-panel-3);
    border-radius:12px 12px 12px 4px;
    padding:10px 13px;
    font-size:13.5px;
    line-height:1.5;
    color:var(--text);
    max-width:92%;
  }
  .chat-panel-actions{display:flex; flex-direction:column; gap:8px;}
  .chat-action-btn{
    display:flex; align-items:center; justify-content:center; gap:8px;
    padding:11px 14px; border-radius:8px; border:none;
    font-size:14px; font-weight:600; cursor:pointer;
    text-decoration:none;
  }
  .chat-action-btn svg{width:16px; height:16px; flex-shrink:0;}
  .chat-action-btn.primary{background:var(--blue); color:#08131f;}
  .chat-action-btn.primary:hover{background:var(--blue-light);}
  .chat-action-btn.secondary{background:transparent; border:1px solid var(--border); color:var(--text-dim);}
  .chat-action-btn.secondary:hover{border-color:var(--blue-light); color:var(--blue-light);}
  .chat-panel-note{font-size:11px; color:var(--text-dim); text-align:center; margin:0;}

  .gallery-caption{
    position:absolute;
    bottom:0; left:0; right:0;
    background:linear-gradient(to top, rgba(0,0,0,.8), transparent);
    color:var(--white);
    font-size:12.5px;
    font-weight:500;
    letter-spacing:.3px;
    padding:20px 14px 10px;
    text-align:left;
  }
  .gallery-note{
    margin-top:26px;
    font-size:13px;
    color:var(--text-dim);
  }
  @media (max-width:900px){.gallery-grid{grid-template-columns:repeat(2,1fr);}}
  @media (max-width:600px){.gallery-grid{grid-template-columns:1fr;}}

  /* reviews */
  .reviews-carousel{
    position:relative;
    max-width:680px;
    margin:0 auto;
  }
  .reviews-viewport{
    overflow:hidden;
    border-radius:var(--radius);
  }
  .reviews-track{
    display:flex;
    transition:transform .4s ease;
  }
  .review-slide{
    flex:0 0 100%;
    background:var(--bg-panel);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:36px 40px;
    text-align:center;
  }
  .review-stars{
    display:flex;
    justify-content:center;
    gap:4px;
    margin-bottom:18px;
    color:var(--orange-light);
  }
  .review-stars svg{width:18px; height:18px;}
  .review-quote{
    font-size:17px;
    color:var(--white);
    line-height:1.6;
    margin:0 0 18px;
  }
  .review-meta{
    font-size:13px;
    color:var(--text-dim);
    letter-spacing:.5px;
  }
  .review-meta strong{color:var(--steel); font-weight:600;}
  .carousel-controls{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    margin-top:24px;
  }
  .carousel-arrow{
    width:44px; height:44px;
    border-radius:50%;
    border:1px solid var(--border);
    background:var(--bg-panel-3);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    flex-shrink:0;
    transition:background .15s ease, border-color .15s ease, color .15s ease;
  }
  .carousel-arrow:hover{border-color:var(--blue-light); color:var(--blue-light);}
  .carousel-arrow svg{width:18px; height:18px;}
  .carousel-dots{
    display:flex;
    justify-content:center;
    gap:8px;
  }
  .carousel-dot{
    width:9px; height:9px;
    border-radius:50%;
    background:var(--border);
    border:none;
    padding:0;
    cursor:pointer;
    transition:background .15s ease, transform .15s ease;
  }
  .carousel-dot:hover{background:var(--blue-dark); transform:scale(1.2);}
  .carousel-dot.is-active{background:var(--blue-light);}
  .reviews-footer{
    text-align:center;
    margin-top:26px;
    font-size:13.5px;
    color:var(--text-dim);
  }
  .reviews-footer a{color:var(--blue-light); font-weight:600;}
  @media (max-width:760px){
    .review-slide{padding:32px 24px;}
  }
