:root{
  --navy:#132A4D;
  --navy-deep:#0A1830;
  --brown:#6B4423;
  --brown-bright:#8A5A2E;
  --cream:#F3F1ED;
  --paper:#FBFAF8;
  --ink:#1C2430;
  --slate:#5B6472;
  --grey:#8A8D93;
  --line:#DAD7D1;
  --whatsapp:#25D366;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth; overflow-x:hidden; width:100%;}
body{overflow-x:hidden; max-width:100vw;}
body{font-family:'Inter',sans-serif; background:var(--paper); color:var(--ink); line-height:1.6; -webkit-font-smoothing:antialiased;}
/* Deterrent only — see script.js note. Keeps form fields selectable so the contact form still works normally. */
body{-webkit-user-select:none; -moz-user-select:none; user-select:none;}
input, textarea{-webkit-user-select:text; -moz-user-select:text; user-select:text;}
@media (prefers-reduced-motion: reduce){html{scroll-behavior:auto;} *{animation-duration:0.01ms !important; transition-duration:0.01ms !important;}}
h1,h2,h3,h4{font-family:'Fraunces',serif; font-weight:700; color:var(--navy-deep); line-height:1.15;}
.eyebrow{font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.14em; text-transform:uppercase; color:var(--brown); font-weight:600; display:flex; align-items:center; gap:10px; margin-bottom:14px;}
.eyebrow::before{content:''; width:26px; height:1px; background:var(--brown); display:inline-block;}
a{color:inherit; text-decoration:none;}
.wrap{max-width:1180px; margin:0 auto; padding:0 28px;}
ul{list-style:none;}
.knight-mark{display:inline-block; transform:translateY(2px); font-family:'Fraunces',serif;}

/* ===== TOP BAR ===== */
.topbar{background:var(--navy-deep); color:#B7BFCC; font-size:12px;}
.topbar-inner{display:flex; justify-content:space-between; align-items:center; padding:8px 28px; flex-wrap:wrap; gap:8px;}
.tb-item{white-space:nowrap;}

/* ===== NAV ===== */
header.nav{position:sticky; top:0; z-index:100; background:rgba(251,249,244,0.95); backdrop-filter:blur(10px); border-bottom:1px solid var(--line);}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 28px; max-width:1180px; margin:0 auto;}
.brand{display:flex; align-items:center; gap:10px;}
.logo-img{height:64px; width:auto; display:block;}
.footer-logo-img{background:transparent; padding:12px 18px; border-radius:2px; height:84px;}
nav.links{display:flex; gap:26px; align-items:center;}
nav.links > a{font-size:14px; font-weight:500; color:var(--ink); position:relative; padding:4px 0;}
nav.links > a::after{content:''; position:absolute; left:0; bottom:0; height:2px; width:0; background:var(--brown); transition:width .25s ease;}
nav.links > a:hover::after{width:100%;}
.drop{position:relative;}
.drop > a{font-size:14px; font-weight:500; cursor:pointer;}
.drop-menu{position:absolute; top:100%; left:0; background:var(--paper); border:1px solid var(--line); min-width:220px; padding:8px 0; opacity:0; pointer-events:none; transform:translateY(6px); transition:all .2s ease; box-shadow:0 12px 30px rgba(10,24,48,0.12);}
.drop:hover .drop-menu{opacity:1; pointer-events:auto; transform:translateY(0);}
.drop-menu a{display:block; padding:9px 18px; font-size:13.5px; color:var(--ink);}
.drop-menu a:hover{background:var(--cream); color:var(--brown);}
.nav-enquire{display:flex; flex-direction:column; font-size:11px; color:var(--slate); text-align:right; gap:1px;}
.nav-enquire span{font-family:'IBM Plex Mono',monospace; letter-spacing:0.08em; text-transform:uppercase; font-size:10px; margin-bottom:2px;}
.nav-enquire a{font-weight:700; color:var(--navy-deep); font-size:13px; line-height:1.3;}
.menu-toggle{display:none; background:none; border:none; font-size:24px; color:var(--navy-deep); cursor:pointer;}

/* ===== BUTTONS ===== */
.btn{display:inline-flex; align-items:center; gap:8px; font-size:13.5px; font-weight:600; padding:12px 22px; border-radius:2px; border:1px solid transparent; cursor:pointer; transition:all .2s ease; font-family:'Inter',sans-serif;}
.btn-primary{background:var(--navy-deep); color:var(--paper);}
.btn-primary:hover{background:var(--brown);}
.btn-outline{border-color:var(--navy-deep); color:var(--navy-deep);}
.btn-outline:hover{background:var(--navy-deep); color:var(--paper);}
.btn-wa{background:var(--whatsapp); color:#fff;}
.btn-wa:hover{filter:brightness(1.08);}
.btn-dashed{border:1.5px dashed var(--brown); color:var(--brown); font-weight:700; background:transparent;}
.btn-dashed:hover{background:var(--brown); color:var(--paper); border-style:solid;}
.btn-dashed-light{border:1.5px dashed rgba(255,255,255,0.6); color:var(--paper); font-weight:700; background:transparent;}
.btn-dashed-light:hover{background:var(--paper); color:var(--navy-deep); border-style:solid;}
.btn-link{display:inline-flex; align-items:center; gap:10px; color:var(--brown); font-weight:700; font-size:14px; margin-top:8px;}
.btn-link .arrow{display:inline-block; width:26px; height:1.5px; background:var(--brown); position:relative;}

section{padding:86px 0;}
.section-head{max-width:640px; margin-bottom:52px;}
.section-head h2{font-size:clamp(28px,3.4vw,38px); margin-top:2px;}
.section-head p{color:var(--slate); margin-top:14px; font-size:15.5px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head.center .eyebrow{justify-content:center;}
.section-head.center .eyebrow::before{display:none;}

/* ===== HERO ===== */
.hero{position:relative; background:var(--paper); border-bottom:1px solid var(--line); padding:0; overflow:hidden;}
.hero-rail{
  position:absolute; left:28px; top:70px; display:flex; flex-direction:column; gap:26px; z-index:5;
  font-family:'IBM Plex Mono',monospace; font-size:13px; color:var(--line); font-weight:600; cursor:pointer;
}
.hero-rail .rnum{transition:color .2s ease;}
.hero-rail .rnum.active{color:var(--brown);}
.hero-rail .rnum::after{content:''; display:block; width:1px; height:20px; background:var(--line); margin:8px auto 0;}
.hero-rail .rnum:last-child::after{display:none;}
.hero-wrap{position:relative; display:grid; grid-template-columns:1fr 1fr; align-items:center; min-height:620px; padding-top:70px; padding-bottom:70px; padding-left:70px;}
.hero-slide{display:none; max-width:480px;}
.hero-slide.active{display:block; animation:fadeUp .5s ease;}
@keyframes fadeUp{from{opacity:0; transform:translateY(14px);} to{opacity:1; transform:translateY(0);}}
.hero-slide h1{font-size:clamp(34px,4.4vw,52px); color:var(--brown); font-weight:800; margin-bottom:14px;}
.hero-sub{font-size:15.5px; color:var(--ink); font-weight:600; margin-bottom:16px;}
.hero-desc{font-size:14.5px; color:var(--slate); margin-bottom:30px; max-width:420px;}
.hero-visual{position:relative; height:480px; display:flex; align-items:center; justify-content:center; overflow:hidden;}
.hero-photo{
  position:absolute; inset:0; width:100%; height:100%; object-fit:contain; opacity:0;
  transition:opacity 0.8s ease;
}

.hero-photo.active{opacity:1;}
.hero-visual::after{
  content:''; position:absolute; inset:0; background:transparent; pointer-events:none;ba
}

/* ===== ABOUT ===== */
.about-top{display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px; margin-bottom:60px;}
.about-copy{color:var(--slate); font-size:15px; margin-bottom:14px;}

/* Vertical accordion service tabs */
.accordion-tabs{display:flex; gap:2px; height:420px; border:1px solid var(--line); max-width:1180px; margin:0 auto; padding:0 28px;}
.acc-tab{
  position:relative; flex:1; background:var(--brown); overflow:hidden; cursor:pointer;
  transition:flex 0.45s ease, background .3s ease;
}
.acc-tab.active{flex:3.4; background:var(--navy-deep);}
.acc-label{
  position:absolute; left:0; top:0; bottom:0; width:70px; display:flex; align-items:center; justify-content:center;
  writing-mode:vertical-rl; transform:rotate(180deg); color:var(--paper); font-family:'IBM Plex Mono',monospace;
  font-size:13px; letter-spacing:0.1em; text-transform:uppercase; font-weight:600;
}
.acc-tab.active .acc-label{color:var(--grey);}
.acc-body{
  position:absolute; left:70px; right:0; top:0; bottom:0; padding:36px 34px; opacity:0; transition:opacity .3s ease .1s;
  display:flex; flex-direction:column; justify-content:center;
}
.acc-tab.active .acc-body{opacity:1;}
.acc-body h4{color:var(--paper); font-size:22px; margin-bottom:12px;}
.acc-body p{color:#C7CDD8; font-size:14.5px; max-width:380px;}

/* ===== QUOTE BANNER ===== */
.quote-banner{
  background:var(--navy-deep);
  background-image:radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size:14px 14px;
  padding:60px 0;
}
.quote-inner{display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;}
.quote-inner h2{color:var(--paper); font-size:clamp(20px,2.4vw,28px); max-width:680px;}

/* ===== VALUE TAGS ===== */
.value-tags-section{padding:50px 0; background:var(--cream);}
.value-tags{display:flex; flex-wrap:wrap; gap:14px; justify-content:center;}
.value-tags span{
  display:flex; align-items:center; gap:10px; border:1.5px dashed var(--brown); color:var(--navy-deep);
  font-size:14px; font-weight:600; padding:12px 22px;
}
.value-tags .dot{width:8px; height:8px; border-radius:50%; border:2px solid var(--brown); display:inline-block;}

/* ===== TRUST ===== */
.trust{background:var(--paper);}
.trust-grid{display:grid; grid-template-columns:1.2fr 0.8fr; gap:60px; align-items:center;}
.trust-lead{font-weight:600; color:var(--ink); margin-top:14px; margin-bottom:18px; font-size:15px;}
.checklist-cols{display:grid; grid-template-columns:1fr 1fr; gap:0 30px;}
.checklist li{font-size:14.5px; padding:12px 0; display:flex; align-items:center; gap:10px;}
.checklist .dash{color:var(--brown); font-weight:700;}
.trust-visual{display:flex; align-items:center; justify-content:center;}
.trust-plate{
  width:100%; aspect-ratio:4/3; border:1px solid var(--line); overflow:hidden;
}
.trust-plate img{width:100%; height:100%; object-fit:cover; display:block;}

/* ===== SERVICE GALLERY ===== */
/*==================================================
                SERVICES
==================================================*/

.service-gallery{
    background:var(--cream);
    padding:100px 0;
}

.service-gallery .section-head{
    max-width:760px;
    margin:0 auto 30px;
}

.service-gallery .section-head p{
    font-size:16px;
    color:var(--slate);
    line-height:1.8;
}

/*==========================================
    TOP FEATURES
==========================================*/

.service-features{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;

    margin:40px 0 55px;

}

.service-features span{

    background:#fff;

    border:1px solid rgba(19,42,77,.08);

    border-radius:30px;

    padding:10px 18px;

    font-size:13px;

    font-weight:600;

    color:var(--navy);

    box-shadow:0 6px 18px rgba(0,0,0,.04);

}

/*==========================================
            GRID
==========================================*/

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:32px;

}

/*==========================================
            CARD
==========================================*/

.gallery-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(10,24,48,.08);

    transition:.35s;

    display:flex;

    flex-direction:column;

    height:100%;

}

.gallery-card:hover{

    transform:translateY(-8px);

    box-shadow:0 24px 55px rgba(10,24,48,.15);

}

/*==========================================
            IMAGE
==========================================*/

.service-image{

    position:relative;

    overflow:hidden;

    height:260px;

    background:#0a1830;

}

.service-image .si-bg{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    filter:blur(20px) brightness(.85);

    transform:scale(1.2);

}

.service-image .si-fg{

    position:relative;

    z-index:1;

    width:100%;

    height:100%;

    object-fit:contain;

    transition:transform .45s ease;

}

.gallery-card:hover .si-fg{

    transform:scale(1.05);

}

/*==========================================
        SERVICE TAG
==========================================*/

.service-tag{
    position:absolute;
    top:16px;
    right:5px;
    z-index:4;
    background:rgba(19,42,77,.95);
    color:#ffffff;
    padding:5px 8px;
    border-radius:20px;
    font-size:9px;
    font-weight:600;
    letter-spacing:0.07em;
    text-transform:uppercase;
    opacity:1;
    visibility:visible;
    pointer-events:none;
}

/*==========================================
            CONTENT
==========================================*/

.gc-body{

    padding:28px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.gc-body h4{

    color:var(--navy);

    font-size:23px;

    margin-bottom:12px;

}

.gc-body p{

    color:var(--slate);

    font-size:15px;

    line-height:1.8;

    margin-bottom:18px;

}

/*==========================================
            LIST
==========================================*/

.gc-body ul{

    list-style:none;

    margin:0;

    padding:0;

    display:flex;

    flex-direction:column;

    gap:10px;

}

.gc-body li{

    position:relative;

    padding-left:26px;

    font-size:14px;

    color:var(--ink);

}

.gc-body li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--brown);

    font-weight:700;

}

/*==========================================
        BOTTOM BAR
==========================================*/

.gc-body::after{

    content:"";

    display:block;

    width:60px;

    height:3px;

    background:var(--brown);

    border-radius:3px;

    margin-top:22px;

}

/*==========================================
            RESPONSIVE
==========================================*/

@media(max-width:992px){

.gallery-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.service-gallery{

    padding:70px 0;

}

.gallery-grid{

    grid-template-columns:1fr;

}

.service-image{

    height:240px;

}

.gc-body{

    padding:22px;

}

.gc-body h4{

    font-size:21px;

}

.service-features{

    gap:10px;

}

.service-features span{

    font-size:12px;

    padding:8px 14px;

}

}

@media(max-width:480px){

.gallery-card img{

    height:220px;

}

.service-tag{

    font-size:10px;

}

.gc-body p{

    font-size:14px;

}

}

/* ===== IDENTITY ===== */
//* ===== ESCALATION MATRIX ===== */
.escalation{background:var(--cream);}
.escalation-flow{display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:8px 4px;}
.esc-node{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px;
  background:var(--navy-deep); color:var(--paper); width:150px; height:110px; padding:12px; text-align:center;
  border-bottom:3px solid var(--brown);
}
.esc-rank{font-family:'Fraunces',serif; font-weight:800; font-size:22px; color:var(--paper);}
.esc-title{font-family:'IBM Plex Mono',monospace; font-size:10.5px; letter-spacing:0.03em; color:#C7CDD8; line-height:1.4;}
.esc-arrow{font-size:26px; color:var(--brown); font-weight:700; flex-shrink:0; padding:0 2px;}

.identity-band{position:relative; padding:0;}
.identity-bg{height:340px; background:linear-gradient(0deg, rgba(10,24,48,0.55), rgba(10,24,48,0.25)), url('../images/qrt-grey-scorpio.jpg') center/cover no-repeat;}
.identity-card{
  position:relative; background:var(--paper); border:1px solid var(--line); max-width:760px; margin:-220px auto 60px;
  padding:44px 48px; z-index:2;
}
.identity-copy{color:var(--slate); font-size:15px; margin-top:14px; max-width:600px;}
.identity-divider{border-top:1px dashed var(--line); margin:28px 0;}
.identity-stat{display:flex; align-items:baseline; gap:16px;}
.istat-num{font-family:'Fraunces',serif; font-size:40px; font-weight:800; color:var(--brown);}
.istat-text{font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:0.06em; color:var(--slate); text-transform:uppercase; max-width:260px;}

/* ===== TRAINING ===== */
.training-grid{display:grid; grid-template-columns:1fr 1fr; gap:0; border:1px solid var(--line);}
.training-row{padding:22px 28px; border-bottom:1px solid var(--line); display:flex; gap:18px; align-items:baseline;}
.training-col:first-child{border-right:1px solid var(--line);}
.training-row .knight-mark{color:var(--grey); font-size:16px; flex-shrink:0;}
.training-row h4{font-size:15.5px; margin-bottom:4px; text-transform:uppercase; letter-spacing:0.02em;}
.training-row p{font-size:13px; color:var(--slate);}
.training-highlights{background:var(--navy-deep); color:var(--paper); padding:30px 28px; height:100%;}
.training-highlights h4{color:var(--grey); font-size:13px; font-family:'IBM Plex Mono',monospace; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:16px;}
.training-highlights li{font-size:14px; padding:8px 0 8px 22px; position:relative; color:#D6DBE4; border-top:1px solid rgba(255,255,255,0.1);}
.training-highlights li:first-child{border-top:none;}
.training-highlights li::before{content:'♞'; position:absolute; left:0; color:var(--grey); font-size:12px; top:9px;}

/* ===== CLIENTS ===== */
.clients{border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding-bottom:60px;}

/* ===== LOGO MARQUEE (auto-scroll) ===== */
.marquee{
  position:relative; overflow:hidden; width:100%;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track{
  display:flex; align-items:center; gap:70px; width:max-content;
  animation:marquee-scroll 28s linear infinite;
}
.marquee:hover .marquee-track{animation-play-state:paused;}
.marquee-logo{flex:0 0 auto; height:60px; display:flex; align-items:center; justify-content:center;}
.marquee-logo img{max-height:100%; max-width:150px; width:auto; object-fit:contain; filter:grayscale(35%); opacity:0.85; transition:filter .25s ease, opacity .25s ease;}
.marquee-logo img:hover{filter:grayscale(0%); opacity:1;}
@keyframes marquee-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{animation:none;}
  .marquee{overflow-x:auto;}
}

/* ===== CONTACT ===== */
.contact{background:var(--navy-deep); color:var(--paper);}
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px;}
.contact h2{color:var(--paper);}
.contact-lead{color:#C7CDD8; margin-top:14px; font-size:15px; max-width:440px;}
.contact-actions{display:flex; gap:14px; margin-top:32px; flex-wrap:wrap;}
.contact .btn-outline{border-color:rgba(255,255,255,0.4); color:var(--paper);}
.contact-details{margin-top:40px; display:grid; gap:22px;}
.cdetail{display:flex; gap:16px;}
.cdetail .knight-mark{color:var(--grey); font-size:18px; flex-shrink:0;}
.cdetail h5{font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--grey); margin-bottom:4px;}
.cdetail p{font-size:14.5px; color:#DDE1E8;}
.contact-card{background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.14); padding:40px;}
.contact-card h3{color:var(--paper); font-size:22px; margin-bottom:10px;}
.contact-card p{color:#B7BFCC; font-size:14px; margin-bottom:26px;}
.form-row{margin-bottom:16px;}
.form-row label{display:block; font-size:12px; color:var(--grey); font-family:'IBM Plex Mono',monospace; letter-spacing:0.06em; margin-bottom:6px; text-transform:uppercase;}
.form-row input, .form-row textarea{width:100%; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.2); padding:12px 14px; color:var(--paper); font-family:'Inter',sans-serif; font-size:14px;}
.form-row input::placeholder, .form-row textarea::placeholder{color:#7C8798;}
.form-row input:focus, .form-row textarea:focus{outline:2px solid var(--grey); outline-offset:1px;}

/*==================================================
                    FOOTER
==================================================*/

.site-footer{

    background:#08121F;

    color:#B7BFCC;

    padding:75px 0 0;

}

.footer-grid{

    display:grid;

    grid-template-columns:1.45fr .8fr 1fr;

    gap:70px;

    padding-bottom:55px;

}

.footer-brand{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:30px;

}

.footer-horse{

    height:80px;

    width:auto;

}

.footer-main-logo{

    height:150px;

    width:auto;

}

.footer-about p{

    max-width:420px;

    line-height:1.8;

}

.footer-col h5{

    color:#fff;

    font-family:'IBM Plex Mono', monospace;

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:.18em;

    margin-bottom:22px;

}

.footer-col a{

    display:block;

    color:#B7BFCC;

    text-decoration:none;

    margin-bottom:13px;

    transition:.25s;

}

.footer-col a:hover{

    color:#fff;

}

.footer-contact-block{

    margin-bottom:28px;

}

.footer-block-title{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:14px;

    color:#fff;

    font-size:13px;

    letter-spacing:.15em;

    text-transform:uppercase;

    font-weight:600;

}

.footer-block-title .knight-mark{

    color:var(--brown);

}

.footer-contact-block a{
    display:inline-block;
    margin-left:0;
    margin-right:16px;
    line-height:1.7;
}

.footer-contact-block p{

    margin-left:24px;

    color:#8891A0;

    line-height:1.8;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:22px 0;

}

.footer-bottom-inner{

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#6B7688;

    font-size:13px;

}

.footer-tagline{

    display:flex;

    align-items:center;

    gap:8px;

}

.footer-tagline .knight-mark{

    color:var(--brown);

}

/*==========================
        Mobile
==========================*/

@media(max-width:900px){

.footer-grid{

    grid-template-columns:1fr;

    gap:45px;

}

.footer-about{

    text-align:center;

}

.footer-brand{

    justify-content:center;

}

.footer-about p{

    margin:auto;

}

.footer-bottom-inner{

    flex-direction:column;

    gap:14px;

    text-align:center;

}

}

/* ===== WHATSAPP FLOAT ===== */
.wa-float{position:fixed; bottom:26px; right:26px; z-index:200; background:var(--whatsapp); color:#fff; width:60px; height:60px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 24px rgba(37,211,102,0.45); transition:transform .2s ease;}
.wa-float:hover{transform:scale(1.08);}
.wa-float svg{width:30px; height:30px;}
.wa-tooltip{position:absolute; right:70px; top:50%; transform:translateY(-50%); background:var(--navy-deep); color:#fff; padding:8px 14px; font-size:12.5px; white-space:nowrap; opacity:0; pointer-events:none; transition:opacity .2s ease; font-family:'Inter',sans-serif; font-weight:500;}
.wa-float:hover .wa-tooltip{opacity:1;}

/* ===== RESPONSIVE ===== */
@media (max-width:940px){
  .escalation-flow{flex-direction:column;}
  .esc-arrow{transform:rotate(90deg); padding:2px 0;}
  .esc-node{width:220px;}
  .gallery-grid{grid-template-columns:1fr;}
  .topbar-inner{flex-direction:column; align-items:flex-start; gap:4px;}
  nav.links{display:none;}
  .menu-toggle{display:block;}
  .nav-enquire{display:none;}
  .hero-rail{display:none;}
  .drop-menu{
    position:static; opacity:1; pointer-events:auto; transform:none; box-shadow:none;
    border:none; border-left:2px solid var(--line); margin:6px 0 6px 4px; padding:2px 0 2px 14px;
    min-width:0; background:transparent;
  }
  .drop-menu a{padding:8px 0; font-size:13px; color:var(--slate);}
  .drop > a{pointer-events:none;}
  .hero-wrap{grid-template-columns:1fr; padding-left:28px; padding-right:28px; min-height:auto;}
  .hero-visual{order:-1; height:280px; margin-bottom:30px;}
  .ghost-text{font-size:70px;}
  .plate-knight{font-size:140px;}
  .about-top{grid-template-columns:1fr; gap:24px;}
  .accordion-tabs{flex-direction:column; height:auto;}
  .acc-tab{height:70px; flex:none !important;}
  .acc-tab.active{height:220px;}
  .acc-label{writing-mode:horizontal-tb; transform:none; width:auto; justify-content:flex-start; padding-left:20px;}
  .acc-body{left:0; top:60px; bottom:auto; padding:0 24px 24px;}
  .trust-grid{grid-template-columns:1fr; gap:36px;}
  .checklist-cols{grid-template-columns:1fr;}
  .identity-bg{height:200px;}
  .identity-card{margin-top:-140px; padding:28px 26px;}
  .training-grid{grid-template-columns:1fr;}
  .training-col:first-child{border-right:none;}
  .marquee-logo{height:44px;}
  .marquee-logo img{max-width:110px;}
  .contact-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr; gap:30px;}
  .footer-bottom-inner{flex-direction:column; gap:8px; text-align:center;}
}
@media (max-width:940px) and (min-width:601px){
  .gallery-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:600px){
  .quote-inner{flex-direction:column; align-items:flex-start;}
  .contact-card{padding:26px;}
  .value-tags span{padding:10px 16px; font-size:13px;}
}
