:root{
  --navy:#071427;
  --navy-2:#0b1c34;
  --blue:#0074d9;
  --yellow:#ffcc18;
  --orange:#f59e0b;
  --cream:#fff8e7;
  --white:#ffffff;
  --soft:#f4f7fb;
  --text:#101828;
  --muted:#596579;
  --line:rgba(15,23,42,.12);
  --shadow:0 24px 80px rgba(7,20,39,.18);
  --radius:24px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(1160px, calc(100% - 32px));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  top:-100px;
  left:16px;
  background:var(--yellow);
  color:var(--navy);
  padding:10px 14px;
  border-radius:999px;
  z-index:1000;
}

.skip-link:focus{
  top:16px;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:82px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  width:62px;
  height:62px;
  border-radius:18px;
  object-fit:cover;
  border:2px solid var(--yellow);
  background:var(--white);
}

.brand-title,
.brand-subtitle{
  display:block;
}

.brand-title{
  font-size:1rem;
  font-weight:800;
  letter-spacing:-.02em;
  text-transform:uppercase;
  line-height:1.05;
}

.brand-subtitle{
  font-size:.78rem;
  color:var(--muted);
  font-weight:600;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:6px;
}

.site-nav a{
  padding:10px 14px;
  border-radius:999px;
  font-size:.92rem;
  font-weight:600;
  color:var(--muted);
}

.site-nav a:hover,
.site-nav a:focus{
  background:var(--soft);
  color:var(--navy);
}

.nav-phone{
  background:var(--navy);
  color:var(--white);
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  box-shadow:0 14px 28px rgba(7,20,39,.18);
}

.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:0;
  border-radius:14px;
  background:var(--navy);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}

.menu-toggle span:not(.sr-only){
  width:22px;
  height:2px;
  background:var(--white);
  border-radius:999px;
}

.hero{
  position:relative;
  min-height:760px;
  overflow:hidden;
  color:var(--white);
  background:var(--navy);
}

.hero-media{
  position:absolute;
  inset:0;
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,204,24,.24), transparent 38%),
    linear-gradient(90deg, rgba(7,20,39,.96), rgba(7,20,39,.74) 45%, rgba(7,20,39,.30));
}

.hero-grid{
  position:relative;
  z-index:1;
  min-height:760px;
  display:grid;
  grid-template-columns:minmax(0, 1fr) 360px;
  gap:42px;
  align-items:center;
  padding-block:92px;
}

.eyebrow,
.section-kicker{
  margin:0 0 14px;
  color:var(--yellow);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.78rem;
  font-weight:800;
}

.hero h1{
  margin:0;
  font-size:clamp(2.6rem, 7vw, 5.8rem);
  line-height:.95;
  letter-spacing:-.06em;
  max-width:930px;
}

.hero-lead{
  margin:24px 0 0;
  font-size:clamp(1.05rem, 2vw, 1.35rem);
  color:rgba(255,255,255,.86);
  max-width:690px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  border:0;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(135deg, var(--yellow), var(--orange));
  color:var(--navy);
  box-shadow:0 18px 42px rgba(245,158,11,.28);
}

.btn-secondary{
  background:rgba(255,255,255,.12);
  color:var(--white);
  border:1px solid rgba(255,255,255,.28);
}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:36px;
}

.trust-row span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:rgba(255,255,255,.86);
  font-size:.9rem;
  font-weight:700;
}

.hero-card{
  background:rgba(255,255,255,.94);
  color:var(--navy);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}

.hero-card img{
  width:150px;
  margin:0 auto 18px;
  border-radius:20px;
  background:var(--white);
  border:3px solid var(--yellow);
}

.hero-card h2{
  margin:0;
  font-size:1.65rem;
  line-height:1.1;
  letter-spacing:-.03em;
}

.hero-card p{
  color:var(--muted);
  margin:12px 0 22px;
}

.card-call,
.card-email{
  display:block;
  padding:13px 14px;
  border-radius:16px;
  background:var(--soft);
  margin-top:10px;
  font-weight:800;
  word-break:break-word;
}

.card-call{
  background:var(--navy);
  color:var(--white);
}

.quick-contact{
  margin-top:-52px;
  position:relative;
  z-index:5;
}

.quick-contact-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:14px;
}

.quick-contact a{
  padding:18px;
  border-radius:18px;
  background:var(--soft);
}

.quick-contact span{
  display:block;
  color:var(--muted);
  font-size:.82rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.quick-contact strong{
  display:block;
  margin-top:3px;
  color:var(--navy);
  font-size:1rem;
}

.section{
  padding:92px 0;
}

.intro-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:start;
}

h2{
  margin:0;
  font-size:clamp(2rem, 4vw, 3.4rem);
  line-height:1.03;
  letter-spacing:-.05em;
  color:var(--navy);
}

.intro p:last-child{
  margin:34px 0 0;
  color:var(--muted);
  font-size:1.1rem;
}

.services{
  background:linear-gradient(180deg, var(--soft), #ffffff);
}

.section-heading{
  max-width:760px;
  margin-bottom:36px;
}

.section-heading p:not(.section-kicker){
  color:var(--muted);
  margin:16px 0 0;
  font-size:1.04rem;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.service-card{
  position:relative;
  overflow:hidden;
  min-height:250px;
  padding:26px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 18px 44px rgba(15,23,42,.06);
}

.service-card::after{
  content:"";
  position:absolute;
  width:160px;
  height:160px;
  right:-70px;
  bottom:-70px;
  background:radial-gradient(circle, rgba(255,204,24,.34), transparent 70%);
}

.service-card .icon{
  display:inline-flex;
  width:46px;
  height:46px;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:var(--navy);
  color:var(--yellow);
  font-weight:900;
  margin-bottom:22px;
}

.service-card h3,
.benefits h3{
  margin:0;
  color:var(--navy);
  font-size:1.25rem;
  line-height:1.15;
  letter-spacing:-.02em;
}

.service-card p,
.benefits p{
  margin:12px 0 0;
  color:var(--muted);
}

.licence-note{
  margin:22px 0 0;
  color:var(--muted);
  font-size:.92rem;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:260px;
  gap:16px;
}

.gallery figure{
  position:relative;
  margin:0;
  overflow:hidden;
  border-radius:24px;
  background:var(--navy);
  box-shadow:0 18px 44px rgba(15,23,42,.09);
}

.gallery-large{
  grid-column:span 2;
  grid-row:span 2;
}

.gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.gallery figure:hover img{
  transform:scale(1.04);
}

.gallery figcaption{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  padding:12px 14px;
  border-radius:16px;
  color:var(--white);
  background:rgba(7,20,39,.72);
  backdrop-filter:blur(12px);
  font-weight:700;
  font-size:.92rem;
}

.why-us{
  background:var(--navy);
  color:var(--white);
}

.why-us h2{
  color:var(--white);
}

.why-us p{
  color:rgba(255,255,255,.78);
}

.why-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:52px;
  align-items:start;
}

.benefits{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}

.benefits div{
  padding:24px;
  border-radius:22px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}

.benefits span{
  display:inline-flex;
  width:38px;
  height:38px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:var(--yellow);
  color:var(--navy);
  font-weight:900;
  margin-bottom:16px;
}

.benefits h3{
  color:var(--white);
}

.quote{
  background:
    radial-gradient(circle at top left, rgba(255,204,24,.16), transparent 36%),
    var(--soft);
}

.quote-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:stretch;
}

.quote-panel,
.quote-form{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 18px 44px rgba(15,23,42,.08);
  padding:34px;
}

.quote-panel{
  background:var(--navy);
  color:var(--white);
}

.quote-panel h2{
  color:var(--white);
}

.quote-panel p{
  color:rgba(255,255,255,.78);
}

.quote-details{
  display:grid;
  gap:10px;
  margin-top:28px;
}

.quote-details a,
.quote-details span{
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.14);
  font-weight:700;
  word-break:break-word;
}

.quote-form{
  display:grid;
  gap:16px;
}

.quote-form label{
  display:grid;
  gap:8px;
  font-weight:800;
  color:var(--navy);
}

.quote-form input,
.quote-form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 16px;
  font:inherit;
  background:var(--soft);
  outline:none;
}

.quote-form input:focus,
.quote-form textarea:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(0,116,217,.12);
}

.quote-form .btn{
  width:fit-content;
}

.form-note{
  margin:0;
  color:var(--muted);
  font-size:.9rem;
}

.service-area{
  padding-top:0;
}

.service-area-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:32px;
  padding:34px;
  border-radius:var(--radius);
  background:linear-gradient(135deg, var(--navy), var(--navy-2));
  color:var(--white);
  overflow:hidden;
  position:relative;
}

.service-area-card::after{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  right:-160px;
  top:-160px;
  background:radial-gradient(circle, rgba(255,204,24,.34), transparent 70%);
}

.service-area-card > *{
  position:relative;
  z-index:1;
}

.service-area-card h2{
  color:var(--white);
}

.service-area-card p{
  color:rgba(255,255,255,.78);
  max-width:760px;
}

.site-footer{
  padding:48px 0;
  background:#030914;
  color:rgba(255,255,255,.76);
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1.2fr;
  gap:32px;
  align-items:start;
}

.site-footer img{
  width:88px;
  border-radius:18px;
  background:var(--white);
  border:2px solid var(--yellow);
}

.site-footer p{
  margin:10px 0 0;
}

.site-footer a{
  color:var(--white);
  font-weight:700;
}

.copyright{
  font-size:.86rem;
  color:rgba(255,255,255,.52);
}

@media (max-width: 960px){
  .nav-phone{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .site-nav{
    position:absolute;
    top:82px;
    left:16px;
    right:16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:12px;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:20px;
    box-shadow:var(--shadow);
  }

  .site-nav.is-open{
    display:flex;
  }

  .site-nav a{
    color:var(--navy);
    padding:14px 16px;
  }

  .hero,
  .hero-grid{
    min-height:auto;
  }

  .hero-grid{
    grid-template-columns:1fr;
    padding-block:72px 112px;
  }

  .hero-card{
    max-width:460px;
  }

  .quick-contact-grid,
  .intro-grid,
  .service-grid,
  .why-grid,
  .quote-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .gallery{
    grid-template-columns:repeat(2, 1fr);
  }

  .gallery-large{
    grid-column:span 2;
  }

  .benefits{
    grid-template-columns:1fr;
  }

  .service-area-card{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width: 620px){
  .container{
    width:min(100% - 24px, 1160px);
  }

  .nav-wrap{
    min-height:74px;
  }

  .brand img{
    width:52px;
    height:52px;
  }

  .brand-title{
    font-size:.86rem;
  }

  .brand-subtitle{
    font-size:.72rem;
  }

  .site-nav{
    top:74px;
  }

  .hero-grid{
    padding-block:56px 96px;
  }

  .hero h1{
    font-size:3rem;
  }

  .hero-overlay{
    background:linear-gradient(180deg, rgba(7,20,39,.88), rgba(7,20,39,.76));
  }

  .hero-actions,
  .trust-row{
    flex-direction:column;
    align-items:stretch;
  }

  .quick-contact{
    margin-top:-36px;
  }

  .section{
    padding:68px 0;
  }

  .service-grid{
    gap:14px;
  }

  .service-card,
  .quote-panel,
  .quote-form{
    padding:24px;
  }

  .gallery{
    grid-template-columns:1fr;
    grid-auto-rows:240px;
  }

  .gallery-large{
    grid-column:span 1;
    grid-row:span 1;
  }

  .quick-contact-grid{
    padding:10px;
  }

  .quick-contact a{
    padding:16px;
  }
}
