:root {
  --sms-ink: #0b1628;
  --sms-navy: #102a43;
  --sms-blue: #0b63ce;
  --sms-blue-dark: #084b9b;
  --sms-orange: #f97316;
  --sms-mist: #f3f7fb;
  --sms-line: #dce5ee;
  --sms-muted: #5b6b7c;
  --sms-white: #fff;
  --sms-radius: 18px;
  --sms-shadow: 0 18px 50px rgba(11, 22, 40, 0.11);
  --sms-shell: min(1180px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #1d2a3a;
  background: var(--sms-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--sms-blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--sms-blue-dark);
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.55em;
  color: var(--sms-ink);
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  margin: 0 0 1.15em;
}

.site-shell {
  width: var(--sms-shell);
  margin-inline: auto;
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--sms-white);
  background: var(--sms-ink);
  border-radius: 8px;
}

:focus-visible {
  outline: 3px solid #ffb36a;
  outline-offset: 3px;
}

.utility-bar {
  color: #dbeafe;
  background: var(--sms-ink);
  font-size: 0.82rem;
}

.utility-bar__inner,
.utility-bar__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.utility-bar p {
  margin: 0;
  padding-block: 9px;
}

.utility-bar a {
  color: var(--sms-white);
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 229, 238, 0.9);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--sms-ink);
  text-decoration: none;
}

.custom-logo {
  width: auto;
  max-width: 285px;
  max-height: 62px;
  object-fit: contain;
}

.brand__logo {
  width: 200px;
  height: auto;
  margin-block: -6px;
}

.brand__mark {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--sms-white);
  background: linear-gradient(135deg, var(--sms-orange), #ff9a3c);
  border-radius: 14px 14px 14px 4px;
  font-weight: 850;
}

.brand__name {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.site-nav,
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 27px;
}

.site-nav__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav__list a {
  color: #263a50;
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a {
  color: var(--sms-blue);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 1px solid var(--sms-line);
  background: var(--sms-white);
  border-radius: 12px;
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin-block: 5px;
  background: var(--sms-ink);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  color: var(--sms-white);
  background: var(--sms-blue);
  border: 2px solid var(--sms-blue);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(11, 99, 206, 0.2);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  color: var(--sms-white);
  background: var(--sms-blue-dark);
  border-color: var(--sms-blue-dark);
  box-shadow: 0 14px 32px rgba(11, 99, 206, 0.28);
  transform: translateY(-2px);
}

.button--secondary {
  color: var(--sms-ink);
  background: transparent;
  border-color: #b8c7d8;
  box-shadow: none;
}

.button--secondary:hover {
  color: var(--sms-ink);
  background: var(--sms-white);
  border-color: var(--sms-blue);
}

.button--small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--sms-blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 7vw, 104px) 0 clamp(68px, 7vw, 86px);
  background:
    radial-gradient(circle at 12% 8%, rgba(249, 115, 22, 0.12), transparent 28%),
    linear-gradient(160deg, #f8fbff 0%, #eef5fc 58%, #fff 100%);
}

.hero::after {
  position: absolute;
  width: 440px;
  height: 440px;
  right: -180px;
  bottom: -220px;
  background: rgba(11, 99, 206, 0.08);
  border-radius: 50%;
  content: "";
}

.hero__grid,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
  align-items: center;
  gap: clamp(38px, 5vw, 68px);
}

.hero__content,
.hero__visual,
.split-layout > * {
  min-width: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 4.6vw, 4.25rem);
}

.hero__lead {
  max-width: 730px;
  color: #41566d;
  font-size: clamp(1.12rem, 2vw, 1.3rem);
}

.hero .button-row {
  margin-top: 31px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 0;
  margin: 31px 0 0;
  color: #3b4d61;
  font-size: 0.9rem;
  font-weight: 680;
  list-style: none;
}

.hero__proof li::before {
  margin-right: 8px;
  color: var(--sms-orange);
  content: "✓";
}

.hero__visual {
  position: relative;
}

.hero__image-frame {
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--sms-navy), #1c4c74);
  border: 8px solid var(--sms-white);
  border-radius: 34px 34px 34px 10px;
  box-shadow: var(--sms-shadow);
}

.hero__image-frame:empty::before {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(145deg, rgba(11, 22, 40, 0.16), rgba(11, 99, 206, 0.48)),
    linear-gradient(135deg, #345e85, #102a43);
  content: "";
}

.hero__image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.hero__callout {
  position: absolute;
  right: -18px;
  bottom: 28px;
  display: grid;
  max-width: 280px;
  gap: 4px;
  padding: 18px 20px;
  color: var(--sms-white);
  background: rgba(11, 22, 40, 0.94);
  border-radius: 14px;
  box-shadow: var(--sms-shadow);
}

.hero__callout span {
  color: #c9d8e8;
  font-size: 0.82rem;
  line-height: 1.45;
}

.trust-strip {
  background: var(--sms-ink);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding-block: 24px;
  color: #cfdaea;
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.field-photo {
  padding: clamp(48px, 7vw, 86px) 0;
  background: var(--sms-white);
}

.field-photo__frame {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  overflow: hidden;
  margin: 0;
  background: var(--sms-white);
  border: 1px solid var(--sms-line);
  border-radius: 26px;
  box-shadow: var(--sms-shadow);
}

.field-photo__frame > img {
  width: 100%;
  height: clamp(430px, 50vw, 640px);
  background: #eef1f4;
  object-fit: contain;
}

.field-photo__caption {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  padding: clamp(30px, 5vw, 64px);
  color: #41566d;
}

.field-photo__caption span {
  display: grid;
  gap: 5px;
}

.field-photo__caption strong {
  color: var(--sms-ink);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.business-hours {
  padding: 0;
  margin: 0;
  list-style: none;
}

.business-hours--contact li + li {
  margin-top: 5px;
}

.section {
  padding: clamp(72px, 9vw, 116px) 0;
}

.section--light {
  background: var(--sms-mist);
}

.section--split {
  background: var(--sms-white);
}

.section--dark {
  color: #cbd8e6;
  background: var(--sms-ink);
}

.section--dark h2,
.section--dark h3 {
  color: var(--sms-white);
}

.section--dark .eyebrow {
  color: #ffad6d;
}

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

.section-heading > p:last-child {
  color: var(--sms-muted);
  font-size: 1.08rem;
}

.section--dark .section-heading > p:last-child {
  color: #aebed0;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

.card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.feature-card,
.values-grid article,
.testimonial-card,
.post-card {
  min-width: 0;
  padding: 30px;
  background: var(--sms-white);
  border: 1px solid var(--sms-line);
  border-radius: var(--sms-radius);
  box-shadow: 0 8px 28px rgba(11, 22, 40, 0.055);
}

.service-card__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: var(--sms-blue);
  background: #e9f2ff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 850;
}

.service-card p,
.feature-card p,
.values-grid p {
  margin-bottom: 0;
  color: var(--sms-muted);
}

.rounded-image {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: 28px 28px 28px 8px;
  box-shadow: var(--sms-shadow);
}

.split-layout--reverse .split-layout__content {
  order: 2;
}

.process-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  counter-reset: sms-process;
}

.process-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--sms-line);
  counter-increment: sms-process;
}

.process-list li::before {
  grid-column: 1;
  grid-row: 1 / span 2;
  color: var(--sms-orange);
  content: "0" counter(sms-process);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.process-list strong,
.process-list span {
  grid-column: 2;
}

.process-list strong {
  grid-row: 1;
  color: var(--sms-ink);
}

.process-list span {
  grid-row: 2;
  color: var(--sms-muted);
  font-size: 0.9rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #19324d;
  border-radius: 14px;
}

.project-grid__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.project-grid__image--contain {
  background: var(--sms-white);
  object-fit: contain;
}

@media (max-width: 820px) {
  .field-photo__frame {
    grid-template-columns: 1fr;
  }

  .field-photo__frame > img {
    height: clamp(430px, 100vw, 640px);
  }
}

.project-grid figure:hover .project-grid__image {
  transform: scale(1.025);
}

.section--cta {
  padding-block: 72px;
  background: linear-gradient(135deg, #eaf3ff, #fff4ea);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-panel > div:first-child {
  max-width: 760px;
}

.cta-panel h2 {
  margin-bottom: 0;
}

.page-hero {
  padding: clamp(66px, 8vw, 105px) 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(249, 115, 22, 0.11), transparent 30%),
    var(--sms-mist);
}

.page-hero__inner {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.page-hero__inner h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.page-hero--feature .split-layout {
  min-height: 420px;
}

.page-hero--feature .rounded-image {
  min-height: 390px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 64px;
  padding-block: clamp(60px, 8vw, 100px);
}

.entry-content {
  min-width: 0;
}

.entry-content > * {
  max-width: 760px;
}

.entry-content > .alignwide {
  max-width: 1000px;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.35em;
}

.entry-content img {
  border-radius: 14px;
}

.contact-card,
.contact-details,
.contact-form-panel,
.notice-panel {
  padding: 30px;
  background: var(--sms-white);
  border: 1px solid var(--sms-line);
  border-radius: var(--sms-radius);
  box-shadow: var(--sms-shadow);
}

.contact-card {
  position: sticky;
  top: 112px;
}

.contact-card h2,
.contact-details h2 {
  font-size: 1.55rem;
}

.contact-card .text-link {
  display: block;
  margin-top: 17px;
  font-weight: 750;
}

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

.values-grid article {
  padding: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: start;
  gap: 38px;
}

.contact-details dl {
  margin: 0;
}

.contact-details dt {
  margin-top: 18px;
  color: var(--sms-muted);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 3px 0 0;
}

.contact-form-panel label {
  display: grid;
  gap: 7px;
  color: var(--sms-ink);
  font-size: 0.9rem;
  font-weight: 720;
}

.sms-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sms-form-field {
  margin: 0 0 18px;
}

.sms-form-field--wide {
  grid-column: 1 / -1;
}

.sms-form-field small {
  color: var(--sms-muted);
  font-weight: 500;
}

.sms-form-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  margin: 8px 0 20px;
  color: var(--sms-muted);
  font-size: 0.86rem;
}

.sms-turnstile {
  margin: 8px 0 20px;
}

.contact-form-panel .sms-form-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.sms-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.sms-form-notice {
  padding: 14px 16px;
  margin-bottom: 22px;
  border-left: 4px solid var(--sms-blue);
  background: #e9f2ff;
  border-radius: 8px;
}

.sms-form-notice--error {
  border-left-color: #b42318;
  background: #fff0ee;
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--sms-ink);
  background: var(--sms-white);
  border: 1px solid #aebdcb;
  border-radius: 9px;
}

.contact-form-panel textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form-panel input[type="submit"] {
  width: auto;
  min-width: 180px;
  color: var(--sms-white);
  background: var(--sms-blue);
  border-color: var(--sms-blue);
  font-weight: 760;
  cursor: pointer;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  margin: 0;
}

.testimonial-card__rating {
  margin-bottom: 18px;
  color: var(--sms-orange);
  letter-spacing: 0.08em;
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card blockquote p {
  color: #354a60;
}

.testimonial-card figcaption {
  color: var(--sms-ink);
  font-weight: 780;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-block: 72px;
}

.post-card h2 {
  font-size: 1.7rem;
}

.error-page {
  display: grid;
  min-height: 62vh;
  place-items: center;
  padding-block: 80px;
  text-align: center;
}

.error-page__inner {
  max-width: 720px;
}

.site-footer {
  color: #b9c8d8;
  background: #07111f;
}

.site-footer a {
  color: var(--sms-white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.8fr;
  gap: 44px;
  padding-block: 72px 52px;
}

.site-footer h2 {
  color: var(--sms-white);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer__brand {
  display: inline-flex;
  margin-bottom: 16px;
}

.site-footer__logo {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
}

.footer-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid #203044;
  font-size: 0.8rem;
}

.site-footer__bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .utility-bar__inner > p,
  .site-nav > .button {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    padding: 20px;
    background: var(--sms-white);
    border: 1px solid var(--sms-line);
    border-radius: 0 0 16px 16px;
    box-shadow: var(--sms-shadow);
  }

  .site-nav.is-open,
  .site-nav__list {
    display: grid;
  }

  .site-nav__list {
    width: 100%;
    gap: 0;
  }

  .site-nav__list a {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid var(--sms-line);
  }

  .hero__grid,
  .split-layout,
  .content-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 800px;
  }

  .hero__visual {
    max-width: 720px;
  }

  .hero__image-frame,
  .hero__image {
    min-height: 0;
  }

  .card-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-card {
    position: static;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --sms-shell: min(100% - 28px, 1180px);
  }

  body {
    font-size: 16px;
  }

  .utility-bar__inner,
  .utility-bar__links {
    justify-content: center;
  }

  .utility-bar__links a:last-child {
    display: none;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand__name {
    font-size: 1rem;
  }

  .custom-logo {
    max-width: 225px;
    max-height: 52px;
  }

  .brand__logo {
    width: 170px;
    margin-block: -4px;
  }

  .hero {
    padding-top: 66px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .field-photo__caption {
    align-items: stretch;
    padding: 20px;
  }

  .hero__proof {
    display: grid;
  }

  .rounded-image {
    min-height: 330px;
  }

  .hero__callout {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -22px 16px 0;
  }

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

  .trust-strip__grid span:last-child {
    grid-column: 1 / -1;
  }

  .card-grid--three,
  .card-grid--two,
  .values-grid,
  .project-grid,
  .post-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .sms-form-grid {
    grid-template-columns: 1fr;
  }

  .sms-form-field--wide {
    grid-column: auto;
  }

  .service-card,
  .feature-card,
  .contact-card,
  .contact-details,
  .contact-form-panel {
    padding: 24px;
  }

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

  .project-grid__image {
    height: 190px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 10px 14px;
  }

  .cta-panel,
  .site-footer__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero__inner {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
