:root{
    --ink:#11233D;
    --teal-deep:#1D3557;
    --teal:#2A9D8F;
    --teal-soft:#6C757D;
    --brass:#27BBAD;
    --brass-light:#A8DADC;
    --paper:#F1FAEE;
    --paper-alt:#CCE7D4;
    --sage:#A8DADC;
    --white:#FFFFFF;
    --line:rgba(17,35,61,0.14);
    --shadow: 0 20px 50px -25px rgba(29,53,87,0.35);
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--paper);
    color:var(--ink);
    font-family:'Inter',sans-serif;
    -webkit-font-smoothing:antialiased;
    line-height:1.6;
  }
  h1,h2,h3,h4{
    font-family:'Fraunces',serif;
    font-weight:600;
    margin:0;
    color:var(--teal-deep);
    letter-spacing:-0.01em;
  }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .eyebrow{
    font-family:'IBM Plex Mono',monospace;
    font-size:1.3rem;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:var(--brass);
    font-weight:600;
    line-height:1.3;
  }
  .wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
  section{position:relative;}
  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 26px;
    border-radius:3px;
    font-family:'Inter',sans-serif;
    font-weight:600;
    font-size:0.95rem;
    cursor:pointer;
    border:1px solid transparent;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  }
  .btn:hover{transform:translateY(-2px);}
  .btn:focus-visible{outline:3px solid var(--brass-light); outline-offset:2px;}
  .btn-primary{background:var(--teal-deep); color:var(--paper);}
  .btn-primary:hover{background:var(--ink); box-shadow:var(--shadow);}
  .btn-ghost{background:var(--white); color:var(--teal-deep); border-color:var(--line);}
  .btn-ghost:hover{border-color:var(--teal-deep);}
  .btn-brass{background:var(--brass); color:var(--ink);}
  .btn-brass:hover{background:var(--brass-light); box-shadow:var(--shadow);}

  /* ===== HEADER ===== */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(241,250,238,0.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 0;
  }
  .brand{display:flex; align-items:center; gap:12px; font-family:'Fraunces',serif; font-weight:600; font-size:1.15rem; color:var(--teal-deep);}
  .brand-mark{
    width:38px; height:38px; border-radius:50%;
    border:1.5px solid var(--teal-deep);
    display:flex; align-items:center; justify-content:center;
    font-family:'IBM Plex Mono',monospace; font-size:0.68rem; font-weight:500;
    color:var(--teal-deep); letter-spacing:0.02em;
  }
  .navlinks{display:flex; align-items:center; gap:34px;}
  .nav-item{position:relative;}
  .nav-item > a{font-size:1rem; font-weight:700; color:var(--ink); opacity:0.92; transition:opacity .15s;}
  .nav-item > a:hover{opacity:1;}
  .dropdown{
    display:none;
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    min-width:220px;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:8px;
    box-shadow:0 12px 32px rgba(29,53,87,0.15);
    padding:8px 0;
    z-index:100;
  }
  .has-dropdown:hover > .dropdown{display:block;}
  .dropdown a{
    display:block;
    padding:10px 20px;
    font-size:0.9rem;
    font-weight:500;
    color:var(--ink);
    opacity:0.88;
    transition:background .15s, opacity .15s;
    white-space:nowrap;
  }
  .dropdown a:hover{
    background:var(--paper);
    opacity:1;
  }
  .nav-cta{display:flex; align-items:center; gap:22px;}
  .nav-cta .btn{white-space:nowrap;}
  .book-short{display:none;}
  .menu-toggle{display:none; background:none; border:none; cursor:pointer; padding:6px;}
  .menu-toggle span{display:block; width:24px; height:2px; background:var(--ink); margin:5px 0;}

  /* ===== MOBILE DRAWER ===== */
  .drawer-scrim{
    display:none;
    position:fixed; inset:0;
    background:rgba(0,0,0,0.4);
    z-index:200;
  }
  .drawer-scrim:not([hidden]){display:block;}
  .drawer{
    position:fixed; top:0; right:0;
    width:min(360px, 85vw);
    height:100vh;
    background:var(--white);
    z-index:210;
    transform:translateX(100%);
    transition:transform .3s ease;
    display:flex; flex-direction:column;
    box-shadow:-4px 0 24px rgba(0,0,0,0.15);
    overflow-y:auto;
  }
  .drawer.open{transform:translateX(0);}
  .drawer-head{
    display:flex; align-items:center; justify-content:space-between;
    padding:20px 24px;
    border-bottom:1px solid var(--line);
  }
  .drawer-logo{height:32px; width:auto;}
  .drawer-close{
    background:none; border:none; cursor:pointer;
    font-size:1.8rem; color:var(--ink);
    padding:4px 8px; line-height:1;
  }
  .drawer-nav{
    display:flex; flex-direction:column;
    padding:16px 24px;
    flex:1;
  }
  .drawer-nav a{
    padding:14px 0;
    font-size:1.05rem; font-weight:600;
    color:var(--ink);
    border-bottom:1px solid var(--line);
    transition:color .15s;
  }
  .drawer-nav a:last-child{border-bottom:none;}
  .drawer-nav a:hover{color:var(--brass);}
  .drawer-cta{
    margin:16px 24px 24px;
    text-align:center;
    justify-content:center;
  }

  /* ===== HERO ===== */
  .hero{padding:88px 0 76px;}
  .hero-grid{display:grid; grid-template-columns:1.05fr 0.95fr; gap:60px; align-items:center;}
  .hero-eyebrow{
    display:block;
    font-size:clamp(1.3rem, 1.9vw, 1.6rem);
    line-height:1.3;
    color:var(--teal-deep);
    font-weight:700;
    letter-spacing:0.01em;
    margin-bottom:10px;
  }
  .hero h1{font-size:clamp(2.1rem, 3.4vw, 3.2rem); line-height:1.12; margin:18px 0 22px;}
  .hero-h1-text{color:var(--teal);}
  .hero h1 em{font-style:italic; color:var(--teal-deep); font-weight:500; font-size:0.62em; white-space:nowrap; display:inline-block;}
  @media (max-width:480px){
    .hero h1 em{white-space:normal; font-size:0.7em;}
  }
  .hero p.lead{font-size:1.08rem; color:rgba(17,35,61,0.78); max-width:520px; margin-bottom:32px;}
  .hero-actions{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:36px;}
  .hero-note{font-size:0.85rem; color:rgba(17,35,61,0.6); font-family:'IBM Plex Mono',monospace;}

  /* hero video visual */
  .hero-video-container{
    position:relative;
    width:100%;
    aspect-ratio:6/5;
    overflow:hidden;
    border-radius:6px;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    background-color:#1D3557;
  }
  .hero-bg-video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    pointer-events:none;
  }

  /* ===== TRUST STRIP ===== */
  .trust-strip{
    background:var(--teal-deep);
    padding:26px 0;
  }
  .trust-list{
    display:flex; flex-wrap:nowrap; gap:14px; justify-content:center;
    overflow-x:auto;
    padding-bottom:2px;
    scrollbar-width:none;
  }
  .trust-list::-webkit-scrollbar{display:none;}
  .trust-chip{
    display:flex; align-items:center; gap:8px;
    border:1px dashed rgba(241,250,238,0.35);
    border-radius:20px;
    padding:9px 18px;
    color:var(--paper);
    font-size:0.85rem;
    font-family:'IBM Plex Mono',monospace;
    letter-spacing:0.02em;
    white-space:nowrap;
    flex-shrink:0;
  }
  .trust-chip svg{flex-shrink:0;}

  /* ===== WHY CHOOSE US ===== */
  .why{padding:96px 0 88px;}
  .section-head{max-width:640px; margin-bottom:56px;}
  .section-head h2{font-size:clamp(1.7rem,2.6vw,2.35rem); margin-top:14px;}
  .section-head p{color:rgba(17,35,61,0.72); margin-top:16px; font-size:1.02rem;}
  .why-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:28px;}
  .why-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:6px;
    padding:30px 24px;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .why-card:hover{transform:translateY(-4px); box-shadow:var(--shadow);}
  .why-icon{
    width:44px; height:44px; border-radius:50%;
    background:var(--sage);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:18px;
  }
  .why-card h3{font-size:1.08rem; margin-bottom:10px;}
  .why-card p{font-size:0.92rem; color:rgba(17,35,61,0.68); margin:0;}

  /* ===== ABOUT ===== */
  .about{background:var(--paper-alt); padding:96px 0;}
  .about-grid{display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:center;}
  .about-visual{
    background:var(--teal-deep);
    border-radius:8px;
    padding:40px 32px;
    color:var(--paper);
    position:relative;
    overflow:hidden;
  }
  .about-visual::after{
    content:"";
    position:absolute; right:-40px; bottom:-40px;
    width:180px; height:180px;
    border:1px solid rgba(241,250,238,0.15);
    border-radius:50%;
  }
  .about-visual .eyebrow{color:var(--brass-light); margin-bottom:18px;}
  .about-visual h3{color:var(--paper); font-size:1.4rem; margin-bottom:14px;}
  .about-visual p{color:rgba(241,250,238,0.78); font-size:0.95rem; margin-bottom:28px;}
  .about-stat-row{display:flex; gap:26px; border-top:1px solid rgba(241,250,238,0.18); padding-top:22px;}
  .about-stat b{display:block; font-family:'Fraunces',serif; font-size:1.3rem; color:var(--brass-light);}
  .about-stat span{font-size:0.78rem; color:rgba(241,250,238,0.65);}
  .about-copy h2{font-size:clamp(1.7rem,2.6vw,2.3rem); margin:14px 0 20px;}
  .about-copy p{color:rgba(17,35,61,0.76); font-size:1.02rem; margin-bottom:16px;}
  .check-list{list-style:none; margin:26px 0 0; padding:0; display:grid; gap:14px;}
  .check-list li{display:flex; align-items:flex-start; gap:12px; font-size:0.96rem; color:var(--ink);}
  .check-list svg{flex-shrink:0; margin-top:3px;}

  /* ===== HOW WE WORK ===== */
  .process{padding:96px 0;}
  .process-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:0; position:relative; margin-top:20px;}
  .process-grid::before{
    content:"";
    position:absolute; top:26px; left:8%; right:8%; height:1px;
    background:repeating-linear-gradient(90deg, rgba(17,35,61,0.28) 0 8px, transparent 8px 16px);
  }
  .step{padding:0 26px; position:relative;}
  .step-num{
    font-family:'IBM Plex Mono',monospace;
    font-size:1.1rem;
    font-weight:700;
    letter-spacing:0.04em;
    color:var(--brass);
    background:var(--paper);
    display:inline-block;
    padding-right:10px;
    position:relative; z-index:2;
    margin-bottom:26px;
  }
  .step h3{font-size:1.12rem; margin-bottom:10px;}
  .step p{font-size:0.92rem; color:rgba(17,35,61,0.68); margin:0;}

  /* ===== SERVICES PREVIEW ===== */
  .services{background:var(--white); padding:96px 0;}
  .services .section-head h2{color:var(--teal-deep);}
  .services .section-head p{color:rgba(17,35,61,0.72);}
  .services .eyebrow{color:var(--brass);}
  .svc-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
  .svc-card{
    background:var(--paper-alt);
    border:1px solid var(--line);
    border-radius:6px;
    padding:26px 24px;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .svc-card:hover{transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--brass);}
  a.svc-card{display:block; cursor:pointer;}
  a.svc-card:hover h3{color:var(--brass);}
  .svc-card .tag{
    font-family:'IBM Plex Mono',monospace; font-size:0.68rem; letter-spacing:0.06em; font-weight:600;
    color:var(--ink); text-transform:uppercase; display:inline-block;
    background:var(--brass-light); padding:4px 11px; border-radius:12px; margin-bottom:14px;
  }
  .svc-card h3{color:var(--teal-deep); font-size:1.05rem; margin-bottom:8px; font-weight:600; font-family:'Fraunces',serif;}
  .svc-card p{color:rgba(17,35,61,0.7); font-size:0.88rem; margin:0;}
  .services .section-head p{max-width:none;}
  @media (min-width:701px){
    .services .section-head p{white-space:nowrap;}
  }

  /* ===== INCORPORATION DETAIL PAGE ===== */
  .incorp-section{padding:96px 0; background:var(--paper);}
  .incorp-intro{display:grid; gap:20px; max-width:920px; margin-top:8px;}
  .incorp-intro p{font-size:0.98rem; color:rgba(17,35,61,0.75); margin:0;}
  .incorp-sub{margin-top:64px; margin-bottom:26px;}
  .incorp-sub h3{font-size:1.4rem; margin-top:10px;}
  .incorp-sub p{margin-top:12px; color:rgba(17,35,61,0.7); font-size:0.95rem;}
  .incorp-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
  .incorp-card{background:var(--white); border:1px solid var(--line); border-radius:6px; padding:26px 24px;}
  .incorp-card .tag{
    font-family:'IBM Plex Mono',monospace; font-size:0.68rem; letter-spacing:0.06em; font-weight:600;
    color:var(--ink); text-transform:uppercase; display:inline-block;
    background:var(--brass-light); padding:4px 11px; border-radius:12px; margin-bottom:14px;
  }
  .incorp-card h4{color:var(--teal-deep); font-size:1.02rem; margin-bottom:8px; font-weight:600; font-family:'Fraunces',serif;}
  .incorp-card p{color:rgba(17,35,61,0.7); font-size:0.88rem; margin:0;}
  .incorp-steps{display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; margin-top:20px;}
  .incorp-steps::before{
    content:"";
    position:absolute; top:26px; left:6%; right:6%; height:1px;
    background:repeating-linear-gradient(90deg, rgba(17,35,61,0.28) 0 8px, transparent 8px 16px);
  }
  .incorp-steps .step{padding:0 20px;}
  @media (max-width:980px){
    .incorp-grid{grid-template-columns:1fr 1fr;}
    .incorp-steps{grid-template-columns:1fr 1fr; gap:32px 0;}
    .incorp-steps::before{display:none;}
  }
  @media (max-width:700px){
    .incorp-grid{grid-template-columns:1fr;}
    .incorp-steps{grid-template-columns:1fr;}
  }

  /* ===== TESTIMONIALS ===== */
  .testimonials{padding:96px 0;}
  .test-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
  .test-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:6px;
    padding:32px 28px;
    display:flex; flex-direction:column;
    position:relative;
  }
  .test-mark{
    font-family:'Fraunces',serif;
    font-size:2.6rem;
    color:var(--brass-light);
    line-height:1;
    margin-bottom:6px;
  }
  .test-quote{
    font-size:0.96rem;
    color:rgba(17,35,61,0.82);
    flex-grow:1;
    margin-bottom:22px;
  }
  .test-foot{
    display:flex; align-items:center; gap:12px;
    border-top:1px dashed var(--line);
    padding-top:16px;
  }
  .test-avatar{
    width:38px; height:38px; border-radius:50%;
    background:var(--sage);
    display:flex; align-items:center; justify-content:center;
    font-family:'IBM Plex Mono',monospace; font-size:0.78rem; font-weight:500;
    color:var(--teal-deep); flex-shrink:0;
  }
  .test-name{font-size:0.92rem; font-weight:600; color:var(--teal-deep);}
  .test-loc{font-family:'IBM Plex Mono',monospace; font-size:0.72rem; color:rgba(17,35,61,0.55); text-transform:uppercase; letter-spacing:0.04em;}

  @media (max-width:980px){
    .test-grid{grid-template-columns:1fr;}
  }

  /* ===== CTA BANNER ===== */
  .cta-banner{
    background:var(--brass);
    padding:56px 0;
  }
  .cta-inner{display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;}
  .cta-inner h2{font-size:1.6rem; color:var(--ink); max-width:520px;}
  .cta-inner p{margin:8px 0 0; color:rgba(17,35,61,0.72); font-size:0.95rem;}

  /* ===== FOOTER ===== */
  footer{background:var(--ink); color:rgba(241,250,238,0.75); padding:64px 0 30px;}
  .foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:50px; padding-bottom:44px; border-bottom:1px solid rgba(241,250,238,0.12);}
  .foot-brand{display:flex; align-items:center; gap:10px; font-family:'Fraunces',serif; color:var(--paper); font-size:1.1rem; margin-bottom:14px;}
  .foot-grid p{font-size:0.9rem; line-height:1.7; max-width:320px;}
  .foot-col h4{color:var(--paper); font-family:'Inter',sans-serif; font-size:0.85rem; letter-spacing:0.05em; text-transform:uppercase; margin-bottom:18px; font-weight:600;}
  .foot-col a{display:block; font-size:0.9rem; margin-bottom:12px; color:rgba(241,250,238,0.7); transition:color .15s;}
  .foot-col a:hover{color:var(--brass-light);}
  .foot-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:24px; font-size:0.8rem; color:rgba(241,250,238,0.45); flex-wrap:wrap; gap:12px;}


  /* ===== BRAND LOGO ===== */
  .brand-logo{
    width:56px; height:auto;
    display:block;
  }
  .foot-logo{
    width:52px; height:auto;
    display:block;
    filter:brightness(0) invert(1);
    opacity:0.95;
  }

  /* ===== WHY THAILAND ===== */
  .why-thailand{background:var(--teal-deep); padding:96px 0;}
  .why-thailand .section-head h2{color:var(--paper);}
  .why-thailand .section-head p{color:rgba(241,250,238,0.72);}
  .why-thailand .eyebrow{color:var(--brass-light);}
  .wt-layout{display:grid; grid-template-columns:0.92fr 1.08fr; gap:40px; align-items:stretch;}
  /* Container box where the video sits */
  .map-video-container{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
    border-radius:12px; /* smooth rounded corners */
    border:1px solid rgba(241,250,238,0.18);
    box-shadow:var(--shadow);
    background-color:#1D3557; /* dark fallback background while loading */
  }
  /* Video element filling the container */
  .map-bg-video{
    width:100%;
    height:100%;
    object-fit:cover; /* fills container without stretching */
    display:block;
    pointer-events:none; /* prevents clicking or dragging the video */
  }
  .wt-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:16px;}
  .wt-card{
    background:rgba(241,250,238,0.05);
    border:1px solid rgba(241,250,238,0.16);
    border-radius:6px;
    padding:20px 18px;
    display:flex; flex-direction:column;
  }
  .wt-icon{width:38px; height:38px; border-radius:50%; background:rgba(39,187,173,0.18); display:flex; align-items:center; justify-content:center; margin-bottom:14px;}
  .wt-card h3{color:var(--paper); font-size:0.96rem; margin-bottom:6px;}
  .wt-card p{color:rgba(241,250,238,0.65); font-size:0.82rem; line-height:1.5; margin:0;}

  /* ===== VISA & IMMIGRATION ===== */
  .visa-section{padding:96px 0; background:var(--paper-alt);}
  .visa-table-wrap{overflow-x:auto; margin-bottom:64px; border:1px solid var(--line); border-radius:6px; background:var(--white);}
  table.visa-table{width:100%; border-collapse:collapse; font-size:0.9rem; min-width:640px;}
  .visa-table th{font-family:'IBM Plex Mono',monospace; font-size:0.68rem; text-transform:uppercase; letter-spacing:0.06em; color:var(--teal-deep); text-align:left; padding:14px 18px; border-bottom:2px solid var(--brass); background:var(--sage);}
  .visa-table td{padding:14px 18px; border-bottom:1px solid var(--line); font-size:0.87rem; color:rgba(17,35,61,0.8);}
  .visa-table tr:last-child td{border-bottom:none;}
  .visa-group{margin-bottom:56px;}
  .visa-group:last-child{margin-bottom:0;}
  .visa-group-head{margin-bottom:26px;}
  .visa-group-head h3{font-size:1.2rem; margin-top:8px;}
  .visa-cards{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
  .visa-card{background:var(--white); border:1px solid var(--line); border-radius:6px; overflow:hidden;}
  .visa-card-head{background:var(--teal-deep); color:var(--paper); padding:20px 22px;}
  .visa-card-head h4{color:var(--paper); font-size:1rem; margin:10px 0 0;}
  .visa-card-body{padding:20px 22px;}
  .visa-target{font-size:0.82rem; color:rgba(17,35,61,0.6); margin-bottom:14px; font-weight:600;}
  .visa-list{list-style:none; margin:0; padding:0; display:grid; gap:10px;}
  .visa-list li{display:flex; gap:8px; font-size:0.85rem; color:rgba(17,35,61,0.78);}
  .visa-list svg{flex-shrink:0; margin-top:2px;}

  /* ===== LICENSING ===== */
  .license-section{padding:96px 0; background:var(--white);}
  .license-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px;}
  .license-card{background:var(--white); border:1px solid var(--line); border-radius:6px; overflow:hidden;}
  .license-card-head{background:var(--teal-deep); padding:22px 30px;}
  .license-card h4{font-size:1.3rem; margin:0; color:var(--white);}
  .license-card-body{padding:32px 30px;}
  .license-sub{font-weight:600; font-size:0.96rem; color:var(--ink); margin:0 0 22px; padding-bottom:22px; border-bottom:1px solid var(--line);}
  .license-list{list-style:none; margin:0 0 26px; padding:0; display:grid; gap:15px;}
  .license-list li{position:relative; padding-left:22px; font-size:0.92rem; color:var(--ink);}
  .license-list li::before{content:""; position:absolute; left:0; top:7px; width:8px; height:8px; border-radius:50%; background:var(--teal);}
  .license-note{background:rgba(27,94,86,0.08); color:var(--teal-deep); border-radius:6px; padding:18px 20px; font-size:0.88rem; line-height:1.55;}

  .boi-block{margin-top:0;}
  .boi-compare{display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:26px;}
  .boi-col{border-radius:6px; padding:28px 26px; border:1px solid var(--line);}
  .boi-col.standard{background:var(--sage);}
  .boi-col.promoted{background:var(--teal-deep); border-color:var(--teal-deep);}
  .boi-col h4{font-size:1rem; margin-bottom:18px;}
  .boi-col.promoted h4{color:var(--paper);}
  .boi-col ul{list-style:none; margin:0; padding:0; display:grid; gap:12px;}
  .boi-col li{display:flex; gap:10px; font-size:0.9rem; align-items:flex-start;}
  .boi-col.standard li{color:rgba(17,35,61,0.72);}
  .boi-col.promoted li{color:rgba(241,250,238,0.85);}
  .boi-note{background:var(--brass); color:var(--ink); text-align:center; padding:18px 24px; border-radius:6px; margin-top:22px; font-size:0.92rem; font-weight:500;}

  /* ===== OPERATIONAL & COMPLIANCE ===== */
  .ops-section{padding:96px 0; background:var(--paper-alt);}
  .dashboard-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-bottom:64px;}
  .dash-card{background:var(--white); border:1px solid var(--line); border-radius:6px; padding:28px 24px;}
  .dash-icon{width:44px; height:44px; border-radius:50%; background:var(--sage); display:flex; align-items:center; justify-content:center; margin-bottom:18px;}
  .dash-card h4{font-size:1.02rem; margin-bottom:10px;}
  .dash-card p{font-size:0.88rem; color:rgba(17,35,61,0.68); margin:0;}
  .compliance-split{display:grid; grid-template-columns:1fr 1fr; border:1px solid var(--line); border-radius:6px; overflow:hidden; background:var(--white);}
  .comp-col{padding:30px 28px;}
  .comp-col:first-child{border-right:1px dashed var(--line);}
  .comp-col h4{font-size:1.02rem; margin-bottom:10px; display:flex; align-items:center; gap:10px;}
  .comp-col p{font-size:0.9rem; color:rgba(17,35,61,0.7); margin:0;}
  .compliance-note{background:var(--sage); text-align:center; padding:20px 28px; font-size:0.92rem; color:var(--teal-deep); font-weight:500; border-top:1px dashed var(--line);}

  /* ===== INSURANCE ===== */
  .insurance-section{padding:96px 0; background:var(--white);}
  .insurance-heading{font-size:1.55rem; white-space:nowrap;}
  .insurance-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:44px;}
  .insurance-card{background:var(--white); border:1px solid var(--line); border-radius:8px; padding:32px 28px; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;}
  .insurance-card:hover{transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--brass);}
  .insurance-icon{width:52px; height:52px; border-radius:50%; background:var(--sage); display:flex; align-items:center; justify-content:center; margin-bottom:20px;}
  .insurance-card h4{font-size:1.2rem; font-weight:800; color:var(--teal-deep); margin-bottom:12px; letter-spacing:0.01em;}
  .insurance-card p{font-size:0.9rem; color:rgba(17,35,61,0.68); margin:0; line-height:1.55;}
  @media (max-width:700px){
    .insurance-grid{grid-template-columns:1fr;}
    .insurance-heading{white-space:normal; font-size:1.3rem;}
  }

  /* ===== OFFICES / CONTACT ===== */
  .offices{padding:96px 0; background:var(--teal-deep);}
  .offices .section-head h2{color:var(--paper);}
  .offices .section-head p{color:rgba(241,250,238,0.7);}
  .offices .eyebrow{color:var(--brass-light);}
  .office-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-bottom:22px;}
  .office-card{background:rgba(241,250,238,0.05); border:1px solid rgba(241,250,238,0.18); border-radius:6px; padding:28px 26px;}
  .office-card h3{color:var(--paper); font-size:1.15rem; display:flex; align-items:center; gap:10px; margin-bottom:20px;}
  .office-row{display:flex; align-items:center; gap:10px; font-size:0.9rem; color:rgba(241,250,238,0.82); margin-bottom:12px;}
  .office-row:last-child{margin-bottom:0;}
  .office-row a{color:var(--brass-light);}
  .office-web{
    background:linear-gradient(90deg, rgba(39,187,173,0.22), rgba(30,94,86,0.35));
    border:1px solid rgba(241,250,238,0.2);
    border-radius:6px;
    padding:18px 24px;
    display:flex; align-items:center; justify-content:center; gap:10px;
    color:var(--paper); font-size:0.92rem;
  }
  .office-web b{color:var(--brass-light);}
  .registered-address{
    display:flex; flex-direction:row; flex-wrap:wrap; align-items:baseline; justify-content:center;
    text-align:center;
    gap:10px;
    border:1px dashed rgba(241,250,238,0.3);
    border-radius:6px;
    padding:18px 20px;
    margin-bottom:22px;
  }
  .ra-label{
    font-family:'IBM Plex Mono',monospace;
    font-size:0.7rem;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:var(--brass-light);
    flex-shrink:0;
  }
  .ra-text{
    font-size:0.88rem;
    color:rgba(241,250,238,0.82);
  }


  /* ===== BOOKING FORM ===== */
  .booking{padding:96px 0; background:var(--paper-alt);}
  .booking-form{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:8px;
    padding:40px 38px;
    box-shadow:var(--shadow);
    max-width:760px;
  }
  .form-row{display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:24px;}
  .field{display:flex; flex-direction:column; gap:8px;}
  .field.full{margin-bottom:28px;}
  .field label{
    font-family:'Inter',sans-serif; font-weight:600; font-size:0.9rem; color:var(--ink);
  }
  .field .req{color:var(--brass); font-weight:500;}
  .field input, .field textarea{
    font-family:'Inter',sans-serif;
    font-size:0.95rem;
    padding:13px 16px;
    border:1px solid var(--line);
    border-radius:6px;
    background:var(--paper);
    color:var(--ink);
    resize:vertical;
    width:100%;
  }
  .field textarea{min-height:150px; font-family:'IBM Plex Mono',monospace; font-size:0.87rem; line-height:1.6;}
  .field input::placeholder, .field textarea::placeholder{color:rgba(17,35,61,0.42);}
  .field input:focus-visible, .field textarea:focus-visible{
    outline:2px solid var(--brass); outline-offset:1px; border-color:var(--brass);
  }
  .field input:invalid:not(:placeholder-shown), .field textarea:invalid:not(:placeholder-shown){
    border-color:#B3261E;
  }
  .booking-submit{border:none;}
  .form-status{
    margin-top:18px;
    font-size:0.9rem;
    font-weight:500;
    min-height:1.2em;
  }
  .form-status.success{color:var(--teal-deep);}
  .form-status.error{color:#B3261E;}
  .form-note{
    font-family:'IBM Plex Mono',monospace;
    font-size:0.78rem;
    color:rgba(17,35,61,0.5);
    margin-top:20px;
  }


  /* ===== MEET OUR PEOPLE ===== */
  .people{padding:96px 0; background:var(--white);}
  .people-list{display:flex; flex-direction:column; gap:80px;}
  .person-block{display:grid; grid-template-columns:0.62fr 1.38fr; gap:56px; align-items:center;}
  .person-block.reverse{grid-template-columns:1.38fr 0.62fr;}
  .person-block.reverse .people-photo-wrap{order:2;}
  .person-block.reverse .people-copy{order:1;}
  .people-photo-wrap{position:relative;}
  .people-photo{
    width:100%;
    aspect-ratio:700/1081;
    object-fit:cover;
    border-radius:8px;
    box-shadow:var(--shadow);
    display:block;
  }
  .people-photo-frame{
    position:absolute; inset:16px -16px -16px 16px;
    border:1.5px solid var(--brass);
    border-radius:8px;
    z-index:-1;
  }
  .person-block.reverse .people-photo-frame{
    inset:16px 16px -16px -16px;
  }
  .people-name{font-size:clamp(1.5rem,2.2vw,1.9rem); margin-bottom:4px;}
  .people-title{
    font-family:'IBM Plex Mono',monospace;
    font-size:0.82rem;
    letter-spacing:0.05em;
    text-transform:uppercase;
    color:var(--brass);
    margin-bottom:22px;
    display:block;
  }
  .people-copy p{
    font-size:0.98rem;
    color:rgba(17,35,61,0.76);
    margin-bottom:16px;
  }
  .people-tags{display:flex; flex-wrap:nowrap; gap:10px; margin-top:24px;}
  .people-tag{
    font-family:'IBM Plex Mono',monospace;
    font-size:0.72rem;
    letter-spacing:0.04em;
    text-transform:uppercase;
    border:1px dashed var(--line);
    border-radius:20px;
    padding:8px 16px;
    color:var(--teal-deep);
    white-space:nowrap;
  }

  .people .section-head{max-width:900px;}
  .people .section-head h2{font-size:1.55rem;}
  .people .section-head p{font-size:0.95rem;}
  @media (min-width:701px){
    .people .section-head h2, .people .section-head p{white-space:nowrap;}
  }
  @media (max-width:700px){
    .people .section-head h2{font-size:1.3rem;}
    .people .section-head p{font-size:0.88rem;}
    .people-tags{flex-wrap:wrap;}
    .trust-chip{font-size:0.76rem; padding:8px 14px;}
    .trust-list{justify-content:flex-start; padding-left:20px; padding-right:20px; margin:0 -20px;}
  }

  @media (max-width:980px){
    .person-block, .person-block.reverse{grid-template-columns:1fr; gap:36px;}
    .person-block.reverse .people-photo-wrap{order:0;}
    .person-block.reverse .people-copy{order:0;}
    .people-photo-wrap{max-width:320px; margin:0 auto;}
    .person-block.reverse .people-photo-frame{inset:16px -16px -16px 16px;}
  }


  /* ===== PHOTO STRIP ===== */
  .photo-strip{
    background:var(--paper);
    padding:18px 0;
    border-bottom:1px solid var(--line);
  }
  .photo-strip-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
  }
  .photo-strip-row img{
    width:100%;
    height:130px;
    object-fit:cover;
    border-radius:6px;
    display:block;
    box-shadow:0 8px 20px -12px rgba(29,53,87,0.3);
  }
  @media (max-width:700px){
    .photo-strip-row{grid-template-columns:repeat(2,1fr); gap:10px;}
    .photo-strip-row img{height:100px;}
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width:980px){
    .hero-grid{grid-template-columns:1fr; gap:48px;}
    .why-grid{grid-template-columns:repeat(2,1fr);}
    .about-grid{grid-template-columns:1fr;}
    .svc-grid{grid-template-columns:repeat(2,1fr);}
    .process-grid{grid-template-columns:1fr; gap:36px;}
    .process-grid::before{display:none;}
    .foot-grid{grid-template-columns:1fr 1fr;}
    .wt-layout{grid-template-columns:1fr; gap:28px;}
    .map-video-container{height:auto; aspect-ratio:16/9;}
    .wt-grid{grid-template-columns:1fr;}
    .visa-cards{grid-template-columns:1fr;}
    .license-grid{grid-template-columns:1fr;}
    .boi-compare{grid-template-columns:1fr;}
    .dashboard-grid{grid-template-columns:1fr;}
    .compliance-split{grid-template-columns:1fr;}
    .comp-col:first-child{border-right:none; border-bottom:1px dashed var(--line);}
    .office-grid{grid-template-columns:1fr;}
  }
  @media (max-width:700px){
    .navlinks{display:none;}
    .menu-toggle{display:block;}
    .nav-cta{gap:12px;}
    .nav-cta .btn{padding:10px 14px; font-size:0.85rem;}
    .brand{font-size:1rem;}
    .why-grid{grid-template-columns:1fr;}
    .svc-grid{grid-template-columns:1fr;}
    .foot-grid{grid-template-columns:1fr; gap:36px;}
    .cta-inner{flex-direction:column; align-items:flex-start;}
    .wrap{padding:0 20px;}
    .visa-table-wrap{border-radius:0;}
    .form-row{grid-template-columns:1fr;}
    .booking-form{padding:28px 22px;}
  }
  @media (max-width:420px){
    .brand{font-size:0.92rem; gap:8px;}
    .brand img{height:26px; width:auto;}
    .nav-cta .btn{padding:9px 12px; font-size:0.8rem;}
    .book-full{display:none;}
    .book-short{display:inline;}
  }
  @media (prefers-reduced-motion: reduce){
    *{transition:none !important;}
  }

  /* ===== CMS ADDITIONS ===== */
  .brand-mark-light{
    border-color:var(--brass-light);
    color:var(--brass-light);
    background:rgba(39,187,173,0.12);
  }
  .hero-video-container img.hero-bg-video{pointer-events:auto;}

/* --- mobile overflow guards (added 2026-08-21) --- */
html,body{overflow-x:hidden;}
body{overflow-wrap:break-word;word-wrap:break-word;}
[class$="-card"],[class$="-grid"] > *,.visa-table td,.visa-table th{min-width:0;}
/* --- mobile: stack card grids to a single column (2026-08-21) --- */
@media (max-width:700px){
  .why-grid,.dashboard-grid,.insurance-grid{grid-template-columns:1fr !important;}
}
/* ---- hide native play button / controls on autoplaying videos ---- */
video[autoplay]::-webkit-media-controls,
video[autoplay]::-webkit-media-controls-panel,
video[autoplay]::-webkit-media-controls-play-button,
video[autoplay]::-webkit-media-controls-start-playback-button{display:none!important;-webkit-appearance:none}

/* ---- News / Updates ---- */
.news-section{padding:5rem 0;background:var(--paper);}
.news-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem;margin-top:2rem;}
.news-card{display:flex;flex-direction:column;border-radius:12px;overflow:hidden;background:#fff;border:1px solid #e2e8f0;text-decoration:none;color:inherit;transition:box-shadow .2s,transform .2s;}
.news-card:hover{box-shadow:0 8px 24px rgba(0,0,0,.1);transform:translateY(-2px);}
.news-card-img{aspect-ratio:16/9;overflow:hidden;}
.news-card-img img{width:100%;height:100%;object-fit:cover;}
.news-card-body{padding:1.25rem;flex:1;display:flex;flex-direction:column;}
.news-date{font-size:.75rem;color:#64748b;margin-bottom:.5rem;}
.news-card-title{font-size:1.1rem;font-weight:700;margin:0 0 .5rem;line-height:1.35;}
.news-card-excerpt{font-size:.875rem;color:#475569;margin:0;flex:1;}
.news-fb-badge{display:inline-flex;align-items:center;gap:4px;margin-top:.75rem;font-size:.7rem;font-weight:600;color:#1877f2;background:#eff6ff;padding:3px 8px;border-radius:6px;width:fit-content;}
.news-back{display:inline-block;margin-bottom:1.5rem;font-size:.875rem;color:var(--teal);text-decoration:none;font-weight:600;}
.news-back:hover{text-decoration:underline;}
.news-detail{padding:4rem 0;}
.news-detail-inner{max-width:720px;margin:0 auto;}
.news-detail-date{display:block;font-size:.8rem;color:#64748b;margin-bottom:.5rem;}
.news-detail-title{font-size:2rem;font-weight:800;margin:0 0 1.5rem;line-height:1.25;}
.news-detail-cover{margin-bottom:2rem;border-radius:12px;overflow:hidden;}
.news-detail-cover img{width:100%;height:auto;}
.news-detail-excerpt{font-size:1.1rem;color:#475569;margin-bottom:1.5rem;line-height:1.6;}
.news-detail-fb{margin-bottom:1.5rem;}
.news-detail-fb a{font-size:.875rem;color:#1877f2;text-decoration:none;font-weight:600;}
.news-detail-fb a:hover{text-decoration:underline;}
.news-detail-body{font-size:1rem;line-height:1.8;color:var(--ink);}
.news-detail-body h2,.news-detail-body h3{margin-top:2rem;margin-bottom:.75rem;}
.news-detail-body p{margin-bottom:1rem;}
.news-detail-body img{max-width:100%;height:auto;border-radius:8px;}