
  :root{
    --navy-950:#16295c;
    --navy-900:#1c3f8f;
    --navy-800:#2748a0;
    --blue-700:#1c3f8f;
    --blue-600:#2a4fa0;
    --blue-500:#3a63c4;
    --red-600:#b3202e;
    --red-500:#d42b3a;
    --gold-500:#b8935a;
    --gold-400:#cba765;
    --gold-300:#e0c48a;
    --paper:#f8f4ea;
    --paper-2:#f0e8d6;
    --ink-900:#12172a;
    --ink-700:#333a52;
    --ink-600:#5a6178;
    --line-soft:rgba(18,23,42,0.09);
    --line-dark:rgba(255,255,255,0.14);
    --shadow-1:0 18px 40px -20px rgba(16,26,52,0.35);
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Poppins',sans-serif;
    color:var(--ink-900);
    background:var(--paper);
    overflow-x:hidden;
  }
  img{display:block; max-width:100%;}
  a{color:inherit; text-decoration:none;}
  ul{list-style:none;}
  section{position:relative;}
  .container{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }
  .serif{font-family:'Cinzel',serif;}

  /* ---------- reveal animation ---------- */
  .reveal{opacity:0; transform:translateY(26px); transition:opacity .8s ease, transform .8s ease;}
  .reveal.in-view{opacity:1; transform:translateY(0);}
  .reveal.d1{transition-delay:.08s;}
  .reveal.d2{transition-delay:.16s;}
  .reveal.d3{transition-delay:.24s;}
  .reveal.d4{transition-delay:.32s;}
  @media (prefers-reduced-motion:reduce){
    *{animation-duration:.01ms !important; transition-duration:.01ms !important;}
    .reveal{opacity:1; transform:none;}
  }

  /* ---------- buttons ---------- */
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    border-radius:3px;
    font-size:14px;
    font-weight:600;
    letter-spacing:0.5px;
    cursor:pointer;
    border:1px solid transparent;
    transition:transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  }
  .btn-primary{
    background:var(--red-500);
    color:#fff;
  }
  .btn-primary:hover{ background:var(--red-600); transform:translateY(-2px); box-shadow:0 14px 26px -10px rgba(212,43,58,0.55);}
  .btn-outline{
    background:transparent;
    border-color:rgba(255,255,255,0.4);
    color:#fff;
  }
  .btn-outline:hover{ background:rgba(255,255,255,0.1); transform:translateY(-2px);}
  .btn-outline-dark{
    background:transparent;
    border-color:var(--ink-900);
    color:var(--ink-900);
  }
  .btn-outline-dark:hover{ background:var(--ink-900); color:#fff; }

  .eyebrow{
    font-size:12.5px;
    letter-spacing:3.5px;
    font-weight:600;
    color:var(--red-500);
    text-transform:uppercase;
    display:inline-flex;
    align-items:center;
    gap:12px;
  }
  .eyebrow::before{
    content:"";
    width:28px; height:2px;
    background:var(--gold-500);
    display:inline-block;
  }
  .eyebrow.on-dark{ color:var(--gold-300); }

  .section-title{
    font-family:'Cinzel',serif;
    font-weight:700;
    font-size:clamp(28px,3.6vw,42px);
    line-height:1.25;
    margin-top:14px;
    color:var(--ink-900);
  }
  .section-title.on-dark{ color:#f4f5f9; }
  .section-lead{
    max-width:620px;
    margin-top:16px;
    color:var(--ink-600);
    font-weight:300;
    line-height:1.8;
    font-size:15.5px;
  }
  .section-lead.on-dark{ color:#c3c9d6; }
  .section-head{ text-align:center; }
  .section-head .section-lead{ margin-left:auto; margin-right:auto; }

  /* =====================================================
     HEADER
     ===================================================== */
  header{
    position:fixed;
    top:0; left:0; right:0;
    z-index:200;
    padding:14px 0;
    background:rgba(250,246,238,0.96);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line-soft);
    transition:padding .4s ease, box-shadow .4s ease;
  }
  header.scrolled{
    padding:10px 0;
    box-shadow:0 10px 30px -18px rgba(16,26,52,0.25);
  }
  .nav-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .brand img{ height:52px; width:auto; }
  .brand-text{
    font-family:'Cinzel',serif;
    font-weight:700;
    font-size:22px;
    letter-spacing:3px;
    color:var(--blue-700);
    line-height:1;
  }
  .brand-text span{ color:var(--red-500); }
  .brand-sub{
    display:block;
    font-family:'Poppins',sans-serif;
    font-size:8.5px;
    letter-spacing:1.6px;
    color:var(--ink-600);
    font-weight:500;
    margin-top:3px;
  }

  nav.main-nav{
    display:flex;
    align-items:center;
    gap:34px;
  }
  nav.main-nav a{
    font-size:13px;
    font-weight:500;
    letter-spacing:0.4px;
    color:var(--ink-700);
    position:relative;
    padding:6px 0;
  }
  nav.main-nav a::after{
    content:"";
    position:absolute; left:0; bottom:0;
    width:0%; height:1.5px;
    background:var(--gold-500);
    transition:width .3s ease;
  }
  nav.main-nav a:hover{ color:var(--blue-700); }
  nav.main-nav a:hover::after{ width:100%; }

  .header-right{ display:flex; align-items:center; gap:22px; }
  .header-phone{
    display:flex; align-items:center; gap:9px;
    font-size:13.5px; color:var(--ink-700); font-weight:500;
  }
  .header-phone svg{ width:15px; height:15px; color:var(--red-500); }

  .burger{
    display:none;
    width:26px; height:20px;
    position:relative;
    cursor:pointer;
    border:none; background:none;
  }
  .burger span{
    position:absolute; left:0; right:0; height:2px;
    background:var(--ink-900); border-radius:2px;
    transition:all .3s ease;
  }
  .burger span:nth-child(1){ top:0; }
  .burger span:nth-child(2){ top:9px; }
  .burger span:nth-child(3){ top:18px; }
  .burger.open span:nth-child(1){ top:9px; transform:rotate(45deg); }
  .burger.open span:nth-child(2){ opacity:0; }
  .burger.open span:nth-child(3){ top:9px; transform:rotate(-45deg); }

  .mobile-drawer{
    position:fixed;
    top:0; right:0;
    height:100vh;
    width:280px;
    background:var(--navy-900);
    z-index:199;
    padding:100px 32px 32px;
    transform:translateX(100%);
    transition:transform .4s ease;
    display:flex;
    flex-direction:column;
    gap:22px;
    box-shadow:-20px 0 50px rgba(0,0,0,0.4);
  }
  .mobile-drawer.open{ transform:translateX(0); }
  .mobile-drawer a{
    font-size:15px; color:#e7e9ee; font-weight:500; letter-spacing:0.5px;
  }

  /* =====================================================
     HERO
     ===================================================== */
  .hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
      radial-gradient(ellipse 900px 560px at 78% 10%, rgba(30,55,110,0.4), transparent 60%),
      linear-gradient(180deg,#1b3672 0%, #1c3f8f 55%, #17305f 100%);
    overflow:hidden;
    padding-top:120px;
    padding-bottom:80px;
  }
  .hero-scene{ position:absolute; inset:0; z-index:0; pointer-events:none;}
  .beam-blue{
    top:-10%; left:-10%;
    width:56vw; max-width:760px; position:absolute;
    opacity:0.5;
    animation:beamDrift 15s ease-in-out infinite alternate;
  }
  .beam-red{
    bottom:-14%; right:-12%;
    width:60vw; max-width:820px; position:absolute;
    opacity:0.45;
    animation:beamDrift 17s ease-in-out infinite alternate-reverse;
  }
  @keyframes beamDrift{ from{transform:translate(0,0);} to{transform:translate(12px,-14px);} }

  .compass{
    position:absolute;
    right:2vw; top:14vh;
    width:340px; max-width:34vw; min-width:180px;
    opacity:0.14;
    animation:spin 100s linear infinite;
  }
  @keyframes spin{ to{ transform:rotate(360deg); } }

  .skyline{
    position:absolute; bottom:0; left:0;
    width:44vw; max-width:640px; min-width:320px;
    opacity:0.45;
  }

  .hero-inner{
    position:relative; z-index:1;
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:50px;
    align-items:center;
  }

  .hero-copy .eyebrow{ opacity:0; animation:fadeUp .9s ease forwards .2s; }
  .hero-title{
    font-family:'Cinzel',serif;
    font-weight:700;
    font-size:clamp(34px,4.6vw,58px);
    line-height:1.18;
    color:#f4f5f9;
    margin-top:18px;
    opacity:0; animation:fadeUp .9s ease forwards .38s;
  }
  .hero-title .accent{
    background:linear-gradient(180deg,#f2dfae, var(--gold-400) 60%, #b8945a);
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .hero-text{
    max-width:520px; margin-top:22px;
    color:#c3c9d6; font-weight:300; line-height:1.85; font-size:15.5px;
    opacity:0; animation:fadeUp .9s ease forwards .56s;
  }
  .hero-cta{
    display:flex; gap:16px; margin-top:34px; flex-wrap:wrap;
    opacity:0; animation:fadeUp .9s ease forwards .74s;
  }

  .hero-badges{
    display:flex; gap:28px; margin-top:52px; flex-wrap:wrap;
    opacity:0; animation:fadeUp .9s ease forwards .92s;
  }
  .hero-badge b{
    display:block; font-family:'Cinzel',serif; font-size:24px; color:#fff; font-weight:700;
  }
  .hero-badge span{
    display:block; font-size:11px; letter-spacing:1.6px; color:var(--gold-300); margin-top:4px; font-weight:500;
  }

  .hero-panel{
    position:relative;
    opacity:0; animation:fadeUp 1s ease forwards .5s;
  }
  .hero-panel-card{
    background:linear-gradient(180deg, rgba(250,246,238,0.97), rgba(240,232,214,0.97));
    border:1px solid rgba(255,255,255,0.5);
    border-radius:6px;
    padding:38px 34px;
    backdrop-filter:blur(8px);
    box-shadow:0 30px 60px -30px rgba(0,0,0,0.5);
  }
  .hero-panel-card img{ width:150px; margin:0 auto 22px; }
  .hero-panel-card h3{
    font-family:'Cinzel',serif; text-align:center; font-size:18px; color:var(--blue-700); letter-spacing:1px; font-weight:600;
  }
  .hero-panel-list{ margin-top:24px; display:flex; flex-direction:column; gap:14px; }
  .hero-panel-list li{
    display:flex; align-items:center; gap:12px;
    font-size:13.5px; color:var(--ink-700); font-weight:400;
    padding-bottom:14px; border-bottom:1px solid var(--line-soft);
  }
  .hero-panel-list li:last-child{ border-bottom:none; padding-bottom:0; }
  .hero-panel-list svg{ width:16px; height:16px; color:var(--red-500); flex-shrink:0; }

  @keyframes fadeUp{
    from{opacity:0; transform:translateY(20px);}
    to{opacity:1; transform:translateY(0);}
  }

  .scroll-cue{
    position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
    z-index:1; display:flex; flex-direction:column; align-items:center; gap:8px;
    color:#9aa4b8; font-size:10.5px; letter-spacing:2px;
    opacity:0; animation:fadeUp 1s ease forwards 1.2s;
  }
  .scroll-cue svg{ width:16px; height:16px; animation:bounce 2s ease-in-out infinite; }
  @keyframes bounce{ 0%,100%{transform:translateY(0);} 50%{transform:translateY(7px);} }

  /* =====================================================
     TRUST / STAT STRIP
     ===================================================== */
  .stats{
    background:var(--navy-900);
    padding:0;
  }
  .stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
  }
  .stat-item{
    text-align:center;
    padding:38px 20px;
    border-right:1px solid rgba(255,255,255,0.08);
  }
  .stat-item:last-child{ border-right:none; }
  .stat-item b{
    font-family:'Cinzel',serif; font-size:clamp(24px,3vw,34px); color:#fff; font-weight:700; display:block;
  }
  .stat-item span{
    display:block; margin-top:8px; font-size:11.5px; letter-spacing:1.5px; color:var(--gold-300); font-weight:500;
  }

  /* =====================================================
     ABOUT
     ===================================================== */
  .about{ padding:110px 0; background:var(--paper); }
  .about-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:64px;
    align-items:center;
  }
  .about-visual{
    position:relative;
    background:linear-gradient(160deg,#faf6ee,#f0e8d6);
    border:1px solid var(--line-soft);
    border-radius:6px;
    padding:50px 34px;
    overflow:hidden;
  }
  .about-visual::before{
    content:"";
    position:absolute; inset:0;
    background:
      radial-gradient(circle at 20% 20%, rgba(58,99,196,0.1), transparent 55%),
      radial-gradient(circle at 85% 90%, rgba(212,43,58,0.08), transparent 55%);
  }
  .about-visual-inner{ position:relative; z-index:1; }
  .about-visual img{ width:120px; margin:0 auto 24px; }
  .about-quote{
    font-family:'Cinzel',serif; color:var(--blue-700); text-align:center; font-size:17px; line-height:1.6; font-weight:600;
  }
  .about-quote-sub{
    text-align:center; color:var(--red-500); font-size:12px; letter-spacing:1.5px; margin-top:14px; font-weight:500;
  }

  .about-copy .section-title{ margin-top:14px; }
  .value-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
    margin-top:34px;
  }
  .value-card{
    padding:20px 0 0;
    border-top:2px solid var(--ink-900);
  }
  .value-card h4{
    font-family:'Cinzel',serif; font-size:15px; font-weight:600; letter-spacing:0.5px;
  }
  .value-card p{
    margin-top:8px; font-size:13.5px; color:var(--ink-600); line-height:1.7; font-weight:300;
  }

  /* =====================================================
     SERVICES
     ===================================================== */
  .services{ padding:110px 0; background:var(--paper-2); }
  .service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2px;
    margin-top:56px;
    background:var(--line-soft);
    border:1px solid var(--line-soft);
  }
  .service-card{
    background:var(--paper-2);
    padding:36px 30px;
    transition:background .35s ease, transform .35s ease;
    position:relative;
  }
  .service-card:hover{ background:#fff; transform:translateY(-4px); box-shadow:var(--shadow-1); z-index:2; }
  .service-icon{
    width:46px; height:46px;
    border-radius:50%;
    background:var(--navy-900);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:20px;
  }
  .service-icon svg{ width:20px; height:20px; color:var(--gold-400); }
  .service-card h4{
    font-family:'Cinzel',serif; font-size:16px; font-weight:600; letter-spacing:0.3px; line-height:1.4;
  }
  .service-card p{
    margin-top:10px; font-size:13px; color:var(--ink-600); line-height:1.7; font-weight:300;
  }

  /* =====================================================
     WHY US
     ===================================================== */
  .why{
    padding:110px 0;
    background:var(--navy-950);
    position:relative;
    overflow:hidden;
  }
  .why::before{
    content:"";
    position:absolute; inset:0;
    background:radial-gradient(ellipse 700px 500px at 15% 20%, rgba(30,55,110,0.3), transparent 60%);
  }
  .why-grid{
    position:relative; z-index:1;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:36px;
    margin-top:56px;
  }
  .why-card{
    border-left:2px solid var(--gold-500);
    padding-left:22px;
  }
  .why-card b{
    font-family:'Cinzel',serif; font-size:34px; color:var(--gold-300); font-weight:700; display:block; line-height:1;
  }
  .why-card h4{
    margin-top:14px; font-size:15.5px; color:#fff; font-weight:600; letter-spacing:0.3px;
  }
  .why-card p{
    margin-top:10px; font-size:13.5px; color:#a9b0c2; line-height:1.75; font-weight:300;
  }

  /* =====================================================
     PROCESS
     ===================================================== */
  .process{ padding:110px 0; background:var(--paper); }
  .process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
    margin-top:56px;
    position:relative;
  }
  .process-grid::before{
    content:"";
    position:absolute; top:26px; left:calc(16.6% + 10px); right:calc(16.6% + 10px);
    height:1px;
    background:repeating-linear-gradient(90deg, var(--line-soft) 0 8px, transparent 8px 16px);
  }
  .process-card{ text-align:center; padding:0 24px; position:relative; }
  .process-num{
    width:54px; height:54px; border-radius:50%;
    background:var(--ink-900); color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-family:'Cinzel',serif; font-weight:700; font-size:18px;
    margin:0 auto; position:relative; z-index:1;
  }
  .process-card h4{
    margin-top:22px; font-family:'Cinzel',serif; font-size:15.5px; font-weight:600;
  }
  .process-card p{
    margin-top:10px; font-size:13.5px; color:var(--ink-600); line-height:1.7; font-weight:300;
  }

  /* =====================================================
     BULLETIN
     ===================================================== */
  .bulletin{ padding:110px 0; background:var(--paper-2); }
  .bulletin-head{
    display:flex; justify-content:space-between; align-items:flex-end; gap:20px; flex-wrap:wrap;
  }
  .bulletin-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
    margin-top:48px;
  }
  .bulletin-card{
    background:#fff;
    border:1px solid var(--line-soft);
    padding:28px 26px;
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .bulletin-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-1); }
  .bulletin-date{
    font-size:11.5px; letter-spacing:1.5px; color:var(--red-500); font-weight:600;
  }
  .bulletin-card h4{
    margin-top:12px; font-family:'Cinzel',serif; font-size:15.5px; font-weight:600; line-height:1.5;
  }
  .bulletin-card p{
    margin-top:12px; font-size:13px; color:var(--ink-600); line-height:1.7; font-weight:300;
  }
  .bulletin-card a{
    display:inline-block; margin-top:16px; font-size:12.5px; font-weight:600; color:var(--ink-900);
    border-bottom:1px solid var(--gold-500); padding-bottom:2px;
  }
  .bulletin-disclaimer{
    margin-top:40px; font-size:11.5px; color:var(--ink-600); line-height:1.7; font-weight:300;
    border-top:1px solid var(--line-soft); padding-top:22px;
  }

  /* =====================================================
     CONTACT
     ===================================================== */
  .contact{ padding:110px 0; background:var(--navy-950); position:relative; overflow:hidden;}
  .contact::before{
    content:"";
    position:absolute; inset:0;
    background:radial-gradient(ellipse 800px 500px at 85% 15%, rgba(212,43,58,0.16), transparent 60%);
  }
  .contact-grid{
    position:relative; z-index:1;
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:56px;
    margin-top:50px;
  }
  .contact-info-list{ margin-top:36px; display:flex; flex-direction:column; gap:24px; }
  .contact-info-item{ display:flex; gap:16px; align-items:flex-start; }
  .contact-info-icon{
    width:42px; height:42px; min-width:42px; border-radius:50%;
    border:1px solid rgba(255,255,255,0.25);
    display:flex; align-items:center; justify-content:center; color:var(--gold-300);
  }
  .contact-info-icon svg{ width:17px; height:17px; }
  .contact-info-item h5{
    font-size:11px; letter-spacing:1.8px; color:var(--gold-300); font-weight:600; margin-bottom:4px;
  }
  .contact-info-item p{ font-size:14px; color:#e7e9ee; line-height:1.6; font-weight:400; }

  .contact-social{ display:flex; gap:12px; margin-top:36px; }
  .contact-social a{
    width:38px; height:38px; border-radius:50%;
    border:1px solid rgba(255,255,255,0.3);
    display:flex; align-items:center; justify-content:center; color:#fff;
    transition:all .3s ease;
  }
  .contact-social a:hover{ background:var(--red-500); border-color:var(--red-500); transform:translateY(-3px); }
  .contact-social svg{ width:14px; height:14px; fill:currentColor; }

  .contact-form{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:6px;
    padding:40px;
    backdrop-filter:blur(6px);
  }
  .form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
  .form-field{ margin-bottom:18px; }
  .form-field label{
    display:block; font-size:11.5px; letter-spacing:1.2px; color:var(--gold-300); margin-bottom:8px; font-weight:500;
  }
  .form-field input, .form-field select, .form-field textarea{
    width:100%;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.16);
    border-radius:3px;
    padding:12px 14px;
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:13.5px;
    transition:border-color .3s ease, background .3s ease;
  }
  .form-field input::placeholder, .form-field textarea::placeholder{ color:#8890a3; }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus{
    outline:none; border-color:var(--gold-400); background:rgba(255,255,255,0.09);
  }
  .form-field select option{ background:var(--navy-900); color:#fff; }
  .form-field textarea{ resize:vertical; min-height:110px; }
  .form-note{
    margin-top:16px; font-size:12px; color:#8b93a8;
  }
  .form-success{
    display:none;
    margin-top:16px;
    padding:14px 16px;
    background:rgba(80,180,120,0.12);
    border:1px solid rgba(80,180,120,0.4);
    color:#bdeccf;
    font-size:13px;
    border-radius:3px;
  }
  .form-success.show{ display:block; }
  .form-error{
    display:none;
    margin-top:16px;
    padding:14px 16px;
    background:rgba(212,43,58,0.1);
    border:1px solid rgba(212,43,58,0.4);
    color:#f3c6cb;
    font-size:13px;
    line-height:1.6;
    border-radius:3px;
  }
  .form-error.show{ display:block; }

  /* =====================================================
     FOOTER
     ===================================================== */
  footer{
    background:#faf6ee;
    border-top:1px solid var(--line-soft);
    padding:72px 0 0;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.3fr 0.9fr 0.9fr 1fr;
    gap:40px;
    padding-bottom:56px;
    border-bottom:1px solid var(--line-soft);
  }
  .footer-brand .brand{ margin-bottom:16px; }
  .footer-brand p{
    font-size:13px; color:var(--ink-600); line-height:1.8; font-weight:300; max-width:280px;
  }
  .footer-col h5{
    font-size:12px; letter-spacing:1.8px; color:var(--red-500); font-weight:600; margin-bottom:18px;
  }
  .footer-col ul{ display:flex; flex-direction:column; gap:12px; }
  .footer-col a{ font-size:13.5px; color:var(--ink-700); font-weight:300; transition:color .25s ease; }
  .footer-col a:hover{ color:var(--blue-700); }
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
    padding:26px 0;
    font-size:12px; color:var(--ink-600);
  }
  .footer-bottom b{ color:var(--red-500); font-weight:600; }

  /* =====================================================
     RESPONSIVE
     ===================================================== */
  @media (max-width:980px){
    nav.main-nav{ display:none; }
    .burger{ display:block; }
    .hero-inner{ grid-template-columns:1fr; }
    .hero-panel{ margin-top:20px; }
    .about-grid{ grid-template-columns:1fr; }
    .service-grid{ grid-template-columns:repeat(2,1fr); }
    .why-grid{ grid-template-columns:1fr 1fr; }
    .process-grid{ grid-template-columns:1fr; gap:40px; }
    .process-grid::before{ display:none; }
    .bulletin-grid{ grid-template-columns:1fr; }
    .contact-grid{ grid-template-columns:1fr; }
    .form-row{ grid-template-columns:1fr; }
    .footer-grid{ grid-template-columns:1fr 1fr; }
    .stats-grid{ grid-template-columns:1fr 1fr; }
    .stat-item{ border-bottom:1px solid rgba(255,255,255,0.08); }
  }
  @media (max-width:600px){
    .container{ padding:0 20px; }
    .service-grid{ grid-template-columns:1fr; }
    .why-grid{ grid-template-columns:1fr; }
    .footer-grid{ grid-template-columns:1fr; }
    .header-phone{ display:none; }
    .hero-badges{ gap:20px; }
  }

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

/* =====================================================
   MULTI-PAGE ADDITIONS
   ===================================================== */

/* Service cards are anchors on the multi-page site */
.service-card{ display:block; color:inherit; text-decoration:none; }

/* Skip link */
.skip-link{
  position:absolute; left:-999px; top:0;
  background:#fff; color:var(--ink-900); padding:12px 18px; z-index:999;
  font-size:13px; font-weight:600;
}
.skip-link:focus{ left:12px; top:12px; }

/* Nav dropdown */
nav.main-nav .has-dropdown{ position:relative; }
nav.main-nav .has-dropdown > a{ display:flex; align-items:center; gap:6px; }
nav.main-nav .has-dropdown > a svg{ width:11px; height:11px; transition:transform .25s ease; }
nav.main-nav .has-dropdown:hover > a svg{ transform:rotate(180deg); }

/* Invisible hover bridge: keeps :hover alive while the pointer crosses
   the gap between the nav link and the dropdown panel below it. Without
   this, moving the mouse diagonally through the empty space breaks the
   hover chain and the menu closes almost instantly. */
nav.main-nav .has-dropdown::after{
  content:"";
  position:absolute;
  top:100%; left:50%;
  transform:translateX(-50%);
  width:300px;
  height:30px;
}

.dropdown-menu{
  position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%) translateY(6px);
  width:320px;
  max-height:70vh;
  overflow-y:auto;
  background:#fffdf9;
  border:1px solid var(--line-soft);
  border-radius:6px;
  padding:10px;
  box-shadow:0 30px 60px -20px rgba(16,26,52,0.35);
  opacity:0; visibility:hidden; pointer-events:none;
  /* Closing is delayed .4s so a brief slip of the pointer doesn't
     instantly dismiss the menu; opening (below) has no delay. */
  transition:opacity .2s ease .4s, transform .2s ease .4s, visibility .2s ease .4s;
  z-index:50;
}
nav.main-nav .has-dropdown:hover .dropdown-menu,
nav.main-nav .has-dropdown:focus-within .dropdown-menu{
  opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0);
  transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.dropdown-menu a{
  display:block; padding:11px 14px; font-size:13px; border-radius:4px; color:var(--ink-700);
}
.dropdown-menu a:hover{ background:var(--paper-2); color:var(--blue-700); }
.dropdown-menu a::after{ display:none; }

.mobile-drawer .sub-links{
  display:flex; flex-direction:column; gap:12px; margin:6px 0 6px 14px;
  border-left:1px solid rgba(255,255,255,0.12); padding-left:14px;
}
.mobile-drawer .sub-links a{ font-size:13px; color:#b7bdcc; font-weight:400; }
.mobile-drawer details summary{
  font-size:15px; color:#e7e9ee; font-weight:500; letter-spacing:0.5px; cursor:pointer;
  list-style:none; display:flex; align-items:center; justify-content:space-between;
}
.mobile-drawer details summary::-webkit-details-marker{ display:none; }
.mobile-drawer details[open] summary{ color:#fff; }

/* Page banner (inner pages) */
.page-banner{
  position:relative;
  padding:170px 0 74px;
  background:
    radial-gradient(ellipse 800px 500px at 85% 0%, rgba(30,55,110,0.35), transparent 60%),
    linear-gradient(180deg,#1b3672 0%, #1c3f8f 100%);
  overflow:hidden;
}
.page-banner .hero-scene{ opacity:0.7; }
.page-banner-inner{ position:relative; z-index:1; }
.breadcrumb{
  display:flex; align-items:center; gap:8px; flex-wrap:wrap;
  font-size:12.5px; color:#9aa4b8; margin-bottom:18px;
}
.breadcrumb a{ color:#c3c9d6; }
.breadcrumb a:hover{ color:#fff; }
.breadcrumb .sep{ color:#5a6178; }
.breadcrumb .current{ color:var(--gold-300); }
.page-banner h1{
  font-family:'Cinzel',serif; font-weight:700;
  font-size:clamp(28px,4vw,46px); color:#f4f5f9; line-height:1.25; max-width:760px;
}
.page-banner p.lead{
  margin-top:16px; max-width:620px; color:#c3c9d6; font-weight:300; line-height:1.8; font-size:15px;
}

/* Generic content section on inner pages */
.content-section{ padding:90px 0; background:var(--paper); }
.content-section.alt{ background:var(--paper-2); }
.content-section.dark{ background:var(--navy-950); }

/* Service detail layout */
.service-detail-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr;
  gap:60px;
  align-items:start;
}
.service-detail-main h2{
  font-family:'Cinzel',serif; font-size:clamp(22px,2.6vw,28px); font-weight:700; margin:38px 0 16px;
}
.service-detail-main h2:first-child{ margin-top:0; }
.service-detail-main p{
  color:var(--ink-600); line-height:1.9; font-size:15px; font-weight:300; margin-bottom:14px;
}
.check-list{ margin-top:18px; display:flex; flex-direction:column; gap:14px; }
.check-list li{
  display:flex; align-items:flex-start; gap:12px; font-size:14.5px; color:var(--ink-700); line-height:1.6;
}
.check-list svg{ width:19px; height:19px; color:var(--red-500); flex-shrink:0; margin-top:2px; }

.service-sidebar{
  position:sticky; top:110px;
  display:flex; flex-direction:column; gap:22px;
}
.sidebar-card{
  background:var(--navy-950); border-radius:6px; padding:30px 26px;
}
.sidebar-card h4{
  font-family:'Cinzel',serif; color:#fff; font-size:16px; font-weight:600; margin-bottom:14px;
}
.sidebar-card p{ color:#c3c9d6; font-size:13.5px; line-height:1.75; font-weight:300; margin-bottom:18px; }
.sidebar-list{ display:flex; flex-direction:column; gap:2px; background:var(--paper-2); border:1px solid var(--line-soft); }
.sidebar-list a{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px; background:#fff; font-size:13.5px; color:var(--ink-700); font-weight:500;
  transition:background .25s ease, color .25s ease, padding-left .25s ease;
}
.sidebar-list a:hover{ background:var(--ink-900); color:#fff; padding-left:20px; }
.sidebar-list a.active{ background:var(--ink-900); color:#fff; }
.sidebar-list svg{ width:14px; height:14px; }

/* Related services strip */
.related-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:40px;
}
.related-card{
  background:#fff; border:1px solid var(--line-soft); padding:26px 24px;
  transition:transform .3s ease, box-shadow .3s ease;
}
.related-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-1); }
.related-card h4{ font-family:'Cinzel',serif; font-size:14.5px; font-weight:600; margin-bottom:8px; }
.related-card p{ font-size:12.5px; color:var(--ink-600); line-height:1.6; font-weight:300; margin-bottom:12px; }
.related-card a{ font-size:12px; font-weight:600; color:var(--red-500); }

/* CTA banner */
.cta-banner{
  background:linear-gradient(135deg, var(--navy-900), var(--navy-950));
  padding:60px 0; text-align:center; position:relative; overflow:hidden;
}
.cta-banner::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(ellipse 700px 400px at 50% 0%, rgba(212,43,58,0.18), transparent 60%);
}
.cta-banner-inner{ position:relative; z-index:1; }
.cta-banner h3{ font-family:'Cinzel',serif; color:#fff; font-size:clamp(20px,2.6vw,28px); font-weight:700; }
.cta-banner p{ color:#c3c9d6; margin-top:12px; font-weight:300; font-size:14.5px; }
.cta-banner .hero-cta{ justify-content:center; margin-top:26px; }

/* Article / bulletin full page */
.article-block{
  max-width:760px; margin:0 auto 90px; padding-bottom:60px; border-bottom:1px solid var(--line-soft);
  scroll-margin-top:110px;
}
.article-block:last-child{ border-bottom:none; margin-bottom:0; }
.article-meta{ display:flex; gap:14px; align-items:center; font-size:12px; color:var(--red-500); font-weight:600; letter-spacing:1px; }
.article-block h2{ font-family:'Cinzel',serif; font-size:clamp(20px,2.6vw,26px); margin-top:14px; font-weight:700; }
.article-block .lead{ margin-top:14px; color:var(--ink-600); font-size:15px; line-height:1.85; font-weight:300; }
.article-block h3{ font-family:'Cinzel',serif; font-size:16.5px; margin-top:28px; margin-bottom:10px; font-weight:600; }
.article-block p{ color:var(--ink-700); font-size:14.5px; line-height:1.9; font-weight:300; margin-bottom:12px; }
.article-block ul{ margin:14px 0 14px 4px; display:flex; flex-direction:column; gap:10px; }
.article-block ul li{ display:flex; gap:10px; font-size:14px; color:var(--ink-700); line-height:1.7; }
.article-block ul li::before{ content:"—"; color:var(--gold-500); flex-shrink:0; }

.bulten-toc{
  max-width:760px; margin:0 auto 60px;
  display:flex; flex-wrap:wrap; gap:10px;
}
.bulten-toc a{
  font-size:12.5px; padding:9px 16px; border:1px solid var(--line-soft); border-radius:30px;
  color:var(--ink-700); font-weight:500; transition:background .25s ease, color .25s ease, border-color .25s ease;
}
.bulten-toc a:hover{ background:var(--ink-900); color:#fff; border-color:var(--ink-900); }

/* Team grid (about page) */
.team-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:50px; }
.team-card{ background:#fff; border:1px solid var(--line-soft); padding:28px 24px; text-align:center; }
.team-avatar{
  width:64px; height:64px; border-radius:50%; margin:0 auto 16px;
  background:var(--navy-900); display:flex; align-items:center; justify-content:center;
  font-family:'Cinzel',serif; color:var(--gold-300); font-size:20px; font-weight:700;
}
.team-card h4{ font-family:'Cinzel',serif; font-size:15px; font-weight:600; }
.team-card span{ display:block; margin-top:6px; font-size:12px; color:var(--red-500); font-weight:600; letter-spacing:0.5px; }
.team-card p{ margin-top:12px; font-size:12.5px; color:var(--ink-600); line-height:1.7; font-weight:300; }

/* Timeline (about page) */
.timeline{ margin-top:50px; display:flex; flex-direction:column; gap:0; }
.timeline-item{
  display:grid; grid-template-columns:110px 1fr; gap:26px; padding:24px 0; border-top:1px solid var(--line-soft);
}
.timeline-item:last-child{ border-bottom:1px solid var(--line-soft); }
.timeline-item b{ font-family:'Cinzel',serif; font-size:20px; color:var(--ink-900); font-weight:700; }
.timeline-item h4{ font-size:14.5px; font-weight:600; margin-bottom:6px; }
.timeline-item p{ font-size:13px; color:var(--ink-600); line-height:1.7; font-weight:300; }

/* FAQ (services / contact) */
.faq-list{ max-width:800px; margin:50px auto 0; display:flex; flex-direction:column; gap:2px; }
.faq-item{ background:#fff; border:1px solid var(--line-soft); }
.faq-item summary{
  padding:20px 24px; cursor:pointer; font-size:14.5px; font-weight:600; list-style:none;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-size:20px; color:var(--red-500); font-weight:400; flex-shrink:0; }
.faq-item[open] summary::after{ content:"–"; }
.faq-item .faq-body{ padding:0 24px 20px; font-size:13.5px; color:var(--ink-600); line-height:1.8; font-weight:300; }

/* Map embed placeholder */
.map-embed{
  width:100%; height:320px; border:0; filter:grayscale(0.15) contrast(1.05);
}

/* Contact page two-col intro */
.icon-row{ display:flex; align-items:center; gap:14px; margin-bottom:10px; }
.icon-row svg{ width:22px; height:22px; color:var(--gold-400); }

@media (max-width:980px){
  .service-detail-grid{ grid-template-columns:1fr; }
  .service-sidebar{ position:static; }
  .related-grid{ grid-template-columns:1fr 1fr; }
  .team-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:600px){
  .related-grid{ grid-template-columns:1fr; }
  .team-grid{ grid-template-columns:1fr; }
  .timeline-item{ grid-template-columns:1fr; gap:6px; }
  .page-banner{ padding:150px 0 56px; }
}
