:root{
  --blue:#1777df;
  --blue-dark:#0d4e9f;
  --black:#070707;
  --ink:#101114;
  --muted:#606a76;
  --line:#d9dee7;
  --soft:#f6f9fd;
  --white:#ffffff;
  --shadow:0 22px 55px rgba(14,31,53,.12);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(23,119,223,.12), transparent 34rem),
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.site-header{
  width:min(1180px, calc(100% - 32px));
  margin:18px auto 0;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,35,61,.12);
  border-radius:22px;
  box-shadow:0 12px 35px rgba(9,26,49,.08);
  backdrop-filter:blur(14px);
  position:sticky;
  top:14px;
  z-index:20;
}

.brand img{width:230px}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
  font-weight:800;
}

.nav a{font-size:15px}

.nav-cta{
  padding:11px 16px;
  color:white!important;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  border-radius:999px;
  box-shadow:0 10px 24px rgba(23,119,223,.25);
}

.hero{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  padding:72px 0 60px;
}

.hero-copy{max-width:1050px}

.eyebrow{
  margin:0 0 12px;
  color:var(--blue);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:13px;
}

h1,h2,h3,p{margin-top:0}

h1{
  max-width:1020px;
  font-size:clamp(48px, 8vw, 98px);
  line-height:.94;
  letter-spacing:-.07em;
  margin-bottom:24px;
}

.hero-text{
  max-width:760px;
  font-size:20px;
  line-height:1.65;
  color:var(--muted);
  margin-bottom:30px;
}

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

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:14px;
  font-weight:900;
}

.button.primary{
  color:white;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  box-shadow:0 18px 34px rgba(23,119,223,.28);
}

.button.secondary{
  background:white;
  border:1px solid var(--line);
}

.button.tertiary{
  color:var(--blue);
  background:rgba(23,119,223,.08);
  border:1px solid rgba(23,119,223,.22);
}

.section{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  padding:52px 0;
}

.intro{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:46px;
  border-top:1px solid var(--line);
}

.intro h2,
.section-heading h2,
.contact h2{
  font-size:clamp(32px,4.2vw,58px);
  line-height:1;
  letter-spacing:-.055em;
  margin-bottom:0;
}

.intro > p{
  font-size:19px;
  line-height:1.75;
  color:var(--muted);
  margin:0;
}

.intro strong{color:var(--ink)}

.section-heading{margin-bottom:28px}

.split-heading{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:42px;
  align-items:end;
}

.split-heading > p{
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
  margin:0;
}

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

.service-card{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px;
  box-shadow:0 18px 40px rgba(14,31,53,.08);
  display:flex;
  flex-direction:column;
  min-height:470px;
}

.service-card.featured{border:2px solid var(--blue)}

.service-topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:22px;
}

.number{
  color:white;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  border-radius:14px;
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  flex-shrink:0;
}

.time{
  color:var(--blue);
  font-weight:900;
}

.service-card h3{
  font-size:31px;
  line-height:1.05;
  letter-spacing:-.04em;
  margin-bottom:18px;
}

.service-card ul{
  padding-left:22px;
  margin:0 0 22px;
  color:#2d333b;
  line-height:1.65;
}

.service-card li::marker{color:var(--blue)}

.price-row{
  margin-top:auto;
  padding-top:20px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
}

.price-row span{
  font-size:44px;
  font-weight:900;
  letter-spacing:-.045em;
}

.price-row small{
  color:var(--blue);
  font-size:18px;
  font-weight:900;
}

.pricing-caution{
  margin-top:20px;
  border:1px solid rgba(23,119,223,.24);
  background:rgba(23,119,223,.07);
  border-radius:20px;
  padding:18px 20px;
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.caution-icon{
  width:32px;
  height:32px;
  flex:0 0 32px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:white;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  font-weight:900;
  font-style:italic;
}

.pricing-caution p{
  margin:0;
  color:#344054;
  line-height:1.65;
}

.work{
  border-top:1px solid var(--line);
}

.work-controls{
  display:flex;
  align-items:center;
  gap:14px;
  margin:0 0 20px;
}

.work-tabs{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

.gallery-arrow{
  width:42px;
  height:42px;
  border:1px solid var(--line);
  background:white;
  border-radius:50%;
  color:var(--blue);
  display:grid;
  place-items:center;
  font:inherit;
  font-size:30px;
  line-height:1;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(14,31,53,.08);
}

.gallery-arrow:hover{
  color:white;
  border-color:var(--blue);
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
}

.tab-button{
  width:54px;
  height:12px;
  border:1px solid var(--line);
  background:white;
  border-radius:999px;
  padding:0;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(14,31,53,.06);
}

.tab-button.active{
  border-color:var(--blue);
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
}

.project-gallery{
  display:none;
  background:white;
  border:1px solid var(--line);
  border-radius:28px;
  padding:20px;
  box-shadow:var(--shadow);
}

.project-gallery.active{
  display:block;
}


.gallery-grid{
  display:grid;
  gap:14px;
}

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

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

.gallery-grid a{
  border-radius:18px;
  overflow:hidden;
  background:#eef2f7;
  min-height:320px;
  border:1px solid rgba(16,17,20,.08);
  box-shadow:0 12px 30px rgba(14,31,53,.08);
}

.gallery-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio:3 / 4;
  transition:transform .25s ease;
}

.gallery-grid a:hover img{
  transform:scale(1.035);
}

.contact{padding-bottom:46px}

.contact-panel{
  background:var(--black);
  color:white;
  border-radius:34px;
  padding:44px;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:36px;
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}

.contact-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 10% 20%, rgba(23,119,223,.34), transparent 18rem);
  pointer-events:none;
}

.contact-panel > *{position:relative}

.contact-panel p:not(.eyebrow){
  color:#c7d0dc;
  line-height:1.7;
  font-size:18px;
}

.contact-actions{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.email-card{
  grid-column:1 / -1;
}

.email-card strong{
  white-space:nowrap;
  font-size:18px;
}

.contact-link{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  border-radius:18px;
  padding:18px;
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.icon{
  width:38px;
  height:38px;
  flex:0 0 38px;
  border:1px solid rgba(23,119,223,.48);
  background:rgba(23,119,223,.12);
  border-radius:13px;
  display:grid;
  place-items:center;
}

.icon svg{
  width:23px;
  height:23px;
  fill:var(--blue);
}

.contact-link small{
  color:#9fb0c6;
  display:block;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.11em;
  margin-bottom:6px;
}

.contact-link strong{word-break:break-word}

.site-footer{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto 34px;
  padding:22px 0 0;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  color:var(--muted);
  font-weight:700;
}

.site-footer img{width:190px}

@media (max-width: 1040px){
  .gallery-grid.four{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 920px){
  .site-header{
    align-items:flex-start;
    flex-direction:column;
  }

  .brand img{width:200px}

  .nav{
    width:100%;
    overflow:auto;
    padding-bottom:2px;
  }

  .hero{padding-top:52px}

  .intro,
  .split-heading,
  .contact-panel{grid-template-columns:1fr}

  .service-grid{grid-template-columns:1fr}

  .service-card{min-height:auto}

  .gallery-grid.three{
    grid-template-columns:1fr;
  }
}

@media (max-width: 560px){
  .brand img{width:170px}

  .nav{gap:14px}

  .nav a{font-size:14px}

  .hero{padding-top:46px}

  .hero-actions,
  .contact-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .button{width:100%}

  .gallery-grid.four{
    grid-template-columns:1fr;
  }

  .work-controls{
    gap:10px;
  }

  .gallery-arrow{
    width:38px;
    height:38px;
    font-size:26px;
  }

  .tab-button{
    width:38px;
  }

  .email-card strong{
    white-space:normal;
    font-size:16px;
  }

  .gallery-grid a{
    min-height:260px;
  }

  .contact-panel{
    padding:28px;
    border-radius:26px;
  }

  .site-footer{
    align-items:flex-start;
    flex-direction:column;
  }
}
