/* Ed the Spread - Static rebuild
   Palette approximated from screenshots:
   --red: header/footer
   --navy: main background
*/
:root{
  --red:#c0443e;
  --red-dark:#a63631;
  --navy:#062538;
  --navy-2:#041e2d;
  --text:#eaf2f7;
  --muted:rgba(234,242,247,.78);
  --card:#0b3348;
  --line:rgba(255,255,255,.10);
  --max:1100px;
  --radius:10px;
  --shadow:0 14px 30px rgba(0,0,0,.25);
  --font: system-ui,-apple-system,Segoe UI,Roboto,Inter,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  background:var(--navy);
  color:var(--text);
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
p{color:var(--muted); line-height:1.65}
.container{width:min(var(--max), calc(100% - 48px)); margin:0 auto}

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 12px; background:#fff; color:#000; z-index:9999;
  border-radius:8px;
}

/* Header */
.header{
  background:var(--red);
  position:sticky; top:0; z-index:50;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px; padding:16px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width:210px;
}
.brand img{height:60px; width:auto}
.nav{
  display:flex; align-items:center; gap:22px;
  font-size:14px;
}
.nav a{opacity:.95}
.nav a:hover{opacity:1; text-decoration:underline}
.nav .cta{
  background:rgba(0,0,0,.20);
  padding:10px 14px;
  border-radius:999px;
}
.nav-toggle{
  display:none;
  background:rgba(0,0,0,.18);
  border:0; color:#fff;
  width:44px; height:44px;
  border-radius:10px;
  cursor:pointer;
}
.nav-toggle span{display:block; width:22px; height:2px; background:#fff; margin:5px auto; border-radius:2px}

@media (max-width: 860px){
  .nav-toggle{display:block}
  .nav{
    position:absolute;
    left:0; right:0; top:76px;
    background:var(--red);
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:14px 24px 22px;
    border-top:1px solid rgba(255,255,255,.18);
  }
  .nav.open{display:flex}
  .nav a{padding:10px 0; width:100%}
  .nav .cta{width:100%; text-align:center}
}

/* Hero */
.hero{
  position:relative;
  min-height:560px;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  background:var(--navy);
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(6,37,56,.88) 0%, rgba(6,37,56,.35) 55%, rgba(6,37,56,.10) 100%),
    var(--hero-image);
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero-content{
  position:relative;
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
  padding:50px 0 0;
}

/* Centered hero text */
.hero h1,
.hero .hero-desc,
.hero .subline{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  max-width:100%;
}

@media (min-width: 1024px){
  .hero h1,
  .hero .hero-desc,
  .hero .subline{
    max-width: calc(100% - 400px);
  }
}
@media (max-width: 1023px){
  .hero h1,
  .hero .hero-desc,
  .hero .subline{
    max-width: calc(100% - 60px);
  }
}

.hero h1{
  margin-top:0;
  margin-bottom:12px;
  font-size:46px;
  letter-spacing:.2px;
  line-height:1.1;
}
.hero .hero-desc{
  margin:0 auto 14px;
  font-size:20px;
  color:rgba(255,255,255,.88);
  line-height:1.7;
}
.hero .subline{
  font-size:24px;
  font-weight:600;
  color:rgba(255,255,255,.85);
  margin:0 auto 18px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border:0; cursor:pointer;
  padding:12px 18px;
  border-radius:999px;
  background:var(--red);
  color:#fff;
  font-weight:700;
  letter-spacing:.2px;
}
.btn:hover{background:var(--red-dark)}
.btn.ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.25);
}
.hero .btn{
  margin-left:auto;
  margin-right:auto;
}

/* Hero cards */
.hero-cards{
  position:relative;
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  transform: translateY(30px);
  padding-bottom:50px;
}
.hero-card{
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.10);
  border-radius:8px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-card a{display:block}
.hero-card .label{
  padding:12px 14px;
  font-weight:600;
  background:rgba(4,30,45,.85);
}
.hero-card img{height:150px; width:100%; object-fit:cover; opacity:.92}

@media (max-width: 980px){
  .hero h1{font-size:40px}
}
@media (max-width: 860px){
  .hero{min-height:520px}
  .hero h1{font-size:34px}
  .hero-cards{grid-template-columns:1fr; transform:translateY(60px); padding-bottom:60px}
}

/* Sections */
.section{padding:64px 0}
.section-tight{padding:44px 0}
.section-title{
  margin:0 0 10px;
  font-size:28px;
  letter-spacing:.2px;
}
.grid-2{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.card{
  background:var(--navy-2);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  box-shadow:var(--shadow);
}
.card.pad{padding:22px}
.signature{
  margin-top:18px;
  font-weight:800;
}
.signature small{display:block; font-weight:600; color:rgba(255,255,255,.70)}
@media (max-width: 860px){
  .grid-2{grid-template-columns:1fr}
}

/* Slider */
.slider{
  position:relative;
  overflow:hidden;
  background:#000;
}
.slider-track{
  display:flex;
  transition:transform .45s ease;
}
.slide{
  min-width:100%;
  height:520px;
  background-size:cover;
  background-position:center;
}
.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px; height:44px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  background:rgba(255,255,255,.88);
  color:#000;
  display:grid; place-items:center;
}
.slider-btn:hover{background:#fff}
.slider-btn.prev{left:18px}
.slider-btn.next{right:18px}
.dots{
  position:absolute; left:0; right:0; bottom:18px;
  display:flex; justify-content:center; gap:8px;
}
.dot{
  width:7px; height:7px;
  border-radius:999px;
  background:rgba(255,255,255,.35);
  border:0; cursor:pointer;
}
.dot.active{background:var(--red)}
@media (max-width:860px){
  .slide{height:360px}
}

/* Testimonials block (home) */
.quote-block{
  background:var(--navy);
  text-align:center;
  padding:56px 0;
}
.quote-mark{
  width:40px; height:40px;
  margin:0 auto 14px;
  color:var(--red);
}
.quote-text{
  width:min(680px, calc(100% - 48px));
  margin:0 auto;
  font-size:22px;
  color:rgba(255,255,255,.88);
  line-height:1.75;
}
.quote-by{margin-top:16px; font-weight:800}
.quote-by small{display:block; margin-top:4px; font-weight:600; color:rgba(255,255,255,.70)}

/* Services / feature icons */
.icon-row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-top:18px;
}
.icon-card{
  text-align:center;
  padding:18px 14px;
  border-top:1px solid rgba(255,255,255,.08);
}
.icon-card svg{width:34px; height:34px; color:var(--red); margin:0 auto 10px}
.icon-card h3{margin:0 0 8px; font-size:16px; letter-spacing:.6px}
.icon-card p{margin:0; font-size:13px}

@media (max-width:860px){
  .icon-row{grid-template-columns:1fr}
}

/* Icon ordering on mobile (explicit) */
@media (max-width: 860px){
  .icon-card{
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  .icon-card.image-first .icon-card__media{ order: 1 !important; }
  .icon-card.image-first .icon-card__content{ order: 2 !important; }

  .icon-card.text-first .icon-card__media{ order: 2 !important; }
  .icon-card.text-first .icon-card__content{ order: 1 !important; }
}

/* Alternating blocks */
.alt{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:420px;
}
.alt .img{
  background-size:cover; background-position:center;
}
.alt .txt{
  padding:34px;
  display:flex; flex-direction:column; justify-content:center;
  background:var(--navy-2);
}
.alt h2{margin:0 0 10px; font-size:30px;}
.checklist{
  margin:12px 0 0; padding:0;
  list-style:none;
  display:grid; gap:8px;
}
.checklist li{display:flex; gap:10px; align-items:flex-start; color:rgba(255,255,255,.85); font-size:13px}
.checklist svg{flex:0 0 16px; margin-top:2px}

/* ALT ordering on mobile (explicit control) */
@media (max-width:860px){
  .alt{
    display:grid;
    grid-template-columns:1fr;
  }
  .alt > .img{ min-height:260px; }

  .alt.image-first > .img{ grid-row:1; }
  .alt.image-first > .txt{ grid-row:2; }

  .alt.text-first > .txt{ grid-row:1; }
  .alt.text-first > .img{ grid-row:2; }
}

/* Gallery mosaic + lightbox */
.mosaic{
  display:grid;
  gap:10px;
  grid-template-columns:1fr 1.6fr 1fr;
  grid-template-rows:220px 220px 220px;
  grid-template-areas:
    "a b b"
    "c b b"
    "d e f";
}
.mosaic a{
  position:relative;
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}
.mosaic img{width:100%; height:100%; object-fit:cover; transition:transform .25s ease}
.mosaic a:hover img{transform:scale(1.03)}
.mosaic .a{grid-area:a}
.mosaic .b{grid-area:b}
.mosaic .c{grid-area:c}
.mosaic .d{grid-area:d}
.mosaic .e{grid-area:e}
.mosaic .f{grid-area:f}

@media (max-width: 980px){
  .mosaic{
    grid-template-columns:1fr 1fr;
    grid-template-rows:220px 220px 220px;
    grid-template-areas:
      "b b"
      "a c"
      "d e";
  }
  .mosaic .f{display:none}
}
@media (max-width: 620px){
  .mosaic{
    grid-template-columns:1fr;
    grid-template-rows:220px 220px 220px 220px;
    grid-template-areas:
      "b"
      "a"
      "c"
      "d";
  }
  .mosaic .e,.mosaic .f{display:none}
}

/* Lightbox */
.lightbox{
  position:fixed; inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center; justify-content:center;
  z-index:1000;
  padding:20px;
}
.lightbox.open{display:flex}
.lightbox img{
  max-width:min(1080px, 100%);
  max-height: calc(100vh - 100px);
  border-radius:12px;
  box-shadow:var(--shadow);
}
.lightbox .close{
  position:absolute;
  top:18px; right:18px;
  width:44px; height:44px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.92);
  cursor:pointer;
}
.lightbox .nav{
  position:absolute; inset:auto;
  display:flex; gap:10px;
}
.lightbox .prev, .lightbox .next{
  position:absolute;
  top:50%; transform:translateY(-50%);
  width:44px; height:44px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.92);
  cursor:pointer;
}
.lightbox .prev{left:18px}
.lightbox .next{right:18px}

/* Forms */
.form{
  display:grid;
  gap:14px;
}
.field label{display:block; font-size:12px; color:rgba(255,255,255,.75); margin:0 0 6px}
.field input, .field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.12);
  color:#fff;
  outline:none;
}
.field textarea{
  border-radius:12px;
  min-height:160px;
  resize:vertical;
}
.field input:focus, .field textarea:focus{
  border-color:rgba(255,255,255,.30);
}
.form .btn{width:140px}
.form-note{font-size:12px; color:rgba(255,255,255,.70)}

/* CTA strip + footer */
.cta-strip{
  background:var(--red);
  padding:26px 0;
}
.cta-strip .inner{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.cta-strip h3{margin:0; font-size:28px}
.cta-strip p{margin:4px 0 0; color:rgba(255,255,255,.88); font-size:15px}
@media (max-width:860px){
  .cta-strip .inner{flex-direction:column; align-items:flex-start}
}

.footer-top{
  background:var(--red);
  padding:44px 0 30px;
}
.footer-email{
  text-align:center;
  font-size:34px;
  font-weight:800;
  letter-spacing:.3px;
  margin:0 0 22px;
}
.footer-email small{
  display:block;
  font-size:10px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  opacity:.85;
  font-weight:700;
  margin-bottom:10px;
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
  text-align:center;
}
.footer-item{
  padding:12px 10px;
  color:rgba(255,255,255,.92);
  font-size:12px;
}
.footer-item svg{width:28px; height:28px; margin:0 auto 8px}
.footer-item b{display:block; font-size:11px; letter-spacing:.8px}
.footer-item a{text-decoration:underline}
@media (max-width:860px){
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-email{font-size:26px}
}

.footer-bottom{
  background:var(--navy-2);
  padding:18px 0 34px;
  border-top:1px solid rgba(255,255,255,.10);
}
.footer-nav{
  display:flex; gap:18px;
  font-weight:600;
  font-size:12px;
}
.footer-nav a{opacity:.92}
.footer-nav a:hover{opacity:1; text-decoration:underline}
.footer-copy{
  margin-top:12px;
  font-size:11px;
  color:rgba(255,255,255,.55);
}

/* Utilities */
.hr{height:1px; background:var(--line); margin:24px 0}
.center{text-align:center}

/* =========================
   Testimonials grid (single source of truth)
   ========================= */
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
  padding:26px 0 60px;
}
@media (max-width:860px){
  .testimonials-grid{
    grid-template-columns:1fr;
    gap:30px;
  }
}
