@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Inter:wght@400;600;700;800&display=swap');

:root {
  --navy: #06294f;
  --navy-deep: #031c37;
  --blue: #0b8fe5;
  --blue-bright: #18a9f3;
  --yellow: #ffd313;
  --ink: #0b2340;
  --muted: #55687d;
  --paper: #ffffff;
  --soft: #edf6fb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  font-family: Inter, Arial, Helvetica, sans-serif;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }

.site-header {
  min-height: 76px;
  padding: 10px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(6,41,79,.08);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav a {
  position: relative;
  padding: 14px 2px;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--yellow);
  transition: right .18s ease;
}
.site-nav a:hover::after,
.site-nav a.active::after { right: 0; }

.header-call {
  display: inline-flex;
  align-items: stretch;
  min-height: 48px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--yellow);
  color: var(--navy-deep);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(240,185,0,.2);
}

.phone-box {
  min-width: 58px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  font-size: 1.4rem;
}
.phone-number { display: grid; place-items: center; padding: 0 20px; }
.nav-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(310px,.78fr) minmax(500px,1.12fr) minmax(350px,.85fr);
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(105deg,#fff 0%,#f6fbff 50%,#dff1fb 100%);
}

.hero-brand {
  align-self: center;
  padding: 32px 12px 28px 26px;
  text-align: center;
}
.hero-brand img {
  width: min(410px,100%);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.10));
}
.tagline {
  margin: -8px 0 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.4rem;
  font-style: italic;
}
.tagline::after {
  content: "";
  display: block;
  width: 72%;
  height: 5px;
  margin: 5px auto 0;
  background: var(--yellow);
  border-radius: 100%;
  transform: rotate(-3deg);
}

.hero-copy {
  align-self: center;
  padding: 60px 28px 48px;
}
.location {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .86rem;
  font-weight: 700;
}
h1 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(4rem,5.7vw,6.2rem);
  line-height: .83;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
h1 span,h1 strong { display:block; }
h1 span { color:var(--navy-deep); }
h1 strong { color:#087fd6; }

.intro {
  max-width: 630px;
  margin: 24px 0 14px;
  font-size: clamp(1.05rem,1.6vw,1.4rem);
  line-height: 1.38;
}
.owner { margin: 0 0 22px; }

.hero-actions,.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 215px;
  min-height: 68px;
  padding: 11px 20px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(4,42,79,.16);
  transition: transform .18s ease,box-shadow .18s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow:0 15px 28px rgba(4,42,79,.22); }
.cta-call { background:linear-gradient(135deg,#ffe12b,var(--yellow)); color:#071d33; }
.cta-text { background:linear-gradient(135deg,#19b5f4,#078bdc); color:white; }
.cta-symbol { font-size:1.8rem; }
.cta strong {
  display:block;
  font-family:"Barlow Condensed",Impact,sans-serif;
  text-transform:uppercase;
  font-size:1.4rem;
  line-height:1;
}
.cta small { display:block; margin-top:4px; font-size:.82rem; font-weight:800; }

.trust-row {
  margin-top: 26px;
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  font-size:.78rem;
}
.trust-row div { display:flex; align-items:center; gap:8px; }
.trust-row span {
  display:grid;
  place-items:center;
  min-width:34px;
  height:34px;
  border:2px solid #cad9e5;
  border-radius:50%;
  background:white;
  font-weight:900;
}

.hero-photo {
  min-height:560px;
  position:relative;
  background-image:
    linear-gradient(90deg,rgba(238,248,254,.92) 0%,rgba(238,248,254,.18) 22%,rgba(238,248,254,0) 46%),
    url("assets/hero-tools.jpg");
  background-size:cover;
  background-position:center;
}
.photo-tag {
  position:absolute;
  right:32px;
  bottom:62px;
  display:flex;
  flex-direction:column;
  color:white;
  font-family:"Barlow Condensed",Impact,sans-serif;
  font-style:italic;
  font-weight:900;
  font-size:clamp(1.55rem,2.5vw,2.7rem);
  line-height:.92;
  text-transform:uppercase;
  text-shadow:0 2px 8px rgba(0,0,0,.45);
  transform:rotate(-6deg);
}
.photo-tag::after {
  content:"";
  width:140px;
  height:6px;
  margin-top:12px;
  background:var(--yellow);
  border-radius:100%;
  transform:rotate(-8deg);
}

.services {
  display:grid;
  grid-template-columns:1fr 1fr minmax(300px,.82fr);
  color:white;
  background:linear-gradient(120deg,#04284f 0%,#06427d 55%,#032448 100%);
}
.service-column { padding:30px 40px 36px; }
.service-heading {
  display:flex;
  align-items:center;
  gap:16px;
  margin:0 -40px 18px;
  padding:10px 40px;
  background:linear-gradient(90deg,#0d8fe3 0%,rgba(13,143,227,.3) 75%,transparent);
}
.round-icon {
  flex:0 0 auto;
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--yellow);
  color:var(--navy);
  font-size:1.25rem;
}
.service-heading h2 {
  margin:0;
  font-family:"Barlow Condensed",Impact,sans-serif;
  font-size:1.75rem;
  text-transform:uppercase;
}
.services ul { list-style:none; margin:0; padding:0; }
.services li {
  position:relative;
  margin:0 0 15px;
  padding-left:43px;
  font-size:.98rem;
}
.services li::before {
  content:"✓";
  position:absolute;
  left:0;
  top:-2px;
  width:27px;
  height:27px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--yellow);
  color:var(--navy);
  font-weight:900;
}

.contact-prompt {
  align-self:center;
  margin:26px 26px 26px 4px;
  padding:30px 26px;
  background:white;
  color:var(--navy);
  text-align:center;
  clip-path:polygon(4% 5%,97% 0,94% 9%,100% 16%,96% 25%,100% 36%,96% 48%,100% 60%,96% 72%,100% 86%,95% 100%,5% 97%,0 90%,4% 80%,0 68%,5% 56%,0 44%,4% 32%,0 20%,5% 12%);
}
.prompt-label {
  display:inline-block;
  padding:7px 14px;
  background:var(--yellow);
  font-family:"Barlow Condensed",Impact,sans-serif;
  font-weight:900;
  font-size:1.2rem;
  text-transform:uppercase;
  transform:rotate(-4deg);
}
.prompt-icons { margin:20px 0 8px; font-size:1.8rem; color:#0b8fe5; }
.contact-prompt p {
  max-width:260px;
  margin:0 auto 8px;
  font-size:1.1rem;
  line-height:1.35;
  font-weight:700;
}
.contact-prompt > strong {
  display:block;
  margin-top:8px;
  font-family:"Barlow Condensed",Impact,sans-serif;
  font-style:italic;
  font-size:1.5rem;
}
.prompt-actions {
  margin-top:18px;
  display:flex;
  justify-content:center;
  gap:10px;
}
.prompt-actions a {
  min-width:92px;
  padding:10px 15px;
  border-radius:999px;
  background:var(--navy);
  color:white;
  text-decoration:none;
  font-weight:800;
}
.prompt-actions a:last-child { background:var(--blue); }

.quality-strip {
  min-height:86px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  align-items:center;
  padding:16px clamp(26px,6vw,95px);
  background:linear-gradient(#f7fafc,#dce7ef);
  border-top:1px solid #d4dee7;
  border-bottom:1px solid #cbd7e0;
}
.quality-strip div {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:11px;
  color:var(--navy);
}
.quality-strip span { font-size:1.8rem; }

.contact-section {
  padding:58px clamp(24px,7vw,110px);
  text-align:center;
  background:#f8fbfd;
}
.contact-kicker {
  margin:0 0 5px;
  color:var(--blue);
  font-size:.8rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.contact-section h2 {
  margin:0;
  font-family:"Barlow Condensed",Impact,sans-serif;
  font-size:clamp(2.6rem,4.4vw,4.5rem);
  line-height:.95;
  text-transform:uppercase;
}
.contact-section > p:not(.contact-kicker) {
  max-width:620px;
  margin:14px auto 26px;
  color:var(--muted);
}
.contact-actions { justify-content:center; }

footer {
  min-height:110px;
  padding:22px clamp(24px,4vw,55px);
  display:grid;
  grid-template-columns:1fr 1.5fr 1fr;
  gap:22px;
  align-items:center;
  background:#04284f;
  color:white;
  font-size:.82rem;
}
footer p { margin:4px 0; }
.footer-tag {
  font-family:"Barlow Condensed",Impact,sans-serif;
  font-size:1.25rem;
  font-style:italic;
}
.footer-tag::after {
  content:"";
  display:block;
  width:210px;
  max-width:80%;
  height:5px;
  margin-top:6px;
  background:var(--yellow);
  border-radius:100%;
  transform:rotate(-4deg);
}
.footer-center { text-align:center; }
.footer-center a { color:white; }
.credit {
  justify-self:end;
  padding-left:26px;
  border-left:1px solid rgba(255,255,255,.5);
}
.credit a {
  color:#a8db00;
  font-size:1.2rem;
  font-weight:900;
  text-decoration:none;
}

/* Tablet */
@media (max-width: 1080px) {
  .hero {
    grid-template-columns:minmax(280px,.8fr) minmax(430px,1.2fr);
  }
  .hero-photo { display:none; }

  .services {
    grid-template-columns:1fr 1fr;
  }
  .contact-prompt {
    grid-column:1 / -1;
    margin:0 28px 30px;
  }
}

/* Mobile navigation + layout */
@media (max-width: 760px) {
  .site-header {
    min-height:68px;
    grid-template-columns:auto 1fr auto;
    padding:9px 14px;
  }

  .nav-toggle {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 15px;
    border:0;
    border-radius:999px;
    background:var(--navy);
    color:white;
    font-weight:800;
  }

  .site-nav {
    display:none;
    position:absolute;
    left:12px;
    right:12px;
    top:64px;
    padding:12px;
    flex-direction:column;
    gap:0;
    border-radius:16px;
    background:white;
    box-shadow:0 16px 36px rgba(3,28,55,.22);
  }
  .site-nav.open { display:flex; }
  .site-nav a { width:100%; text-align:center; }

  .header-call { justify-self:end; min-height:44px; }
  .phone-box { min-width:48px; }
  .phone-number { display:none; }

  .hero {
    display:block;
    min-height:auto;
  }

  .hero-brand {
    padding:24px 20px 0;
  }
  .hero-brand img { width:min(340px,92vw); }
  .tagline { font-size:1.2rem; }

  .hero-copy {
    padding:22px 20px 38px;
    text-align:center;
  }

  .location {
    font-size:.76rem;
    letter-spacing:.2em;
  }

  h1 {
    font-size:clamp(3.2rem,15vw,4.7rem);
    line-height:.86;
  }

  .intro {
    margin-left:auto;
    margin-right:auto;
    font-size:1.05rem;
  }

  .hero-actions {
    display:grid;
    grid-template-columns:1fr;
    width:min(410px,100%);
    margin:0 auto;
  }

  .cta {
    width:100%;
    min-width:0;
    min-height:64px;
  }

  .trust-row {
    justify-content:center;
    gap:12px;
  }
  .trust-row div {
    width:100%;
    max-width:260px;
    justify-content:flex-start;
    text-align:left;
  }

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

  .service-column {
    padding:26px 24px 30px;
  }
  .service-heading {
    margin-left:-24px;
    margin-right:-24px;
    padding-left:24px;
    padding-right:24px;
  }
  .service-heading h2 { font-size:1.55rem; }
  .services li { font-size:.95rem; }

  .contact-prompt {
    grid-column:auto;
    margin:4px 18px 28px;
  }

  .quality-strip {
    grid-template-columns:1fr 1fr;
    padding:18px 20px;
  }
  .quality-strip div {
    justify-content:flex-start;
  }

  .contact-section {
    padding:48px 20px;
  }
  .contact-actions {
    display:grid;
    grid-template-columns:1fr;
    width:min(410px,100%);
    margin:0 auto;
  }

  footer {
    grid-template-columns:1fr;
    text-align:center;
    padding:26px 20px;
  }
  .footer-tag::after { margin-left:auto; margin-right:auto; }
  .credit {
    justify-self:center;
    padding:14px 0 0;
    border-left:0;
    border-top:1px solid rgba(255,255,255,.3);
  }
}

/* Narrow phones */
@media (max-width: 430px) {
  .hero-brand img { width:94vw; }
  h1 { font-size:3.25rem; }

  .quality-strip {
    grid-template-columns:1fr;
  }

  .quality-strip div {
    justify-content:flex-start;
  }

  .service-heading {
    align-items:flex-start;
  }

  .service-heading h2 {
    font-size:1.42rem;
    line-height:1.05;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { transition:none !important; }
}
