:root{
  --navy: #0F2557;
  --navy-deep: #0A1B40;
  --blue: #1B3F8C;
  --orange: #E85D25;
  --orange-dark: #C94A18;
  --white: #FFFFFF;
  --light: #F2F4F8;
  --line: #DCE1EA;
  --text: #14171F;
  --text-soft: #5B6472;
  --radius: 6px;
  --container: 1180px;
  --shadow: 0 8px 24px rgba(15, 37, 87, 0.10);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}
h1,h2,h3,h4{
  font-family: 'Oswald', 'Inter', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.15;
}
p{ margin: 0 0 1em; color: var(--text-soft); }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }
ul{ list-style:none; margin:0; padding:0; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  display:inline-block;
  font-family:'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:8px;
  font-family:'Oswald', sans-serif;
  font-weight:600;
  letter-spacing:0.04em;
  text-transform:uppercase;
  font-size:15px;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary{ background: var(--orange); color:var(--white); }
.btn-primary:hover{ background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline{ background:transparent; border-color: var(--white); color:var(--white); }
.btn-outline:hover{ background: var(--white); color: var(--navy); }
.btn-navy{ background: var(--navy); color:var(--white); }
.btn-navy:hover{ background: var(--navy-deep); transform: translateY(-2px); }

/* ---------- Placeholder image blocks ---------- */
.ph{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    repeating-linear-gradient(45deg, #E3E8F2, #E3E8F2 10px, #EDF0F7 10px, #EDF0F7 20px);
  border: 2px dashed #B9C3D6;
  color: #6B7690;
  font-family:'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  overflow:hidden;
  padding: 12px;
}
.ph span{ background: rgba(255,255,255,0.85); padding: 6px 12px; border-radius: 4px; }

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 24px;
  gap: 20px;
}
.logo-ph{ width:150px; height:70px; font-size:11px; flex-shrink:0; }
.nav-links{
  display:flex;
  gap: 32px;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.nav-links a{
  font-family:'Oswald', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.nav-links a:hover, .nav-links a.active{ border-color: var(--orange); color: var(--orange); }
.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-contact{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
}
.nav-phone,
.nav-email{
  font-family:'Oswald', sans-serif;
  font-weight:600;
  color: var(--navy);
  font-size:16px;
  display:flex; align-items:center; gap:8px;
  transition: color .15s ease;
}
.nav-phone:hover,
.nav-email:hover{ color: var(--orange); }
.nav-phone svg,
.nav-email svg{ width:18px; height:18px; fill: var(--orange); }
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding: 6px;
}
.nav-toggle span{ width:26px; height:3px; background: var(--navy); border-radius:2px; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background: linear-gradient(120deg, rgba(10,27,64,0.90), rgba(15,37,87,0.55));
  overflow:hidden;
  height: 550px;
  width: 100%;
  box-shadow: 0 6px 6px -2px rgba(0, 0, 0, 0.15);
}
.hero-img,
.page-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-ph{ height: 480px; border-radius:0; border-width:0 0 0 0; border:none; }
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(100deg, rgba(10,27,64,0.92) 0%, rgba(10,27,64,0.55) 45%, rgba(10,27,64,0.15) 75%);
  display:flex;
  align-items:center;
}
.hero-content{ max-width: 560px; padding: 0 24px; }
.hero-content h1{
  color: var(--white);
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 18px;
}
.hero-content h1 em{
  font-style:normal;
  color: var(--orange);
}
.hero-content p{ color: #D9E0F0; font-size:17px; max-width: 460px; }
.hero-actions{ display:flex; gap:16px; margin-top: 24px; flex-wrap:wrap; }


/* ---------- Info bar ---------- */
.info-bar{
  background: var(--blue);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  display:flex;
  gap:16px;
  align-items:flex-start;
  margin-bottom: 28px;
}
.info-bar svg{ flex-shrink:0; width:30px; height:30px; fill:var(--white); margin-top:2px; }
.info-bar p{ color: #DCE6FB; margin:0; font-size:14.5px; }
.info-bar strong{ color:var(--white); }

/* ---------- Sections ---------- */
.section{ padding: 72px 0; }
.section-light{ background: var(--light); }
.section-head{ max-width: 640px; margin-bottom: 40px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- Service / feature cards ---------- */
.grid-5{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.service-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 16px;
  text-align:center;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.service-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange); }
.service-card .icon-ph{ width:56px; height:56px; margin:0 auto 14px; border-radius:50%; font-size:9px; }
.service-card h4{ font-size:15px; margin-bottom:0; color: var(--navy); }

/* ---------- Pricing panels (mirrors flyer layout) ---------- */
.pricing-layout{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items:start;
}
.price-panel{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  margin-bottom: 24px;
  background: var(--white);
}
.price-panel-head{
  background: var(--navy);
  color: var(--white);
  display:flex;
  align-items:center;
  gap:12px;
  padding: 14px 20px;
  font-family:'Oswald', sans-serif;
  text-transform:uppercase;
  letter-spacing:0.04em;
  font-size: 17px;
}
.price-panel-head svg{ width:22px; height:22px; fill: var(--orange); }
.price-row{
  display:grid;
  grid-template-columns: 68px 1fr auto;
  gap:16px;
  align-items:center;
  padding: 12px 20px;
  border-top: 1px solid var(--line);
}
.price-row .thumb-ph{ width:68px; height:52px; font-size:8px; display:flex; align-items:center; justify-content:center; }
.price-row .thumb-ph img{
  display:block;
  width:68px;
  height:52px;
  border-radius: 10px;
  object-fit:cover;
  margin:0 auto;
}
.price-row .item-name{ color: var(--text); font-weight:500; }
.price-row .item-price{
  font-family:'Oswald', sans-serif;
  color: var(--navy);
  font-size: 20px;
  font-weight:600;
  white-space:nowrap;
}
.price-row .item-price small{
  font-family:'Inter', sans-serif;
  font-weight:400;
  font-size:12px;
  color: var(--text-soft);
  text-transform:none;
  letter-spacing:0;
  margin-left:4px;
}
.panel-note{
  display:flex;
  gap:12px;
  background: var(--light);
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--text-soft);
}
.panel-note svg{ width:20px; height:20px; fill: var(--blue); flex-shrink:0; }

/* ---------- Quote CTA sidebar box ---------- */
.quote-box{
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
  padding: 30px 26px;
  text-align:center;
  position: sticky;
  top: 100px;
}
.quote-box .eyebrow2{
  font-family:'Oswald', sans-serif;
  font-size:14px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:#B9C7EA;
}
.quote-box .free{
  font-family:'Oswald', sans-serif;
  font-size:52px;
  font-weight:700;
  color: var(--orange);
  line-height:1;
  margin: 6px 0;
}
.quote-box .sub{
  font-family:'Oswald', sans-serif;
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:0.03em;
  color:#E5EAF6;
  margin-bottom:20px;
}
.quote-box hr{ border:none; border-top:1px solid rgba(255,255,255,0.18); margin: 20px 0; }
.contact-icons{
  display:flex; align-items:center; justify-content:center; gap:16px;
  margin: 0 auto 20px;
}
.phone-ring{
  width:56px; height:56px; border-radius:50%;
  border: 2px solid var(--white);
  display:flex; align-items:center; justify-content:center;
  color: var(--white);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.phone-ring:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.8);
}
.phone-ring svg{ width:24px; height:24px; fill:currentColor; }
.logo-strip-ph{ height:70px; margin: 0 auto 18px; font-size:10px; }
.trust-row{ display:flex; align-items:center; gap:10px; justify-content:center; color:#D9E0F0; font-size:13px; text-align:left; }
.trust-row svg{ width:26px; height:26px; fill: var(--orange); flex-shrink:0; }

/* ---------- Icon strip (bottom of flyer) ---------- */
.icon-strip{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display:grid;
  grid-template-columns: repeat(5,1fr);
}
.icon-strip .item{
  display:flex; flex-direction:column; align-items:center; gap:10px;
  padding: 22px 10px;
  border-right: 1px solid var(--line);
}
.icon-strip .item:last-child{ border-right:none; }
.icon-strip .icon-ph{ width:40px; height:40px; border-radius:50%; font-size:8px; }
.icon-strip span{
  font-family:'Oswald', sans-serif;
  font-size:12.5px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color: var(--navy);
  font-weight:600;
}

/* ---------- Page header banner (gallery / about) ---------- */
.page-banner{ position:relative; }
.page-banner-ph{ height: 260px; border-radius:0; border:none; }
.page-banner-overlay{
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(10,27,64,0.90), rgba(15,37,87,0.55));
  display:flex; align-items:center;
}
.page-banner-content h1{ color:var(--white); margin-bottom:8px; }
.page-banner-content p{ color:#D9E0F0; margin:0; }

/* ---------- Gallery ---------- */
.filter-bar{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 34px; }
.filter-btn{
  font-family:'Oswald', sans-serif;
  font-size:13.5px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  font-weight:600;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 999px;
  cursor:pointer;
  transition: all .15s ease;
}
.filter-btn:hover{ border-color: var(--orange); color: var(--orange); }
.filter-btn.active{ background: var(--orange); border-color: var(--orange); color: var(--white); }

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-card{
  display:flex;
  flex-direction:column;
  height:100%;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  background: var(--white);
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.gallery-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-thumb-ph{
  position:relative;
  height: 220px;
  min-height: 220px;
  border-radius:0;
  border-width:0;
  font-size:11px;
  background: var(--white);
  overflow:hidden;
}
.gallery-thumb-ph img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  object-position:center;
  background: var(--white);
}
.gallery-caption{
  background: rgba(255,255,255,0.98);
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}
.gallery-caption .tag{
  font-family:'Oswald', sans-serif;
  font-size:11.5px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color: var(--orange);
}
.gallery-caption h4{ margin: 4px 0 0; font-size:16px; }

.hidden{ display:none !important; }

/* Lightbox */
.lightbox{
  position:fixed; inset:0; background: rgba(10,15,30,0.92);
  display:flex; align-items:center; justify-content:center;
  z-index: 1000; padding: 40px;
  opacity:0; pointer-events:none; transition: opacity .2s ease;
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox-inner{ max-width: 900px; width:100%; }
.lightbox-ph{
  height: min(72vh, 620px); font-size:14px;
  background: #0f255700; border-radius: var(--radius); overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  /* border: 1px solid rgba(255,255,255,0.12); */
}
.lightbox-image{
  width:100%; height:100%; object-fit:contain; display:block;
  background: #0f255700; border-radius: var(--radius);
}
.lightbox-caption{ color:#D9E0F0; text-align:center; margin-top:16px; font-family:'Oswald', sans-serif; letter-spacing:0.03em; }
.lightbox-close{
  position:absolute; top:24px; right:32px;
  background:none; border:none; color:var(--white);
  font-size:34px; line-height:1; cursor:pointer;
}

/* ---------- About page ---------- */
.about-story{ display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:center; }
.about-story-ph{ height: 380px; }
.values-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.value-card{
  background: var(--white);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
}
.value-card .icon-ph{ width:48px; height:48px; border-radius:50%; margin-bottom:16px; font-size:8px; }
.value-card h4{ font-size:16px; margin-bottom:8px; }
.value-card p{ font-size:14px; margin:0; }

.process-steps{ counter-reset: step; display:flex; flex-direction:column; gap:0; }
.process-step{
  display:flex; gap:24px; padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.process-step:last-child{ border-bottom:none; }
.process-num{
  counter-increment: step;
  font-family:'Oswald', sans-serif;
  font-size: 34px;
  font-weight:700;
  color: var(--orange);
  min-width: 56px;
}
.process-num::before{ content: counter(step, decimal-leading-zero); }
.process-step h4{ margin-bottom:6px; }
.process-step p{ margin:0; }

.logo-cloud{ display:flex; gap:24px; flex-wrap:wrap; justify-content:center; }
.logo-cloud .ph{ width:140px; height:70px; font-size:9px; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy-deep); color:#C7D0E6; padding: 56px 0 24px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo-ph{ width:150px; height:70px; font-size:10px; margin-bottom:16px; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.25); color:#B9C3D6;}
.footer-grid h5{
  font-family:'Oswald', sans-serif;
  color: var(--white);
  text-transform:uppercase;
  letter-spacing:0.04em;
  font-size:14px;
  margin-bottom:16px;
}
.footer-grid ul li{ margin-bottom:10px; font-size:14.5px; }
.footer-grid ul li a:hover{ color: var(--orange); }
.footer-social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border-radius:50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background .2s ease, transform .2s ease;
}
.footer-social img{
  width:18px;
  height:18px;
  display:block;
}
.footer-social:hover{
  background: rgba(232, 93, 37, 0.16);
  transform: translateY(-1px);
}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px 18px;
  font-size: 13px; color:#8C97B5;
}
.footer-bottom #mjq-widget{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  width:100%;
  max-width:100px;
}
.footer-bottom #mjq-widget > *{
  max-width:100%;
  width:100%;
  display:block;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px){
  .grid-5{ grid-template-columns: repeat(3,1fr); }
  .icon-strip{ grid-template-columns: repeat(3,1fr); }
  .icon-strip .item:nth-child(3){ border-right:none; }
  .pricing-layout{ grid-template-columns: 1fr; }
  .quote-box{ position:static; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .about-story{ grid-template-columns: 1fr; }
  .values-grid{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  .site-header.nav-hidden{ transform: translateY(-110%); }
  .nav-links, .nav-cta .nav-contact{ display:none; }
  .nav-toggle{ display:flex; }
  .site-header.open .nav-links{
    display:flex; flex-direction:column; align-items:flex-start; gap:0;
    position:absolute; top:100%; left:0; right:0;
    background: var(--white); border-bottom:1px solid var(--line);
    padding: 10px 24px 20px;
  }
  .site-header.open .nav-links a{ width:100%; padding:12px 0; border-bottom:1px solid var(--line); }
  .btn{
    padding: 10px 16px;
    font-size: 13px;
  }
  .hero-actions{
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn{
    width: 100%;
    justify-content: center;
  }
  .grid-5{ grid-template-columns: repeat(2,1fr); }
  .icon-strip{ grid-template-columns: repeat(2,1fr); }
  .icon-strip .item:nth-child(2n){ border-right:none; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .values-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-bottom #mjq-widget{
    width: 100%;
    max-width: 180px;
    justify-content:flex-start;
    transform: scale(0.82);
    transform-origin: left center;
  }
  .footer-bottom #mjq-widget > *{
    max-width: 100%;
    display:block;
  }
  .hero-ph{ height:380px; }
  .price-row{
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 12px 16px;
  }
  .price-row .thumb-ph{ width:56px; height:48px; }
  .price-row .item-name{ min-width:0; overflow-wrap:anywhere; }
  .price-row .item-price{
    grid-column: 2;
    white-space:normal;
    line-height:1.25;
  }
  .price-row .item-price small{ display:block; margin-left:0; }
}
