  :root{
    --navy:#0B2545;
    --navy-2:#123A6B;
    --green:#146B3A;
    --green-light:#1E9151;
    --gold:#C7962C;
    --paper:#F5F5F1;
    --paper-2:#EDECE5;
    --ink:#16202A;
    --ink-soft:#4B5763;
    --line:#DCDAD0;
    --white:#FFFFFF;
    --radius:14px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Work Sans', sans-serif;
    color:var(--ink);
    background:var(--paper);
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{
    font-family:'Fraunces', serif;
    font-weight:700;
    color:var(--navy);
    letter-spacing:-0.01em;
  }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .mono{
    font-family:'IBM Plex Mono', monospace;
    letter-spacing:0.06em;
    text-transform:uppercase;
  }
  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 28px;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 26px;
    border-radius:999px;
    font-weight:600;
    font-size:15px;
    cursor:pointer;
    border:1.5px solid transparent;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  }
  .btn:hover{transform:translateY(-2px);}
  .btn-primary{
    background:var(--green-light);
    color:#fff;
    box-shadow:0 8px 20px rgba(20,107,58,0.28);
  }
  .btn-primary:hover{box-shadow:0 12px 26px rgba(20,107,58,0.36);}
  .btn-ghost{
    background:transparent;
    color:var(--white);
    border-color:rgba(255,255,255,0.4);
  }
  .btn-ghost:hover{background:rgba(255,255,255,0.1);}
  .btn-dark{
    background:var(--navy);
    color:#fff;
  }

  /* ===== Header ===== */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(11,37,69,0.96);
    backdrop-filter:blur(6px);
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .nav{
    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:12px;}
  .brand img{height:44px; width:auto;}
  .brand-name{
    color:#fff; font-family:'Fraunces',serif; font-weight:700; font-size:19px; line-height:1.15;
  }
  .brand-name span{
    display:block; font-family:'Work Sans',sans-serif; font-weight:500; font-size:11px;
    color:var(--gold); letter-spacing:0.14em; text-transform:uppercase; margin-top:3px;
  }
  nav ul{list-style:none; display:flex; gap:30px;}
  nav ul li a{
    color:#EAEDF2; font-size:14.5px; font-weight:500; transition:color .15s ease;
  }
  nav ul li a:hover{color:var(--gold);}
  .nav-cta{display:flex; align-items:center; gap:14px;}
  .menu-toggle{display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none;}
  .menu-toggle span{width:24px; height:2px; background:#fff; display:block;}

  /* ===== Hero ===== */
  .hero{
    background:
      radial-gradient(1100px 500px at 85% -10%, rgba(199,150,44,0.16), transparent 60%),
      linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 62%, #0d2c52 100%);
    color:#fff;
    padding:76px 0 90px;
    position:relative;
    overflow:hidden;
  }
  .hero::after{
    content:"";
    position:absolute; inset:0;
    background-image:
      repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 84px);
    pointer-events:none;
  }
  .hero-grid{
    display:grid; grid-template-columns:1.15fr 0.85fr; gap:56px; align-items:center;
    position:relative; z-index:2;
  }
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
    color:var(--gold); border:1px solid rgba(199,150,44,0.45); padding:7px 14px; border-radius:999px;
    margin-bottom:22px;
  }
  .eyebrow::before{content:"●"; font-size:8px;}
  .hero h1{
    color:#fff; font-size:clamp(34px, 4.6vw, 54px); line-height:1.08; font-weight:700; max-width:640px;
  }
  .hero h1 em{
    font-style:italic; color:var(--gold); font-weight:600;
  }
  .hero p.lead{
    margin-top:22px; font-size:18px; color:#CBD5E1; max-width:520px;
  }
  .hero-cta{
    display:flex; gap:16px; margin-top:34px; flex-wrap:wrap;
  }
  .hero-meta{
    margin-top:44px; display:flex; gap:30px; flex-wrap:wrap;
  }
  .hero-meta div{border-left:2px solid var(--gold); padding-left:14px;}
  .hero-meta strong{display:block; font-family:'Fraunces',serif; font-size:22px; color:#fff;}
  .hero-meta span{font-size:12.5px; color:#AEBBCB; text-transform:uppercase; letter-spacing:0.06em;}

  /* Proprietor portrait card */
  .cred-card{
    position:relative; justify-self:end;
    width:100%; max-width:380px;
    background:linear-gradient(165deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border:1px solid rgba(255,255,255,0.16);
    border-radius:20px;
    padding:34px 30px 30px;
    backdrop-filter:blur(6px);
    box-shadow:0 30px 60px rgba(0,0,0,0.3);
  }
  .cred-top{display:flex; align-items:center; gap:12px; padding-bottom:22px; border-bottom:1px solid rgba(255,255,255,0.14);}
  .cred-top img{height:38px; width:auto;}
  .cred-top div strong{display:block; color:#fff; font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.1em;}
  .cred-top div span{display:block; color:var(--gold); font-family:'IBM Plex Mono',monospace; font-size:10.5px; letter-spacing:0.1em; margin-top:2px;}
  .cred-rows{padding:22px 0 6px; display:flex; flex-direction:column; gap:16px;}
  .cred-row{display:flex; justify-content:space-between; align-items:baseline; gap:10px;}
  .cred-row .k{font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:#9FB0C4;}
  .cred-row .v{font-family:'Fraunces',serif; font-size:15.5px; color:#fff; font-weight:600; text-align:right;}
  .cred-stats{display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:22px; padding-top:22px; border-top:1px solid rgba(255,255,255,0.14);}
  .cred-stats div{text-align:center;}
  .cred-stats strong{display:block; font-family:'Fraunces',serif; font-size:20px; color:#fff;}
  .cred-stats span{display:block; font-size:9.5px; color:#9FB0C4; text-transform:uppercase; letter-spacing:0.06em; margin-top:3px;}

  .seal{
    position:absolute; top:-22px; right:-22px;
    width:88px; height:88px; border-radius:50%;
    background:var(--gold);
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 10px 24px rgba(199,150,44,0.4);
    transform:rotate(-8deg);
  }
  .seal svg{width:72px; height:72px;}

  /* ===== Trust bar ===== */
  .trustbar{
    background:var(--navy);
    border-top:1px solid rgba(255,255,255,0.08);
  }
  .trustbar .wrap{
    display:grid; grid-template-columns:repeat(4,1fr);
    padding:22px 28px;
  }
  .trust-item{
    display:flex; align-items:center; gap:12px;
    color:#fff; font-size:14px; font-weight:500;
    padding:0 18px;
    border-left:1px solid rgba(255,255,255,0.1);
  }
  .trust-item:first-child{border-left:none;}
  .trust-item .ico{
    width:34px; height:34px; border-radius:50%;
    background:rgba(199,150,44,0.16);
    display:flex; align-items:center; justify-content:center;
    color:var(--gold); flex-shrink:0;
  }

  /* ===== Section basics ===== */
  section{padding:90px 0;}
  .section-head{max-width:640px; margin-bottom:52px;}
  .section-head .tag{
    font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
    color:var(--green); font-weight:600; margin-bottom:14px; display:block;
  }
  .section-head h2{font-size:clamp(28px,3.4vw,40px); line-height:1.15;}
  .section-head p{margin-top:16px; color:var(--ink-soft); font-size:16.5px;}
  .center{text-align:center; margin-left:auto; margin-right:auto;}

  /* ===== Services ===== */
  .services{background:var(--paper);}
  .service-cols{
    display:grid; grid-template-columns:repeat(3,1fr); gap:0;
    border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;
    background:#fff;
  }
  .service-col{padding:36px 30px; border-left:1px solid var(--line);}
  .service-col:first-child{border-left:none;}
  .service-col h3{
    font-size:13px; font-family:'IBM Plex Mono',monospace; text-transform:uppercase; letter-spacing:0.08em;
    color:var(--green); margin-bottom:20px; padding-bottom:14px; border-bottom:2px solid var(--paper-2);
  }
  .service-col ul{list-style:none;}
  .service-col li{
    display:flex; align-items:flex-start; gap:10px;
    padding:10px 0; font-size:15px; color:var(--ink); border-bottom:1px dashed var(--line);
  }
  .service-col li:last-child{border-bottom:none;}
  .service-col li svg{flex-shrink:0; margin-top:3px; color:var(--green-light);}

  /* ===== About / Proprietor ===== */
  .about{background:var(--white); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .about-grid{display:grid; grid-template-columns:0.62fr 1fr; gap:64px; align-items:center;}
  .about-photo{position:relative;}
  .about-photo img{
    border-radius:18px; width:100%; height:460px; object-fit:cover; object-position:top center;
    box-shadow:0 24px 48px rgba(11,37,69,0.16);
  }
  .about-stamp{
    position:absolute; bottom:-24px; left:-24px;
    background:#fff; border:2px solid var(--navy); border-radius:50%;
    width:104px; height:104px; display:flex; align-items:center; justify-content:center;
    text-align:center; box-shadow:0 12px 22px rgba(0,0,0,0.12);
  }
  .about-stamp .stamp-inner{
    font-family:'IBM Plex Mono',monospace; font-size:9px; letter-spacing:0.06em; text-transform:uppercase;
    color:var(--navy); line-height:1.3; font-weight:600;
  }
  .about-body .tag{
    font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
    color:var(--green); font-weight:600; margin-bottom:14px; display:block;
  }
  .about-body h2{font-size:clamp(26px,3vw,36px); margin-bottom:18px;}
  .about-body p{color:var(--ink-soft); font-size:16px; margin-bottom:16px;}
  .credentials{
    display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:28px;
  }
  .credential{
    background:var(--paper); border:1px solid var(--line); border-radius:10px; padding:14px 16px;
  }
  .credential span{display:block; font-size:11px; color:var(--ink-soft); text-transform:uppercase; letter-spacing:0.06em; font-family:'IBM Plex Mono',monospace;}
  .credential strong{display:block; margin-top:4px; font-size:14.5px; color:var(--navy);}

  /* ===== Why choose us ===== */
  .why{background:var(--paper-2);}
  .why-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
  .why-card{
    background:#fff; border-radius:var(--radius); padding:30px 26px; border:1px solid var(--line);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .why-card:hover{transform:translateY(-5px); box-shadow:0 18px 30px rgba(11,37,69,0.1);}
  .why-card .ico{
    width:46px; height:46px; border-radius:12px; background:var(--navy);
    display:flex; align-items:center; justify-content:center; color:var(--gold); margin-bottom:18px;
  }
  .why-card h3{font-size:17px; margin-bottom:8px; font-family:'Fraunces',serif;}
  .why-card p{font-size:14.5px; color:var(--ink-soft);}

  /* ===== Process ===== */
  .process{background:var(--white); border-top:1px solid var(--line);}
  .process-row{display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative;}
  .process-step{padding:0 24px; position:relative;}
  .process-step .num{
    font-family:'Fraunces',serif; font-size:38px; color:var(--paper-2); font-weight:700; -webkit-text-stroke:1px var(--line);
  }
  .process-step h4{font-size:16.5px; margin:10px 0 8px;}
  .process-step p{font-size:14px; color:var(--ink-soft);}
  .process-step:not(:last-child)::after{
    content:""; position:absolute; top:22px; right:-4%; width:8%; height:1px; background:var(--line);
  }

  /* ===== Testimonials ===== */
  .testimonials{background:var(--navy); color:#fff; position:relative; overflow:hidden;}
  .testimonials::before{
    content:""; position:absolute; inset:0;
    background:radial-gradient(700px 400px at 10% 110%, rgba(20,107,58,0.35), transparent 60%);
  }
  .testimonials .section-head h2{color:#fff;}
  .testimonials .section-head p{color:#B8C4D3;}
  .testimonials .section-head .tag{color:var(--gold);}
  .t-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; position:relative; z-index:2;}
  .t-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:var(--radius);
    padding:28px 26px;
    backdrop-filter:blur(2px);
  }
  .t-stars{color:var(--gold); font-size:15px; letter-spacing:2px; margin-bottom:14px;}
  .t-quote{font-size:15px; color:#E5E9EF; margin-bottom:22px; min-height:96px;}
  .t-person{display:flex; align-items:center; gap:12px;}
  .t-avatar{
    width:40px; height:40px; border-radius:50%; background:var(--gold);
    display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif; font-weight:700; color:var(--navy);
  }
  .t-person strong{display:block; font-size:14px;}
  .t-person span{font-size:12px; color:#9FB0C4;}
  .t-note{
    margin-top:36px; text-align:center; font-size:12.5px; color:#8FA0B5; position:relative; z-index:2;
  }

  /* ===== Contact ===== */
  .contact{background:var(--paper);}
  .contact-grid{display:grid; grid-template-columns:1fr 0.9fr; gap:56px;}
  .contact-card{
    background:var(--navy); color:#fff; border-radius:20px; padding:46px 42px; position:relative; overflow:hidden;
  }
  .contact-card::after{
    content:""; position:absolute; right:-60px; bottom:-60px; width:220px; height:220px; border-radius:50%;
    background:rgba(199,150,44,0.14);
  }
  .contact-card h2{color:#fff; font-size:28px; margin-bottom:10px;}
  .contact-card p{color:#B8C4D3; margin-bottom:30px; max-width:400px;}
  .contact-list{display:flex; flex-direction:column; gap:20px; position:relative; z-index:2;}
  .contact-list a, .contact-list div{
    display:flex; align-items:flex-start; gap:14px; color:#fff; font-size:14.5px;
  }
  .contact-list .ico{
    width:40px; height:40px; border-radius:10px; background:rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--gold);
  }
  .contact-list strong{display:block; font-size:14.5px; margin-bottom:2px;}
  .contact-list span{color:#AEBBCB; font-size:13.5px;}
  .social-row{display:flex; gap:12px; margin-top:32px; position:relative; z-index:2;}
  .social-row a{
    width:42px; height:42px; border-radius:50%; background:rgba(255,255,255,0.09);
    display:flex; align-items:center; justify-content:center; color:#fff; border:1px solid rgba(255,255,255,0.16);
    transition:background .2s ease, transform .2s ease;
  }
  .social-row a:hover{background:var(--gold); color:var(--navy); transform:translateY(-3px);}

  .form-card{
    background:#fff; border:1px solid var(--line); border-radius:20px; padding:42px;
  }
  .form-card h3{font-size:20px; margin-bottom:6px;}
  .form-card > p{color:var(--ink-soft); font-size:14.5px; margin-bottom:26px;}
  .form-row{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px;}
  .form-field{display:flex; flex-direction:column; gap:6px;}
  .form-field.full{grid-column:1/-1;}
  .form-field label{font-size:12.5px; font-weight:600; color:var(--navy);}
  .form-field input, .form-field select, .form-field textarea{
    border:1px solid var(--line); border-radius:9px; padding:12px 14px; font-family:'Work Sans',sans-serif; font-size:14.5px;
    background:var(--paper); color:var(--ink);
  }
  .form-field textarea{resize:vertical; min-height:90px;}
  .form-note{font-size:12.5px; color:var(--ink-soft); margin-top:14px; line-height:1.5;}

  /* ===== Footer ===== */
  footer{background:#081A32; color:#B8C4D3; padding:50px 0 26px;}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,0.08);}
  .footer-brand{display:flex; align-items:center; gap:12px; margin-bottom:16px;}
  .footer-brand img{height:38px;}
  .footer-brand strong{color:#fff; font-family:'Fraunces',serif; font-size:17px;}
  .footer-col h4{color:#fff; font-size:14px; margin-bottom:16px; font-family:'Work Sans',sans-serif; letter-spacing:0.02em;}
  .footer-col ul{list-style:none; display:flex; flex-direction:column; gap:10px;}
  .footer-col ul li a{font-size:13.5px; color:#9FB0C4; transition:color .15s ease;}
  .footer-col ul li a:hover{color:var(--gold);}
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center; padding-top:22px; font-size:12.5px; color:#7C8CA0; flex-wrap:wrap; gap:10px;
  }

  /* ===== Floating WhatsApp ===== */
  .wa-float{
    position:fixed; bottom:26px; right:26px; z-index:60;
    width:60px; height:60px; border-radius:50%;
    background:#1EBE5C; display:flex; align-items:center; justify-content:center;
    box-shadow:0 10px 26px rgba(30,190,92,0.45);
    animation:pulse 2.4s infinite;
  }
  @keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(30,190,92,0.5);}
    70%{box-shadow:0 0 0 16px rgba(30,190,92,0);}
    100%{box-shadow:0 0 0 0 rgba(30,190,92,0);}
  }

  /* ===== Responsive ===== */
  @media (max-width:980px){
    nav ul{display:none;}
    .menu-toggle{display:flex;}
    .hero-grid{grid-template-columns:1fr;}
    .portrait-card{justify-self:start; margin-top:20px;}
    .trustbar .wrap{grid-template-columns:repeat(2,1fr); gap:16px;}
    .trust-item{border-left:none; padding:0;}
    .service-cols{grid-template-columns:1fr;}
    .service-col{border-left:none; border-top:1px solid var(--line);}
    .service-col:first-child{border-top:none;}
    .about-grid{grid-template-columns:1fr;}
    .why-grid{grid-template-columns:1fr 1fr;}
    .process-row{grid-template-columns:1fr 1fr; row-gap:36px;}
    .process-step:nth-child(2)::after{display:none;}
    .t-grid{grid-template-columns:1fr;}
    .contact-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr; gap:26px;}
  }
  @media (max-width:560px){
    .hero{padding:56px 0 60px;}
    .hero-meta{gap:20px;}
    .why-grid{grid-template-columns:1fr;}
    .form-row{grid-template-columns:1fr;}
  }
  @media (max-width:480px){
    .nav{padding:12px 18px; flex-wrap:nowrap; gap:8px;}
    .brand img{height:34px;}
    .brand-name{font-size:14.5px;}
    .brand-name span{display:none;}
    .nav-cta{gap:8px;}
    .nav-cta .btn{padding:9px 12px !important; font-size:12px !important; white-space:nowrap;}
  }

  /* ===== Top utility bar (corporate strip) ===== */
  .topbar{
    background:#081A32;
    color:#9FB0C4;
    font-size:12.5px;
  }
  .topbar .wrap{
    display:flex; align-items:center; justify-content:space-between;
    padding:9px 28px;
  }
  .topbar-left{display:flex; align-items:center; gap:22px;}
  .topbar-left a{display:flex; align-items:center; gap:7px; color:#C3CEDB; transition:color .15s ease;}
  .topbar-left a:hover{color:var(--gold);}
  .topbar-right{display:flex; align-items:center; gap:14px;}
  .topbar-right a{
    width:26px; height:26px; border-radius:50%; background:rgba(255,255,255,0.06);
    display:flex; align-items:center; justify-content:center; color:#C3CEDB;
    border:1px solid rgba(255,255,255,0.1); transition:background .15s ease, color .15s ease;
  }
  .topbar-right a:hover{background:var(--gold); color:var(--navy);}
  .topbar-tag{
    font-family:'IBM Plex Mono',monospace; letter-spacing:0.08em; text-transform:uppercase; font-size:11px; color:var(--gold);
  }

  /* ===== Mobile nav drawer ===== */
  .menu-toggle{padding:8px; z-index:70;}
  .menu-toggle span{transition:transform .25s ease, opacity .25s ease;}
  .menu-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .menu-toggle.open span:nth-child(2){opacity:0;}
  .menu-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

  .mobile-drawer{
    position:fixed; inset:0; z-index:65;
    background:rgba(8,26,50,0.98);
    backdrop-filter:blur(8px);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
    opacity:0; visibility:hidden; transform:translateY(-8px);
    transition:opacity .28s ease, transform .28s ease, visibility .28s ease;
  }
  .mobile-drawer.open{opacity:1; visibility:visible; transform:translateY(0);}
  .mobile-drawer a{
    color:#fff; font-family:'Fraunces',serif; font-size:26px; font-weight:600; padding:14px 0;
  }
  .mobile-drawer .drawer-cta{
    display:flex; gap:14px; margin-top:28px; flex-wrap:wrap; justify-content:center;
  }
  .mobile-drawer .drawer-close{
    position:absolute; top:20px; right:24px; width:44px; height:44px; border-radius:50%;
    background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center;
    border:1px solid rgba(255,255,255,0.14);
  }
  body.drawer-open{overflow:hidden;}

  /* ===== Corporate polish ===== */
  .btn-primary{
    background:linear-gradient(135deg, var(--green-light), var(--green));
  }
  header{transition:box-shadow .2s ease;}
  header.scrolled{box-shadow:0 8px 24px rgba(0,0,0,0.18);}
  .why-card .ico, .contact-list .ico{transition:transform .2s ease;}
  .why-card:hover .ico{transform:scale(1.08);}
  ::selection{background:var(--gold); color:var(--navy);}
  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
    outline:2px solid var(--gold); outline-offset:2px;
  }
  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
  }

  @media (max-width:980px){
    .topbar-left span.topbar-tag{display:none;}
  }
  @media (max-width:640px){
    .topbar .wrap{padding:7px 18px;}
    .topbar-left{gap:14px;}
    .topbar-left a span{display:none;}
    .topbar-right{gap:8px;}
    .topbar-right a{width:22px; height:22px;}
  }
  @media (max-width:480px){
    .nav-cta .btn-ghost{display:none;}
  }
