  :root{
    --ink:#16213a;
    --text:#16213a;
    --paper:#ffffff;
    --bg:#f3f5f8;
    --coral:#e8604c;
    --coral-dark:#cf4a37;
    --wa:#25d366;
    --wa-dark:#1da851;
    --grey:#5b6678;
    --line:#e1e5eb;
    --font:"Manrope", sans-serif;
  }
  :root[data-theme="dark"]{
    --text:#eef1f6;
    --paper:#1b2438;
    --bg:#0e1422;
    --grey:#9aa6bd;
    --line:#2a3550;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{margin:0; background:var(--bg); color:var(--text); font-family:var(--font); line-height:1.5; font-size:16px; transition:background 150ms ease, color 150ms ease;}
  #gallery, #fits, #reviews, #map, #contact{scroll-margin-top:80px;}
  @media (min-width:760px){ #gallery, #fits, #reviews, #map, #contact{scroll-margin-top:116px;} }
  img{max-width:100%; display:block;}
  a{color:inherit;}
  :focus-visible{outline:3px solid var(--coral); outline-offset:2px;}
  .wrap{max-width:1100px; margin:0 auto; padding:0 clamp(16px,4vw,40px);}

  /* ---- topbar ---- */
  .topbar{background:var(--paper); border-bottom:1px solid var(--line); position:sticky; top:0; z-index:20;}
  .topbar .top-wrap{display:flex; align-items:center; justify-content:space-between; height:64px;}
  .wordmark{font-weight:800; font-size:19px; display:flex; align-items:center; gap:9px; text-decoration:none; color:inherit; flex-shrink:0;}
  .nav-row{display:none; background:var(--bg); border-top:1px solid var(--line);}
  @media (min-width:760px){ .nav-row{display:block;} }
  .topnav{display:flex; align-items:center; justify-content:flex-end; gap:24px; height:50px;}
  .topnav a{font-weight:700; font-size:14.5px; color:var(--grey); text-decoration:none;}
  .topnav a:hover{color:var(--text);}
  .top-actions{display:flex; align-items:center; gap:8px;}
  .call-btn{
    height:40px; background:var(--ink); color:#fff; font-weight:700; font-size:14.5px; padding:0 16px; border-radius:10px;
    text-decoration:none; display:flex; align-items:center; gap:7px; white-space:nowrap;
  }
  .call-btn:hover{background:#0d1626;}
  [data-theme="dark"] .call-btn{background:#2c3a5c;}
  [data-theme="dark"] .call-btn:hover{background:#374a73;}
  .wa-btn{
    height:40px; background:var(--wa); color:#fff; font-weight:700; font-size:14.5px; padding:0 16px; border-radius:10px;
    text-decoration:none; display:flex; align-items:center; gap:4px; white-space:nowrap;
  }
  .wa-btn:hover{background:var(--wa-dark);}
  .wa-btn img{width:24px; height:24px;}
  /* Below 760px the mobile sticky bar already covers Call/WhatsApp, so hide
     the header's copies here instead of letting their text wrap and
     overlap the logo. */
  @media (max-width:759px){ .call-btn, .wa-btn{display:none;} }
  .theme-btn{
    width:40px; height:40px; border-radius:10px; border:1px solid var(--line); background:var(--paper); color:var(--text);
    display:flex; align-items:center; justify-content:center; cursor:pointer; flex-shrink:0; padding:0;
  }
  .theme-btn:hover{background:var(--bg);}
  .theme-btn svg{display:none;}
  [data-theme-pref="light"] .theme-btn .icon-sun{display:block;}
  [data-theme-pref="dark"] .theme-btn .icon-moon{display:block;}
  [data-theme-pref="system"] .theme-btn .icon-system{display:block;}

  /* ---- intro hero: full-bleed split, photo + solid color panel ---- */
  .intro-hero{padding:0;}
  .intro-hero .split{display:grid; min-height:460px;}
  @media (min-width:840px){ .intro-hero .split{grid-template-columns:1fr 1fr;} }
  .intro-hero .photo{position:relative; min-height:260px; overflow:hidden;}
  .intro-hero .photo img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover;}
  .intro-hero .panel{background:var(--ink); color:#fff; display:flex; flex-direction:column; justify-content:center; padding:clamp(28px,5vw,56px);}
  .intro-hero .eyebrow{font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color:#ff9a82; margin-bottom:12px;}
  .intro-hero h1{font-size:clamp(26px,3.6vw,36px); margin:0 0 14px; font-weight:800; line-height:1.18; max-width:18ch; color:#fff;}
  .intro-hero p.lede{font-size:15.5px; color:#c3cadb; margin:0 0 20px; max-width:42ch; line-height:1.6;}
  .intro-hero p.tamil{font-size:15px; color:#fff; margin:0; line-height:1.6; max-width:42ch; border-top:1px solid rgba(255,255,255,.15); padding-top:16px;}

  /* ---- reviews ---- */
  .reviews{padding-top:44px; padding-bottom:6px;}
  .reviews h2{font-size:clamp(20px,3vw,26px); margin:0 0 18px;}
  .review-grid{display:grid; gap:14px; grid-template-columns:1fr;}
  @media (min-width:700px){ .review-grid{grid-template-columns:repeat(2,1fr);} }
  .review-card{
    background:var(--paper); border:1px solid var(--line); border-radius:16px; padding:20px 22px;
    display:flex; flex-direction:column; gap:10px;
  }
  .review-card .stars{display:flex; gap:3px; color:#f5a623;}
  .review-card .stars svg{width:16px; height:16px;}
  .review-card blockquote{margin:0; font-size:15px; font-weight:600; color:var(--text); line-height:1.5;}
  .review-card .who{display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;}
  .review-card .who .name{font-size:13.5px; color:var(--grey); font-weight:600;}
  .review-card .gbadge{display:flex; align-items:center; gap:6px; font-size:12.5px; font-weight:700; color:var(--grey);}
  .review-card .gbadge svg{width:16px; height:16px;}
  .reviews .more{display:inline-block; margin-top:18px; font-size:13.5px; font-weight:700; color:var(--coral-dark); text-decoration:none;}
  .reviews .more:hover{text-decoration:underline;}

  /* ---- find-us: map ---- */
  .findhero{padding-top:44px; padding-bottom:50px;}
  .map-card{
    position:relative; border-radius:18px; overflow:hidden; border:1px solid var(--line);
    box-shadow:0 16px 36px -22px rgba(22,33,58,.35);
  }
  .map-card iframe{width:100%; height:clamp(260px,46vw,420px); border:0; display:block; filter:saturate(.9);}
  [data-theme="dark"] .map-card iframe{filter:saturate(.8) brightness(.85) contrast(1.05);}
  .map-ctas{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;}
  .btn{font-weight:700; font-size:13.5px; padding:11px 15px; border-radius:10px; text-decoration:none; display:inline-flex; align-items:center; gap:7px;}
  .btn-ghost{border:1.5px solid var(--line); color:var(--text); background:var(--paper);}
  .btn-ghost:hover{border-color:var(--text);}

  /* ---- contact ---- */
  .contact{padding-top:6px; padding-bottom:50px;}
  .addr-strip{display:grid; gap:14px;}
  @media (min-width:760px){ .addr-strip{grid-template-columns:1fr 1fr 1fr;} }
  .addr-item{background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:16px 18px; display:flex; gap:12px; align-items:flex-start;}
  .addr-item .ic{width:34px; height:34px; border-radius:9px; background:#fdeee9; color:var(--coral-dark); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
  .addr-item b{display:block; font-size:12px; text-transform:uppercase; color:var(--grey); letter-spacing:.03em; margin-bottom:3px;}
  .addr-item span{font-size:14.5px; font-weight:600; color:var(--text);}
  .phone-rows, .hours-rows{display:flex; flex-direction:column; gap:4px; margin-top:2px;}
  .phone-row{display:flex; align-items:center; gap:6px; font-size:14.5px; font-weight:600; color:var(--text); text-decoration:none;}
  .phone-row svg{flex-shrink:0; color:var(--grey);}
  .phone-row:hover{color:var(--coral-dark);}
  .contact-person-row{
    display:flex; align-items:center; gap:6px; font-size:14.5px; font-weight:600; color:var(--text);
    margin-top:10px; padding-top:10px; border-top:1px solid var(--line);
  }
  .contact-person-row svg{flex-shrink:0; color:var(--grey);}
  .directions-link{display:flex; width:max-content; align-items:center; gap:6px; font-size:13.5px; font-weight:700; color:var(--coral-dark); text-decoration:none; margin-top:8px;}
  .directions-link svg{flex-shrink:0;}
  .directions-link:hover{text-decoration:underline;}
  .contact-footnote{margin:14px 2px 0; font-size:13px; font-style:italic; color:var(--grey);}

  /* ---- work grid ---- */
  .work{padding-top:14px; padding-bottom:50px;}
  .work-head{display:flex; align-items:flex-start; justify-content:space-between; gap:14px; margin-bottom:18px;}
  .work h2{font-size:clamp(20px,3vw,26px); margin:0 0 6px;}
  .work .sub{color:var(--grey); font-size:14.5px; margin:0;}
  .more-photos-btn{flex-shrink:0; cursor:pointer;}
  .more-photos-btn svg{color:var(--coral-dark);}
  .work-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:10px;}
  .work-grid picture{display:block;}
  @media (min-width:700px){ .work-grid{grid-template-columns:repeat(4,1fr);} }
  .work-grid img{
    width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:12px; border:1px solid var(--line);
    cursor:pointer; display:block; transition:opacity 150ms ease, box-shadow 150ms ease;
    box-shadow:0 10px 22px -12px rgba(22,33,58,.35), 0 2px 6px -2px rgba(22,33,58,.18);
  }
  .work-grid img:hover{opacity:.88; box-shadow:0 14px 28px -12px rgba(22,33,58,.42), 0 3px 8px -2px rgba(22,33,58,.22);}
  .work > .more-photos-btn{display:flex; margin:18px auto 0;}

  /* ---- lightbox: full view of a photo, opens on tap ---- */
  .lightbox{
    position:fixed; inset:0; z-index:200; background:rgba(8,11,20,.8);
    display:flex; align-items:center; justify-content:center; padding:24px;
  }
  .lightbox[hidden]{display:none;}
  .lightbox-inner{
    position:relative; width:100%; max-width:680px; max-height:88vh; background:var(--paper);
    border-radius:16px; overflow:hidden; display:flex; flex-direction:column;
  }
  .lb-media{position:relative; min-height:45vh; max-height:70vh; background:#0c1020;}
  .lb-picture{display:contents;}
  #lb-img{width:100%; height:100%; max-height:70vh; object-fit:contain; display:block;}
  .lb-spinner{
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:34px; height:34px; border:3px solid rgba(255,255,255,.25); border-top-color:#fff;
    border-radius:50%; animation:lb-spin .8s linear infinite; opacity:0; transition:opacity .15s; pointer-events:none;
  }
  .lightbox.lb-loading .lb-spinner{opacity:1;}
  @keyframes lb-spin{ to{ transform:translate(-50%,-50%) rotate(360deg); } }
  .lightbox-footer{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:16px 18px; background:var(--paper);}
  .lb-enquire-text{display:flex; flex-direction:column; gap:2px; min-width:0;}
  .lb-enquire-text .lb-tamil{font-weight:700; font-size:15px; color:var(--text);}
  .lb-enquire-text .lb-english{font-weight:600; font-size:12.5px; color:var(--grey);}
  .lb-close{
    position:absolute; top:10px; right:10px; width:36px; height:36px; padding:0; box-sizing:border-box; border-radius:50%;
    background:rgba(10,14,26,.65); color:#fff; border:0; cursor:pointer;
    box-shadow:0 0 0 1.5px rgba(255,255,255,.45), 0 2px 8px rgba(0,0,0,.4);
    display:flex; align-items:center; justify-content:center; z-index:1;
  }
  .lb-close:hover{background:rgba(10,14,26,.85);}
  .lb-nav{
    position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; padding:0; box-sizing:border-box; border-radius:50%;
    background:rgba(10,14,26,.65); color:#fff; border:0; cursor:pointer;
    box-shadow:0 0 0 1.5px rgba(255,255,255,.45), 0 2px 8px rgba(0,0,0,.4);
    display:flex; align-items:center; justify-content:center; z-index:1;
  }
  .lb-nav:hover{background:rgba(10,14,26,.85);}
  .lb-prev{left:10px;}
  .lb-next{right:10px;}
  .enquire-btn{
    background:var(--wa); color:#fff; border:0; font-weight:700; font-size:13.5px; padding:11px 16px; border-radius:10px;
    display:flex; align-items:center; justify-content:center; gap:4px; cursor:pointer; white-space:nowrap; flex-shrink:0;
  }
  .enquire-btn:hover{background:var(--wa-dark);}
  .enquire-btn img{width:24px; height:24px;}

  @media (max-width:759px){
    /* full-bleed on mobile so the photo gets the screen instead of being boxed in with margins */
    .lightbox{padding:0;}
    .lightbox-inner{width:100%; height:100%; max-width:100%; max-height:100%; border-radius:0;}
    .lb-media{flex:1; min-height:0; max-height:none;}
    #lb-img{max-height:none;}
    .lb-close{top:calc(10px + env(safe-area-inset-top));}
    .lightbox-footer{
      flex-direction:column; align-items:stretch; gap:10px;
      padding:14px 18px calc(14px + env(safe-area-inset-bottom));
    }
    .lb-enquire-text .lb-tamil{font-size:13.5px;}
    .lb-enquire-text .lb-english{font-size:11.5px;}
    .enquire-btn{width:100%; padding:13px 16px;}
  }

  /* ---- services: pick your vehicle type ---- */
  .services{padding-top:6px; padding-bottom:50px;}
  .services .kicker{color:var(--coral-dark); font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:.04em; margin-bottom:8px;}
  .services h2{font-size:clamp(20px,3vw,26px); margin:0 0 18px;}
  .services-intro{font-size:14.5px; color:var(--grey); line-height:1.6; margin:22px 0 0; padding:0 6px;}
  .services-intro-en{font-size:13px; color:var(--grey); opacity:.8; line-height:1.6; margin:8px 0 0; padding:0 6px;}
  .svc-grid{display:grid; gap:14px; grid-template-columns:repeat(2,1fr);}
  @media (min-width:640px){ .svc-grid{grid-template-columns:repeat(5,1fr);} }
  .svc-card{
    background:var(--paper); border:1px solid var(--line); border-radius:16px; padding:20px 12px; text-align:center;
    text-decoration:none; color:var(--text); transition:transform .15s ease, box-shadow .15s ease;
  }
  .svc-card:hover{transform:translateY(-3px); box-shadow:0 14px 30px -16px rgba(22,33,58,.25);}
  .svc-card .ic{
    width:52px; height:52px; border-radius:14px; background:#fdeee9; color:var(--coral-dark);
    display:flex; align-items:center; justify-content:center; margin:0 auto 12px;
  }
  .svc-card h3{font-size:14px; font-weight:700; margin:0;}

  footer{background:var(--paper); border-top:1px solid var(--line); padding:26px 0 90px;}
  footer .wrap{display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:14px; font-size:13px; color:var(--grey);}
  .footer-left{display:flex; flex-direction:column; gap:12px;}
  .footer-social{display:flex; gap:10px;}
  .footer-social a{
    width:32px; height:32px; border-radius:50%; background:var(--bg); color:var(--grey);
    display:flex; align-items:center; justify-content:center; transition:background 150ms ease, color 150ms ease;
  }
  .footer-social a:hover{background:var(--ink); color:#fff;}
  .footer-social svg{width:16px; height:16px;}

  /* ---- mobile sticky bar ---- */
  .stickybar{
    position:fixed; left:0; right:0; bottom:0; z-index:30; display:flex; gap:10px;
    background:var(--paper); border-top:1px solid var(--line); padding:10px 14px; box-shadow:0 -8px 24px -16px rgba(0,0,0,.2);
  }
  .stickybar a{flex:1; display:flex; align-items:center; justify-content:center; gap:7px; font-weight:700; font-size:13.5px; padding:13px; border-radius:11px; text-decoration:none;}
  .stickybar .call{background:var(--text); color:var(--bg);}
  .stickybar .wa{background:var(--wa); color:#fff;}
  .stickybar .dir{background:#fdeee9; color:var(--coral-dark);}
  @media (min-width:760px){ .stickybar{display:none;} }
  @media (max-width:759px){ footer{padding-bottom:90px;} }
