:root{
  --red:#e31b23;
  --red-dark:#b90f16;
  --blue:#143b73;
  --blue-dark:#082854;
  --yellow:#ffbf17;
  --ink:#121722;
  --muted:#5f6673;
  --paper:#fff;
  --soft:#f6f8fb;
  --line:#e6e9ef;
  --max:1380px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.55;
}

img,
svg{
  display:block;
  max-width:100%;
}

a{
  text-decoration:none;
  color:inherit;
}

button{
  font:inherit;
}

.container{
  width:min(calc(100% - 48px),var(--max));
  margin-inline:auto;
}

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px);
}

.header-inner{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.brand img{
  width:317px;
  height:auto;
  max-height:86px;
  object-fit:contain;
}

.nav-wrap{
  display:flex;
  align-items:center;
  gap:26px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav-item{
  position:relative;
}

.nav-link{
  display:flex;
  align-items:center;
  gap:7px;
  padding:31px 0;
  font-size:14px;
  font-weight:700;
  color:#1f2530;
  white-space:nowrap;
}

.nav-link:hover{
  color:var(--red);
}

.chevron{
  width:8px;
  height:8px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-2px);
}

.dropdown{
  position:absolute;
  top:74px;
  left:-20px;
  min-width:260px;
  padding:12px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 18px 45px rgba(16,29,54,.12);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.2s ease;
}

.dropdown a{
  display:block;
  padding:11px 12px;
  font-size:14px;
  font-weight:700;
  color:#303744;
}

.dropdown a:hover{
  background:var(--soft);
  color:var(--red);
}

.nav-item:hover .dropdown{
  opacity:1;
  visibility:visible;
  transform:none;
}

.quote-button,
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  cursor:pointer;
  font-weight:800;
  border-radius:4px;
  transition:.2s ease;
}

.quote-button{
  background:var(--red);
  color:#fff;
  padding:14px 22px;
  font-size:14px;
  white-space:nowrap;
}

.quote-button:hover{
  background:var(--red-dark);
  transform:translateY(-1px);
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--line);
  background:#fff;
  align-items:center;
  justify-content:center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after{
  width:22px;
  height:2px;
  background:var(--ink);
  display:block;
  position:relative;
  content:"";
}

.menu-toggle span::before{
  position:absolute;
  top:-7px;
}

.menu-toggle span::after{
  position:absolute;
  top:7px;
}

/* HERO */

.hero{
  position:relative;
  overflow:hidden;
  background:#fff;
  padding:42px 0;
  border-bottom:1px solid var(--line);
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,43%) minmax(0,57%);
  gap:42px;
  align-items:center;
}

.hero-copy{
  position:relative;
  z-index:2;
  padding:18px 0;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  color:var(--red);
  font-size:13px;
  letter-spacing:.1em;
  font-weight:900;
  text-transform:uppercase;
}

.eyebrow::before{
  content:"";
  width:34px;
  height:3px;
  background:var(--red);
}

.hero h1{
  margin:0;
  max-width:650px;
  font-size:clamp(40px,4vw,60px);
  line-height:1.14;
  letter-spacing:-.04em;
  font-weight:900;
}

.hero h1 span{
  color:var(--red);
}

.hero p{
  margin:22px 0 28px;
  max-width:590px;
  color:#4b5361;
  font-size:17px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.button{
  padding:15px 25px;
  font-size:14px;
}

.button-primary{
  background:var(--red);
  color:#fff;
}

.button-primary:hover{
  background:var(--red-dark);
}

.button-secondary{
  background:#fff;
  color:var(--ink);
  border:1px solid #aeb4be;
}

.button-secondary:hover{
  border-color:var(--red);
  color:var(--red);
}

.hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}
.hero-visual{
    position:relative;
    overflow:hidden;
    border-radius:8px;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
    aspect-ratio:16/9;
}
.hero-visual1{
  position:relative;
  width:100%;
  min-height:0;
  aspect-ratio:16 / 9;
  border-radius:6px;
  background:linear-gradient(135deg,#edf1f7,#dfe5ee);
  overflow:hidden;
  box-shadow:0 16px 38px rgba(16,29,54,.14);
}

.hero-visual video,
.hero-visual .hero-poster{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:1;
  transition:opacity .7s ease;
}

.hero-visual video{
  z-index:2;
  display:block;
}

.hero-poster{
  z-index:1;
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(227,27,35,.15),
      transparent 27%
    ),
    linear-gradient(
      120deg,
      rgba(255,255,255,.2),
      rgba(7,30,63,.12)
    ),
    url("images/hero-press.svg") center/cover no-repeat;
}

.hero-visual::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.15);
}

.hero-visual::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:3;
  pointer-events:none;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,.12),
    transparent 22%
  );
}

.colour-bars{
  position:absolute;
  right:0;
  bottom:0;
  display:flex;
  height:8px;
  width:46%;
  z-index:4;
}

.colour-bars span{
  flex:1;
}

.colour-bars span:nth-child(1){
  background:#00a9e0;
}

.colour-bars span:nth-child(2){
  background:#d7197d;
}

.colour-bars span:nth-child(3){
  background:#ffd200;
}

.colour-bars span:nth-child(4){
  background:#111;
}

/* CORE SERVICES */

.core-services{
  background:#fff;
  border-bottom:1px solid var(--line);
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}

.service-card{
  position:relative;
  display:grid;
  grid-template-columns:72px 1fr;
  gap:20px;
  padding:42px 44px;
  border-right:1px solid var(--line);
  min-height:180px;
  align-items:start;
  overflow:hidden;
  background:#fff;

  transition:
    background-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.service-card:last-child{
  border-right:0;
}

.service-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:5px;
  background:var(--red);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
}

.service-card:nth-child(2)::after{
  background:var(--blue);
}

.service-card:nth-child(3)::after{
  background:#e2a400;
}

.service-card:hover,
.service-card:focus-visible{
  background:#f7f9fc;
  transform:translateY(-5px);
  box-shadow:0 16px 35px rgba(18,23,34,.1);
  z-index:2;
}

.service-card:hover::after,
.service-card:focus-visible::after{
  transform:scaleX(1);
}

.icon-box{
  width:60px;
  height:60px;
  color:var(--red);
  transition:
    transform .25s ease,
    color .25s ease;
}

.service-card:nth-child(2) .icon-box{
  color:var(--blue);
}

.service-card:nth-child(3) .icon-box{
  color:#e2a400;
}

.service-card:hover .icon-box,
.service-card:focus-visible .icon-box{
  transform:scale(1.1);
}

.service-card h2{
  font-size:20px;
  margin:2px 0 8px;
  transition:color .25s ease;
}

.service-card:hover h2,
.service-card:focus-visible h2{
  color:var(--red);
}

.service-card:nth-child(2):hover h2,
.service-card:nth-child(2):focus-visible h2{
  color:var(--blue);
}

.service-card:nth-child(3):hover h2,
.service-card:nth-child(3):focus-visible h2{
  color:#b47f00;
}

.service-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

/* WHY SATURNPRINT */

.why{
  color:#fff;
  background:linear-gradient(115deg,var(--blue-dark),var(--blue));
  position:relative;
  overflow:hidden;
}

.why::after{
  content:"";
  position:absolute;
  right:-80px;
  top:-100px;
  width:360px;
  height:360px;
  border:70px solid rgba(255,255,255,.045);
  border-radius:50%;
}

.why-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:70px;
  align-items:center;
  padding:72px 0;
}

.why h2{
  margin:0 0 18px;
  font-size:clamp(30px,3vw,48px);
  line-height:1.13;
  max-width:800px;
  letter-spacing:-.025em;
}

.why p{
  margin:0;
  color:#dbe6f7;
  font-size:16px;
  max-width:780px;
}

.reason-list{
  display:grid;
  gap:16px;
}

.reason{
  display:grid;
  grid-template-columns:28px 1fr;
  align-items:center;
  gap:12px;
  font-weight:800;
}

.check{
  width:24px;
  height:24px;
  border:2px solid var(--red);
  border-radius:50%;
  position:relative;
}

.check::after{
  content:"";
  position:absolute;
  width:8px;
  height:4px;
  border-left:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(-45deg);
  left:6px;
  top:6px;
}

/* PATHWAYS */

.pathways{
  padding:88px 0 96px;
  background:#fff;
}

.section-heading{
  text-align:center;
  margin-bottom:42px;
}

.section-heading .eyebrow{
  justify-content:center;
}

.section-heading h2{
  margin:0;
  font-size:clamp(32px,3vw,46px);
  line-height:1.1;
  letter-spacing:-.03em;
}

.section-heading p{
  color:var(--muted);
  margin:14px auto 0;
  max-width:650px;
}

.path-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.path-card{
  min-height:330px;
  padding:40px 34px 32px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fff,#f9fafc);
  position:relative;
  overflow:hidden;
  transition:.25s ease;
}

.path-card:hover{
  transform:translateY(-5px);
  border-color:#ccd3df;
  box-shadow:0 18px 45px rgba(22,43,77,.1);
}

.path-card::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:6px;
  background:var(--red);
}

.path-card:nth-child(2)::before{
  background:var(--blue);
}

.path-card:nth-child(3)::before{
  background:var(--yellow);
}

.path-icon{
  width:120px;
  height:120px;
  margin-bottom:30px;
  color:var(--red);
}

.path-card:nth-child(2) .path-icon{
  color:var(--blue);
}

.path-card:nth-child(3) .path-icon{
  color:#d99c00;
}

.path-card h3{
  margin:0 0 10px;
  font-size:24px;
}

.path-card p{
  margin:0 0 24px;
  color:var(--muted);
}

.text-link{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--red);
  font-weight:900;
}

.path-card:nth-child(2) .text-link{
  color:var(--blue);
}

.path-card:nth-child(3) .text-link{
  color:#b67c00;
}

.arrow{
  font-size:20px;
  transition:.2s;
}

.path-card:hover .arrow{
  transform:translateX(4px);
}

/* FOOTER CTA */

.footer-cta{
  background:var(--red);
  color:#fff;
  padding:44px 0;
}

.footer-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.footer-cta h2{
  margin:0;
  font-size:clamp(28px,3vw,42px);
}

.footer-cta p{
  margin:6px 0 0;
  color:#ffe8e9;
}

.footer-cta .button{
  background:#fff;
  color:var(--red);
  min-width:190px;
}

/* FOOTER */

.site-footer{
  background:#111722;
  color:#fff;
  padding:54px 0 24px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.15fr 1fr 1fr;
  gap:60px;
  padding-bottom:40px;
}


.footer-brand img{
  width:317px;
  max-height:86px;
  object-fit:contain;
  padding:8px;
}

.footer-brand p{
  color:#b8c0ce;
  max-width:420px;
  margin:18px 0 0;
}

.footer-title{
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:#fff;
  margin:0 0 18px;
}

.location{
  margin-bottom:22px;
  color:#c6ceda;
  font-size:14px;
}

.location strong{
  display:block;
  color:#fff;
  font-size:16px;
  margin-bottom:4px;
}

.footer-links{
  display:grid;
  gap:10px;
  color:#c6ceda;
  font-size:14px;
}

.footer-links a:hover{
  color:#fff;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:22px;
  color:#8f99a8;
  font-size:13px;
  display:flex;
  justify-content:space-between;
  gap:20px;
}

/* MOBILE NAVIGATION */

.mobile-nav{
  display:none;
  border-top:1px solid var(--line);
  background:#fff;
  padding:16px 24px 24px;
}

.mobile-nav.open{
  display:grid;
}

.mobile-nav a{
  padding:12px 0;
  border-bottom:1px solid var(--line);
  font-weight:800;
}

/* TABLET */

@media(max-width:1080px){

  .main-nav{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .nav-wrap .quote-button{
    display:none;
  }

  .hero{
    padding:44px 0;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .hero-copy{
    padding:8px 0 0;
    max-width:760px;
  }

  .hero-visual{
    width:100%;
    max-width:900px;
  }

  .service-card{
    padding:32px 25px;
  }

  .why-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

/* MOBILE */

@media(max-width:760px){

  .container{
    width:min(calc(100% - 30px),var(--max));
  }

  .header-inner{
    min-height:72px;
  }

  .brand img{
    width:185px;
    max-height:48px;
  }

  .hero{
    padding:36px 0 30px;
  }

  .hero-grid{
    gap:28px;
  }

  .hero h1{
    font-size:clamp(36px,10.5vw,46px);
  }

  .hero p{
    margin:18px 0 24px;
    font-size:16px;
  }

  .hero-copy{
    padding:0;
  }

  .hero-visual{
    border-radius:4px;
  }

  .service-grid,
  .path-grid{
    grid-template-columns:1fr;
  }

  .core-services .container{
    width:100%;
  }

  .service-card{
    grid-template-columns:52px 1fr;
    gap:16px;
    min-height:0;
    padding:22px 20px;
    border-right:0;
    border-bottom:1px solid var(--line);
    transform:none;
  }

  .service-card:last-child{
    border-bottom:0;
  }

  .icon-box{
    width:46px;
    height:46px;
  }

  .service-card h2{
    margin:0 0 5px;
    font-size:18px;
  }

  .service-card p{
    font-size:14px;
    line-height:1.42;
  }

  .service-card:hover,
  .service-card:focus-visible{
    transform:none;
    box-shadow:none;
  }

  .service-card:active{
    background:#f3f6fa;
  }

  .why-grid{
    padding:54px 0;
    gap:38px;
  }

  .pathways{
    padding:64px 0;
  }

  .footer-cta-inner{
    align-items:flex-start;
    flex-direction:column;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .footer-bottom{
    flex-direction:column;
  }
}