  @import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

  :root{
    --bg: #FDFCFA;
    --bg-alt: #F6F4EF;
    --ink: #1B2B22;
    --forest: #2B2B2B;
    --forest-light: #5A5A5A;
    --gold: #8D0E37;
    --gold-dim: #C9A0AC;
    --line: #D9D2C0;
    --radius: 2px;
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg);
    color:var(--ink);
    font-family:'IBM Plex Sans', sans-serif;
    font-size:16.5px;
    line-height:1.6;
  }
  h1,h2,h3,.display{
    font-family:'Fraunces', serif;
    font-weight:500;
    color:var(--forest);
    letter-spacing:-0.01em;
  }
  a{color:inherit; text-decoration:none;}
  .placeholder-tag{
    display:inline-block;
    font-size:11px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--gold);
    border:1px solid var(--gold-dim);
    padding:2px 8px;
    border-radius:20px;
    margin-bottom:12px;
    background:rgba(201,168,76,0.08);
  }
  .wrap{max-width:1140px; margin:0 auto; padding:0 32px;}

  /* NAV */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(253,252,250,0.92);
    backdrop-filter:blur(6px);
    border-bottom:1px solid var(--line);
  }
  nav.wrap{
    display:flex; align-items:center; justify-content:space-between;
    height:104px;
  }
  .logo{font-family:'Fraunces', serif; font-size:20px; font-weight:600; color:var(--forest);}
  .logo span{color:var(--gold);}
  .navlinks{display:flex; gap:36px; font-size:15.5px; font-weight:600;}
  .navlinks a{color:var(--ink); opacity:1; transition:color .2s;}
  .navlinks a:hover{color:var(--gold);}
  .nav-cta{
    background:var(--forest);
    color:#fff !important;
    padding:10px 22px;
    border-radius:var(--radius);
    font-size:14px;
    font-weight:500;
  }

  /* HERO */
  .hero{padding:110px 0 90px; border-bottom:1px solid var(--line); position:relative; overflow:hidden;}
  .hero-bg{
    position:absolute; top:0; right:0; width:56%; height:100%; opacity:1; pointer-events:none;
    object-fit:cover; object-position:right center;
    -webkit-mask-image:linear-gradient(90deg, transparent 0%, transparent 22%, #000 46%);
    mask-image:linear-gradient(90deg, transparent 0%, transparent 22%, #000 46%);
  }
  .hero .wrap{position:relative; z-index:1;}

  /* VIDEO BANNER — standalone strip above hero, capped height, never full screen */
  .video-banner{
    position:relative; width:100%; height:80vh; max-height:800px; min-height:280px;
    overflow:hidden; border-bottom:1px solid var(--line);
    background:var(--forest);
  }
  .know-more-cue{
    position:absolute; top:36px; left:50%; transform:translateX(-50%); z-index:3;
    display:flex; flex-direction:column; align-items:center; gap:8px;
    color:#fff; text-decoration:none; font-size:14px; letter-spacing:0.12em; text-transform:uppercase; font-weight:700;
    padding:16px 30px 14px; border-radius:34px;
    background:var(--gold); border:1px solid rgba(255,255,255,0.5);
    box-shadow:0 10px 28px -8px rgba(0,0,0,0.5);
    transition:background .2s ease, transform .2s ease;
  }
  .know-more-cue:hover{
    background:#a01543;
    transform:translateX(-50%) scale(1.05);
  }
  .know-more-cue svg{
    width:20px; height:14px; stroke:#fff; fill:none; stroke-width:2.2;
    stroke-linecap:round; stroke-linejoin:round;
    animation:know-more-bounce 1.8s ease-in-out infinite;
  }
  @keyframes know-more-bounce{
    0%, 100%{transform:translateY(0);}
    50%{transform:translateY(5px);}
  }
  @media(prefers-reduced-motion:reduce){
    .know-more-cue svg{animation:none;}
  }
  .video-banner-blurbg{
    position:absolute; top:0; left:0; width:100%; height:100%;
    object-fit:cover; object-position:center center; display:block; z-index:0;
    filter:blur(28px) brightness(0.75) saturate(1.15);
    transform:scale(1.15);
  }
  .video-banner-fallback, .video-banner-media{
    position:absolute; top:0; left:0; width:100%; height:100%;
    object-fit:contain; object-position:center center; display:block; z-index:1;
  }

  .hero .eyebrow{
    font-size:13px; letter-spacing:0.12em; text-transform:uppercase;
    color:var(--forest-light); margin-bottom:18px; font-weight:600;
  }
  .hero h1{font-size:56px; line-height:1.08; max-width:760px; margin-bottom:22px;}
  .hero h1 em{font-style:italic; color:var(--gold);}
  .hero p.sub{font-size:19px; color:#4A5A4E; max-width:560px; margin-bottom:36px;}
  .btn-row{display:flex; gap:16px;}
  .btn-primary{
    background:var(--forest); color:#fff; padding:14px 28px;
    border-radius:var(--radius); font-size:15px; font-weight:500;
  }
  .btn-secondary{
    border:1px solid var(--forest); color:var(--forest);
    padding:14px 28px; border-radius:var(--radius); font-size:15px; font-weight:500;
  }

  /* SECTION GENERIC */
  section{padding:88px 0; border-bottom:1px solid var(--line);}
  section.alt{background:var(--bg-alt);}
  .section-head{max-width:640px; margin-bottom:52px;}
  .section-head h2{font-size:36px; margin-bottom:14px;}
  .section-head p{color:#4A5A4E; font-size:17px;}

  /* CLIENT RIBBON */
  .ribbon-mask{
    width:100%; overflow:hidden;
    -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .ribbon-track{
    display:flex; align-items:center; gap:56px; width:max-content;
    animation:ribbon-scroll 34s linear infinite;
    animation-play-state:paused;
  }
  .ribbon-item{height:48px; width:auto; flex-shrink:0;}
  @keyframes ribbon-scroll{
    from{transform:translateX(0);}
    to{transform:translateX(var(--loop-distance, -50%));}
  }
  @media(prefers-reduced-motion:reduce){
    .ribbon-track{animation:none;}
  }

  /* PHOTO PLACEHOLDER */
  .photo-slot{
    background:repeating-linear-gradient(45deg, #EFEBE1, #EFEBE1 10px, #E5DFD1 10px, #E5DFD1 20px);
    border:1px dashed #B8AF9A;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center; padding:20px; color:#7A7466;
  }
  .photo-slot .icon{width:34px; height:34px; stroke:#7A7466; fill:none; stroke-width:1.4; margin-bottom:10px;}
  .photo-slot .label{font-size:12px; font-weight:600; letter-spacing:0.04em; text-transform:uppercase; margin-bottom:4px;}
  .photo-slot .hint{font-size:11.5px; max-width:200px;}
  .photo-row{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:20px;}
  .photo-row .photo-slot{height:160px;}

  /* WHY GRID — elevated cards */
  .why-grid{
    display:grid; grid-template-columns:1fr 1fr; gap:22px 24px;
  }
  @media(min-width:901px){
    .why-item:nth-child(5):last-child{grid-column:1/-1; max-width:calc(50% - 32px); margin:0 auto;}
  }

  .why-item{
    position:relative; overflow:hidden;
    display:flex; gap:18px; align-items:flex-start;
    background:#FFFFFF; border-radius:6px; padding:30px 26px;
    box-shadow:0 1px 3px rgba(43,43,43,0.08), 0 14px 28px -14px rgba(43,43,43,0.22);
    --ry:70px; --ro:0; --hy:0px;
    opacity:var(--ro);
    transform:translateY(calc(var(--ry) + var(--hy)));
    transition:transform .15s ease-out, box-shadow .25s ease;
  }
  .why-item:hover{
    --hy:-5px;
    box-shadow:0 2px 6px rgba(43,43,43,0.08), 0 20px 36px -14px rgba(141,14,55,0.28);
  }
  .why-item .num{
    font-family:'Fraunces',serif; color:var(--gold); font-size:50px; font-weight:600;
    line-height:1; flex-shrink:0; min-width:52px; opacity:0.92;
    position:absolute; top:14px; right:16px; z-index:0;
  }
  .why-item .why-body{flex:1; position:relative; z-index:1;}
  .why-item svg{width:24px; height:24px; stroke:var(--gold); fill:none; stroke-width:1.6; margin-bottom:10px;}
  .why-item img.icon-img{width:36px; height:36px; margin-bottom:10px; display:block;}
  .why-item h3{font-size:18px; margin-bottom:6px;}
  .why-item p{font-size:15.5px; color:#5A6A5E;}

  /* SERVICES */
  .service-grid{display:flex; flex-wrap:wrap; justify-content:center; gap:20px;}
  .service-card{
    background:#FFFFFF; border-radius:6px; padding:28px 24px;
    box-shadow:0 1px 3px rgba(43,43,43,0.08), 0 14px 28px -14px rgba(43,43,43,0.22);
    --ry:70px; --ro:0; --hy:0px;
    opacity:var(--ro);
    transform:translateY(calc(var(--ry) + var(--hy)));
    transition:transform .15s ease-out, box-shadow .25s ease;
    flex:0 1 calc(33.333% - 14px);
  }
  .service-card svg{width:32px; height:32px; margin-bottom:14px; stroke:var(--gold); fill:none; stroke-width:1.6;}
  .service-card img.icon-img{width:44px; height:44px; margin-bottom:14px; display:block;}
  .service-card:hover{
    --hy:-5px;
    box-shadow:0 2px 6px rgba(43,43,43,0.08), 0 20px 36px -14px rgba(141,14,55,0.28);
  }
  .service-card .tag{font-size:12px; color:var(--forest-light); font-weight:600; letter-spacing:0.05em;}
  .service-card h3{font-size:19px; margin:10px 0 10px;}
  .service-card p{font-size:15px; color:#5A6A5E;}
  .service-card .learn-more{
    display:inline-block; margin-top:12px; font-size:13px; font-weight:600;
    color:var(--gold); text-decoration:none; border-bottom:1px solid transparent;
    transition:border-color .2s ease;
  }
  .service-card .learn-more:hover{border-color:var(--gold);}

  /* INDUSTRIES */
  .industry-row{display:flex; flex-wrap:wrap; gap:12px;}
  .industry-pill{
    background:var(--forest); color:#fff;
    padding:11px 22px; border-radius:30px; font-size:15px; font-weight:600;
    box-shadow:0 8px 16px -8px rgba(43,43,43,0.4);
    --ry:40px; --ro:0; --hy:0px;
    opacity:var(--ro);
    transform:translateY(calc(var(--ry) + var(--hy)));
    transition:transform .15s ease-out, box-shadow .2s ease;
  }
  .industry-pill:nth-child(odd){
    background:var(--gold);
    box-shadow:0 8px 16px -8px rgba(141,14,55,0.45);
  }
  .industry-pill:hover{--hy:-3px; box-shadow:0 12px 22px -8px rgba(43,43,43,0.5);}
  .industry-pill:nth-child(odd):hover{box-shadow:0 12px 22px -8px rgba(141,14,55,0.55);}

  /* ABOUT */
  .about-flex{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start;}
  .about-flex .stat-row{display:flex; flex-wrap:wrap; gap:28px 36px; margin-top:28px;}
  .about-lede{
    font-family:'Fraunces',serif; font-size:21px; color:var(--forest);
    font-weight:500; line-height:1.35; margin-top:16px;
  }
  .about-usp-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:22px;}
  .about-usp{
    background:#FFFFFF; border:1px solid var(--line); border-left:3px solid var(--gold);
    padding:8px 16px; border-radius:2px; font-size:13.5px; font-weight:600; color:var(--forest);
  }
  .stat .n{font-family:'Fraunces',serif; font-size:34px; color:var(--gold); font-weight:600;}
  .stat .l{font-size:13px; color:#5A6A5E;}

  .leader-card{
    display:flex; gap:18px; align-items:flex-start;
    background:#FFFFFF; border-radius:6px; padding:20px;
    box-shadow:0 1px 3px rgba(43,43,43,0.08), 0 14px 28px -14px rgba(43,43,43,0.22);
    margin-bottom:18px;
  }
  .leader-photo{
    width:104px; height:104px; border-radius:50%; object-fit:cover; flex-shrink:0;
    border:3px solid var(--gold);
  }
  .leader-card h4{font-family:'IBM Plex Sans',sans-serif; font-weight:600; font-size:17px; color:var(--forest); margin-bottom:2px; display:inline-block;}
  .leader-name-row{display:flex; align-items:center; gap:8px; margin-bottom:2px;}
  .leader-linkedin{
    display:inline-flex; align-items:center; justify-content:center;
    width:20px; height:20px; flex-shrink:0;
    transition:opacity .2s ease;
  }
  .leader-linkedin:hover{opacity:0.75;}
  .leader-linkedin img{width:100%; height:100%; display:block; border-radius:0; border:none; object-fit:contain;}
  .leader-card .leader-title{font-size:12px; color:var(--gold); font-weight:600; letter-spacing:0.04em; text-transform:uppercase; margin-bottom:8px;}
  .leader-card p{font-size:14px; color:#5A6A5E; line-height:1.5;}

  /* CONTACT FORM */
  .contact-form{margin-top:36px;}
  .form-row{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px;}
  .form-field{margin-bottom:18px;}
  .form-row .form-field{margin-bottom:0;}
  .form-field label{display:block; font-size:13px; font-weight:600; color:var(--forest); margin-bottom:6px;}
  .form-field input, .form-field textarea{
    width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:2px;
    font-family:'IBM Plex Sans',sans-serif; font-size:15px; color:var(--ink);
    background:#FFFFFF; transition:border-color .2s ease;
  }
  .form-field input:focus, .form-field textarea:focus{outline:none; border-color:var(--gold);}
  .form-field textarea{resize:vertical;}

  /* WHATSAPP FLOATING BUTTON */
  .whatsapp-float{
    position:fixed; bottom:24px; right:24px; z-index:200;
    width:56px; height:56px; border-radius:50%; background:#25D366;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 6px 18px rgba(0,0,0,0.25); transition:transform .2s ease;
  }
  .whatsapp-float:hover{transform:scale(1.08);}
  .whatsapp-float svg{width:28px; height:28px; fill:#fff;}
  @media(max-width:480px){
    .form-row{grid-template-columns:1fr;}
    .whatsapp-float{width:50px; height:50px; bottom:16px; right:16px;}
  }
  /* ZIGZAG ROWS — used only in One Partner and Your Growth Is Our KPI */
  .zigzag-row{
    display:flex; align-items:center; gap:40px; margin-bottom:8px;
    padding:22px 0; border-bottom:1px solid var(--line);
    --rx:-60px; --ro:0; opacity:var(--ro); transform:translateX(var(--rx));
    transition:transform .1s ease-out;
  }
  .zigzag-row:last-child{border-bottom:none;}
  .zigzag-row.stomp{animation:zigzag-stomp .5s cubic-bezier(.34,1.56,.64,1);}
  @keyframes zigzag-stomp{
    0%{transform:translateX(0) scale(1);}
    35%{transform:translateX(0) scale(1.04);}
    65%{transform:translateX(0) scale(0.98);}
    100%{transform:translateX(0) scale(1);}
  }
  .zigzag-row:nth-child(even){flex-direction:row-reverse;}
  .zigzag-icon{
    flex-shrink:0; width:72px; height:72px; border-radius:50%;
    background:#FFFFFF; display:flex; align-items:center; justify-content:center;
    box-shadow:0 8px 20px -10px rgba(43,43,43,0.3); border:2px solid var(--gold);
  }
  .zigzag-icon img{width:38px; height:38px; display:block;}
  /* Pictorial variant — full illustrated scene, not a small circular badge */
  .zigzag-icon.pictorial{
    width:230px; height:auto; border-radius:10px; border:none;
    box-shadow:0 10px 24px -12px rgba(43,43,43,0.35); background:transparent;
  }
  .zigzag-icon.pictorial img{width:100%; height:auto; border-radius:10px; display:block;}
  @media(max-width:700px){
    .zigzag-icon.pictorial{width:150px;}
  }
  .zigzag-text{flex:1; text-align:left;}
  .zigzag-text h4{font-family:'Fraunces',serif; font-size:19px; color:var(--forest); margin-bottom:4px;}
  .zigzag-text p{font-size:15px; color:#5A6A5E; line-height:1.5;}
  @media(max-width:700px){
    .zigzag-row, .zigzag-row:nth-child(even){flex-direction:column; text-align:left; gap:16px;}
    .zigzag-icon{width:56px; height:56px;}
    .zigzag-icon img{width:30px; height:30px;}
  }


  /* THE COGENT DIFFERENCE — quote block */
  .difference-quote{
    position:relative; max-width:680px; padding:36px 40px;
    background:#FFFFFF; border-radius:6px;
    box-shadow:0 1px 3px rgba(43,43,43,0.08), 0 14px 28px -14px rgba(43,43,43,0.22);
    --ry:40px; --ro:0; opacity:var(--ro); transform:translateY(var(--ry));
    transition:transform .15s ease-out, box-shadow .25s ease;
  }
  @media(max-width:480px){
    .difference-quote{padding:28px 22px;}
    .difference-quote blockquote{font-size:19px;}
  }
  .difference-quote:hover{
    box-shadow:0 2px 6px rgba(43,43,43,0.08), 0 20px 36px -14px rgba(141,14,55,0.28);
  }
  .difference-quote-mark{fill:var(--gold); opacity:0.9;}
  .difference-quote-open{
    width:24px; height:24px; display:inline-block; vertical-align:9px; margin-right:4px;
  }
  .difference-quote-close{
    width:24px; height:24px; display:inline-block; vertical-align:9px; margin-left:4px;
  }
  .difference-quote blockquote{
    font-family:'Fraunces',serif; font-size:22px; font-style:italic;
    color:var(--forest); margin:0; line-height:1.4;
  }

  /* PROCESS OVERVIEW */
  .process-row{display:grid; grid-template-columns:repeat(5,1fr); gap:16px; position:relative;}
  .process-step{
    background:#FFFFFF; border-radius:6px; padding:24px 18px; text-align:left;
    box-shadow:0 1px 3px rgba(43,43,43,0.08), 0 14px 28px -14px rgba(43,43,43,0.22);
    --ry:70px; --ro:0;
    opacity:var(--ro);
    transform:translateY(var(--ry));
    transition:transform .15s ease-out;
  }
  .process-num{
    font-family:'Fraunces',serif; font-size:28px; font-weight:600; color:var(--gold);
    opacity:0.85; margin-bottom:10px;
  }
  .process-step h4{font-size:15.5px; color:var(--forest); margin-bottom:6px;}
  .process-step p{font-size:13px; color:#5A6A5E; line-height:1.5;}

  /* CTA BAND */
  .cta-band{
    background:var(--forest); color:#fff; text-align:center; padding:80px 0; border-bottom:none;
  }
  .cta-band h2{color:#fff; font-size:34px; margin-bottom:16px;}
  .cta-band p{color:#C9C9C9; margin-bottom:30px;}
  .cta-band .btn-primary{background:var(--gold); color:#FFFFFF;}

  /* FOOTER */
  footer{padding:0 0 40px; background:var(--bg-alt); position:relative;}
  footer::before{
    content:""; display:block; height:4px; width:100%;
    background:linear-gradient(90deg, var(--gold) 0%, var(--forest) 100%);
  }
  .footer-top{padding:60px 0 0;}
  .footer-grid{display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr; gap:40px; margin-bottom:40px;}
  .footer-grid > div{padding-left:40px; border-left:1px solid var(--line);}
  .footer-grid > div:first-child{padding-left:0; border-left:none;}
  .footer-grid h4{
    font-size:12.5px; text-transform:uppercase; letter-spacing:0.1em; color:var(--gold);
    font-weight:700; margin-bottom:16px;
  }
  .footer-grid a{
    font-size:15px; color:#4A4A4A; display:block; margin-bottom:0;
    padding:10px 0; border-bottom:1px solid var(--line);
    position:relative; transition:color .2s ease, border-color .2s ease;
  }
  .footer-grid a:last-of-type{border-bottom:none;}
  .footer-grid a:hover{color:var(--forest); border-bottom-color:var(--gold);}
  .footer-grid p{font-size:15px; color:#5A6A5E; display:block; margin-bottom:8px;}
  /* WHY CHOOSE COGENT — elevated cards, deliberately distinct from How It Works' floating icons */
  .why-choose-grid{display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:40px;}
  .why-choose-card{
    background:#FFFFFF; border-radius:8px; padding:32px 28px;
    box-shadow:0 1px 3px rgba(43,43,43,0.06), 0 16px 32px -18px rgba(43,43,43,0.25);
    transition:transform .2s ease, box-shadow .2s ease;
    --ry:40px; --ro:0; opacity:var(--ro); transform:translateY(var(--ry));
  }
  .why-choose-card:hover{
    transform:translateY(-4px);
    box-shadow:0 4px 8px rgba(43,43,43,0.08), 0 20px 40px -16px rgba(141,14,55,0.3);
  }
  .why-choose-icon{
    width:60px; height:60px; border-radius:50%; background:var(--bg-alt);
    display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  }
  .why-choose-icon img{width:32px; height:32px;}
  .why-choose-card h4{font-family:'Fraunces',serif; font-size:19px; color:var(--forest); margin-bottom:8px;}
  .why-choose-card p{font-size:14.5px; color:#5A6A5E; line-height:1.55;}
  @media(max-width:700px){
    .why-choose-grid{grid-template-columns:1fr;}
  }

  /* KEY CAPABILITIES — used on individual service pages */
  .capability-grid{display:grid; grid-template-columns:1fr 1fr; gap:28px 40px; margin-top:32px;}
  .capability-item{display:flex; gap:14px; align-items:flex-start;}
  .capability-item svg{width:22px; height:22px; stroke:var(--gold); fill:none; stroke-width:2; flex-shrink:0; margin-top:2px;}
  .capability-item h4{font-size:16px; color:var(--forest); margin-bottom:4px;}
  .capability-item p{font-size:14.5px; color:#5A6A5E; line-height:1.55;}
  @media(max-width:700px){
    .capability-grid{grid-template-columns:1fr;}
  }

  .footer-contact-line{display:flex; align-items:flex-start; gap:10px; margin-bottom:14px;}
  .footer-contact-line svg{width:16px; height:16px; stroke:var(--gold); fill:none; stroke-width:1.8; flex-shrink:0; margin-top:3px;}
  .footer-contact-line span{font-size:14.5px; color:#5A6A5E; line-height:1.5;}
  .footer-maps-link{
    display:inline-flex; align-items:center; gap:5px; margin-top:6px;
    font-size:12.5px; font-weight:600; color:var(--gold); text-decoration:none;
    border-bottom:1px solid var(--gold-dim);
  }
  .footer-maps-link:hover{border-color:var(--gold);}
  .footer-maps-link svg{width:12px; height:12px; stroke:var(--gold); fill:none; stroke-width:2; margin-top:0 !important;}
  .footer-brand-tag{
    font-family:'Fraunces',serif; font-size:13px; font-style:italic; color:var(--forest);
    margin-top:10px; opacity:0.75;
  }
  .footer-social-row{display:flex; gap:10px; margin-top:16px;}
  .footer-social-icon{
    display:inline-flex; align-items:center; justify-content:center;
    width:44px; height:44px;
    transition:opacity .2s ease;
  }
  .footer-social-icon:hover{opacity:0.75;}
  .footer-social-icon img{width:100%; height:100%; display:block; object-fit:contain;}
  .footer-bottom{
    border-top:1px solid var(--line); padding-top:22px;
    display:flex; justify-content:space-between; align-items:center; font-size:13px; color:#8A927E;
  }
  .footer-bottom .credit{color:#8A927E;}
  .footer-bottom .credit b{color:var(--forest); font-weight:600;}

  @media(max-width:900px){
    .navlinks{display:none;}
    .hero h1{font-size:38px;}
    .hero-bg{display:none;}
    .why-grid{grid-template-columns:1fr; column-gap:0;}
    .about-flex{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr;}
    .process-row{grid-template-columns:1fr 1fr 1fr;}
    .video-banner{height:42vh; max-height:360px;}
    .video-banner-blurbg{display:none;}
    .video-banner-fallback, .video-banner-media{object-fit:cover;}
  }
  @media(max-width:700px){
    .service-card{flex-basis:calc(50% - 10px);}
    .process-row{grid-template-columns:1fr 1fr;}
  }
  @media(max-width:480px){
    .service-card{flex-basis:100%;}
    .process-row{grid-template-columns:1fr;}
  }
